ERC-20
Finance
Overview
Max Total Supply
1,000,000,000 CYMI
Holders
74 (0.00%)
Market
Price
$0.41 @ 0.000132 ETH
Onchain Market Cap
$407,401,940.50
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000008589934592 CYMIValue
$0.00 ( ~0 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CryptMI
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-05 */ // SPDX-License-Identifier: MIT // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol // 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; } } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol // 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); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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 {} } // File: CYMI.sol pragma solidity ^0.8.17; contract CryptMI is ERC20{ address public admin; constructor() ERC20('CryptMI','CYMI'){ _mint(msg.sender,1000000000*10**18); admin=msg.sender; } function mint(address to, uint amount) external{ require(msg.sender==admin,'only admin'); _mint(to,amount); } function burn(uint amount) external{ _burn(msg.sender, amount); } }
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":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[{"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","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":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600781526020017f43727970744d49000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f43594d490000000000000000000000000000000000000000000000000000000081525081600390816200008f9190620004fa565b508060049081620000a19190620004fa565b505050620000c2336b033b2e3c9fd0803ce80000006200010960201b60201c565b33600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620006fc565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200017b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001729062000642565b60405180910390fd5b6200018f600083836200027660201b60201c565b8060026000828254620001a3919062000693565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002569190620006df565b60405180910390a362000272600083836200027b60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200030257607f821691505b602082108103620003185762000317620002ba565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000343565b6200038e868362000343565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003db620003d5620003cf84620003a6565b620003b0565b620003a6565b9050919050565b6000819050919050565b620003f783620003ba565b6200040f6200040682620003e2565b84845462000350565b825550505050565b600090565b6200042662000417565b62000433818484620003ec565b505050565b5b818110156200045b576200044f6000826200041c565b60018101905062000439565b5050565b601f821115620004aa5762000474816200031e565b6200047f8462000333565b810160208510156200048f578190505b620004a76200049e8562000333565b83018262000438565b50505b505050565b600082821c905092915050565b6000620004cf60001984600802620004af565b1980831691505092915050565b6000620004ea8383620004bc565b9150826002028217905092915050565b620005058262000280565b67ffffffffffffffff8111156200052157620005206200028b565b5b6200052d8254620002e9565b6200053a8282856200045f565b600060209050601f8311600181146200057257600084156200055d578287015190505b620005698582620004dc565b865550620005d9565b601f19841662000582866200031e565b60005b82811015620005ac5784890151825560018201915060208501945060208101905062000585565b86831015620005cc5784890151620005c8601f891682620004bc565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200062a601f83620005e1565b91506200063782620005f2565b602082019050919050565b600060208201905081810360008301526200065d816200061b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620006a082620003a6565b9150620006ad83620003a6565b9250828201905080821115620006c857620006c762000664565b5b92915050565b620006d981620003a6565b82525050565b6000602082019050620006f66000830184620006ce565b92915050565b61190d806200070c6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806342966c681161008c578063a457c2d711610066578063a457c2d71461025f578063a9059cbb1461028f578063dd62ed3e146102bf578063f851a440146102ef576100ea565b806342966c68146101f557806370a082311461021157806395d89b4114610241576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806340c10f19146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761030d565b6040516101049190610f97565b60405180910390f35b61012760048036038101906101229190611052565b61039f565b60405161013491906110ad565b60405180910390f35b6101456103c2565b60405161015291906110d7565b60405180910390f35b610175600480360381019061017091906110f2565b6103cc565b60405161018291906110ad565b60405180910390f35b6101936103fb565b6040516101a09190611161565b60405180910390f35b6101c360048036038101906101be9190611052565b610404565b6040516101d091906110ad565b60405180910390f35b6101f360048036038101906101ee9190611052565b61043b565b005b61020f600480360381019061020a919061117c565b6104d9565b005b61022b600480360381019061022691906111a9565b6104e6565b60405161023891906110d7565b60405180910390f35b61024961052e565b6040516102569190610f97565b60405180910390f35b61027960048036038101906102749190611052565b6105c0565b60405161028691906110ad565b60405180910390f35b6102a960048036038101906102a49190611052565b610637565b6040516102b691906110ad565b60405180910390f35b6102d960048036038101906102d491906111d6565b61065a565b6040516102e691906110d7565b60405180910390f35b6102f76106e1565b6040516103049190611225565b60405180910390f35b60606003805461031c9061126f565b80601f01602080910402602001604051908101604052809291908181526020018280546103489061126f565b80156103955780601f1061036a57610100808354040283529160200191610395565b820191906000526020600020905b81548152906001019060200180831161037857829003601f168201915b5050505050905090565b6000806103aa610707565b90506103b781858561070f565b600191505092915050565b6000600254905090565b6000806103d7610707565b90506103e48582856108d8565b6103ef858585610964565b60019150509392505050565b60006012905090565b60008061040f610707565b9050610430818585610421858961065a565b61042b91906112cf565b61070f565b600191505092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c29061134f565b60405180910390fd5b6104d58282610bda565b5050565b6104e33382610d30565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461053d9061126f565b80601f01602080910402602001604051908101604052809291908181526020018280546105699061126f565b80156105b65780601f1061058b576101008083540402835291602001916105b6565b820191906000526020600020905b81548152906001019060200180831161059957829003601f168201915b5050505050905090565b6000806105cb610707565b905060006105d9828661065a565b90508381101561061e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610615906113e1565b60405180910390fd5b61062b828686840361070f565b60019250505092915050565b600080610642610707565b905061064f818585610964565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361077e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077590611473565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e490611505565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108cb91906110d7565b60405180910390a3505050565b60006108e4848461065a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461095e5781811015610950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094790611571565b60405180910390fd5b61095d848484840361070f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca90611603565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3990611695565b60405180910390fd5b610a4d838383610efd565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca90611727565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bc191906110d7565b60405180910390a3610bd4848484610f02565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090611793565b60405180910390fd5b610c5560008383610efd565b8060026000828254610c6791906112cf565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d1891906110d7565b60405180910390a3610d2c60008383610f02565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690611825565b60405180910390fd5b610dab82600083610efd565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e28906118b7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ee491906110d7565b60405180910390a3610ef883600084610f02565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f41578082015181840152602081019050610f26565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f6982610f07565b610f738185610f12565b9350610f83818560208601610f23565b610f8c81610f4d565b840191505092915050565b60006020820190508181036000830152610fb18184610f5e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610fe982610fbe565b9050919050565b610ff981610fde565b811461100457600080fd5b50565b60008135905061101681610ff0565b92915050565b6000819050919050565b61102f8161101c565b811461103a57600080fd5b50565b60008135905061104c81611026565b92915050565b6000806040838503121561106957611068610fb9565b5b600061107785828601611007565b92505060206110888582860161103d565b9150509250929050565b60008115159050919050565b6110a781611092565b82525050565b60006020820190506110c2600083018461109e565b92915050565b6110d18161101c565b82525050565b60006020820190506110ec60008301846110c8565b92915050565b60008060006060848603121561110b5761110a610fb9565b5b600061111986828701611007565b935050602061112a86828701611007565b925050604061113b8682870161103d565b9150509250925092565b600060ff82169050919050565b61115b81611145565b82525050565b60006020820190506111766000830184611152565b92915050565b60006020828403121561119257611191610fb9565b5b60006111a08482850161103d565b91505092915050565b6000602082840312156111bf576111be610fb9565b5b60006111cd84828501611007565b91505092915050565b600080604083850312156111ed576111ec610fb9565b5b60006111fb85828601611007565b925050602061120c85828601611007565b9150509250929050565b61121f81610fde565b82525050565b600060208201905061123a6000830184611216565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061128757607f821691505b60208210810361129a57611299611240565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006112da8261101c565b91506112e58361101c565b92508282019050808211156112fd576112fc6112a0565b5b92915050565b7f6f6e6c792061646d696e00000000000000000000000000000000000000000000600082015250565b6000611339600a83610f12565b915061134482611303565b602082019050919050565b600060208201905081810360008301526113688161132c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006113cb602583610f12565b91506113d68261136f565b604082019050919050565b600060208201905081810360008301526113fa816113be565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061145d602483610f12565b915061146882611401565b604082019050919050565b6000602082019050818103600083015261148c81611450565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006114ef602283610f12565b91506114fa82611493565b604082019050919050565b6000602082019050818103600083015261151e816114e2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061155b601d83610f12565b915061156682611525565b602082019050919050565b6000602082019050818103600083015261158a8161154e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006115ed602583610f12565b91506115f882611591565b604082019050919050565b6000602082019050818103600083015261161c816115e0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061167f602383610f12565b915061168a82611623565b604082019050919050565b600060208201905081810360008301526116ae81611672565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611711602683610f12565b915061171c826116b5565b604082019050919050565b6000602082019050818103600083015261174081611704565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061177d601f83610f12565b915061178882611747565b602082019050919050565b600060208201905081810360008301526117ac81611770565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061180f602183610f12565b915061181a826117b3565b604082019050919050565b6000602082019050818103600083015261183e81611802565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006118a1602283610f12565b91506118ac82611845565b604082019050919050565b600060208201905081810360008301526118d081611894565b905091905056fea2646970667358221220b20aa24459174e69177fa47f2017e3f96bd44467a091a627be07855dd8c06f2164736f6c63430008110033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806342966c681161008c578063a457c2d711610066578063a457c2d71461025f578063a9059cbb1461028f578063dd62ed3e146102bf578063f851a440146102ef576100ea565b806342966c68146101f557806370a082311461021157806395d89b4114610241576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806340c10f19146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761030d565b6040516101049190610f97565b60405180910390f35b61012760048036038101906101229190611052565b61039f565b60405161013491906110ad565b60405180910390f35b6101456103c2565b60405161015291906110d7565b60405180910390f35b610175600480360381019061017091906110f2565b6103cc565b60405161018291906110ad565b60405180910390f35b6101936103fb565b6040516101a09190611161565b60405180910390f35b6101c360048036038101906101be9190611052565b610404565b6040516101d091906110ad565b60405180910390f35b6101f360048036038101906101ee9190611052565b61043b565b005b61020f600480360381019061020a919061117c565b6104d9565b005b61022b600480360381019061022691906111a9565b6104e6565b60405161023891906110d7565b60405180910390f35b61024961052e565b6040516102569190610f97565b60405180910390f35b61027960048036038101906102749190611052565b6105c0565b60405161028691906110ad565b60405180910390f35b6102a960048036038101906102a49190611052565b610637565b6040516102b691906110ad565b60405180910390f35b6102d960048036038101906102d491906111d6565b61065a565b6040516102e691906110d7565b60405180910390f35b6102f76106e1565b6040516103049190611225565b60405180910390f35b60606003805461031c9061126f565b80601f01602080910402602001604051908101604052809291908181526020018280546103489061126f565b80156103955780601f1061036a57610100808354040283529160200191610395565b820191906000526020600020905b81548152906001019060200180831161037857829003601f168201915b5050505050905090565b6000806103aa610707565b90506103b781858561070f565b600191505092915050565b6000600254905090565b6000806103d7610707565b90506103e48582856108d8565b6103ef858585610964565b60019150509392505050565b60006012905090565b60008061040f610707565b9050610430818585610421858961065a565b61042b91906112cf565b61070f565b600191505092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c29061134f565b60405180910390fd5b6104d58282610bda565b5050565b6104e33382610d30565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461053d9061126f565b80601f01602080910402602001604051908101604052809291908181526020018280546105699061126f565b80156105b65780601f1061058b576101008083540402835291602001916105b6565b820191906000526020600020905b81548152906001019060200180831161059957829003601f168201915b5050505050905090565b6000806105cb610707565b905060006105d9828661065a565b90508381101561061e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610615906113e1565b60405180910390fd5b61062b828686840361070f565b60019250505092915050565b600080610642610707565b905061064f818585610964565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361077e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077590611473565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e490611505565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108cb91906110d7565b60405180910390a3505050565b60006108e4848461065a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461095e5781811015610950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094790611571565b60405180910390fd5b61095d848484840361070f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca90611603565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3990611695565b60405180910390fd5b610a4d838383610efd565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca90611727565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bc191906110d7565b60405180910390a3610bd4848484610f02565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090611793565b60405180910390fd5b610c5560008383610efd565b8060026000828254610c6791906112cf565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d1891906110d7565b60405180910390a3610d2c60008383610f02565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690611825565b60405180910390fd5b610dab82600083610efd565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e28906118b7565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ee491906110d7565b60405180910390a3610ef883600084610f02565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f41578082015181840152602081019050610f26565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f6982610f07565b610f738185610f12565b9350610f83818560208601610f23565b610f8c81610f4d565b840191505092915050565b60006020820190508181036000830152610fb18184610f5e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610fe982610fbe565b9050919050565b610ff981610fde565b811461100457600080fd5b50565b60008135905061101681610ff0565b92915050565b6000819050919050565b61102f8161101c565b811461103a57600080fd5b50565b60008135905061104c81611026565b92915050565b6000806040838503121561106957611068610fb9565b5b600061107785828601611007565b92505060206110888582860161103d565b9150509250929050565b60008115159050919050565b6110a781611092565b82525050565b60006020820190506110c2600083018461109e565b92915050565b6110d18161101c565b82525050565b60006020820190506110ec60008301846110c8565b92915050565b60008060006060848603121561110b5761110a610fb9565b5b600061111986828701611007565b935050602061112a86828701611007565b925050604061113b8682870161103d565b9150509250925092565b600060ff82169050919050565b61115b81611145565b82525050565b60006020820190506111766000830184611152565b92915050565b60006020828403121561119257611191610fb9565b5b60006111a08482850161103d565b91505092915050565b6000602082840312156111bf576111be610fb9565b5b60006111cd84828501611007565b91505092915050565b600080604083850312156111ed576111ec610fb9565b5b60006111fb85828601611007565b925050602061120c85828601611007565b9150509250929050565b61121f81610fde565b82525050565b600060208201905061123a6000830184611216565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061128757607f821691505b60208210810361129a57611299611240565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006112da8261101c565b91506112e58361101c565b92508282019050808211156112fd576112fc6112a0565b5b92915050565b7f6f6e6c792061646d696e00000000000000000000000000000000000000000000600082015250565b6000611339600a83610f12565b915061134482611303565b602082019050919050565b600060208201905081810360008301526113688161132c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006113cb602583610f12565b91506113d68261136f565b604082019050919050565b600060208201905081810360008301526113fa816113be565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061145d602483610f12565b915061146882611401565b604082019050919050565b6000602082019050818103600083015261148c81611450565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006114ef602283610f12565b91506114fa82611493565b604082019050919050565b6000602082019050818103600083015261151e816114e2565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061155b601d83610f12565b915061156682611525565b602082019050919050565b6000602082019050818103600083015261158a8161154e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006115ed602583610f12565b91506115f882611591565b604082019050919050565b6000602082019050818103600083015261161c816115e0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061167f602383610f12565b915061168a82611623565b604082019050919050565b600060208201905081810360008301526116ae81611672565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611711602683610f12565b915061171c826116b5565b604082019050919050565b6000602082019050818103600083015261174081611704565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061177d601f83610f12565b915061178882611747565b602082019050919050565b600060208201905081810360008301526117ac81611770565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061180f602183610f12565b915061181a826117b3565b604082019050919050565b6000602082019050818103600083015261183e81611802565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006118a1602283610f12565b91506118ac82611845565b604082019050919050565b600060208201905081810360008301526118d081611894565b905091905056fea2646970667358221220b20aa24459174e69177fa47f2017e3f96bd44467a091a627be07855dd8c06f2164736f6c63430008110033
Deployed Bytecode Sourcemap
18143:435:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6896:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9247:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8016:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10028:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7858:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10732:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18342:138;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18492:83;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8187:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7115:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11473:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8520:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8776:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18177:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6896:100;6950:13;6983:5;6976:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6896:100;:::o;9247:201::-;9330:4;9347:13;9363:12;:10;:12::i;:::-;9347:28;;9386:32;9395:5;9402:7;9411:6;9386:8;:32::i;:::-;9436:4;9429:11;;;9247:201;;;;:::o;8016:108::-;8077:7;8104:12;;8097:19;;8016:108;:::o;10028:295::-;10159:4;10176:15;10194:12;:10;:12::i;:::-;10176:30;;10217:38;10233:4;10239:7;10248:6;10217:15;:38::i;:::-;10266:27;10276:4;10282:2;10286:6;10266:9;:27::i;:::-;10311:4;10304:11;;;10028:295;;;;;:::o;7858:93::-;7916:5;7941:2;7934:9;;7858:93;:::o;10732:238::-;10820:4;10837:13;10853:12;:10;:12::i;:::-;10837:28;;10876:64;10885:5;10892:7;10929:10;10901:25;10911:5;10918:7;10901:9;:25::i;:::-;:38;;;;:::i;:::-;10876:8;:64::i;:::-;10958:4;10951:11;;;10732:238;;;;:::o;18342:138::-;18422:5;;;;;;;;;;;18410:17;;:10;:17;;;18402:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;18454:16;18460:2;18463:6;18454:5;:16::i;:::-;18342:138;;:::o;18492:83::-;18540:25;18546:10;18558:6;18540:5;:25::i;:::-;18492:83;:::o;8187:127::-;8261:7;8288:9;:18;8298:7;8288:18;;;;;;;;;;;;;;;;8281:25;;8187:127;;;:::o;7115:104::-;7171:13;7204:7;7197:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7115:104;:::o;11473:436::-;11566:4;11583:13;11599:12;:10;:12::i;:::-;11583:28;;11622:24;11649:25;11659:5;11666:7;11649:9;:25::i;:::-;11622:52;;11713:15;11693:16;:35;;11685:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11806:60;11815:5;11822:7;11850:15;11831:16;:34;11806:8;:60::i;:::-;11897:4;11890:11;;;;11473:436;;;;:::o;8520:193::-;8599:4;8616:13;8632:12;:10;:12::i;:::-;8616:28;;8655;8665:5;8672:2;8676:6;8655:9;:28::i;:::-;8701:4;8694:11;;;8520:193;;;;:::o;8776:151::-;8865:7;8892:11;:18;8904:5;8892:18;;;;;;;;;;;;;;;:27;8911:7;8892:27;;;;;;;;;;;;;;;;8885:34;;8776:151;;;;:::o;18177:20::-;;;;;;;;;;;;;:::o;765:98::-;818:7;845:10;838:17;;765:98;:::o;15500:380::-;15653:1;15636:19;;:5;:19;;;15628:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15734:1;15715:21;;:7;:21;;;15707:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15818:6;15788:11;:18;15800:5;15788:18;;;;;;;;;;;;;;;:27;15807:7;15788:27;;;;;;;;;;;;;;;:36;;;;15856:7;15840:32;;15849:5;15840:32;;;15865:6;15840:32;;;;;;:::i;:::-;;;;;;;;15500:380;;;:::o;16171:453::-;16306:24;16333:25;16343:5;16350:7;16333:9;:25::i;:::-;16306:52;;16393:17;16373:16;:37;16369:248;;16455:6;16435:16;:26;;16427:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16539:51;16548:5;16555:7;16583:6;16564:16;:25;16539:8;:51::i;:::-;16369:248;16295:329;16171:453;;;:::o;12379:840::-;12526:1;12510:18;;:4;:18;;;12502:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12603:1;12589:16;;:2;:16;;;12581:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12658:38;12679:4;12685:2;12689:6;12658:20;:38::i;:::-;12709:19;12731:9;:15;12741:4;12731:15;;;;;;;;;;;;;;;;12709:37;;12780:6;12765:11;:21;;12757:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12897:6;12883:11;:20;12865:9;:15;12875:4;12865:15;;;;;;;;;;;;;;;:38;;;;13100:6;13083:9;:13;13093:2;13083:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;13150:2;13135:26;;13144:4;13135:26;;;13154:6;13135:26;;;;;;:::i;:::-;;;;;;;;13174:37;13194:4;13200:2;13204:6;13174:19;:37::i;:::-;12491:728;12379:840;;;:::o;13506:548::-;13609:1;13590:21;;:7;:21;;;13582:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13660:49;13689:1;13693:7;13702:6;13660:20;:49::i;:::-;13738:6;13722:12;;:22;;;;;;;:::i;:::-;;;;;;;;13915:6;13893:9;:18;13903:7;13893:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;13969:7;13948:37;;13965:1;13948:37;;;13978:6;13948:37;;;;;;:::i;:::-;;;;;;;;13998:48;14026:1;14030:7;14039:6;13998:19;:48::i;:::-;13506:548;;:::o;14387:675::-;14490:1;14471:21;;:7;:21;;;14463:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14543:49;14564:7;14581:1;14585:6;14543:20;:49::i;:::-;14605:22;14630:9;:18;14640:7;14630:18;;;;;;;;;;;;;;;;14605:43;;14685:6;14667:14;:24;;14659:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14804:6;14787:14;:23;14766:9;:18;14776:7;14766:18;;;;;;;;;;;;;;;:44;;;;14921:6;14905:12;;:22;;;;;;;;;;;14982:1;14956:37;;14965:7;14956:37;;;14986:6;14956:37;;;;;;:::i;:::-;;;;;;;;15006:48;15026:7;15043:1;15047:6;15006:19;:48::i;:::-;14452:610;14387:675;;:::o;17224:125::-;;;;:::o;17953:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:474::-;5591:6;5599;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5901:2;5927:53;5972:7;5963:6;5952:9;5948:22;5927:53;:::i;:::-;5917:63;;5872:118;5523:474;;;;;:::o;6003:118::-;6090:24;6108:5;6090:24;:::i;:::-;6085:3;6078:37;6003:118;;:::o;6127:222::-;6220:4;6258:2;6247:9;6243:18;6235:26;;6271:71;6339:1;6328:9;6324:17;6315:6;6271:71;:::i;:::-;6127:222;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:191;7093:3;7112:20;7130:1;7112:20;:::i;:::-;7107:25;;7146:20;7164:1;7146:20;:::i;:::-;7141:25;;7189:1;7186;7182:9;7175:16;;7210:3;7207:1;7204:10;7201:36;;;7217:18;;:::i;:::-;7201:36;7053:191;;;;:::o;7250:160::-;7390:12;7386:1;7378:6;7374:14;7367:36;7250:160;:::o;7416:366::-;7558:3;7579:67;7643:2;7638:3;7579:67;:::i;:::-;7572:74;;7655:93;7744:3;7655:93;:::i;:::-;7773:2;7768:3;7764:12;7757:19;;7416:366;;;:::o;7788:419::-;7954:4;7992:2;7981:9;7977:18;7969:26;;8041:9;8035:4;8031:20;8027:1;8016:9;8012:17;8005:47;8069:131;8195:4;8069:131;:::i;:::-;8061:139;;7788:419;;;:::o;8213:224::-;8353:34;8349:1;8341:6;8337:14;8330:58;8422:7;8417:2;8409:6;8405:15;8398:32;8213:224;:::o;8443:366::-;8585:3;8606:67;8670:2;8665:3;8606:67;:::i;:::-;8599:74;;8682:93;8771:3;8682:93;:::i;:::-;8800:2;8795:3;8791:12;8784:19;;8443:366;;;:::o;8815:419::-;8981:4;9019:2;9008:9;9004:18;8996:26;;9068:9;9062:4;9058:20;9054:1;9043:9;9039:17;9032:47;9096:131;9222:4;9096:131;:::i;:::-;9088:139;;8815:419;;;:::o;9240:223::-;9380:34;9376:1;9368:6;9364:14;9357:58;9449:6;9444:2;9436:6;9432:15;9425:31;9240:223;:::o;9469:366::-;9611:3;9632:67;9696:2;9691:3;9632:67;:::i;:::-;9625:74;;9708:93;9797:3;9708:93;:::i;:::-;9826:2;9821:3;9817:12;9810:19;;9469:366;;;:::o;9841:419::-;10007:4;10045:2;10034:9;10030:18;10022:26;;10094:9;10088:4;10084:20;10080:1;10069:9;10065:17;10058:47;10122:131;10248:4;10122:131;:::i;:::-;10114:139;;9841:419;;;:::o;10266:221::-;10406:34;10402:1;10394:6;10390:14;10383:58;10475:4;10470:2;10462:6;10458:15;10451:29;10266:221;:::o;10493:366::-;10635:3;10656:67;10720:2;10715:3;10656:67;:::i;:::-;10649:74;;10732:93;10821:3;10732:93;:::i;:::-;10850:2;10845:3;10841:12;10834:19;;10493:366;;;:::o;10865:419::-;11031:4;11069:2;11058:9;11054:18;11046:26;;11118:9;11112:4;11108:20;11104:1;11093:9;11089:17;11082:47;11146:131;11272:4;11146:131;:::i;:::-;11138:139;;10865:419;;;:::o;11290:179::-;11430:31;11426:1;11418:6;11414:14;11407:55;11290:179;:::o;11475:366::-;11617:3;11638:67;11702:2;11697:3;11638:67;:::i;:::-;11631:74;;11714:93;11803:3;11714:93;:::i;:::-;11832:2;11827:3;11823:12;11816:19;;11475:366;;;:::o;11847:419::-;12013:4;12051:2;12040:9;12036:18;12028:26;;12100:9;12094:4;12090:20;12086:1;12075:9;12071:17;12064:47;12128:131;12254:4;12128:131;:::i;:::-;12120:139;;11847:419;;;:::o;12272:224::-;12412:34;12408:1;12400:6;12396:14;12389:58;12481:7;12476:2;12468:6;12464:15;12457:32;12272:224;:::o;12502:366::-;12644:3;12665:67;12729:2;12724:3;12665:67;:::i;:::-;12658:74;;12741:93;12830:3;12741:93;:::i;:::-;12859:2;12854:3;12850:12;12843:19;;12502:366;;;:::o;12874:419::-;13040:4;13078:2;13067:9;13063:18;13055:26;;13127:9;13121:4;13117:20;13113:1;13102:9;13098:17;13091:47;13155:131;13281:4;13155:131;:::i;:::-;13147:139;;12874:419;;;:::o;13299:222::-;13439:34;13435:1;13427:6;13423:14;13416:58;13508:5;13503:2;13495:6;13491:15;13484:30;13299:222;:::o;13527:366::-;13669:3;13690:67;13754:2;13749:3;13690:67;:::i;:::-;13683:74;;13766:93;13855:3;13766:93;:::i;:::-;13884:2;13879:3;13875:12;13868:19;;13527:366;;;:::o;13899:419::-;14065:4;14103:2;14092:9;14088:18;14080:26;;14152:9;14146:4;14142:20;14138:1;14127:9;14123:17;14116:47;14180:131;14306:4;14180:131;:::i;:::-;14172:139;;13899:419;;;:::o;14324:225::-;14464:34;14460:1;14452:6;14448:14;14441:58;14533:8;14528:2;14520:6;14516:15;14509:33;14324:225;:::o;14555:366::-;14697:3;14718:67;14782:2;14777:3;14718:67;:::i;:::-;14711:74;;14794:93;14883:3;14794:93;:::i;:::-;14912:2;14907:3;14903:12;14896:19;;14555:366;;;:::o;14927:419::-;15093:4;15131:2;15120:9;15116:18;15108:26;;15180:9;15174:4;15170:20;15166:1;15155:9;15151:17;15144:47;15208:131;15334:4;15208:131;:::i;:::-;15200:139;;14927:419;;;:::o;15352:181::-;15492:33;15488:1;15480:6;15476:14;15469:57;15352:181;:::o;15539:366::-;15681:3;15702:67;15766:2;15761:3;15702:67;:::i;:::-;15695:74;;15778:93;15867:3;15778:93;:::i;:::-;15896:2;15891:3;15887:12;15880:19;;15539:366;;;:::o;15911:419::-;16077:4;16115:2;16104:9;16100:18;16092:26;;16164:9;16158:4;16154:20;16150:1;16139:9;16135:17;16128:47;16192:131;16318:4;16192:131;:::i;:::-;16184:139;;15911:419;;;:::o;16336:220::-;16476:34;16472:1;16464:6;16460:14;16453:58;16545:3;16540:2;16532:6;16528:15;16521:28;16336:220;:::o;16562:366::-;16704:3;16725:67;16789:2;16784:3;16725:67;:::i;:::-;16718:74;;16801:93;16890:3;16801:93;:::i;:::-;16919:2;16914:3;16910:12;16903:19;;16562:366;;;:::o;16934:419::-;17100:4;17138:2;17127:9;17123:18;17115:26;;17187:9;17181:4;17177:20;17173:1;17162:9;17158:17;17151:47;17215:131;17341:4;17215:131;:::i;:::-;17207:139;;16934:419;;;:::o;17359:221::-;17499:34;17495:1;17487:6;17483:14;17476:58;17568:4;17563:2;17555:6;17551:15;17544:29;17359:221;:::o;17586:366::-;17728:3;17749:67;17813:2;17808:3;17749:67;:::i;:::-;17742:74;;17825:93;17914:3;17825:93;:::i;:::-;17943:2;17938:3;17934:12;17927:19;;17586:366;;;:::o;17958:419::-;18124:4;18162:2;18151:9;18147:18;18139:26;;18211:9;18205:4;18201:20;18197:1;18186:9;18182:17;18175:47;18239:131;18365:4;18239:131;:::i;:::-;18231:139;;17958:419;;;:::o
Swarm Source
ipfs://b20aa24459174e69177fa47f2017e3f96bd44467a091a627be07855dd8c06f21
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.