Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,428,600,000 $JEET
Holders
277
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.653742935901919438 $JEETValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
JEET
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract JEET is ERC20 { uint256 public constant initialToken = 1428600000; uint256 public constant thresholdTimePeriod = 45 minutes; uint256 public immutable tempMaxTxnCap = 7143000 * 10 ** decimals(); uint256 public immutable thresholdTimeStamp; bool public capped = true; address public immutable deployer; modifier checks( address from, address to, uint256 amount ) { if (capped) { if (from != deployer && to != deployer) { if (block.timestamp < thresholdTimeStamp) { require( amount <= tempMaxTxnCap, "CAN'T TRANSACT MORE THAN THE CAP FOR NOW" ); } else { capped = false; } } } _; } constructor() ERC20("JEET", "$JEET") { thresholdTimeStamp = block.timestamp + thresholdTimePeriod; deployer = msg.sender; _mint(msg.sender, initialToken * 10 ** decimals()); } function transfer( address to, uint256 amount ) public override checks(msg.sender, to, amount) returns (bool success) { success = super.transfer(to, amount); } function transferFrom( address from, address to, uint256 amount ) public virtual override checks(from, to, amount) returns (bool success) { success = super.transferFrom(from, to, amount); } function removeCap() external { require(msg.sender == deployer, "NOT AUTHORIZED"); capped = false; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"value","type":"uint256"}],"name":"Approval","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":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","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":"amount","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":[],"name":"capped","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deployer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tempMaxTxnCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"thresholdTimePeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"thresholdTimeStamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e0604052620000146200018460201b60201c565b600a6200002291906200049e565b626cfe58620000329190620004ef565b6080908152506001600560006101000a81548160ff0219169083151502179055503480156200006057600080fd5b506040518060400160405280600481526020017f4a454554000000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f244a4545540000000000000000000000000000000000000000000000000000008152508160039081620000de9190620007aa565b508060049081620000f09190620007aa565b505050610a8c4262000103919062000891565b60a081815250503373ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250506200017e33620001536200018460201b60201c565b600a6200016191906200049e565b635526b4c0620001729190620004ef565b6200018d60201b60201c565b6200097d565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620001ff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001f6906200092d565b60405180910390fd5b6200021360008383620002fa60201b60201c565b806002600082825462000227919062000891565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002da919062000960565b60405180910390a3620002f660008383620002ff60201b60201c565b5050565b505050565b505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000392578086048111156200036a576200036962000304565b5b60018516156200037a5780820291505b80810290506200038a8562000333565b94506200034a565b94509492505050565b600082620003ad576001905062000480565b81620003bd576000905062000480565b8160018114620003d65760028114620003e15762000417565b600191505062000480565b60ff841115620003f657620003f562000304565b5b8360020a91508482111562000410576200040f62000304565b5b5062000480565b5060208310610133831016604e8410600b8410161715620004515782820a9050838111156200044b576200044a62000304565b5b62000480565b62000460848484600162000340565b925090508184048111156200047a576200047962000304565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620004ab8262000487565b9150620004b88362000491565b9250620004e77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200039b565b905092915050565b6000620004fc8262000487565b9150620005098362000487565b9250828202620005198162000487565b9150828204841483151762000533576200053262000304565b5b5092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005bc57607f821691505b602082108103620005d257620005d162000574565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200063c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005fd565b620006488683620005fd565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200068b620006856200067f8462000487565b62000660565b62000487565b9050919050565b6000819050919050565b620006a7836200066a565b620006bf620006b68262000692565b8484546200060a565b825550505050565b600090565b620006d6620006c7565b620006e38184846200069c565b505050565b5b818110156200070b57620006ff600082620006cc565b600181019050620006e9565b5050565b601f8211156200075a576200072481620005d8565b6200072f84620005ed565b810160208510156200073f578190505b620007576200074e85620005ed565b830182620006e8565b50505b505050565b600082821c905092915050565b60006200077f600019846008026200075f565b1980831691505092915050565b60006200079a83836200076c565b9150826002028217905092915050565b620007b5826200053a565b67ffffffffffffffff811115620007d157620007d062000545565b5b620007dd8254620005a3565b620007ea8282856200070f565b600060209050601f8311600181146200082257600084156200080d578287015190505b6200081985826200078c565b86555062000889565b601f1984166200083286620005d8565b60005b828110156200085c5784890151825560018201915060208501945060208101905062000835565b868310156200087c578489015162000878601f8916826200076c565b8355505b6001600288020188555050505b505050505050565b60006200089e8262000487565b9150620008ab8362000487565b9250828201905080821115620008c657620008c562000304565b5b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000915601f83620008cc565b91506200092282620008dd565b602082019050919050565b60006020820190508181036000830152620009488162000906565b9050919050565b6200095a8162000487565b82525050565b60006020820190506200097760008301846200094f565b92915050565b60805160a05160c0516118d0620009ec6000396000818161047c015281816104d301528181610697015281816108ad015281816109040152610a1d015260008181610529015281816107d4015261095a0152600081816105510152818161086f015261098201526118d06000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806375aeb226116100a2578063a457c2d711610071578063a457c2d7146102d5578063a8f1005a14610305578063a9059cbb14610323578063d5f3948814610353578063dd62ed3e1461037157610116565b806375aeb226146102715780637f39dac31461028f57806395d89b4114610299578063a390b667146102b757610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780633ea97009146102055780635eb101c31461022357806370a082311461024157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103a1565b6040516101309190611085565b60405180910390f35b610153600480360381019061014e9190611140565b610433565b604051610160919061119b565b60405180910390f35b610171610456565b60405161017e91906111c5565b60405180910390f35b6101a1600480360381019061019c91906111e0565b610460565b6040516101ae919061119b565b60405180910390f35b6101bf6105ec565b6040516101cc919061124f565b60405180910390f35b6101ef60048036038101906101ea9190611140565b6105f5565b6040516101fc919061119b565b60405180910390f35b61020d61062c565b60405161021a91906111c5565b60405180910390f35b61022b610634565b604051610238919061119b565b60405180910390f35b61025b6004803603810190610256919061126a565b610647565b60405161026891906111c5565b60405180910390f35b61027961068f565b60405161028691906111c5565b60405180910390f35b610297610695565b005b6102a1610740565b6040516102ae9190611085565b60405180910390f35b6102bf6107d2565b6040516102cc91906111c5565b60405180910390f35b6102ef60048036038101906102ea9190611140565b6107f6565b6040516102fc919061119b565b60405180910390f35b61030d61086d565b60405161031a91906111c5565b60405180910390f35b61033d60048036038101906103389190611140565b610891565b60405161034a919061119b565b60405180910390f35b61035b610a1b565b60405161036891906112a6565b60405180910390f35b61038b600480360381019061038691906112c1565b610a3f565b60405161039891906111c5565b60405180910390f35b6060600380546103b090611330565b80601f01602080910402602001604051908101604052809291908181526020018280546103dc90611330565b80156104295780601f106103fe57610100808354040283529160200191610429565b820191906000526020600020905b81548152906001019060200180831161040c57829003601f168201915b5050505050905090565b60008061043e610ac6565b905061044b818585610ace565b600191505092915050565b6000600254905090565b6000838383600560009054906101000a900460ff16156105d5577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561052257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156105d4577f00000000000000000000000000000000000000000000000000000000000000004210156105b7577f00000000000000000000000000000000000000000000000000000000000000008111156105b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a9906113d3565b60405180910390fd5b6105d3565b6000600560006101000a81548160ff0219169083151502179055505b5b5b6105e0878787610c97565b93505050509392505050565b60006012905090565b600080610600610ac6565b90506106218185856106128589610a3f565b61061c9190611422565b610ace565b600191505092915050565b635526b4c081565b600560009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a8c81565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071a906114a2565b60405180910390fd5b6000600560006101000a81548160ff021916908315150217905550565b60606004805461074f90611330565b80601f016020809104026020016040519081016040528092919081815260200182805461077b90611330565b80156107c85780601f1061079d576101008083540402835291602001916107c8565b820191906000526020600020905b8154815290600101906020018083116107ab57829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b600080610801610ac6565b9050600061080f8286610a3f565b905083811015610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b90611534565b60405180910390fd5b6108618286868403610ace565b60019250505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000338383600560009054906101000a900460ff1615610a06577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561095357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610a05577f00000000000000000000000000000000000000000000000000000000000000004210156109e8577f00000000000000000000000000000000000000000000000000000000000000008111156109e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109da906113d3565b60405180910390fd5b610a04565b6000600560006101000a81548160ff0219169083151502179055505b5b5b610a108686610cc6565b935050505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b34906115c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba390611658565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c8a91906111c5565b60405180910390a3505050565b600080610ca2610ac6565b9050610caf858285610ce9565b610cba858585610d75565b60019150509392505050565b600080610cd1610ac6565b9050610cde818585610d75565b600191505092915050565b6000610cf58484610a3f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d6f5781811015610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d58906116c4565b60405180910390fd5b610d6e8484848403610ace565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90611756565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a906117e8565b60405180910390fd5b610e5e838383610feb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb9061187a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fd291906111c5565b60405180910390a3610fe5848484610ff0565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561102f578082015181840152602081019050611014565b60008484015250505050565b6000601f19601f8301169050919050565b600061105782610ff5565b6110618185611000565b9350611071818560208601611011565b61107a8161103b565b840191505092915050565b6000602082019050818103600083015261109f818461104c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110d7826110ac565b9050919050565b6110e7816110cc565b81146110f257600080fd5b50565b600081359050611104816110de565b92915050565b6000819050919050565b61111d8161110a565b811461112857600080fd5b50565b60008135905061113a81611114565b92915050565b60008060408385031215611157576111566110a7565b5b6000611165858286016110f5565b92505060206111768582860161112b565b9150509250929050565b60008115159050919050565b61119581611180565b82525050565b60006020820190506111b0600083018461118c565b92915050565b6111bf8161110a565b82525050565b60006020820190506111da60008301846111b6565b92915050565b6000806000606084860312156111f9576111f86110a7565b5b6000611207868287016110f5565b9350506020611218868287016110f5565b92505060406112298682870161112b565b9150509250925092565b600060ff82169050919050565b61124981611233565b82525050565b60006020820190506112646000830184611240565b92915050565b6000602082840312156112805761127f6110a7565b5b600061128e848285016110f5565b91505092915050565b6112a0816110cc565b82525050565b60006020820190506112bb6000830184611297565b92915050565b600080604083850312156112d8576112d76110a7565b5b60006112e6858286016110f5565b92505060206112f7858286016110f5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061134857607f821691505b60208210810361135b5761135a611301565b5b50919050565b7f43414e2754205452414e53414354204d4f5245205448414e205448452043415060008201527f20464f52204e4f57000000000000000000000000000000000000000000000000602082015250565b60006113bd602883611000565b91506113c882611361565b604082019050919050565b600060208201905081810360008301526113ec816113b0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061142d8261110a565b91506114388361110a565b92508282019050808211156114505761144f6113f3565b5b92915050565b7f4e4f5420415554484f52495a4544000000000000000000000000000000000000600082015250565b600061148c600e83611000565b915061149782611456565b602082019050919050565b600060208201905081810360008301526114bb8161147f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061151e602583611000565b9150611529826114c2565b604082019050919050565b6000602082019050818103600083015261154d81611511565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006115b0602483611000565b91506115bb82611554565b604082019050919050565b600060208201905081810360008301526115df816115a3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611642602283611000565b915061164d826115e6565b604082019050919050565b6000602082019050818103600083015261167181611635565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006116ae601d83611000565b91506116b982611678565b602082019050919050565b600060208201905081810360008301526116dd816116a1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611740602583611000565b915061174b826116e4565b604082019050919050565b6000602082019050818103600083015261176f81611733565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006117d2602383611000565b91506117dd82611776565b604082019050919050565b60006020820190508181036000830152611801816117c5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611864602683611000565b915061186f82611808565b604082019050919050565b6000602082019050818103600083015261189381611857565b905091905056fea2646970667358221220bf0fadaff042b7e3f5a7cf7d3de57a38cda7a909b0d260f1372a69a02b56ff0564736f6c63430008110033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c806375aeb226116100a2578063a457c2d711610071578063a457c2d7146102d5578063a8f1005a14610305578063a9059cbb14610323578063d5f3948814610353578063dd62ed3e1461037157610116565b806375aeb226146102715780637f39dac31461028f57806395d89b4114610299578063a390b667146102b757610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780633ea97009146102055780635eb101c31461022357806370a082311461024157610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b6101236103a1565b6040516101309190611085565b60405180910390f35b610153600480360381019061014e9190611140565b610433565b604051610160919061119b565b60405180910390f35b610171610456565b60405161017e91906111c5565b60405180910390f35b6101a1600480360381019061019c91906111e0565b610460565b6040516101ae919061119b565b60405180910390f35b6101bf6105ec565b6040516101cc919061124f565b60405180910390f35b6101ef60048036038101906101ea9190611140565b6105f5565b6040516101fc919061119b565b60405180910390f35b61020d61062c565b60405161021a91906111c5565b60405180910390f35b61022b610634565b604051610238919061119b565b60405180910390f35b61025b6004803603810190610256919061126a565b610647565b60405161026891906111c5565b60405180910390f35b61027961068f565b60405161028691906111c5565b60405180910390f35b610297610695565b005b6102a1610740565b6040516102ae9190611085565b60405180910390f35b6102bf6107d2565b6040516102cc91906111c5565b60405180910390f35b6102ef60048036038101906102ea9190611140565b6107f6565b6040516102fc919061119b565b60405180910390f35b61030d61086d565b60405161031a91906111c5565b60405180910390f35b61033d60048036038101906103389190611140565b610891565b60405161034a919061119b565b60405180910390f35b61035b610a1b565b60405161036891906112a6565b60405180910390f35b61038b600480360381019061038691906112c1565b610a3f565b60405161039891906111c5565b60405180910390f35b6060600380546103b090611330565b80601f01602080910402602001604051908101604052809291908181526020018280546103dc90611330565b80156104295780601f106103fe57610100808354040283529160200191610429565b820191906000526020600020905b81548152906001019060200180831161040c57829003601f168201915b5050505050905090565b60008061043e610ac6565b905061044b818585610ace565b600191505092915050565b6000600254905090565b6000838383600560009054906101000a900460ff16156105d5577f000000000000000000000000ffded64ca3fc8e9407bb11ba13fac3ae414682c473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561052257507f000000000000000000000000ffded64ca3fc8e9407bb11ba13fac3ae414682c473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156105d4577f00000000000000000000000000000000000000000000000000000000644b07e74210156105b7577f00000000000000000000000000000000000000000005e896ce4fac06c26000008111156105b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a9906113d3565b60405180910390fd5b6105d3565b6000600560006101000a81548160ff0219169083151502179055505b5b5b6105e0878787610c97565b93505050509392505050565b60006012905090565b600080610600610ac6565b90506106218185856106128589610a3f565b61061c9190611422565b610ace565b600191505092915050565b635526b4c081565b600560009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a8c81565b7f000000000000000000000000ffded64ca3fc8e9407bb11ba13fac3ae414682c473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071a906114a2565b60405180910390fd5b6000600560006101000a81548160ff021916908315150217905550565b60606004805461074f90611330565b80601f016020809104026020016040519081016040528092919081815260200182805461077b90611330565b80156107c85780601f1061079d576101008083540402835291602001916107c8565b820191906000526020600020905b8154815290600101906020018083116107ab57829003601f168201915b5050505050905090565b7f00000000000000000000000000000000000000000000000000000000644b07e781565b600080610801610ac6565b9050600061080f8286610a3f565b905083811015610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b90611534565b60405180910390fd5b6108618286868403610ace565b60019250505092915050565b7f00000000000000000000000000000000000000000005e896ce4fac06c260000081565b6000338383600560009054906101000a900460ff1615610a06577f000000000000000000000000ffded64ca3fc8e9407bb11ba13fac3ae414682c473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561095357507f000000000000000000000000ffded64ca3fc8e9407bb11ba13fac3ae414682c473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610a05577f00000000000000000000000000000000000000000000000000000000644b07e74210156109e8577f00000000000000000000000000000000000000000005e896ce4fac06c26000008111156109e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109da906113d3565b60405180910390fd5b610a04565b6000600560006101000a81548160ff0219169083151502179055505b5b5b610a108686610cc6565b935050505092915050565b7f000000000000000000000000ffded64ca3fc8e9407bb11ba13fac3ae414682c481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b34906115c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba390611658565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c8a91906111c5565b60405180910390a3505050565b600080610ca2610ac6565b9050610caf858285610ce9565b610cba858585610d75565b60019150509392505050565b600080610cd1610ac6565b9050610cde818585610d75565b600191505092915050565b6000610cf58484610a3f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d6f5781811015610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d58906116c4565b60405180910390fd5b610d6e8484848403610ace565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90611756565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4a906117e8565b60405180910390fd5b610e5e838383610feb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb9061187a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610fd291906111c5565b60405180910390a3610fe5848484610ff0565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561102f578082015181840152602081019050611014565b60008484015250505050565b6000601f19601f8301169050919050565b600061105782610ff5565b6110618185611000565b9350611071818560208601611011565b61107a8161103b565b840191505092915050565b6000602082019050818103600083015261109f818461104c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110d7826110ac565b9050919050565b6110e7816110cc565b81146110f257600080fd5b50565b600081359050611104816110de565b92915050565b6000819050919050565b61111d8161110a565b811461112857600080fd5b50565b60008135905061113a81611114565b92915050565b60008060408385031215611157576111566110a7565b5b6000611165858286016110f5565b92505060206111768582860161112b565b9150509250929050565b60008115159050919050565b61119581611180565b82525050565b60006020820190506111b0600083018461118c565b92915050565b6111bf8161110a565b82525050565b60006020820190506111da60008301846111b6565b92915050565b6000806000606084860312156111f9576111f86110a7565b5b6000611207868287016110f5565b9350506020611218868287016110f5565b92505060406112298682870161112b565b9150509250925092565b600060ff82169050919050565b61124981611233565b82525050565b60006020820190506112646000830184611240565b92915050565b6000602082840312156112805761127f6110a7565b5b600061128e848285016110f5565b91505092915050565b6112a0816110cc565b82525050565b60006020820190506112bb6000830184611297565b92915050565b600080604083850312156112d8576112d76110a7565b5b60006112e6858286016110f5565b92505060206112f7858286016110f5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061134857607f821691505b60208210810361135b5761135a611301565b5b50919050565b7f43414e2754205452414e53414354204d4f5245205448414e205448452043415060008201527f20464f52204e4f57000000000000000000000000000000000000000000000000602082015250565b60006113bd602883611000565b91506113c882611361565b604082019050919050565b600060208201905081810360008301526113ec816113b0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061142d8261110a565b91506114388361110a565b92508282019050808211156114505761144f6113f3565b5b92915050565b7f4e4f5420415554484f52495a4544000000000000000000000000000000000000600082015250565b600061148c600e83611000565b915061149782611456565b602082019050919050565b600060208201905081810360008301526114bb8161147f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061151e602583611000565b9150611529826114c2565b604082019050919050565b6000602082019050818103600083015261154d81611511565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006115b0602483611000565b91506115bb82611554565b604082019050919050565b600060208201905081810360008301526115df816115a3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611642602283611000565b915061164d826115e6565b604082019050919050565b6000602082019050818103600083015261167181611635565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006116ae601d83611000565b91506116b982611678565b602082019050919050565b600060208201905081810360008301526116dd816116a1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611740602583611000565b915061174b826116e4565b604082019050919050565b6000602082019050818103600083015261176f81611733565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006117d2602383611000565b91506117dd82611776565b604082019050919050565b60006020820190508181036000830152611801816117c5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611864602683611000565b915061186f82611808565b604082019050919050565b6000602082019050818103600083015261189381611857565b905091905056fea2646970667358221220bf0fadaff042b7e3f5a7cf7d3de57a38cda7a909b0d260f1372a69a02b56ff0564736f6c63430008110033
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.