ERC-20
Overview
Max Total Supply
500,166,550,001,050 MMD
Holders
175
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,000,000,000 MMDValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MaskDAO
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-12-30 */ // Sources flattened with hardhat v2.5.0 https://hardhat.org // File @openzeppelin/contracts/token/ERC20/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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); } // File @openzeppelin/contracts/interfaces/[email protected] // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol) pragma solidity ^0.8.0; // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // 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 @openzeppelin/contracts/interfaces/[email protected] // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20Metadata.sol) pragma solidity ^0.8.0; // File @openzeppelin/contracts/utils/[email protected] // 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 contracts/opendao/ERC20.sol // OpenZeppelin Contracts v4.4.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.zeppelin.solutions/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 { struct MintBalance { uint8 minted; uint248 balance; } mapping(address => MintBalance) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 internal _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].balance; } function minted(address account) public view returns (uint256) { return _balances[account].minted; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender].balance; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender].balance = uint248(senderBalance - amount); } _balances[recipient].balance += uint248(amount); emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. inviter exclusive * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mintInvite(address account, uint256 amount) internal virtual { // require(account != address(0), "ERC20: mint to the zero address"); // _beforeTokenTransfer(address(0), account, amount); // _totalSupply += amount; uint256 b = _balances[account].balance + amount; _balances[account].balance = uint248(b); emit Transfer(address(0), account, amount); // _afterTokenTransfer(address(0), account, 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; uint256 b = _balances[account].balance + amount; _balances[account].balance = uint248(b); _balances[account].minted = 1; 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].balance; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account].balance = uint248(accountBalance - amount); } _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 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 @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/cryptography/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // File @openzeppelin/contracts/utils/cryptography/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol) pragma solidity ^0.8.0; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ */ abstract contract EIP712 { /* solhint-disable var-name-mixedcase */ // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; uint256 private immutable _CACHED_CHAIN_ID; address private immutable _CACHED_THIS; bytes32 private immutable _HASHED_NAME; bytes32 private immutable _HASHED_VERSION; bytes32 private immutable _TYPE_HASH; /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); bytes32 typeHash = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion); _CACHED_THIS = address(this); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } } // File contracts/opendao/MaskDAO.sol pragma solidity ^0.8.0; contract MaskDAO is ERC20, EIP712 { uint256 public constant MAX_SUPPLY = uint248(1e15 ether); // for DAO. uint256 public constant AMOUNT_DAO = MAX_SUPPLY / 100 * 20; address public constant ADDR_DAO = 0x052E63883450109fC383ccd396d81835b669c1FC; // for staking uint256 public constant AMOUNT_STAKING = MAX_SUPPLY / 100 * 20; address public constant ADDR_STAKING = 0xE83225466fFc1606837785ae995468e842Cf64DF; // for liquidity providers uint256 public constant AMOUNT_LP = MAX_SUPPLY / 100 * 10; address public constant ADDR_LP = 0xB3146A6D577214090D20Ce6348271dE72C1D65ba; // for airdrop uint256 public constant AMOUNT_AIREDROP = MAX_SUPPLY - (AMOUNT_DAO + AMOUNT_STAKING + AMOUNT_LP); constructor(string memory _name, string memory _symbol, address _signer) ERC20(_name, _symbol) EIP712("MaskDAO", "1") { _mint(ADDR_DAO, AMOUNT_DAO); _mint(ADDR_STAKING, AMOUNT_STAKING); _mint(ADDR_LP, AMOUNT_LP); _totalSupply = AMOUNT_DAO + AMOUNT_STAKING + AMOUNT_LP; cSigner = _signer; } bytes32 constant public MINT_CALL_HASH_TYPE = keccak256("mint(address receiver,uint256 amount)"); address public immutable cSigner; function claim(uint256 amountV, bytes32 r, bytes32 s, address inviter) external { require(msg.sender != inviter, "MaskDAO: Not invite self"); uint256 amount = uint248(amountV); uint8 v = uint8(amountV >> 248); uint256 inviteAmount; if(inviter != address(0)){ inviteAmount = amount * 5e16 / 1e18; } uint256 total = _totalSupply + amount + inviteAmount; require(total <= MAX_SUPPLY, "MaskDAO: Exceed max supply"); require(minted(msg.sender) == 0, "MaskDAO: Claimed"); bytes32 digest = keccak256(abi.encode(MINT_CALL_HASH_TYPE, msg.sender, amount)); require(ecrecover(digest, v, r, s) == cSigner, "MaskDAO: Invalid signer"); _totalSupply = total; _mint(msg.sender, amount); if(inviteAmount > 0){ _mintInvite(inviter, inviteAmount); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_signer","type":"address"}],"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":"ADDR_DAO","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDR_LP","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDR_STAKING","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AMOUNT_AIREDROP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AMOUNT_DAO","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AMOUNT_LP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AMOUNT_STAKING","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_CALL_HASH_TYPE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[],"name":"cSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountV","type":"uint256"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"},{"internalType":"address","name":"inviter","type":"address"}],"name":"claim","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":"account","type":"address"}],"name":"minted","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":"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101606040523480156200001257600080fd5b506040516200186e3803806200186e8339810160408190526200003591620004ae565b604051806040016040528060078152602001664d61736b44414f60c81b815250604051806040016040528060018152602001603160f81b81525084848160039080519060200190620000899291906200035d565b5080516200009f9060049060208401906200035d565b5050825160208085019190912083519184019190912060e08290526101008190524660a0529091507f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f620000f581848462000273565b6080523060601b60c052610120525062000151925073052e63883450109fc383ccd396d81835b669c1fc91506200013e905060646d314dc6448d9338c15b0a0000000062000587565b6200014b906014620005a8565b620002af565b6200018573e83225466ffc1606837785ae995468e842cf64df6200013e60646d314dc6448d9338c15b0a0000000062000587565b620001c673b3146a6d577214090d20ce6348271de72c1d65ba620001b960646d314dc6448d9338c15b0a0000000062000587565b6200014b90600a620005a8565b620001e160646d314dc6448d9338c15b0a0000000062000587565b620001ee90600a620005a8565b6200020960646d314dc6448d9338c15b0a0000000062000587565b62000216906014620005a8565b6200023160646d314dc6448d9338c15b0a0000000062000587565b6200023e906014620005a8565b6200024a91906200056c565b6200025691906200056c565b60025560601b6001600160601b0319166101405250620006339050565b600083838346306040516020016200029095949392919062000537565b6040516020818303038152906040528051906020012090509392505050565b6001600160a01b038216600090815260208190526040812054620002e390839061010090046001600160f81b03166200056c565b6001600160a01b03841660008181526020819052604080822080546001600160f81b0386166101000260ff9091161760ff191660011790555192935090917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200035090869062000563565b60405180910390a3505050565b8280546200036b90620005ca565b90600052602060002090601f0160209004810192826200038f5760008555620003da565b82601f10620003aa57805160ff1916838001178555620003da565b82800160010185558215620003da579182015b82811115620003da578251825591602001919060010190620003bd565b50620003e8929150620003ec565b5090565b5b80821115620003e85760008155600101620003ed565b600082601f83011262000414578081fd5b81516001600160401b03808211156200043157620004316200061d565b6040516020601f8401601f19168201810183811183821017156200045957620004596200061d565b604052838252858401810187101562000470578485fd5b8492505b8383101562000493578583018101518284018201529182019162000474565b83831115620004a457848185840101525b5095945050505050565b600080600060608486031215620004c3578283fd5b83516001600160401b0380821115620004da578485fd5b620004e88783880162000403565b94506020860151915080821115620004fe578384fd5b506200050d8682870162000403565b604086015190935090506001600160a01b03811681146200052c578182fd5b809150509250925092565b9485526020850193909352604084019190915260608301526001600160a01b0316608082015260a00190565b90815260200190565b6000821982111562000582576200058262000607565b500190565b600082620005a357634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615620005c557620005c562000607565b500290565b600281046001821680620005df57607f821691505b602082108114156200060157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b60805160a05160c05160601c60e05161010051610120516101405160601c6111e562000689600039600081816104a5015261068201526000505060005050600050506000505060005050600050506111e56000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063720248de116100c3578063a9059cbb1161007c578063a9059cbb14610273578063b43bbd111461022b578063c688387f14610286578063da394aec1461028e578063dd62ed3e14610296578063fdfe8d64146102a95761014d565b8063720248de1461022b57806375df1d7c1461023357806386fdbdc11461023b5780638f0dbd251461024357806395d89b4114610258578063a457c2d7146102605761014d565b8063313ce56711610115578063313ce567146101cb57806332cb6b0c146101e057806339509351146101e857806346de2673146101fb5780635760cc5d1461021057806370a08231146102185761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101905780631e7269c5146101a557806323b872dd146101b8575b600080fd5b61015a6102b1565b6040516101679190610db4565b60405180910390f35b61018361017e366004610ce8565b610343565b6040516101679190610d63565b610198610360565b6040516101679190610d6e565b6101986101b3366004610c5a565b610366565b6101836101c6366004610cad565b610388565b6101d3610421565b60405161016791906110b7565b610198610426565b6101836101f6366004610ce8565b610437565b61020361048b565b6040516101679190610d4f565b6102036104a3565b610198610226366004610c5a565b6104c7565b6101986104f0565b610203610516565b61019861052e565b610256610251366004610d11565b610551565b005b61015a610749565b61018361026e366004610ce8565b610758565b610183610281366004610ce8565b6107d1565b6101986107e5565b610203610809565b6101986102a4366004610c7b565b610821565b61019861084c565b6060600380546102c09061115e565b80601f01602080910402602001604051908101604052809291908181526020018280546102ec9061115e565b80156103395780601f1061030e57610100808354040283529160200191610339565b820191906000526020600020905b81548152906001019060200180831161031c57829003601f168201915b5050505050905090565b60006103576103506108e0565b84846108e4565b50600192915050565b60025490565b6001600160a01b03811660009081526020819052604090205460ff165b919050565b6000610395848484610998565b6001600160a01b0384166000908152600160205260408120816103b66108e0565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156104025760405162461bcd60e51b81526004016103f990610fa1565b60405180910390fd5b6104168561040e6108e0565b8584036108e4565b506001949350505050565b601290565b6918a6e32246c99c60ad8560211b81565b60006103576104446108e0565b8484600160006104526108e0565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205461048691906110f0565b6108e4565b73b3146a6d577214090d20ce6348271de72c1d65ba81565b7f000000000000000000000000000000000000000000000000000000000000000081565b6001600160a01b031660009081526020819052604090205461010090046001600160f81b031690565b61050860646918a6e32246c99c60ad8560211b611108565b610513906014611128565b81565b73e83225466ffc1606837785ae995468e842cf64df81565b61054660646918a6e32246c99c60ad8560211b611108565b61051390600a611128565b336001600160a01b038216141561057a5760405162461bcd60e51b81526004016103f990610e4a565b6001600160f81b03841660f885901c60006001600160a01b038416156105c157670de0b6b3a76400006105b48466b1a2bc2ec50000611128565b6105be9190611108565b90505b600081846002546105d291906110f0565b6105dc91906110f0565b90506918a6e32246c99c60ad8560211b81111561060b5760405162461bcd60e51b81526004016103f990610f33565b61061433610366565b156106315760405162461bcd60e51b81526004016103f990610f09565b60007f6ac0707cac0c442e03ae738b183f3fb620ee941711ca779bae1b0422a39331ea338660405160200161066893929190610d77565b6040516020818303038152906040528051906020012090507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316600182868b8b604051600081526020016040526040516106cd9493929190610d96565b6020604051602081039080840390855afa1580156106ef573d6000803e3d6000fd5b505050602060405103516001600160a01b03161461071f5760405162461bcd60e51b81526004016103f990610f6a565b600282905561072e3386610b0d565b821561073e5761073e8684610baa565b505050505050505050565b6060600480546102c09061115e565b600080600160006107676108e0565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156107b35760405162461bcd60e51b81526004016103f990611072565b6107c76107be6108e0565b858584036108e4565b5060019392505050565b60006103576107de6108e0565b8484610998565b7f6ac0707cac0c442e03ae738b183f3fb620ee941711ca779bae1b0422a39331ea81565b73052e63883450109fc383ccd396d81835b669c1fc81565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61086460646918a6e32246c99c60ad8560211b611108565b61086f90600a611128565b61088760646918a6e32246c99c60ad8560211b611108565b610892906014611128565b6108aa60646918a6e32246c99c60ad8560211b611108565b6108b5906014611128565b6108bf91906110f0565b6108c991906110f0565b610513906918a6e32246c99c60ad8560211b611147565b3390565b6001600160a01b03831661090a5760405162461bcd60e51b81526004016103f99061102e565b6001600160a01b0382166109305760405162461bcd60e51b81526004016103f990610e81565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061098b908590610d6e565b60405180910390a3505050565b6001600160a01b0383166109be5760405162461bcd60e51b81526004016103f990610fe9565b6001600160a01b0382166109e45760405162461bcd60e51b81526004016103f990610e07565b6109ef838383610c3e565b6001600160a01b03831660009081526020819052604090205461010090046001600160f81b031681811015610a365760405162461bcd60e51b81526004016103f990610ec3565b6001600160a01b03848116600090815260208190526040808220805460ff166101008787036001600160f81b0390811682029290921790925593871683529120805485939192600192610a8d9286929004166110c5565b92506101000a8154816001600160f81b0302191690836001600160f81b03160217905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610af49190610d6e565b60405180910390a3610b07848484610c3e565b50505050565b6001600160a01b038216600090815260208190526040812054610b3f90839061010090046001600160f81b03166110f0565b6001600160a01b03841660008181526020819052604080822080546001600160f81b0386166101000260ff9091161760ff191660011790555192935090917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061098b908690610d6e565b6001600160a01b038216600090815260208190526040812054610bdc90839061010090046001600160f81b03166110f0565b6001600160a01b038416600081815260208190526040808220805460ff166101006001600160f81b038716021790555192935090917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061098b908690610d6e565b505050565b80356001600160a01b038116811461038357600080fd5b600060208284031215610c6b578081fd5b610c7482610c43565b9392505050565b60008060408385031215610c8d578081fd5b610c9683610c43565b9150610ca460208401610c43565b90509250929050565b600080600060608486031215610cc1578081fd5b610cca84610c43565b9250610cd860208501610c43565b9150604084013590509250925092565b60008060408385031215610cfa578182fd5b610d0383610c43565b946020939093013593505050565b60008060008060808587031215610d26578081fd5b843593506020850135925060408501359150610d4460608601610c43565b905092959194509250565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b9283526001600160a01b03919091166020830152604082015260600190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b81811015610de057858101830151858201604001528201610dc4565b81811115610df15783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526018908201527f4d61736b44414f3a204e6f7420696e766974652073656c660000000000000000604082015260600190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526010908201526f13585cdad11053ce8810db185a5b595960821b604082015260600190565b6020808252601a908201527f4d61736b44414f3a20457863656564206d617820737570706c79000000000000604082015260600190565b60208082526017908201527f4d61736b44414f3a20496e76616c6964207369676e6572000000000000000000604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b60ff91909116815260200190565b60006001600160f81b038281168482168083038211156110e7576110e7611199565b01949350505050565b6000821982111561110357611103611199565b500190565b60008261112357634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561114257611142611199565b500290565b60008282101561115957611159611199565b500390565b60028104600182168061117257607f821691505b6020821081141561119357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220434351caf04033cc3e47cbf379837b369cbe6f67289b85c3e3a8e7c3436fc09564736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000a6e88bf53d2a658580273f771f1ee2df3a82a4d00000000000000000000000000000000000000000000000000000000000000034d4d44000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d4d440000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063720248de116100c3578063a9059cbb1161007c578063a9059cbb14610273578063b43bbd111461022b578063c688387f14610286578063da394aec1461028e578063dd62ed3e14610296578063fdfe8d64146102a95761014d565b8063720248de1461022b57806375df1d7c1461023357806386fdbdc11461023b5780638f0dbd251461024357806395d89b4114610258578063a457c2d7146102605761014d565b8063313ce56711610115578063313ce567146101cb57806332cb6b0c146101e057806339509351146101e857806346de2673146101fb5780635760cc5d1461021057806370a08231146102185761014d565b806306fdde0314610152578063095ea7b31461017057806318160ddd146101905780631e7269c5146101a557806323b872dd146101b8575b600080fd5b61015a6102b1565b6040516101679190610db4565b60405180910390f35b61018361017e366004610ce8565b610343565b6040516101679190610d63565b610198610360565b6040516101679190610d6e565b6101986101b3366004610c5a565b610366565b6101836101c6366004610cad565b610388565b6101d3610421565b60405161016791906110b7565b610198610426565b6101836101f6366004610ce8565b610437565b61020361048b565b6040516101679190610d4f565b6102036104a3565b610198610226366004610c5a565b6104c7565b6101986104f0565b610203610516565b61019861052e565b610256610251366004610d11565b610551565b005b61015a610749565b61018361026e366004610ce8565b610758565b610183610281366004610ce8565b6107d1565b6101986107e5565b610203610809565b6101986102a4366004610c7b565b610821565b61019861084c565b6060600380546102c09061115e565b80601f01602080910402602001604051908101604052809291908181526020018280546102ec9061115e565b80156103395780601f1061030e57610100808354040283529160200191610339565b820191906000526020600020905b81548152906001019060200180831161031c57829003601f168201915b5050505050905090565b60006103576103506108e0565b84846108e4565b50600192915050565b60025490565b6001600160a01b03811660009081526020819052604090205460ff165b919050565b6000610395848484610998565b6001600160a01b0384166000908152600160205260408120816103b66108e0565b6001600160a01b03166001600160a01b03168152602001908152602001600020549050828110156104025760405162461bcd60e51b81526004016103f990610fa1565b60405180910390fd5b6104168561040e6108e0565b8584036108e4565b506001949350505050565b601290565b6918a6e32246c99c60ad8560211b81565b60006103576104446108e0565b8484600160006104526108e0565b6001600160a01b03908116825260208083019390935260409182016000908120918b168152925290205461048691906110f0565b6108e4565b73b3146a6d577214090d20ce6348271de72c1d65ba81565b7f0000000000000000000000000a6e88bf53d2a658580273f771f1ee2df3a82a4d81565b6001600160a01b031660009081526020819052604090205461010090046001600160f81b031690565b61050860646918a6e32246c99c60ad8560211b611108565b610513906014611128565b81565b73e83225466ffc1606837785ae995468e842cf64df81565b61054660646918a6e32246c99c60ad8560211b611108565b61051390600a611128565b336001600160a01b038216141561057a5760405162461bcd60e51b81526004016103f990610e4a565b6001600160f81b03841660f885901c60006001600160a01b038416156105c157670de0b6b3a76400006105b48466b1a2bc2ec50000611128565b6105be9190611108565b90505b600081846002546105d291906110f0565b6105dc91906110f0565b90506918a6e32246c99c60ad8560211b81111561060b5760405162461bcd60e51b81526004016103f990610f33565b61061433610366565b156106315760405162461bcd60e51b81526004016103f990610f09565b60007f6ac0707cac0c442e03ae738b183f3fb620ee941711ca779bae1b0422a39331ea338660405160200161066893929190610d77565b6040516020818303038152906040528051906020012090507f0000000000000000000000000a6e88bf53d2a658580273f771f1ee2df3a82a4d6001600160a01b0316600182868b8b604051600081526020016040526040516106cd9493929190610d96565b6020604051602081039080840390855afa1580156106ef573d6000803e3d6000fd5b505050602060405103516001600160a01b03161461071f5760405162461bcd60e51b81526004016103f990610f6a565b600282905561072e3386610b0d565b821561073e5761073e8684610baa565b505050505050505050565b6060600480546102c09061115e565b600080600160006107676108e0565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156107b35760405162461bcd60e51b81526004016103f990611072565b6107c76107be6108e0565b858584036108e4565b5060019392505050565b60006103576107de6108e0565b8484610998565b7f6ac0707cac0c442e03ae738b183f3fb620ee941711ca779bae1b0422a39331ea81565b73052e63883450109fc383ccd396d81835b669c1fc81565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61086460646918a6e32246c99c60ad8560211b611108565b61086f90600a611128565b61088760646918a6e32246c99c60ad8560211b611108565b610892906014611128565b6108aa60646918a6e32246c99c60ad8560211b611108565b6108b5906014611128565b6108bf91906110f0565b6108c991906110f0565b610513906918a6e32246c99c60ad8560211b611147565b3390565b6001600160a01b03831661090a5760405162461bcd60e51b81526004016103f99061102e565b6001600160a01b0382166109305760405162461bcd60e51b81526004016103f990610e81565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061098b908590610d6e565b60405180910390a3505050565b6001600160a01b0383166109be5760405162461bcd60e51b81526004016103f990610fe9565b6001600160a01b0382166109e45760405162461bcd60e51b81526004016103f990610e07565b6109ef838383610c3e565b6001600160a01b03831660009081526020819052604090205461010090046001600160f81b031681811015610a365760405162461bcd60e51b81526004016103f990610ec3565b6001600160a01b03848116600090815260208190526040808220805460ff166101008787036001600160f81b0390811682029290921790925593871683529120805485939192600192610a8d9286929004166110c5565b92506101000a8154816001600160f81b0302191690836001600160f81b03160217905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610af49190610d6e565b60405180910390a3610b07848484610c3e565b50505050565b6001600160a01b038216600090815260208190526040812054610b3f90839061010090046001600160f81b03166110f0565b6001600160a01b03841660008181526020819052604080822080546001600160f81b0386166101000260ff9091161760ff191660011790555192935090917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061098b908690610d6e565b6001600160a01b038216600090815260208190526040812054610bdc90839061010090046001600160f81b03166110f0565b6001600160a01b038416600081815260208190526040808220805460ff166101006001600160f81b038716021790555192935090917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061098b908690610d6e565b505050565b80356001600160a01b038116811461038357600080fd5b600060208284031215610c6b578081fd5b610c7482610c43565b9392505050565b60008060408385031215610c8d578081fd5b610c9683610c43565b9150610ca460208401610c43565b90509250929050565b600080600060608486031215610cc1578081fd5b610cca84610c43565b9250610cd860208501610c43565b9150604084013590509250925092565b60008060408385031215610cfa578182fd5b610d0383610c43565b946020939093013593505050565b60008060008060808587031215610d26578081fd5b843593506020850135925060408501359150610d4460608601610c43565b905092959194509250565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b9283526001600160a01b03919091166020830152604082015260600190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b81811015610de057858101830151858201604001528201610dc4565b81811115610df15783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526018908201527f4d61736b44414f3a204e6f7420696e766974652073656c660000000000000000604082015260600190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526010908201526f13585cdad11053ce8810db185a5b595960821b604082015260600190565b6020808252601a908201527f4d61736b44414f3a20457863656564206d617820737570706c79000000000000604082015260600190565b60208082526017908201527f4d61736b44414f3a20496e76616c6964207369676e6572000000000000000000604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b60ff91909116815260200190565b60006001600160f81b038281168482168083038211156110e7576110e7611199565b01949350505050565b6000821982111561110357611103611199565b500190565b60008261112357634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561114257611142611199565b500290565b60008282101561115957611159611199565b500390565b60028104600182168061117257607f821691505b6020821081141561119357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220434351caf04033cc3e47cbf379837b369cbe6f67289b85c3e3a8e7c3436fc09564736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000a6e88bf53d2a658580273f771f1ee2df3a82a4d00000000000000000000000000000000000000000000000000000000000000034d4d44000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d4d440000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): MMD
Arg [1] : _symbol (string): MMD
Arg [2] : _signer (address): 0x0a6e88bF53D2a658580273f771F1ee2dF3a82A4d
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000a6e88bf53d2a658580273f771f1ee2df3a82a4d
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [4] : 4d4d440000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4d4d440000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
34563:2153:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7150:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9447:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;8270:108::-;;;:::i;:::-;;;;;;;:::i;8584:114::-;;;;;;:::i;:::-;;:::i;10098:480::-;;;;;;:::i;:::-;;:::i;8112:93::-;;;:::i;:::-;;;;;;;:::i;34604:56::-;;;:::i;10987:215::-;;;;;;:::i;:::-;;:::i;35112:76::-;;;:::i;:::-;;;;;;;:::i;35774:32::-;;;:::i;8441:135::-;;;;;;:::i;:::-;;:::i;34686:58::-;;;:::i;34926:81::-;;;:::i;35048:57::-;;;:::i;35815:898::-;;;;;;:::i;:::-;;:::i;:::-;;7369:104;;;:::i;11705:401::-;;;;;;:::i;:::-;;:::i;8911:175::-;;;;;;:::i;:::-;;:::i;35669:96::-;;;:::i;34751:77::-;;;:::i;9149:151::-;;;;;;:::i;:::-;;:::i;35217:96::-;;;:::i;7150:100::-;7204:13;7237:5;7230:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7150:100;:::o;9447:169::-;9530:4;9547:39;9556:12;:10;:12::i;:::-;9570:7;9579:6;9547:8;:39::i;:::-;-1:-1:-1;9604:4:0;9447:169;;;;:::o;8270:108::-;8358:12;;8270:108;:::o;8584:114::-;-1:-1:-1;;;;;8665:18:0;;8638:7;8665:18;;;;;;;;;;:25;;;8584:114;;;;:::o;10098:480::-;10238:4;10255:36;10265:6;10273:9;10284:6;10255:9;:36::i;:::-;-1:-1:-1;;;;;10331:19:0;;10304:24;10331:19;;;:11;:19;;;;;10304:24;10351:12;:10;:12::i;:::-;-1:-1:-1;;;;;10331:33:0;-1:-1:-1;;;;;10331:33:0;;;;;;;;;;;;;10304:60;;10403:6;10383:16;:26;;10375:79;;;;-1:-1:-1;;;10375:79:0;;;;;;;:::i;:::-;;;;;;;;;10482:57;10491:6;10499:12;:10;:12::i;:::-;10532:6;10513:16;:25;10482:8;:57::i;:::-;-1:-1:-1;10566:4:0;;10098:480;-1:-1:-1;;;;10098:480:0:o;8112:93::-;8195:2;8112:93;:::o;34604:56::-;-1:-1:-1;;;34604:56:0;:::o;10987:215::-;11075:4;11092:80;11101:12;:10;:12::i;:::-;11115:7;11161:10;11124:11;:25;11136:12;:10;:12::i;:::-;-1:-1:-1;;;;;11124:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;11124:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;11092:8;:80::i;35112:76::-;35146:42;35112:76;:::o;35774:32::-;;;:::o;8441:135::-;-1:-1:-1;;;;;8542:18:0;8515:7;8542:18;;;;;;;;;;:26;;;;-1:-1:-1;;;;;8542:26:0;;8441:135::o;34686:58::-;34723:16;34736:3;-1:-1:-1;;;34723:16:0;:::i;:::-;:21;;34742:2;34723:21;:::i;:::-;34686:58;:::o;34926:81::-;34965:42;34926:81;:::o;35048:57::-;35084:16;35097:3;-1:-1:-1;;;35084:16:0;:::i;:::-;:21;;35103:2;35084:21;:::i;35815:898::-;35914:10;-1:-1:-1;;;;;35914:21:0;;;;35906:58;;;;-1:-1:-1;;;35906:58:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35975:33:0;;36046:3;36035:14;;;35975;-1:-1:-1;;;;;36095:21:0;;;36092:87;;36163:4;36147:13;:6;36156:4;36147:13;:::i;:::-;:20;;;;:::i;:::-;36132:35;;36092:87;36189:13;36229:12;36220:6;36205:12;;:21;;;;:::i;:::-;:36;;;;:::i;:::-;36189:52;-1:-1:-1;;;;36260:19:0;;;36252:58;;;;-1:-1:-1;;;36252:58:0;;;;;;;:::i;:::-;36329:18;36336:10;36329:6;:18::i;:::-;:23;36321:52;;;;-1:-1:-1;;;36321:52:0;;;;;;;:::i;:::-;36384:14;35715:50;36443:10;36455:6;36411:51;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36401:62;;;;;;36384:79;;36512:7;-1:-1:-1;;;;;36482:37:0;:26;36492:6;36500:1;36503;36506;36482:26;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36482:37:0;;36474:73;;;;-1:-1:-1;;;36474:73:0;;;;;;;:::i;:::-;36558:12;:20;;;36589:25;36595:10;36607:6;36589:5;:25::i;:::-;36628:16;;36625:81;;36660:34;36672:7;36681:12;36660:11;:34::i;:::-;35815:898;;;;;;;;;:::o;7369:104::-;7425:13;7458:7;7451:14;;;;;:::i;11705:401::-;11798:4;11815:24;11842:11;:25;11854:12;:10;:12::i;:::-;-1:-1:-1;;;;;11842:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;11842:25:0;;;:34;;;;;;;;;;;-1:-1:-1;11895:35:0;;;;11887:85;;;;-1:-1:-1;;;11887:85:0;;;;;;;:::i;:::-;12000:67;12009:12;:10;:12::i;:::-;12023:7;12051:15;12032:16;:34;12000:8;:67::i;:::-;-1:-1:-1;12094:4:0;;11705:401;-1:-1:-1;;;11705:401:0:o;8911:175::-;8997:4;9014:42;9024:12;:10;:12::i;:::-;9038:9;9049:6;9014:9;:42::i;35669:96::-;35715:50;35669:96;:::o;34751:77::-;34786:42;34751:77;:::o;9149:151::-;-1:-1:-1;;;;;9265:18:0;;;9238:7;9265:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9149:151::o;35217:96::-;35084:16;35097:3;-1:-1:-1;;;35084:16:0;:::i;:::-;:21;;35103:2;35084:21;:::i;:::-;34898:16;34911:3;-1:-1:-1;;;34898:16:0;:::i;:::-;:21;;34917:2;34898:21;:::i;:::-;34723:16;34736:3;-1:-1:-1;;;34723:16:0;:::i;:::-;:21;;34742:2;34723:21;:::i;:::-;35273:27;;;;:::i;:::-;:39;;;;:::i;:::-;35259:54;;-1:-1:-1;;;35259:54:0;:::i;4743:98::-;4823:10;4743:98;:::o;16320:380::-;-1:-1:-1;;;;;16456:19:0;;16448:68;;;;-1:-1:-1;;;16448:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16535:21:0;;16527:68;;;;-1:-1:-1;;;16527:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16608:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;16660:32;;;;;16638:6;;16660:32;:::i;:::-;;;;;;;;16320:380;;;:::o;12596:763::-;-1:-1:-1;;;;;12736:20:0;;12728:70;;;;-1:-1:-1;;;12728:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12817:23:0;;12809:71;;;;-1:-1:-1;;;12809:71:0;;;;;;;:::i;:::-;12893:47;12914:6;12922:9;12933:6;12893:20;:47::i;:::-;-1:-1:-1;;;;;12977:17:0;;12953:21;12977:17;;;;;;;;;;:25;;;;-1:-1:-1;;;;;12977:25:0;13021:23;;;;13013:74;;;;-1:-1:-1;;;13013:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13115:17:0;;;:9;:17;;;;;;;;;;;:59;;;;;13151:22;;;-1:-1:-1;;;;;13115:59:0;;;;;;;;;;;;13192:20;;;;;;;:47;;13151:22;;13192:20;;-1:-1:-1;;13192:47:0;;13151:22;;13192:47;;;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;13192:47:0;;;;;-1:-1:-1;;;;;13192:47:0;;;;;;13274:9;-1:-1:-1;;;;;13257:35:0;13266:6;-1:-1:-1;;;;;13257:35:0;;13285:6;13257:35;;;;;;:::i;:::-;;;;;;;;13305:46;13325:6;13333:9;13344:6;13305:19;:46::i;:::-;12596:763;;;;:::o;14431:514::-;-1:-1:-1;;;;;14697:18:0;;14685:9;14697:18;;;;;;;;;;:26;:35;;14726:6;;14697:26;;;-1:-1:-1;;;;;14697:26:0;:35;:::i;:::-;-1:-1:-1;;;;;14743:18:0;;:9;:18;;;;;;;;;;;:39;;-1:-1:-1;;;;;14743:39:0;;;;;;;;;-1:-1:-1;;14793:29:0;14743:26;14793:29;;;14838:37;14685:47;;-1:-1:-1;14743:18:0;;14838:37;;;;14868:6;;14838:37;:::i;13664:480::-;-1:-1:-1;;;;;13936:18:0;;13924:9;13936:18;;;;;;;;;;:26;:35;;13965:6;;13936:26;;;-1:-1:-1;;;;;13936:26:0;:35;:::i;:::-;-1:-1:-1;;;;;13982:18:0;;:9;:18;;;;;;;;;;;:39;;;;;-1:-1:-1;;;;;13982:39:0;;;;;;14037:37;13982:39;;-1:-1:-1;13982:18:0;;14037:37;;;;14067:6;;14037:37;:::i;17300:125::-;;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:403::-;;;;;1457:3;1445:9;1436:7;1432:23;1428:33;1425:2;;;1479:6;1471;1464:22;1425:2;1520:9;1507:23;1497:33;;1577:2;1566:9;1562:18;1549:32;1539:42;;1628:2;1617:9;1613:18;1600:32;1590:42;;1651:40;1687:2;1676:9;1672:18;1651:40;:::i;:::-;1641:50;;1415:282;;;;;;;:::o;1702:203::-;-1:-1:-1;;;;;1866:32:1;;;;1848:51;;1836:2;1821:18;;1803:102::o;1910:187::-;2075:14;;2068:22;2050:41;;2038:2;2023:18;;2005:92::o;2102:177::-;2248:25;;;2236:2;2221:18;;2203:76::o;2284:345::-;2486:25;;;-1:-1:-1;;;;;2547:32:1;;;;2542:2;2527:18;;2520:60;2611:2;2596:18;;2589:34;2474:2;2459:18;;2441:188::o;2634:398::-;2861:25;;;2934:4;2922:17;;;;2917:2;2902:18;;2895:45;2971:2;2956:18;;2949:34;3014:2;2999:18;;2992:34;2848:3;2833:19;;2815:217::o;3037:603::-;;3178:2;3207;3196:9;3189:21;3239:6;3233:13;3282:6;3277:2;3266:9;3262:18;3255:34;3307:4;3320:140;3334:6;3331:1;3328:13;3320:140;;;3429:14;;;3425:23;;3419:30;3395:17;;;3414:2;3391:26;3384:66;3349:10;;3320:140;;;3478:6;3475:1;3472:13;3469:2;;;3548:4;3543:2;3534:6;3523:9;3519:22;3515:31;3508:45;3469:2;-1:-1:-1;3624:2:1;3603:15;-1:-1:-1;;3599:29:1;3584:45;;;;3631:2;3580:54;;3158:482;-1:-1:-1;;;3158:482:1:o;3645:399::-;3847:2;3829:21;;;3886:2;3866:18;;;3859:30;3925:34;3920:2;3905:18;;3898:62;-1:-1:-1;;;3991:2:1;3976:18;;3969:33;4034:3;4019:19;;3819:225::o;4049:348::-;4251:2;4233:21;;;4290:2;4270:18;;;4263:30;4329:26;4324:2;4309:18;;4302:54;4388:2;4373:18;;4223:174::o;4402:398::-;4604:2;4586:21;;;4643:2;4623:18;;;4616:30;4682:34;4677:2;4662:18;;4655:62;-1:-1:-1;;;4748:2:1;4733:18;;4726:32;4790:3;4775:19;;4576:224::o;4805:402::-;5007:2;4989:21;;;5046:2;5026:18;;;5019:30;5085:34;5080:2;5065:18;;5058:62;-1:-1:-1;;;5151:2:1;5136:18;;5129:36;5197:3;5182:19;;4979:228::o;5212:340::-;5414:2;5396:21;;;5453:2;5433:18;;;5426:30;-1:-1:-1;;;5487:2:1;5472:18;;5465:46;5543:2;5528:18;;5386:166::o;5557:350::-;5759:2;5741:21;;;5798:2;5778:18;;;5771:30;5837:28;5832:2;5817:18;;5810:56;5898:2;5883:18;;5731:176::o;5912:347::-;6114:2;6096:21;;;6153:2;6133:18;;;6126:30;6192:25;6187:2;6172:18;;6165:53;6250:2;6235:18;;6086:173::o;6264:404::-;6466:2;6448:21;;;6505:2;6485:18;;;6478:30;6544:34;6539:2;6524:18;;6517:62;-1:-1:-1;;;6610:2:1;6595:18;;6588:38;6658:3;6643:19;;6438:230::o;6673:401::-;6875:2;6857:21;;;6914:2;6894:18;;;6887:30;6953:34;6948:2;6933:18;;6926:62;-1:-1:-1;;;7019:2:1;7004:18;;6997:35;7064:3;7049:19;;6847:227::o;7079:400::-;7281:2;7263:21;;;7320:2;7300:18;;;7293:30;7359:34;7354:2;7339:18;;7332:62;-1:-1:-1;;;7425:2:1;7410:18;;7403:34;7469:3;7454:19;;7253:226::o;7484:401::-;7686:2;7668:21;;;7725:2;7705:18;;;7698:30;7764:34;7759:2;7744:18;;7737:62;-1:-1:-1;;;7830:2:1;7815:18;;7808:35;7875:3;7860:19;;7658:227::o;8072:184::-;8244:4;8232:17;;;;8214:36;;8202:2;8187:18;;8169:87::o;8261:238::-;;-1:-1:-1;;;;;8368:10:1;;;8398;;;8428:12;;;8420:21;;8417:2;;;8444:18;;:::i;:::-;8480:13;;8309:190;-1:-1:-1;;;;8309:190:1:o;8504:128::-;;8575:1;8571:6;8568:1;8565:13;8562:2;;;8581:18;;:::i;:::-;-1:-1:-1;8617:9:1;;8552:80::o;8637:217::-;;8703:1;8693:2;;-1:-1:-1;;;8728:31:1;;8782:4;8779:1;8772:15;8810:4;8735:1;8800:15;8693:2;-1:-1:-1;8839:9:1;;8683:171::o;8859:168::-;;8965:1;8961;8957:6;8953:14;8950:1;8947:21;8942:1;8935:9;8928:17;8924:45;8921:2;;;8972:18;;:::i;:::-;-1:-1:-1;9012:9:1;;8911:116::o;9032:125::-;;9100:1;9097;9094:8;9091:2;;;9105:18;;:::i;:::-;-1:-1:-1;9142:9:1;;9081:76::o;9162:380::-;9247:1;9237:12;;9294:1;9284:12;;;9305:2;;9359:4;9351:6;9347:17;9337:27;;9305:2;9412;9404:6;9401:14;9381:18;9378:38;9375:2;;;9458:10;9453:3;9449:20;9446:1;9439:31;9493:4;9490:1;9483:15;9521:4;9518:1;9511:15;9375:2;;9217:325;;;:::o;9547:127::-;9608:10;9603:3;9599:20;9596:1;9589:31;9639:4;9636:1;9629:15;9663:4;9660:1;9653:15
Swarm Source
ipfs://434351caf04033cc3e47cbf379837b369cbe6f67289b85c3e3a8e7c3436fc095
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.