ERC-721
Overview
Max Total Supply
449 MINI
Holders
178
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 MINILoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MiniNouns
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-31 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /** * @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; } } /** * @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); } } /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` 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 tokenId ) internal virtual {} } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } contract MiniNouns is ERC721, ERC721Enumerable, Ownable { using SafeMath for uint256; uint256 public constant maxSupply = 10000; uint256 private _unitPriceLevel1 = 0.025 ether; uint256 private _unitPriceLevel2 = 0.018 ether; uint256 private _unitPriceLevel3 = 0.016 ether; uint256 private _reserved = 84; string private _name = ""; string private _symbol = ""; bool public saleStarted = false; bool public preSaleStarted = false; mapping(address => bool) private _preSaleMinted; mapping(address => bool) private _preSaleAddresses; string public baseURI; constructor(string memory name_, string memory symbol_) ERC721(name_, symbol_) { require(bytes(name_).length != 0, "name_ must not be empty "); require(bytes(symbol_).length != 0, "symbol_ must not be empty "); _name = name_; _symbol = symbol_; } function setName(string memory name_, string memory symbol_) public onlyOwner { require(bytes(name_).length != 0, "name_ must not be empty "); require(bytes(symbol_).length != 0, "symbol_ must not be empty "); _name = name_; _symbol = symbol_; } function name() public view override returns (string memory) { return _name; } function symbol() public view override returns (string memory) { return _symbol; } function togglePreSaleStarted() external onlyOwner { require( bytes(baseURI).length != 0, "baseURI must not be empty before start selling" ); preSaleStarted = !preSaleStarted; } function toggleSaleStarted() external onlyOwner { require( bytes(baseURI).length != 0, "baseURI must not be empty before start selling" ); saleStarted = !saleStarted; } function getUnitPrice(uint256 _numOfTokens) public view returns (uint256) { if (_numOfTokens >= 1 && _numOfTokens < 3) { return _unitPriceLevel1; } else if (_numOfTokens < 5) { return _unitPriceLevel2; } else { return _unitPriceLevel3; } } function mint(uint256 _numOfTokens) external payable { uint256 supply = totalSupply(); uint256 _unitPrice = getUnitPrice(_numOfTokens); uint256 _totalPrice = _numOfTokens * _unitPrice; require(saleStarted, "Sale not started."); require(_numOfTokens > 0); require( _numOfTokens < 21, "You cannot mint more than 20 Tokens at once." ); require( supply + _numOfTokens <= maxSupply - _reserved, "Not enough Tokens left." ); require(msg.value >= _totalPrice, "Ether value sent is not enough."); for (uint256 i; i < _numOfTokens; i++) { _safeMint(msg.sender, supply + i); } } modifier canPreSaleMint() { address _caller = _msgSender(); require( _preSaleAddresses[_caller] == true, "You are not eligible to mint pre-sale Token" ); require( _preSaleMinted[_caller] == false, "Your free Token has already been minted" ); _; } function mintPreSale() external canPreSaleMint { uint256 supply = totalSupply(); require(preSaleStarted, "PreSale not started."); require(supply + 1 <= maxSupply - _reserved, "Not enough Tokens left."); _safeMint(msg.sender, supply); _preSaleMinted[msg.sender] = true; } function setBaseURI(string memory baseURI_) public onlyOwner { require(bytes(baseURI_).length != 0, "baseURI_ must not empty"); baseURI = baseURI_; } function _baseURI() internal view override(ERC721) returns (string memory) { return baseURI; } function setUnitPrice1(uint256 unitPrice_) external onlyOwner { _unitPriceLevel1 = unitPrice_; } function getUnitPrice1() public view returns (uint256) { return _unitPriceLevel1; } function setUnitPrice2(uint256 unitPrice_) external onlyOwner { _unitPriceLevel2 = unitPrice_; } function getUnitPrice2() public view returns (uint256) { return _unitPriceLevel2; } function setUnitPrice3(uint256 unitPrice_) external onlyOwner { _unitPriceLevel3 = unitPrice_; } function getUnitPrice3() public view returns (uint256) { return _unitPriceLevel3; } function getReservedLeft() public view returns (uint256) { return _reserved; } function walletOfOwner(address owner_) public view returns (uint256[] memory) { uint256 tokenCount = balanceOf(owner_); uint256[] memory tokensId = new uint256[](tokenCount); for (uint256 i; i < tokenCount; i++) { tokensId[i] = tokenOfOwnerByIndex(owner_, i); } return tokensId; } function reserve(uint256 numOfToken_, address receiverAddress_) external onlyOwner { require(numOfToken_ <= _reserved, "Exceeded tokens."); require( receiverAddress_ != address(0), "receiverAddress_ must not be empty" ); uint256 _tokenId = totalSupply(); for (uint256 i; i < numOfToken_; i++) { _safeMint(receiverAddress_, _tokenId + i); } _reserved = _reserved - numOfToken_; } function withdraw() public onlyOwner { uint256 _balance = address(this).balance; require(payable(owner()).send(_balance)); } function setPreSaleAddresses(address[] memory addresses_) external onlyOwner { for (uint256 i; i < addresses_.length; i++) { _preSaleAddresses[addresses_[i]] = true; } } function removePreSaleAddresses(address[] memory addresses_) external onlyOwner { for (uint256 i; i < addresses_.length; i++) { _preSaleAddresses[addresses_[i]] = false; } } function _beforeTokenTransfer( address from_, address to_, uint256 tokenId_ ) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from_, to_, tokenId_); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReservedLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"}],"name":"getUnitPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUnitPrice1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUnitPrice2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUnitPrice3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses_","type":"address[]"}],"name":"removePreSaleAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numOfToken_","type":"uint256"},{"internalType":"address","name":"receiverAddress_","type":"address"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses_","type":"address[]"}],"name":"setPreSaleAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"unitPrice_","type":"uint256"}],"name":"setUnitPrice1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"unitPrice_","type":"uint256"}],"name":"setUnitPrice2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"unitPrice_","type":"uint256"}],"name":"setUnitPrice3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePreSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner_","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6658d15e17628000600b55663ff2e795f50000600c556638d7ea4c680000600d556054600e5560a06040819052600060808190526200004191600f9162000218565b50604080516020810191829052600090819052620000629160109162000218565b506011805461ffff191690553480156200007b57600080fd5b506040516200302e3803806200302e8339810160408190526200009e9162000375565b815182908290620000b790600090602085019062000218565b508051620000cd90600190602084019062000218565b505050620000ea620000e4620001c260201b60201c565b620001c6565b81516200013e5760405162461bcd60e51b815260206004820152601860248201527f6e616d655f206d757374206e6f7420626520656d70747920000000000000000060448201526064015b60405180910390fd5b80516200018e5760405162461bcd60e51b815260206004820152601a60248201527f73796d626f6c5f206d757374206e6f7420626520656d70747920000000000000604482015260640162000135565b8151620001a390600f90602085019062000218565b508051620001b990601090602084019062000218565b50505062000432565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200022690620003df565b90600052602060002090601f0160209004810192826200024a576000855562000295565b82601f106200026557805160ff191683800117855562000295565b8280016001018555821562000295579182015b828111156200029557825182559160200191906001019062000278565b50620002a3929150620002a7565b5090565b5b80821115620002a35760008155600101620002a8565b600082601f830112620002d057600080fd5b81516001600160401b0380821115620002ed57620002ed6200041c565b604051601f8301601f19908116603f011681019082821181831017156200031857620003186200041c565b816040528381526020925086838588010111156200033557600080fd5b600091505b838210156200035957858201830151818301840152908201906200033a565b838211156200036b5760008385830101525b9695505050505050565b600080604083850312156200038957600080fd5b82516001600160401b0380821115620003a157600080fd5b620003af86838701620002be565b93506020850151915080821115620003c657600080fd5b50620003d585828601620002be565b9150509250929050565b600181811c90821680620003f457607f821691505b602082108114156200041657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612bec80620004426000396000f3fe6080604052600436106102515760003560e01c8063690cf0d111610139578063a3fd73be116100b6578063c87b56dd1161007a578063c87b56dd1461069a578063d5abeb01146106ba578063daa023aa146106d0578063e6b922e8146106e5578063e985e9c5146106fa578063f2fde38b1461074357600080fd5b8063a3fd73be14610610578063ac60f57e14610630578063b88d4fde14610650578063bc6d263514610670578063c4d7fa901461068557600080fd5b80638afa085e116100fd5780638afa085e1461058a5780638da5cb5b146105aa57806395d89b41146105c8578063a0712d68146105dd578063a22cb465146105f057600080fd5b8063690cf0d1146105015780636c0360eb1461052057806370a0823114610535578063715018a61461055557806384192bbb1461056a57600080fd5b80633c395ae9116101d257806350553c741161019657806350553c741461044757806355f804b3146104675780635c474f9e146104875780635c707f07146104a15780636352211e146104c157806364c0e52f146104e157600080fd5b80633c395ae9146103b05780633ccfd60b146103c557806342842e0e146103da578063438b6300146103fa5780634f6ccce71461042757600080fd5b8063095ea7b311610219578063095ea7b31461031c57806318160ddd1461033c57806323b872dd1461035b5780632f745c591461037b57806338196b551461039b57600080fd5b806301ffc9a71461025657806303339bcb1461028b57806306fdde03146102ad578063081812fc146102cf578063091e8d1314610307575b600080fd5b34801561026257600080fd5b506102766102713660046126e5565b610763565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a63660046127d1565b610774565b005b3480156102b957600080fd5b506102c26108a1565b60405161028291906128d0565b3480156102db57600080fd5b506102ef6102ea3660046127b8565b610933565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102ab6109c8565b34801561032857600080fd5b506102ab610337366004612607565b610a3c565b34801561034857600080fd5b506008545b604051908152602001610282565b34801561036757600080fd5b506102ab610376366004612513565b610b52565b34801561038757600080fd5b5061034d610396366004612607565b610b83565b3480156103a757600080fd5b50600b5461034d565b3480156103bc57600080fd5b50600d5461034d565b3480156103d157600080fd5b506102ab610c19565b3480156103e657600080fd5b506102ab6103f5366004612513565b610c89565b34801561040657600080fd5b5061041a6104153660046124c5565b610ca4565b604051610282919061288c565b34801561043357600080fd5b5061034d6104423660046127b8565b610d46565b34801561045357600080fd5b506102ab610462366004612631565b610dd9565b34801561047357600080fd5b506102ab61048236600461271f565b610e6f565b34801561049357600080fd5b506011546102769060ff1681565b3480156104ad57600080fd5b506102ab6104bc366004612754565b610efa565b3480156104cd57600080fd5b506102ef6104dc3660046127b8565b610fe7565b3480156104ed57600080fd5b5061034d6104fc3660046127b8565b61105e565b34801561050d57600080fd5b5060115461027690610100900460ff1681565b34801561052c57600080fd5b506102c261109c565b34801561054157600080fd5b5061034d6105503660046124c5565b61112a565b34801561056157600080fd5b506102ab6111b1565b34801561057657600080fd5b506102ab6105853660046127b8565b6111e7565b34801561059657600080fd5b506102ab6105a53660046127b8565b611216565b3480156105b657600080fd5b50600a546001600160a01b03166102ef565b3480156105d457600080fd5b506102c2611245565b6102ab6105eb3660046127b8565b611254565b3480156105fc57600080fd5b506102ab61060b3660046125cb565b611418565b34801561061c57600080fd5b506102ab61062b366004612631565b6114dd565b34801561063c57600080fd5b506102ab61064b3660046127b8565b61156f565b34801561065c57600080fd5b506102ab61066b36600461254f565b61159e565b34801561067c57600080fd5b506102ab6115d6565b34801561069157600080fd5b50600c5461034d565b3480156106a657600080fd5b506102c26106b53660046127b8565b611641565b3480156106c657600080fd5b5061034d61271081565b3480156106dc57600080fd5b50600e5461034d565b3480156106f157600080fd5b506102ab61171c565b34801561070657600080fd5b506102766107153660046124e0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561074f57600080fd5b506102ab61075e3660046124c5565b6118f3565b600061076e8261198b565b92915050565b600a546001600160a01b031633146107a75760405162461bcd60e51b815260040161079e90612983565b60405180910390fd5b600e548211156107ec5760405162461bcd60e51b815260206004820152601060248201526f22bc31b2b2b232b2103a37b5b2b7399760811b604482015260640161079e565b6001600160a01b03811661084d5760405162461bcd60e51b815260206004820152602260248201527f7265636569766572416464726573735f206d757374206e6f7420626520656d70604482015261747960f01b606482015260840161079e565b600061085860085490565b905060005b8381101561088a57610878836108738385612a3a565b6119b0565b8061088281612b03565b91505061085d565b5082600e546108999190612a85565b600e55505050565b6060600f80546108b090612ac8565b80601f01602080910402602001604051908101604052809291908181526020018280546108dc90612ac8565b80156109295780601f106108fe57610100808354040283529160200191610929565b820191906000526020600020905b81548152906001019060200180831161090c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109ac5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161079e565b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b031633146109f25760405162461bcd60e51b815260040161079e90612983565b601480546109ff90612ac8565b15159050610a1f5760405162461bcd60e51b815260040161079e90612935565b6011805461ff001981166101009182900460ff1615909102179055565b6000610a4782610fe7565b9050806001600160a01b0316836001600160a01b03161415610ab55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161079e565b336001600160a01b0382161480610ad15750610ad18133610715565b610b435760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161079e565b610b4d83836119ca565b505050565b610b5c3382611a38565b610b785760405162461bcd60e51b815260040161079e906129b8565b610b4d838383611b2f565b6000610b8e8361112a565b8210610bf05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161079e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c435760405162461bcd60e51b815260040161079e90612983565b47610c56600a546001600160a01b031690565b6001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050610c8657600080fd5b50565b610b4d8383836040518060200160405280600081525061159e565b60606000610cb18361112a565b905060008167ffffffffffffffff811115610cce57610cce612b8a565b604051908082528060200260200182016040528015610cf7578160200160208202803683370190505b50905060005b82811015610d3e57610d0f8582610b83565b828281518110610d2157610d21612b74565b602090810291909101015280610d3681612b03565b915050610cfd565b509392505050565b6000610d5160085490565b8210610db45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161079e565b60088281548110610dc757610dc7612b74565b90600052602060002001549050919050565b600a546001600160a01b03163314610e035760405162461bcd60e51b815260040161079e90612983565b60005b8151811015610e6b57600060136000848481518110610e2757610e27612b74565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610e6381612b03565b915050610e06565b5050565b600a546001600160a01b03163314610e995760405162461bcd60e51b815260040161079e90612983565b8051610ee75760405162461bcd60e51b815260206004820152601760248201527f626173655552495f206d757374206e6f7420656d707479000000000000000000604482015260640161079e565b8051610e6b90601490602084019061239d565b600a546001600160a01b03163314610f245760405162461bcd60e51b815260040161079e90612983565b8151610f725760405162461bcd60e51b815260206004820152601860248201527f6e616d655f206d757374206e6f7420626520656d707479200000000000000000604482015260640161079e565b8051610fc05760405162461bcd60e51b815260206004820152601a60248201527f73796d626f6c5f206d757374206e6f7420626520656d70747920000000000000604482015260640161079e565b8151610fd390600f90602085019061239d565b508051610b4d90601090602084019061239d565b6000818152600260205260408120546001600160a01b03168061076e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161079e565b6000600182101580156110715750600382105b1561107e575050600b5490565b600582101561108f575050600c5490565b5050600d5490565b919050565b601480546110a990612ac8565b80601f01602080910402602001604051908101604052809291908181526020018280546110d590612ac8565b80156111225780601f106110f757610100808354040283529160200191611122565b820191906000526020600020905b81548152906001019060200180831161110557829003601f168201915b505050505081565b60006001600160a01b0382166111955760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161079e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111db5760405162461bcd60e51b815260040161079e90612983565b6111e56000611cda565b565b600a546001600160a01b031633146112115760405162461bcd60e51b815260040161079e90612983565b600c55565b600a546001600160a01b031633146112405760405162461bcd60e51b815260040161079e90612983565b600d55565b6060601080546108b090612ac8565b600061125f60085490565b9050600061126c8361105e565b9050600061127a8285612a66565b60115490915060ff166112c35760405162461bcd60e51b815260206004820152601160248201527029b0b632903737ba1039ba30b93a32b21760791b604482015260640161079e565b600084116112d057600080fd5b601584106113355760405162461bcd60e51b815260206004820152602c60248201527f596f752063616e6e6f74206d696e74206d6f7265207468616e20323020546f6b60448201526b32b7399030ba1037b731b29760a11b606482015260840161079e565b600e5461134490612710612a85565b61134e8585612a3a565b11156113965760405162461bcd60e51b81526020600482015260176024820152762737ba1032b737bab3b4102a37b5b2b739903632b33a1760491b604482015260640161079e565b803410156113e65760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420656e6f7567682e00604482015260640161079e565b60005b84811015611411576113ff336108738387612a3a565b8061140981612b03565b9150506113e9565b5050505050565b6001600160a01b0382163314156114715760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161079e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146115075760405162461bcd60e51b815260040161079e90612983565b60005b8151811015610e6b5760016013600084848151811061152b5761152b612b74565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061156781612b03565b91505061150a565b600a546001600160a01b031633146115995760405162461bcd60e51b815260040161079e90612983565b600b55565b6115a83383611a38565b6115c45760405162461bcd60e51b815260040161079e906129b8565b6115d084848484611d2c565b50505050565b600a546001600160a01b031633146116005760405162461bcd60e51b815260040161079e90612983565b6014805461160d90612ac8565b1515905061162d5760405162461bcd60e51b815260040161079e90612935565b6011805460ff19811660ff90911615179055565b6000818152600260205260409020546060906001600160a01b03166116c05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161079e565b60006116ca611d5f565b905060008151116116ea5760405180602001604052806000815250611715565b806116f484611d6e565b604051602001611705929190612820565b6040516020818303038152906040525b9392505050565b3360008181526013602052604090205460ff1615156001146117945760405162461bcd60e51b815260206004820152602b60248201527f596f7520617265206e6f7420656c696769626c6520746f206d696e742070726560448201526a16b9b0b632902a37b5b2b760a91b606482015260840161079e565b6001600160a01b03811660009081526012602052604090205460ff161561180d5760405162461bcd60e51b815260206004820152602760248201527f596f7572206672656520546f6b656e2068617320616c7265616479206265656e604482015266081b5a5b9d195960ca1b606482015260840161079e565b600061181860085490565b601154909150610100900460ff166118695760405162461bcd60e51b8152602060048201526014602482015273283932a9b0b632903737ba1039ba30b93a32b21760611b604482015260640161079e565b600e5461187890612710612a85565b611883826001612a3a565b11156118cb5760405162461bcd60e51b81526020600482015260176024820152762737ba1032b737bab3b4102a37b5b2b739903632b33a1760491b604482015260640161079e565b6118d533826119b0565b5050336000908152601260205260409020805460ff19166001179055565b600a546001600160a01b0316331461191d5760405162461bcd60e51b815260040161079e90612983565b6001600160a01b0381166119825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079e565b610c8681611cda565b60006001600160e01b0319821663780e9d6360e01b148061076e575061076e82611e6c565b610e6b828260405180602001604052806000815250611ebc565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119ff82610fe7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ab15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161079e565b6000611abc83610fe7565b9050806001600160a01b0316846001600160a01b03161480611af75750836001600160a01b0316611aec84610933565b6001600160a01b0316145b80611b2757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b4282610fe7565b6001600160a01b031614611baa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161079e565b6001600160a01b038216611c0c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161079e565b611c17838383611eef565b611c226000826119ca565b6001600160a01b0383166000908152600360205260408120805460019290611c4b908490612a85565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c79908490612a3a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611d37848484611b2f565b611d4384848484611efa565b6115d05760405162461bcd60e51b815260040161079e906128e3565b6060601480546108b090612ac8565b606081611d925750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dbc5780611da681612b03565b9150611db59050600a83612a52565b9150611d96565b60008167ffffffffffffffff811115611dd757611dd7612b8a565b6040519080825280601f01601f191660200182016040528015611e01576020820181803683370190505b5090505b8415611b2757611e16600183612a85565b9150611e23600a86612b1e565b611e2e906030612a3a565b60f81b818381518110611e4357611e43612b74565b60200101906001600160f81b031916908160001a905350611e65600a86612a52565b9450611e05565b60006001600160e01b031982166380ac58cd60e01b1480611e9d57506001600160e01b03198216635b5e139f60e01b145b8061076e57506301ffc9a760e01b6001600160e01b031983161461076e565b611ec68383612007565b611ed36000848484611efa565b610b4d5760405162461bcd60e51b815260040161079e906128e3565b610b4d838383612155565b60006001600160a01b0384163b15611ffc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f3e90339089908890889060040161284f565b602060405180830381600087803b158015611f5857600080fd5b505af1925050508015611f88575060408051601f3d908101601f19168201909252611f8591810190612702565b60015b611fe2573d808015611fb6576040519150601f19603f3d011682016040523d82523d6000602084013e611fbb565b606091505b508051611fda5760405162461bcd60e51b815260040161079e906128e3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b27565b506001949350505050565b6001600160a01b03821661205d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161079e565b6000818152600260205260409020546001600160a01b0316156120c25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161079e565b6120ce60008383611eef565b6001600160a01b03821660009081526003602052604081208054600192906120f7908490612a3a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b0383166121b0576121ab81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6121d3565b816001600160a01b0316836001600160a01b0316146121d3576121d3838261220d565b6001600160a01b0382166121ea57610b4d816122aa565b826001600160a01b0316826001600160a01b031614610b4d57610b4d8282612359565b6000600161221a8461112a565b6122249190612a85565b600083815260076020526040902054909150808214612277576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906122bc90600190612a85565b600083815260096020526040812054600880549394509092849081106122e4576122e4612b74565b90600052602060002001549050806008838154811061230557612305612b74565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061233d5761233d612b5e565b6001900381819060005260206000200160009055905550505050565b60006123648361112a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546123a990612ac8565b90600052602060002090601f0160209004810192826123cb5760008555612411565b82601f106123e457805160ff1916838001178555612411565b82800160010185558215612411579182015b828111156124115782518255916020019190600101906123f6565b5061241d929150612421565b5090565b5b8082111561241d5760008155600101612422565b600067ffffffffffffffff83111561245057612450612b8a565b612463601f8401601f1916602001612a09565b905082815283838301111561247757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461109757600080fd5b600082601f8301126124b657600080fd5b61171583833560208501612436565b6000602082840312156124d757600080fd5b6117158261248e565b600080604083850312156124f357600080fd5b6124fc8361248e565b915061250a6020840161248e565b90509250929050565b60008060006060848603121561252857600080fd5b6125318461248e565b925061253f6020850161248e565b9150604084013590509250925092565b6000806000806080858703121561256557600080fd5b61256e8561248e565b935061257c6020860161248e565b925060408501359150606085013567ffffffffffffffff81111561259f57600080fd5b8501601f810187136125b057600080fd5b6125bf87823560208401612436565b91505092959194509250565b600080604083850312156125de57600080fd5b6125e78361248e565b9150602083013580151581146125fc57600080fd5b809150509250929050565b6000806040838503121561261a57600080fd5b6126238361248e565b946020939093013593505050565b6000602080838503121561264457600080fd5b823567ffffffffffffffff8082111561265c57600080fd5b818501915085601f83011261267057600080fd5b81358181111561268257612682612b8a565b8060051b9150612693848301612a09565b8181528481019084860184860187018a10156126ae57600080fd5b600095505b838610156126d8576126c48161248e565b8352600195909501949186019186016126b3565b5098975050505050505050565b6000602082840312156126f757600080fd5b813561171581612ba0565b60006020828403121561271457600080fd5b815161171581612ba0565b60006020828403121561273157600080fd5b813567ffffffffffffffff81111561274857600080fd5b611b27848285016124a5565b6000806040838503121561276757600080fd5b823567ffffffffffffffff8082111561277f57600080fd5b61278b868387016124a5565b935060208501359150808211156127a157600080fd5b506127ae858286016124a5565b9150509250929050565b6000602082840312156127ca57600080fd5b5035919050565b600080604083850312156127e457600080fd5b8235915061250a6020840161248e565b6000815180845261280c816020860160208601612a9c565b601f01601f19169290920160200192915050565b60008351612832818460208801612a9c565b835190830190612846818360208801612a9c565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612882908301846127f4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128c4578351835292840192918401916001016128a8565b50909695505050505050565b60208152600061171560208301846127f4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f62617365555249206d757374206e6f7420626520656d707479206265666f726560408201526d2073746172742073656c6c696e6760901b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612a3257612a32612b8a565b604052919050565b60008219821115612a4d57612a4d612b32565b500190565b600082612a6157612a61612b48565b500490565b6000816000190483118215151615612a8057612a80612b32565b500290565b600082821015612a9757612a97612b32565b500390565b60005b83811015612ab7578181015183820152602001612a9f565b838111156115d05750506000910152565b600181811c90821680612adc57607f821691505b60208210811415612afd57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b1757612b17612b32565b5060010190565b600082612b2d57612b2d612b48565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c8657600080fdfea2646970667358221220ec768cf1011959ff2f5be7788e37ffa4acfa1145da6c653ddf725fad68520d9664736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000094d696e694e6f756e73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d494e4900000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102515760003560e01c8063690cf0d111610139578063a3fd73be116100b6578063c87b56dd1161007a578063c87b56dd1461069a578063d5abeb01146106ba578063daa023aa146106d0578063e6b922e8146106e5578063e985e9c5146106fa578063f2fde38b1461074357600080fd5b8063a3fd73be14610610578063ac60f57e14610630578063b88d4fde14610650578063bc6d263514610670578063c4d7fa901461068557600080fd5b80638afa085e116100fd5780638afa085e1461058a5780638da5cb5b146105aa57806395d89b41146105c8578063a0712d68146105dd578063a22cb465146105f057600080fd5b8063690cf0d1146105015780636c0360eb1461052057806370a0823114610535578063715018a61461055557806384192bbb1461056a57600080fd5b80633c395ae9116101d257806350553c741161019657806350553c741461044757806355f804b3146104675780635c474f9e146104875780635c707f07146104a15780636352211e146104c157806364c0e52f146104e157600080fd5b80633c395ae9146103b05780633ccfd60b146103c557806342842e0e146103da578063438b6300146103fa5780634f6ccce71461042757600080fd5b8063095ea7b311610219578063095ea7b31461031c57806318160ddd1461033c57806323b872dd1461035b5780632f745c591461037b57806338196b551461039b57600080fd5b806301ffc9a71461025657806303339bcb1461028b57806306fdde03146102ad578063081812fc146102cf578063091e8d1314610307575b600080fd5b34801561026257600080fd5b506102766102713660046126e5565b610763565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102ab6102a63660046127d1565b610774565b005b3480156102b957600080fd5b506102c26108a1565b60405161028291906128d0565b3480156102db57600080fd5b506102ef6102ea3660046127b8565b610933565b6040516001600160a01b039091168152602001610282565b34801561031357600080fd5b506102ab6109c8565b34801561032857600080fd5b506102ab610337366004612607565b610a3c565b34801561034857600080fd5b506008545b604051908152602001610282565b34801561036757600080fd5b506102ab610376366004612513565b610b52565b34801561038757600080fd5b5061034d610396366004612607565b610b83565b3480156103a757600080fd5b50600b5461034d565b3480156103bc57600080fd5b50600d5461034d565b3480156103d157600080fd5b506102ab610c19565b3480156103e657600080fd5b506102ab6103f5366004612513565b610c89565b34801561040657600080fd5b5061041a6104153660046124c5565b610ca4565b604051610282919061288c565b34801561043357600080fd5b5061034d6104423660046127b8565b610d46565b34801561045357600080fd5b506102ab610462366004612631565b610dd9565b34801561047357600080fd5b506102ab61048236600461271f565b610e6f565b34801561049357600080fd5b506011546102769060ff1681565b3480156104ad57600080fd5b506102ab6104bc366004612754565b610efa565b3480156104cd57600080fd5b506102ef6104dc3660046127b8565b610fe7565b3480156104ed57600080fd5b5061034d6104fc3660046127b8565b61105e565b34801561050d57600080fd5b5060115461027690610100900460ff1681565b34801561052c57600080fd5b506102c261109c565b34801561054157600080fd5b5061034d6105503660046124c5565b61112a565b34801561056157600080fd5b506102ab6111b1565b34801561057657600080fd5b506102ab6105853660046127b8565b6111e7565b34801561059657600080fd5b506102ab6105a53660046127b8565b611216565b3480156105b657600080fd5b50600a546001600160a01b03166102ef565b3480156105d457600080fd5b506102c2611245565b6102ab6105eb3660046127b8565b611254565b3480156105fc57600080fd5b506102ab61060b3660046125cb565b611418565b34801561061c57600080fd5b506102ab61062b366004612631565b6114dd565b34801561063c57600080fd5b506102ab61064b3660046127b8565b61156f565b34801561065c57600080fd5b506102ab61066b36600461254f565b61159e565b34801561067c57600080fd5b506102ab6115d6565b34801561069157600080fd5b50600c5461034d565b3480156106a657600080fd5b506102c26106b53660046127b8565b611641565b3480156106c657600080fd5b5061034d61271081565b3480156106dc57600080fd5b50600e5461034d565b3480156106f157600080fd5b506102ab61171c565b34801561070657600080fd5b506102766107153660046124e0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561074f57600080fd5b506102ab61075e3660046124c5565b6118f3565b600061076e8261198b565b92915050565b600a546001600160a01b031633146107a75760405162461bcd60e51b815260040161079e90612983565b60405180910390fd5b600e548211156107ec5760405162461bcd60e51b815260206004820152601060248201526f22bc31b2b2b232b2103a37b5b2b7399760811b604482015260640161079e565b6001600160a01b03811661084d5760405162461bcd60e51b815260206004820152602260248201527f7265636569766572416464726573735f206d757374206e6f7420626520656d70604482015261747960f01b606482015260840161079e565b600061085860085490565b905060005b8381101561088a57610878836108738385612a3a565b6119b0565b8061088281612b03565b91505061085d565b5082600e546108999190612a85565b600e55505050565b6060600f80546108b090612ac8565b80601f01602080910402602001604051908101604052809291908181526020018280546108dc90612ac8565b80156109295780601f106108fe57610100808354040283529160200191610929565b820191906000526020600020905b81548152906001019060200180831161090c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109ac5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161079e565b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b031633146109f25760405162461bcd60e51b815260040161079e90612983565b601480546109ff90612ac8565b15159050610a1f5760405162461bcd60e51b815260040161079e90612935565b6011805461ff001981166101009182900460ff1615909102179055565b6000610a4782610fe7565b9050806001600160a01b0316836001600160a01b03161415610ab55760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161079e565b336001600160a01b0382161480610ad15750610ad18133610715565b610b435760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161079e565b610b4d83836119ca565b505050565b610b5c3382611a38565b610b785760405162461bcd60e51b815260040161079e906129b8565b610b4d838383611b2f565b6000610b8e8361112a565b8210610bf05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161079e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c435760405162461bcd60e51b815260040161079e90612983565b47610c56600a546001600160a01b031690565b6001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050610c8657600080fd5b50565b610b4d8383836040518060200160405280600081525061159e565b60606000610cb18361112a565b905060008167ffffffffffffffff811115610cce57610cce612b8a565b604051908082528060200260200182016040528015610cf7578160200160208202803683370190505b50905060005b82811015610d3e57610d0f8582610b83565b828281518110610d2157610d21612b74565b602090810291909101015280610d3681612b03565b915050610cfd565b509392505050565b6000610d5160085490565b8210610db45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161079e565b60088281548110610dc757610dc7612b74565b90600052602060002001549050919050565b600a546001600160a01b03163314610e035760405162461bcd60e51b815260040161079e90612983565b60005b8151811015610e6b57600060136000848481518110610e2757610e27612b74565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610e6381612b03565b915050610e06565b5050565b600a546001600160a01b03163314610e995760405162461bcd60e51b815260040161079e90612983565b8051610ee75760405162461bcd60e51b815260206004820152601760248201527f626173655552495f206d757374206e6f7420656d707479000000000000000000604482015260640161079e565b8051610e6b90601490602084019061239d565b600a546001600160a01b03163314610f245760405162461bcd60e51b815260040161079e90612983565b8151610f725760405162461bcd60e51b815260206004820152601860248201527f6e616d655f206d757374206e6f7420626520656d707479200000000000000000604482015260640161079e565b8051610fc05760405162461bcd60e51b815260206004820152601a60248201527f73796d626f6c5f206d757374206e6f7420626520656d70747920000000000000604482015260640161079e565b8151610fd390600f90602085019061239d565b508051610b4d90601090602084019061239d565b6000818152600260205260408120546001600160a01b03168061076e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161079e565b6000600182101580156110715750600382105b1561107e575050600b5490565b600582101561108f575050600c5490565b5050600d5490565b919050565b601480546110a990612ac8565b80601f01602080910402602001604051908101604052809291908181526020018280546110d590612ac8565b80156111225780601f106110f757610100808354040283529160200191611122565b820191906000526020600020905b81548152906001019060200180831161110557829003601f168201915b505050505081565b60006001600160a01b0382166111955760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161079e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146111db5760405162461bcd60e51b815260040161079e90612983565b6111e56000611cda565b565b600a546001600160a01b031633146112115760405162461bcd60e51b815260040161079e90612983565b600c55565b600a546001600160a01b031633146112405760405162461bcd60e51b815260040161079e90612983565b600d55565b6060601080546108b090612ac8565b600061125f60085490565b9050600061126c8361105e565b9050600061127a8285612a66565b60115490915060ff166112c35760405162461bcd60e51b815260206004820152601160248201527029b0b632903737ba1039ba30b93a32b21760791b604482015260640161079e565b600084116112d057600080fd5b601584106113355760405162461bcd60e51b815260206004820152602c60248201527f596f752063616e6e6f74206d696e74206d6f7265207468616e20323020546f6b60448201526b32b7399030ba1037b731b29760a11b606482015260840161079e565b600e5461134490612710612a85565b61134e8585612a3a565b11156113965760405162461bcd60e51b81526020600482015260176024820152762737ba1032b737bab3b4102a37b5b2b739903632b33a1760491b604482015260640161079e565b803410156113e65760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420656e6f7567682e00604482015260640161079e565b60005b84811015611411576113ff336108738387612a3a565b8061140981612b03565b9150506113e9565b5050505050565b6001600160a01b0382163314156114715760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161079e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146115075760405162461bcd60e51b815260040161079e90612983565b60005b8151811015610e6b5760016013600084848151811061152b5761152b612b74565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061156781612b03565b91505061150a565b600a546001600160a01b031633146115995760405162461bcd60e51b815260040161079e90612983565b600b55565b6115a83383611a38565b6115c45760405162461bcd60e51b815260040161079e906129b8565b6115d084848484611d2c565b50505050565b600a546001600160a01b031633146116005760405162461bcd60e51b815260040161079e90612983565b6014805461160d90612ac8565b1515905061162d5760405162461bcd60e51b815260040161079e90612935565b6011805460ff19811660ff90911615179055565b6000818152600260205260409020546060906001600160a01b03166116c05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161079e565b60006116ca611d5f565b905060008151116116ea5760405180602001604052806000815250611715565b806116f484611d6e565b604051602001611705929190612820565b6040516020818303038152906040525b9392505050565b3360008181526013602052604090205460ff1615156001146117945760405162461bcd60e51b815260206004820152602b60248201527f596f7520617265206e6f7420656c696769626c6520746f206d696e742070726560448201526a16b9b0b632902a37b5b2b760a91b606482015260840161079e565b6001600160a01b03811660009081526012602052604090205460ff161561180d5760405162461bcd60e51b815260206004820152602760248201527f596f7572206672656520546f6b656e2068617320616c7265616479206265656e604482015266081b5a5b9d195960ca1b606482015260840161079e565b600061181860085490565b601154909150610100900460ff166118695760405162461bcd60e51b8152602060048201526014602482015273283932a9b0b632903737ba1039ba30b93a32b21760611b604482015260640161079e565b600e5461187890612710612a85565b611883826001612a3a565b11156118cb5760405162461bcd60e51b81526020600482015260176024820152762737ba1032b737bab3b4102a37b5b2b739903632b33a1760491b604482015260640161079e565b6118d533826119b0565b5050336000908152601260205260409020805460ff19166001179055565b600a546001600160a01b0316331461191d5760405162461bcd60e51b815260040161079e90612983565b6001600160a01b0381166119825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079e565b610c8681611cda565b60006001600160e01b0319821663780e9d6360e01b148061076e575061076e82611e6c565b610e6b828260405180602001604052806000815250611ebc565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119ff82610fe7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ab15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161079e565b6000611abc83610fe7565b9050806001600160a01b0316846001600160a01b03161480611af75750836001600160a01b0316611aec84610933565b6001600160a01b0316145b80611b2757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b4282610fe7565b6001600160a01b031614611baa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161079e565b6001600160a01b038216611c0c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161079e565b611c17838383611eef565b611c226000826119ca565b6001600160a01b0383166000908152600360205260408120805460019290611c4b908490612a85565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c79908490612a3a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611d37848484611b2f565b611d4384848484611efa565b6115d05760405162461bcd60e51b815260040161079e906128e3565b6060601480546108b090612ac8565b606081611d925750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dbc5780611da681612b03565b9150611db59050600a83612a52565b9150611d96565b60008167ffffffffffffffff811115611dd757611dd7612b8a565b6040519080825280601f01601f191660200182016040528015611e01576020820181803683370190505b5090505b8415611b2757611e16600183612a85565b9150611e23600a86612b1e565b611e2e906030612a3a565b60f81b818381518110611e4357611e43612b74565b60200101906001600160f81b031916908160001a905350611e65600a86612a52565b9450611e05565b60006001600160e01b031982166380ac58cd60e01b1480611e9d57506001600160e01b03198216635b5e139f60e01b145b8061076e57506301ffc9a760e01b6001600160e01b031983161461076e565b611ec68383612007565b611ed36000848484611efa565b610b4d5760405162461bcd60e51b815260040161079e906128e3565b610b4d838383612155565b60006001600160a01b0384163b15611ffc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f3e90339089908890889060040161284f565b602060405180830381600087803b158015611f5857600080fd5b505af1925050508015611f88575060408051601f3d908101601f19168201909252611f8591810190612702565b60015b611fe2573d808015611fb6576040519150601f19603f3d011682016040523d82523d6000602084013e611fbb565b606091505b508051611fda5760405162461bcd60e51b815260040161079e906128e3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b27565b506001949350505050565b6001600160a01b03821661205d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161079e565b6000818152600260205260409020546001600160a01b0316156120c25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161079e565b6120ce60008383611eef565b6001600160a01b03821660009081526003602052604081208054600192906120f7908490612a3a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b0383166121b0576121ab81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6121d3565b816001600160a01b0316836001600160a01b0316146121d3576121d3838261220d565b6001600160a01b0382166121ea57610b4d816122aa565b826001600160a01b0316826001600160a01b031614610b4d57610b4d8282612359565b6000600161221a8461112a565b6122249190612a85565b600083815260076020526040902054909150808214612277576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906122bc90600190612a85565b600083815260096020526040812054600880549394509092849081106122e4576122e4612b74565b90600052602060002001549050806008838154811061230557612305612b74565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061233d5761233d612b5e565b6001900381819060005260206000200160009055905550505050565b60006123648361112a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546123a990612ac8565b90600052602060002090601f0160209004810192826123cb5760008555612411565b82601f106123e457805160ff1916838001178555612411565b82800160010185558215612411579182015b828111156124115782518255916020019190600101906123f6565b5061241d929150612421565b5090565b5b8082111561241d5760008155600101612422565b600067ffffffffffffffff83111561245057612450612b8a565b612463601f8401601f1916602001612a09565b905082815283838301111561247757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461109757600080fd5b600082601f8301126124b657600080fd5b61171583833560208501612436565b6000602082840312156124d757600080fd5b6117158261248e565b600080604083850312156124f357600080fd5b6124fc8361248e565b915061250a6020840161248e565b90509250929050565b60008060006060848603121561252857600080fd5b6125318461248e565b925061253f6020850161248e565b9150604084013590509250925092565b6000806000806080858703121561256557600080fd5b61256e8561248e565b935061257c6020860161248e565b925060408501359150606085013567ffffffffffffffff81111561259f57600080fd5b8501601f810187136125b057600080fd5b6125bf87823560208401612436565b91505092959194509250565b600080604083850312156125de57600080fd5b6125e78361248e565b9150602083013580151581146125fc57600080fd5b809150509250929050565b6000806040838503121561261a57600080fd5b6126238361248e565b946020939093013593505050565b6000602080838503121561264457600080fd5b823567ffffffffffffffff8082111561265c57600080fd5b818501915085601f83011261267057600080fd5b81358181111561268257612682612b8a565b8060051b9150612693848301612a09565b8181528481019084860184860187018a10156126ae57600080fd5b600095505b838610156126d8576126c48161248e565b8352600195909501949186019186016126b3565b5098975050505050505050565b6000602082840312156126f757600080fd5b813561171581612ba0565b60006020828403121561271457600080fd5b815161171581612ba0565b60006020828403121561273157600080fd5b813567ffffffffffffffff81111561274857600080fd5b611b27848285016124a5565b6000806040838503121561276757600080fd5b823567ffffffffffffffff8082111561277f57600080fd5b61278b868387016124a5565b935060208501359150808211156127a157600080fd5b506127ae858286016124a5565b9150509250929050565b6000602082840312156127ca57600080fd5b5035919050565b600080604083850312156127e457600080fd5b8235915061250a6020840161248e565b6000815180845261280c816020860160208601612a9c565b601f01601f19169290920160200192915050565b60008351612832818460208801612a9c565b835190830190612846818360208801612a9c565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612882908301846127f4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128c4578351835292840192918401916001016128a8565b50909695505050505050565b60208152600061171560208301846127f4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f62617365555249206d757374206e6f7420626520656d707479206265666f726560408201526d2073746172742073656c6c696e6760901b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612a3257612a32612b8a565b604052919050565b60008219821115612a4d57612a4d612b32565b500190565b600082612a6157612a61612b48565b500490565b6000816000190483118215151615612a8057612a80612b32565b500290565b600082821015612a9757612a97612b32565b500390565b60005b83811015612ab7578181015183820152602001612a9f565b838111156115d05750506000910152565b600181811c90821680612adc57607f821691505b60208210811415612afd57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b1757612b17612b32565b5060010190565b600082612b2d57612b2d612b48565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c8657600080fdfea2646970667358221220ec768cf1011959ff2f5be7788e37ffa4acfa1145da6c653ddf725fad68520d9664736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000094d696e694e6f756e73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044d494e4900000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): MiniNouns
Arg [1] : symbol_ (string): MINI
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 4d696e694e6f756e730000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 4d494e4900000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
48986:6760:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55531:212;;;;;;;;;;-1:-1:-1;55531:212:0;;;;;:::i;:::-;;:::i;:::-;;;7931:14:1;;7924:22;7906:41;;7894:2;7879:18;55531:212:0;;;;;;;;54151:512;;;;;;;;;;-1:-1:-1;54151:512:0;;;;;:::i;:::-;;:::i;:::-;;50242:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22427:221::-;;;;;;;;;;-1:-1:-1;22427:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6592:32:1;;;6574:51;;6562:2;6547:18;22427:221:0;6428:203:1;50446:235:0;;;;;;;;;;;;;:::i;21950:411::-;;;;;;;;;;-1:-1:-1;21950:411:0;;;;;:::i;:::-;;:::i;34400:113::-;;;;;;;;;;-1:-1:-1;34488:10:0;:17;34400:113;;;20398:25:1;;;20386:2;20371:18;34400:113:0;20252:177:1;23317:339:0;;;;;;;;;;-1:-1:-1;23317:339:0;;;;;:::i;:::-;;:::i;34068:256::-;;;;;;;;;;-1:-1:-1;34068:256:0;;;;;:::i;:::-;;:::i;53115:97::-;;;;;;;;;;-1:-1:-1;53188:16:0;;53115:97;;53561;;;;;;;;;;-1:-1:-1;53634:16:0;;53561:97;;54671:147;;;;;;;;;;;;;:::i;23727:185::-;;;;;;;;;;-1:-1:-1;23727:185:0;;;;;:::i;:::-;;:::i;53766:377::-;;;;;;;;;;-1:-1:-1;53766:377:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;34590:233::-;;;;;;;;;;-1:-1:-1;34590:233:0;;;;;:::i;:::-;;:::i;55062:232::-;;;;;;;;;;-1:-1:-1;55062:232:0;;;;;:::i;:::-;;:::i;52701:172::-;;;;;;;;;;-1:-1:-1;52701:172:0;;;;;:::i;:::-;;:::i;49394:31::-;;;;;;;;;;-1:-1:-1;49394:31:0;;;;;;;;49925:309;;;;;;;;;;-1:-1:-1;49925:309:0;;;;;:::i;:::-;;:::i;20562:239::-;;;;;;;;;;-1:-1:-1;20562:239:0;;;;;:::i;:::-;;:::i;50923:319::-;;;;;;;;;;-1:-1:-1;50923:319:0;;;;;:::i;:::-;;:::i;49432:34::-;;;;;;;;;;-1:-1:-1;49432:34:0;;;;;;;;;;;49586:21;;;;;;;;;;;;;:::i;20292:208::-;;;;;;;;;;-1:-1:-1;20292:208:0;;;;;:::i;:::-;;:::i;48355:94::-;;;;;;;;;;;;;:::i;53220:110::-;;;;;;;;;;-1:-1:-1;53220:110:0;;;;;:::i;:::-;;:::i;53443:::-;;;;;;;;;;-1:-1:-1;53443:110:0;;;;;:::i;:::-;;:::i;47704:87::-;;;;;;;;;;-1:-1:-1;47777:6:0;;-1:-1:-1;;;;;47777:6:0;47704:87;;50342:96;;;;;;;;;;;;;:::i;51250:750::-;;;;;;:::i;:::-;;:::i;22720:295::-;;;;;;;;;;-1:-1:-1;22720:295:0;;;;;:::i;:::-;;:::i;54826:228::-;;;;;;;;;;-1:-1:-1;54826:228:0;;;;;:::i;:::-;;:::i;52997:110::-;;;;;;;;;;-1:-1:-1;52997:110:0;;;;;:::i;:::-;;:::i;23983:328::-;;;;;;;;;;-1:-1:-1;23983:328:0;;;;;:::i;:::-;;:::i;50689:226::-;;;;;;;;;;;;;:::i;53338:97::-;;;;;;;;;;-1:-1:-1;53411:16:0;;53338:97;;21212:334;;;;;;;;;;-1:-1:-1;21212:334:0;;;;;:::i;:::-;;:::i;49084:41::-;;;;;;;;;;;;49120:5;49084:41;;53666:92;;;;;;;;;;-1:-1:-1;53741:9:0;;53666:92;;52373:320;;;;;;;;;;;;;:::i;23086:164::-;;;;;;;;;;-1:-1:-1;23086:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23207:25:0;;;23183:4;23207:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23086:164;48604:192;;;;;;;;;;-1:-1:-1;48604:192:0;;;;;:::i;:::-;;:::i;55531:212::-;55670:4;55699:36;55723:11;55699:23;:36::i;:::-;55692:43;55531:212;-1:-1:-1;;55531:212:0:o;54151:512::-;47777:6;;-1:-1:-1;;;;;47777:6:0;1438:10;47924:23;47916:68;;;;-1:-1:-1;;;47916:68:0;;;;;;;:::i;:::-;;;;;;;;;54291:9:::1;;54276:11;:24;;54268:53;;;::::0;-1:-1:-1;;;54268:53:0;;11439:2:1;54268:53:0::1;::::0;::::1;11421:21:1::0;11478:2;11458:18;;;11451:30;-1:-1:-1;;;11497:18:1;;;11490:46;11553:18;;54268:53:0::1;11237:340:1::0;54268:53:0::1;-1:-1:-1::0;;;;;54354:30:0;::::1;54332:114;;;::::0;-1:-1:-1;;;54332:114:0;;13025:2:1;54332:114:0::1;::::0;::::1;13007:21:1::0;13064:2;13044:18;;;13037:30;13103:34;13083:18;;;13076:62;-1:-1:-1;;;13154:18:1;;;13147:32;13196:19;;54332:114:0::1;12823:398:1::0;54332:114:0::1;54459:16;54478:13;34488:10:::0;:17;;34400:113;54478:13:::1;54459:32;;54507:9;54502:106;54522:11;54518:1;:15;54502:106;;;54555:41;54565:16:::0;54583:12:::1;54594:1:::0;54583:8;:12:::1;:::i;:::-;54555:9;:41::i;:::-;54535:3:::0;::::1;::::0;::::1;:::i;:::-;;;;54502:106;;;;54644:11;54632:9;;:23;;;;:::i;:::-;54620:9;:35:::0;-1:-1:-1;;;54151:512:0:o;50242:92::-;50288:13;50321:5;50314:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50242:92;:::o;22427:221::-;22503:7;25910:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25910:16:0;22523:73;;;;-1:-1:-1;;;22523:73:0;;15395:2:1;22523:73:0;;;15377:21:1;15434:2;15414:18;;;15407:30;15473:34;15453:18;;;15446:62;-1:-1:-1;;;15524:18:1;;;15517:42;15576:19;;22523:73:0;15193:408:1;22523:73:0;-1:-1:-1;22616:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22616:24:0;;22427:221::o;50446:235::-;47777:6;;-1:-1:-1;;;;;47777:6:0;1438:10;47924:23;47916:68;;;;-1:-1:-1;;;47916:68:0;;;;;;;:::i;:::-;50536:7:::1;50530:21;;;;;:::i;:::-;:26:::0;::::1;::::0;-1:-1:-1;50508:122:0::1;;;;-1:-1:-1::0;;;50508:122:0::1;;;;;;;:::i;:::-;50659:14;::::0;;-1:-1:-1;;50641:32:0;::::1;50659:14;::::0;;;::::1;;;50658:15;50641:32:::0;;::::1;;::::0;;50446:235::o;21950:411::-;22031:13;22047:23;22062:7;22047:14;:23::i;:::-;22031:39;;22095:5;-1:-1:-1;;;;;22089:11:0;:2;-1:-1:-1;;;;;22089:11:0;;;22081:57;;;;-1:-1:-1;;;22081:57:0;;18813:2:1;22081:57:0;;;18795:21:1;18852:2;18832:18;;;18825:30;18891:34;18871:18;;;18864:62;-1:-1:-1;;;18942:18:1;;;18935:31;18983:19;;22081:57:0;18611:397:1;22081:57:0;1438:10;-1:-1:-1;;;;;22173:21:0;;;;:62;;-1:-1:-1;22198:37:0;22215:5;1438:10;23086:164;:::i;22198:37::-;22151:168;;;;-1:-1:-1;;;22151:168:0;;13428:2:1;22151:168:0;;;13410:21:1;13467:2;13447:18;;;13440:30;13506:34;13486:18;;;13479:62;13577:26;13557:18;;;13550:54;13621:19;;22151:168:0;13226:420:1;22151:168:0;22332:21;22341:2;22345:7;22332:8;:21::i;:::-;22020:341;21950:411;;:::o;23317:339::-;23512:41;1438:10;23545:7;23512:18;:41::i;:::-;23504:103;;;;-1:-1:-1;;;23504:103:0;;;;;;;:::i;:::-;23620:28;23630:4;23636:2;23640:7;23620:9;:28::i;34068:256::-;34165:7;34201:23;34218:5;34201:16;:23::i;:::-;34193:5;:31;34185:87;;;;-1:-1:-1;;;34185:87:0;;8384:2:1;34185:87:0;;;8366:21:1;8423:2;8403:18;;;8396:30;8462:34;8442:18;;;8435:62;-1:-1:-1;;;8513:18:1;;;8506:41;8564:19;;34185:87:0;8182:407:1;34185:87:0;-1:-1:-1;;;;;;34290:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34068:256::o;54671:147::-;47777:6;;-1:-1:-1;;;;;47777:6:0;1438:10;47924:23;47916:68;;;;-1:-1:-1;;;47916:68:0;;;;;;;:::i;:::-;54738:21:::1;54786:7;47777:6:::0;;-1:-1:-1;;;;;47777:6:0;;47704:87;54786:7:::1;-1:-1:-1::0;;;;;54778:21:0::1;:31;54800:8;54778:31;;;;;;;;;;;;;;;;;;;;;;;54770:40;;;::::0;::::1;;54708:110;54671:147::o:0;23727:185::-;23865:39;23882:4;23888:2;23892:7;23865:39;;;;;;;;;;;;:16;:39::i;53766:377::-;53853:16;53887:18;53908:17;53918:6;53908:9;:17::i;:::-;53887:38;;53938:25;53980:10;53966:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53966:25:0;;53938:53;;54007:9;54002:108;54022:10;54018:1;:14;54002:108;;;54068:30;54088:6;54096:1;54068:19;:30::i;:::-;54054:8;54063:1;54054:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;54034:3;;;;:::i;:::-;;;;54002:108;;;-1:-1:-1;54127:8:0;53766:377;-1:-1:-1;;;53766:377:0:o;34590:233::-;34665:7;34701:30;34488:10;:17;;34400:113;34701:30;34693:5;:38;34685:95;;;;-1:-1:-1;;;34685:95:0;;20041:2:1;34685:95:0;;;20023:21:1;20080:2;20060:18;;;20053:30;20119:34;20099:18;;;20092:62;-1:-1:-1;;;20170:18:1;;;20163:42;20222:19;;34685:95:0;19839:408:1;34685:95:0;34798:10;34809:5;34798:17;;;;;;;;:::i;:::-;;;;;;;;;34791:24;;34590:233;;;:::o;55062:232::-;47777:6;;-1:-1:-1;;;;;47777:6:0;1438:10;47924:23;47916:68;;;;-1:-1:-1;;;47916:68:0;;;;;;;:::i;:::-;55181:9:::1;55176:111;55196:10;:17;55192:1;:21;55176:111;;;55270:5;55235:17;:32;55253:10;55264:1;55253:13;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;55235:32:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;55235:32:0;:40;;-1:-1:-1;;55235:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;55215:3;::::1;::::0;::::1;:::i;:::-;;;;55176:111;;;;55062:232:::0;:::o;52701:172::-;47777:6;;-1:-1:-1;;;;;47777:6:0;1438:10;47924:23;47916:68;;;;-1:-1:-1;;;47916:68:0;;;;;;;:::i;:::-;52781:22;;52773:63:::1;;;::::0;-1:-1:-1;;;52773:63:0;;15808:2:1;52773:63:0::1;::::0;::::1;15790:21:1::0;15847:2;15827:18;;;15820:30;15886:25;15866:18;;;15859:53;15929:18;;52773:63:0::1;15606:347:1::0;52773:63:0::1;52847:18:::0;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;49925:309::-:0;47777:6;;-1:-1:-1;;;;;47777:6:0;1438:10;47924:23;47916:68;;;;-1:-1:-1;;;47916:68:0;;;;;;;:::i;:::-;50045:19;;50037:61:::1;;;::::0;-1:-1:-1;;;50037:61:0;;16160:2:1;50037:61:0::1;::::0;::::1;16142:21:1::0;16199:2;16179:18;;;16172:30;16238:26;16218:18;;;16211:54;16282:18;;50037:61:0::1;15958:348:1::0;50037:61:0::1;50117:21:::0;;50109:65:::1;;;::::0;-1:-1:-1;;;50109:65:0;;11084:2:1;50109:65:0::1;::::0;::::1;11066:21:1::0;11123:2;11103:18;;;11096:30;11162:28;11142:18;;;11135:56;11208:18;;50109:65:0::1;10882:350:1::0;50109:65:0::1;50185:13:::0;;::::1;::::0;:5:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;50209:17:0;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;20562:239::-:0;20634:7;20670:16;;;:7;:16;;;;;;-1:-1:-1;;;;;20670:16:0;20705:19;20697:73;;;;-1:-1:-1;;;20697:73:0;;14624:2:1;20697:73:0;;;14606:21:1;14663:2;14643:18;;;14636:30;14702:34;14682:18;;;14675:62;-1:-1:-1;;;14753:18:1;;;14746:39;14802:19;;20697:73:0;14422:405:1;50923:319:0;50988:7;51028:1;51012:12;:17;;:37;;;;;51048:1;51033:12;:16;51012:37;51008:227;;;-1:-1:-1;;51073:16:0;;;50923:319::o;51008:227::-;51126:1;51111:12;:16;51107:128;;;-1:-1:-1;;51151:16:0;;;50923:319::o;51107:128::-;-1:-1:-1;;51207:16:0;;;50923:319::o;51107:128::-;50923:319;;;:::o;49586:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20292:208::-;20364:7;-1:-1:-1;;;;;20392:19:0;;20384:74;;;;-1:-1:-1;;;20384:74:0;;14213:2:1;20384:74:0;;;14195:21:1;14252:2;14232:18;;;14225:30;14291:34;14271:18;;;14264:62;-1:-1:-1;;;14342:18:1;;;14335:40;14392:19;;20384:74:0;14011:406:1;20384:74:0;-1:-1:-1;;;;;;20476:16:0;;;;;:9;:16;;;;;;;20292:208::o;48355:94::-;47777:6;;-1:-1:-1;;;;;47777:6:0;1438:10;47924:23;47916:68;;;;-1:-1:-1;;;47916:68:0;;;;;;;:::i;:::-;48420:21:::1;48438:1;48420:9;:21::i;:::-;48355:94::o:0;53220:110::-;47777:6;;-1:-1:-1;;;;;47777:6:0;1438:10;47924:23;47916:68;;;;-1:-1:-1;;;47916:68:0;;;;;;;:::i;:::-;53293:16:::1;:29:::0;53220:110::o;53443:::-;47777:6;;-1:-1:-1;;;;;47777:6:0;1438:10;47924:23;47916:68;;;;-1:-1:-1;;;47916:68:0;;;;;;;:::i;:::-;53516:16:::1;:29:::0;53443:110::o;50342:96::-;50390:13;50423:7;50416:14;;;;;:::i;51250:750::-;51314:14;51331:13;34488:10;:17;;34400:113;51331:13;51314:30;;51355:18;51376:26;51389:12;51376;:26::i;:::-;51355:47;-1:-1:-1;51413:19:0;51435:25;51355:47;51435:12;:25;:::i;:::-;51481:11;;51413:47;;-1:-1:-1;51481:11:0;;51473:41;;;;-1:-1:-1;;;51473:41:0;;9622:2:1;51473:41:0;;;9604:21:1;9661:2;9641:18;;;9634:30;-1:-1:-1;;;9680:18:1;;;9673:47;9737:18;;51473:41:0;9420:341:1;51473:41:0;51548:1;51533:12;:16;51525:25;;;;;;51598:2;51583:12;:17;51561:111;;;;-1:-1:-1;;;51561:111:0;;12197:2:1;51561:111:0;;;12179:21:1;12236:2;12216:18;;;12209:30;12275:34;12255:18;;;12248:62;-1:-1:-1;;;12326:18:1;;;12319:42;12378:19;;51561:111:0;11995:408:1;51561:111:0;51742:9;;51730:21;;49120:5;51730:21;:::i;:::-;51705;51714:12;51705:6;:21;:::i;:::-;:46;;51683:119;;;;-1:-1:-1;;;51683:119:0;;16874:2:1;51683:119:0;;;16856:21:1;16913:2;16893:18;;;16886:30;-1:-1:-1;;;16932:18:1;;;16925:53;16995:18;;51683:119:0;16672:347:1;51683:119:0;51834:11;51821:9;:24;;51813:68;;;;-1:-1:-1;;;51813:68:0;;13853:2:1;51813:68:0;;;13835:21:1;13892:2;13872:18;;;13865:30;13931:33;13911:18;;;13904:61;13982:18;;51813:68:0;13651:355:1;51813:68:0;51899:9;51894:99;51914:12;51910:1;:16;51894:99;;;51948:33;51958:10;51970;51979:1;51970:6;:10;:::i;51948:33::-;51928:3;;;;:::i;:::-;;;;51894:99;;;;51303:697;;;51250:750;:::o;22720:295::-;-1:-1:-1;;;;;22823:24:0;;1438:10;22823:24;;22815:62;;;;-1:-1:-1;;;22815:62:0;;10730:2:1;22815:62:0;;;10712:21:1;10769:2;10749:18;;;10742:30;10808:27;10788:18;;;10781:55;10853:18;;22815:62:0;10528:349:1;22815:62:0;1438:10;22890:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;22890:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;22890:53:0;;;;;;;;;;22959:48;;7906:41:1;;;22890:42:0;;1438:10;22959:48;;7879:18:1;22959:48:0;;;;;;;22720:295;;:::o;54826:228::-;47777:6;;-1:-1:-1;;;;;47777:6:0;1438:10;47924:23;47916:68;;;;-1:-1:-1;;;47916:68:0;;;;;;;:::i;:::-;54942:9:::1;54937:110;54957:10;:17;54953:1;:21;54937:110;;;55031:4;54996:17;:32;55014:10;55025:1;55014:13;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;54996:32:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;54996:32:0;:39;;-1:-1:-1;;54996:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54976:3;::::1;::::0;::::1;:::i;:::-;;;;54937:110;;52997::::0;47777:6;;-1:-1:-1;;;;;47777:6:0;1438:10;47924:23;47916:68;;;;-1:-1:-1;;;47916:68:0;;;;;;;:::i;:::-;53070:16:::1;:29:::0;52997:110::o;23983:328::-;24158:41;1438:10;24191:7;24158:18;:41::i;:::-;24150:103;;;;-1:-1:-1;;;24150:103:0;;;;;;;:::i;:::-;24264:39;24278:4;24284:2;24288:7;24297:5;24264:13;:39::i;:::-;23983:328;;;;:::o;50689:226::-;47777:6;;-1:-1:-1;;;;;47777:6:0;1438:10;47924:23;47916:68;;;;-1:-1:-1;;;47916:68:0;;;;;;;:::i;:::-;50776:7:::1;50770:21;;;;;:::i;:::-;:26:::0;::::1;::::0;-1:-1:-1;50748:122:0::1;;;;-1:-1:-1::0;;;50748:122:0::1;;;;;;;:::i;:::-;50896:11;::::0;;-1:-1:-1;;50881:26:0;::::1;50896:11;::::0;;::::1;50895:12;50881:26;::::0;;50689:226::o;21212:334::-;25886:4;25910:16;;;:7;:16;;;;;;21285:13;;-1:-1:-1;;;;;25910:16:0;21311:76;;;;-1:-1:-1;;;21311:76:0;;17636:2:1;21311:76:0;;;17618:21:1;17675:2;17655:18;;;17648:30;17714:34;17694:18;;;17687:62;-1:-1:-1;;;17765:18:1;;;17758:45;17820:19;;21311:76:0;17434:411:1;21311:76:0;21400:21;21424:10;:8;:10::i;:::-;21400:34;;21476:1;21458:7;21452:21;:25;:86;;;;;;;;;;;;;;;;;21504:7;21513:18;:7;:16;:18::i;:::-;21487:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21452:86;21445:93;21212:334;-1:-1:-1;;;21212:334:0:o;52373:320::-;1438:10;52045:15;52108:26;;;:17;:26;;;;;;;;:34;;:26;:34;52086:127;;;;-1:-1:-1;;;52086:127:0;;18052:2:1;52086:127:0;;;18034:21:1;18091:2;18071:18;;;18064:30;18130:34;18110:18;;;18103:62;-1:-1:-1;;;18181:18:1;;;18174:41;18232:19;;52086:127:0;17850:407:1;52086:127:0;-1:-1:-1;;;;;52246:23:0;;;;;;:14;:23;;;;;;;;:32;52224:121;;;;-1:-1:-1;;;52224:121:0;;19215:2:1;52224:121:0;;;19197:21:1;19254:2;19234:18;;;19227:30;19293:34;19273:18;;;19266:62;-1:-1:-1;;;19344:18:1;;;19337:37;19391:19;;52224:121:0;19013:403:1;52224:121:0;52431:14:::1;52448:13;34488:10:::0;:17;;34400:113;52448:13:::1;52480:14;::::0;52431:30;;-1:-1:-1;52480:14:0::1;::::0;::::1;;;52472:47;;;::::0;-1:-1:-1;;;52472:47:0;;18464:2:1;52472:47:0::1;::::0;::::1;18446:21:1::0;18503:2;18483:18;;;18476:30;-1:-1:-1;;;18522:18:1;;;18515:50;18582:18;;52472:47:0::1;18262:344:1::0;52472:47:0::1;52564:9;::::0;52552:21:::1;::::0;49120:5:::1;52552:21;:::i;:::-;52538:10;:6:::0;52547:1:::1;52538:10;:::i;:::-;:35;;52530:71;;;::::0;-1:-1:-1;;;52530:71:0;;16874:2:1;52530:71:0::1;::::0;::::1;16856:21:1::0;16913:2;16893:18;;;16886:30;-1:-1:-1;;;16932:18:1;;;16925:53;16995:18;;52530:71:0::1;16672:347:1::0;52530:71:0::1;52612:29;52622:10;52634:6;52612:9;:29::i;:::-;-1:-1:-1::0;;52667:10:0::1;52652:26;::::0;;;:14:::1;:26;::::0;;;;:33;;-1:-1:-1;;52652:33:0::1;52681:4;52652:33;::::0;;52373:320::o;48604:192::-;47777:6;;-1:-1:-1;;;;;47777:6:0;1438:10;47924:23;47916:68;;;;-1:-1:-1;;;47916:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48693:22:0;::::1;48685:73;;;::::0;-1:-1:-1;;;48685:73:0;;9215:2:1;48685:73:0::1;::::0;::::1;9197:21:1::0;9254:2;9234:18;;;9227:30;9293:34;9273:18;;;9266:62;-1:-1:-1;;;9344:18:1;;;9337:36;9390:19;;48685:73:0::1;9013:402:1::0;48685:73:0::1;48769:19;48779:8;48769:9;:19::i;33760:224::-:0;33862:4;-1:-1:-1;;;;;;33886:50:0;;-1:-1:-1;;;33886:50:0;;:90;;;33940:36;33964:11;33940:23;:36::i;26805:110::-;26881:26;26891:2;26895:7;26881:26;;;;;;;;;;;;:9;:26::i;29803:174::-;29878:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;29878:29:0;-1:-1:-1;;;;;29878:29:0;;;;;;;;:24;;29932:23;29878:24;29932:14;:23::i;:::-;-1:-1:-1;;;;;29923:46:0;;;;;;;;;;;29803:174;;:::o;26115:348::-;26208:4;25910:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25910:16:0;26225:73;;;;-1:-1:-1;;;26225:73:0;;11784:2:1;26225:73:0;;;11766:21:1;11823:2;11803:18;;;11796:30;11862:34;11842:18;;;11835:62;-1:-1:-1;;;11913:18:1;;;11906:42;11965:19;;26225:73:0;11582:408:1;26225:73:0;26309:13;26325:23;26340:7;26325:14;:23::i;:::-;26309:39;;26378:5;-1:-1:-1;;;;;26367:16:0;:7;-1:-1:-1;;;;;26367:16:0;;:51;;;;26411:7;-1:-1:-1;;;;;26387:31:0;:20;26399:7;26387:11;:20::i;:::-;-1:-1:-1;;;;;26387:31:0;;26367:51;:87;;;-1:-1:-1;;;;;;23207:25:0;;;23183:4;23207:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26422:32;26359:96;26115:348;-1:-1:-1;;;;26115:348:0:o;29107:578::-;29266:4;-1:-1:-1;;;;;29239:31:0;:23;29254:7;29239:14;:23::i;:::-;-1:-1:-1;;;;;29239:31:0;;29231:85;;;;-1:-1:-1;;;29231:85:0;;17226:2:1;29231:85:0;;;17208:21:1;17265:2;17245:18;;;17238:30;17304:34;17284:18;;;17277:62;-1:-1:-1;;;17355:18:1;;;17348:39;17404:19;;29231:85:0;17024:405:1;29231:85:0;-1:-1:-1;;;;;29335:16:0;;29327:65;;;;-1:-1:-1;;;29327:65:0;;10325:2:1;29327:65:0;;;10307:21:1;10364:2;10344:18;;;10337:30;10403:34;10383:18;;;10376:62;-1:-1:-1;;;10454:18:1;;;10447:34;10498:19;;29327:65:0;10123:400:1;29327:65:0;29405:39;29426:4;29432:2;29436:7;29405:20;:39::i;:::-;29509:29;29526:1;29530:7;29509:8;:29::i;:::-;-1:-1:-1;;;;;29551:15:0;;;;;;:9;:15;;;;;:20;;29570:1;;29551:15;:20;;29570:1;;29551:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29582:13:0;;;;;;:9;:13;;;;;:18;;29599:1;;29582:13;:18;;29599:1;;29582:18;:::i;:::-;;;;-1:-1:-1;;29611:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29611:21:0;-1:-1:-1;;;;;29611:21:0;;;;;;;;;29650:27;;29611:16;;29650:27;;;;;;;29107:578;;;:::o;48804:173::-;48879:6;;;-1:-1:-1;;;;;48896:17:0;;;-1:-1:-1;;;;;;48896:17:0;;;;;;;48929:40;;48879:6;;;48896:17;48879:6;;48929:40;;48860:16;;48929:40;48849:128;48804:173;:::o;25193:315::-;25350:28;25360:4;25366:2;25370:7;25350:9;:28::i;:::-;25397:48;25420:4;25426:2;25430:7;25439:5;25397:22;:48::i;:::-;25389:111;;;;-1:-1:-1;;;25389:111:0;;;;;;;:::i;52881:108::-;52941:13;52974:7;52967:14;;;;;:::i;1804:723::-;1860:13;2081:10;2077:53;;-1:-1:-1;;2108:10:0;;;;;;;;;;;;-1:-1:-1;;;2108:10:0;;;;;1804:723::o;2077:53::-;2155:5;2140:12;2196:78;2203:9;;2196:78;;2229:8;;;;:::i;:::-;;-1:-1:-1;2252:10:0;;-1:-1:-1;2260:2:0;2252:10;;:::i;:::-;;;2196:78;;;2284:19;2316:6;2306:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2306:17:0;;2284:39;;2334:154;2341:10;;2334:154;;2368:11;2378:1;2368:11;;:::i;:::-;;-1:-1:-1;2437:10:0;2445:2;2437:5;:10;:::i;:::-;2424:24;;:2;:24;:::i;:::-;2411:39;;2394:6;2401;2394:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2394:56:0;;;;;;;;-1:-1:-1;2465:11:0;2474:2;2465:11;;:::i;:::-;;;2334:154;;19923:305;20025:4;-1:-1:-1;;;;;;20062:40:0;;-1:-1:-1;;;20062:40:0;;:105;;-1:-1:-1;;;;;;;20119:48:0;;-1:-1:-1;;;20119:48:0;20062:105;:158;;;-1:-1:-1;;;;;;;;;;18639:40:0;;;20184:36;18530:157;27142:321;27272:18;27278:2;27282:7;27272:5;:18::i;:::-;27323:54;27354:1;27358:2;27362:7;27371:5;27323:22;:54::i;:::-;27301:154;;;;-1:-1:-1;;;27301:154:0;;;;;;;:::i;55302:221::-;55467:48;55494:5;55501:3;55506:8;55467:26;:48::i;30542:799::-;30697:4;-1:-1:-1;;;;;30718:13:0;;10808:20;10856:8;30714:620;;30754:72;;-1:-1:-1;;;30754:72:0;;-1:-1:-1;;;;;30754:36:0;;;;;:72;;1438:10;;30805:4;;30811:7;;30820:5;;30754:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30754:72:0;;;;;;;;-1:-1:-1;;30754:72:0;;;;;;;;;;;;:::i;:::-;;;30750:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30996:13:0;;30992:272;;31039:60;;-1:-1:-1;;;31039:60:0;;;;;;;:::i;30992:272::-;31214:6;31208:13;31199:6;31195:2;31191:15;31184:38;30750:529;-1:-1:-1;;;;;;30877:51:0;-1:-1:-1;;;30877:51:0;;-1:-1:-1;30870:58:0;;30714:620;-1:-1:-1;31318:4:0;30542:799;;;;;;:::o;27799:382::-;-1:-1:-1;;;;;27879:16:0;;27871:61;;;;-1:-1:-1;;;27871:61:0;;15034:2:1;27871:61:0;;;15016:21:1;;;15053:18;;;15046:30;15112:34;15092:18;;;15085:62;15164:18;;27871:61:0;14832:356:1;27871:61:0;25886:4;25910:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25910:16:0;:30;27943:58;;;;-1:-1:-1;;;27943:58:0;;9968:2:1;27943:58:0;;;9950:21:1;10007:2;9987:18;;;9980:30;10046;10026:18;;;10019:58;10094:18;;27943:58:0;9766:352:1;27943:58:0;28014:45;28043:1;28047:2;28051:7;28014:20;:45::i;:::-;-1:-1:-1;;;;;28072:13:0;;;;;;:9;:13;;;;;:18;;28089:1;;28072:13;:18;;28089:1;;28072:18;:::i;:::-;;;;-1:-1:-1;;28101:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28101:21:0;-1:-1:-1;;;;;28101:21:0;;;;;;;;28140:33;;28101:16;;;28140:33;;28101:16;;28140:33;27799:382;;:::o;35436:589::-;-1:-1:-1;;;;;35642:18:0;;35638:187;;35677:40;35709:7;36852:10;:17;;36825:24;;;;:15;:24;;;;;:44;;;36880:24;;;;;;;;;;;;36748:164;35677:40;35638:187;;;35747:2;-1:-1:-1;;;;;35739:10:0;:4;-1:-1:-1;;;;;35739:10:0;;35735:90;;35766:47;35799:4;35805:7;35766:32;:47::i;:::-;-1:-1:-1;;;;;35839:16:0;;35835:183;;35872:45;35909:7;35872:36;:45::i;35835:183::-;35945:4;-1:-1:-1;;;;;35939:10:0;:2;-1:-1:-1;;;;;35939:10:0;;35935:83;;35966:40;35994:2;35998:7;35966:27;:40::i;37539:988::-;37805:22;37855:1;37830:22;37847:4;37830:16;:22::i;:::-;:26;;;;:::i;:::-;37867:18;37888:26;;;:17;:26;;;;;;37805:51;;-1:-1:-1;38021:28:0;;;38017:328;;-1:-1:-1;;;;;38088:18:0;;38066:19;38088:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38139:30;;;;;;:44;;;38256:30;;:17;:30;;;;;:43;;;38017:328;-1:-1:-1;38441:26:0;;;;:17;:26;;;;;;;;38434:33;;;-1:-1:-1;;;;;38485:18:0;;;;;:12;:18;;;;;:34;;;;;;;38478:41;37539:988::o;38822:1079::-;39100:10;:17;39075:22;;39100:21;;39120:1;;39100:21;:::i;:::-;39132:18;39153:24;;;:15;:24;;;;;;39526:10;:26;;39075:46;;-1:-1:-1;39153:24:0;;39075:46;;39526:26;;;;;;:::i;:::-;;;;;;;;;39504:48;;39590:11;39565:10;39576;39565:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;39670:28;;;:15;:28;;;;;;;:41;;;39842:24;;;;;39835:31;39877:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;38893:1008;;;38822:1079;:::o;36326:221::-;36411:14;36428:20;36445:2;36428:16;:20::i;:::-;-1:-1:-1;;;;;36459:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;36504:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;36326:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;603:221;646:5;699:3;692:4;684:6;680:17;676:27;666:55;;717:1;714;707:12;666:55;739:79;814:3;805:6;792:20;785:4;777:6;773:17;739:79;:::i;829:186::-;888:6;941:2;929:9;920:7;916:23;912:32;909:52;;;957:1;954;947:12;909:52;980:29;999:9;980:29;:::i;1020:260::-;1088:6;1096;1149:2;1137:9;1128:7;1124:23;1120:32;1117:52;;;1165:1;1162;1155:12;1117:52;1188:29;1207:9;1188:29;:::i;:::-;1178:39;;1236:38;1270:2;1259:9;1255:18;1236:38;:::i;:::-;1226:48;;1020:260;;;;;:::o;1285:328::-;1362:6;1370;1378;1431:2;1419:9;1410:7;1406:23;1402:32;1399:52;;;1447:1;1444;1437:12;1399:52;1470:29;1489:9;1470:29;:::i;:::-;1460:39;;1518:38;1552:2;1541:9;1537:18;1518:38;:::i;:::-;1508:48;;1603:2;1592:9;1588:18;1575:32;1565:42;;1285:328;;;;;:::o;1618:666::-;1713:6;1721;1729;1737;1790:3;1778:9;1769:7;1765:23;1761:33;1758:53;;;1807:1;1804;1797:12;1758:53;1830:29;1849:9;1830:29;:::i;:::-;1820:39;;1878:38;1912:2;1901:9;1897:18;1878:38;:::i;:::-;1868:48;;1963:2;1952:9;1948:18;1935:32;1925:42;;2018:2;2007:9;2003:18;1990:32;2045:18;2037:6;2034:30;2031:50;;;2077:1;2074;2067:12;2031:50;2100:22;;2153:4;2145:13;;2141:27;-1:-1:-1;2131:55:1;;2182:1;2179;2172:12;2131:55;2205:73;2270:7;2265:2;2252:16;2247:2;2243;2239:11;2205:73;:::i;:::-;2195:83;;;1618:666;;;;;;;:::o;2289:347::-;2354:6;2362;2415:2;2403:9;2394:7;2390:23;2386:32;2383:52;;;2431:1;2428;2421:12;2383:52;2454:29;2473:9;2454:29;:::i;:::-;2444:39;;2533:2;2522:9;2518:18;2505:32;2580:5;2573:13;2566:21;2559:5;2556:32;2546:60;;2602:1;2599;2592:12;2546:60;2625:5;2615:15;;;2289:347;;;;;:::o;2641:254::-;2709:6;2717;2770:2;2758:9;2749:7;2745:23;2741:32;2738:52;;;2786:1;2783;2776:12;2738:52;2809:29;2828:9;2809:29;:::i;:::-;2799:39;2885:2;2870:18;;;;2857:32;;-1:-1:-1;;;2641:254:1:o;2900:963::-;2984:6;3015:2;3058;3046:9;3037:7;3033:23;3029:32;3026:52;;;3074:1;3071;3064:12;3026:52;3114:9;3101:23;3143:18;3184:2;3176:6;3173:14;3170:34;;;3200:1;3197;3190:12;3170:34;3238:6;3227:9;3223:22;3213:32;;3283:7;3276:4;3272:2;3268:13;3264:27;3254:55;;3305:1;3302;3295:12;3254:55;3341:2;3328:16;3363:2;3359;3356:10;3353:36;;;3369:18;;:::i;:::-;3415:2;3412:1;3408:10;3398:20;;3438:28;3462:2;3458;3454:11;3438:28;:::i;:::-;3500:15;;;3531:12;;;;3563:11;;;3593;;;3589:20;;3586:33;-1:-1:-1;3583:53:1;;;3632:1;3629;3622:12;3583:53;3654:1;3645:10;;3664:169;3678:2;3675:1;3672:9;3664:169;;;3735:23;3754:3;3735:23;:::i;:::-;3723:36;;3696:1;3689:9;;;;;3779:12;;;;3811;;3664:169;;;-1:-1:-1;3852:5:1;2900:963;-1:-1:-1;;;;;;;;2900:963:1:o;3868:245::-;3926:6;3979:2;3967:9;3958:7;3954:23;3950:32;3947:52;;;3995:1;3992;3985:12;3947:52;4034:9;4021:23;4053:30;4077:5;4053:30;:::i;4118:249::-;4187:6;4240:2;4228:9;4219:7;4215:23;4211:32;4208:52;;;4256:1;4253;4246:12;4208:52;4288:9;4282:16;4307:30;4331:5;4307:30;:::i;4372:322::-;4441:6;4494:2;4482:9;4473:7;4469:23;4465:32;4462:52;;;4510:1;4507;4500:12;4462:52;4550:9;4537:23;4583:18;4575:6;4572:30;4569:50;;;4615:1;4612;4605:12;4569:50;4638;4680:7;4671:6;4660:9;4656:22;4638:50;:::i;4699:543::-;4787:6;4795;4848:2;4836:9;4827:7;4823:23;4819:32;4816:52;;;4864:1;4861;4854:12;4816:52;4904:9;4891:23;4933:18;4974:2;4966:6;4963:14;4960:34;;;4990:1;4987;4980:12;4960:34;5013:50;5055:7;5046:6;5035:9;5031:22;5013:50;:::i;:::-;5003:60;;5116:2;5105:9;5101:18;5088:32;5072:48;;5145:2;5135:8;5132:16;5129:36;;;5161:1;5158;5151:12;5129:36;;5184:52;5228:7;5217:8;5206:9;5202:24;5184:52;:::i;:::-;5174:62;;;4699:543;;;;;:::o;5247:180::-;5306:6;5359:2;5347:9;5338:7;5334:23;5330:32;5327:52;;;5375:1;5372;5365:12;5327:52;-1:-1:-1;5398:23:1;;5247:180;-1:-1:-1;5247:180:1:o;5432:254::-;5500:6;5508;5561:2;5549:9;5540:7;5536:23;5532:32;5529:52;;;5577:1;5574;5567:12;5529:52;5613:9;5600:23;5590:33;;5642:38;5676:2;5665:9;5661:18;5642:38;:::i;5691:257::-;5732:3;5770:5;5764:12;5797:6;5792:3;5785:19;5813:63;5869:6;5862:4;5857:3;5853:14;5846:4;5839:5;5835:16;5813:63;:::i;:::-;5930:2;5909:15;-1:-1:-1;;5905:29:1;5896:39;;;;5937:4;5892:50;;5691:257;-1:-1:-1;;5691:257:1:o;5953:470::-;6132:3;6170:6;6164:13;6186:53;6232:6;6227:3;6220:4;6212:6;6208:17;6186:53;:::i;:::-;6302:13;;6261:16;;;;6324:57;6302:13;6261:16;6358:4;6346:17;;6324:57;:::i;:::-;6397:20;;5953:470;-1:-1:-1;;;;5953:470:1:o;6636:488::-;-1:-1:-1;;;;;6905:15:1;;;6887:34;;6957:15;;6952:2;6937:18;;6930:43;7004:2;6989:18;;6982:34;;;7052:3;7047:2;7032:18;;7025:31;;;6830:4;;7073:45;;7098:19;;7090:6;7073:45;:::i;:::-;7065:53;6636:488;-1:-1:-1;;;;;;6636:488:1:o;7129:632::-;7300:2;7352:21;;;7422:13;;7325:18;;;7444:22;;;7271:4;;7300:2;7523:15;;;;7497:2;7482:18;;;7271:4;7566:169;7580:6;7577:1;7574:13;7566:169;;;7641:13;;7629:26;;7710:15;;;;7675:12;;;;7602:1;7595:9;7566:169;;;-1:-1:-1;7752:3:1;;7129:632;-1:-1:-1;;;;;;7129:632:1:o;7958:219::-;8107:2;8096:9;8089:21;8070:4;8127:44;8167:2;8156:9;8152:18;8144:6;8127:44;:::i;8594:414::-;8796:2;8778:21;;;8835:2;8815:18;;;8808:30;8874:34;8869:2;8854:18;;8847:62;-1:-1:-1;;;8940:2:1;8925:18;;8918:48;8998:3;8983:19;;8594:414::o;12408:410::-;12610:2;12592:21;;;12649:2;12629:18;;;12622:30;12688:34;12683:2;12668:18;;12661:62;-1:-1:-1;;;12754:2:1;12739:18;;12732:44;12808:3;12793:19;;12408:410::o;16311:356::-;16513:2;16495:21;;;16532:18;;;16525:30;16591:34;16586:2;16571:18;;16564:62;16658:2;16643:18;;16311:356::o;19421:413::-;19623:2;19605:21;;;19662:2;19642:18;;;19635:30;19701:34;19696:2;19681:18;;19674:62;-1:-1:-1;;;19767:2:1;19752:18;;19745:47;19824:3;19809:19;;19421:413::o;20434:275::-;20505:2;20499:9;20570:2;20551:13;;-1:-1:-1;;20547:27:1;20535:40;;20605:18;20590:34;;20626:22;;;20587:62;20584:88;;;20652:18;;:::i;:::-;20688:2;20681:22;20434:275;;-1:-1:-1;20434:275:1:o;20714:128::-;20754:3;20785:1;20781:6;20778:1;20775:13;20772:39;;;20791:18;;:::i;:::-;-1:-1:-1;20827:9:1;;20714:128::o;20847:120::-;20887:1;20913;20903:35;;20918:18;;:::i;:::-;-1:-1:-1;20952:9:1;;20847:120::o;20972:168::-;21012:7;21078:1;21074;21070:6;21066:14;21063:1;21060:21;21055:1;21048:9;21041:17;21037:45;21034:71;;;21085:18;;:::i;:::-;-1:-1:-1;21125:9:1;;20972:168::o;21145:125::-;21185:4;21213:1;21210;21207:8;21204:34;;;21218:18;;:::i;:::-;-1:-1:-1;21255:9:1;;21145:125::o;21275:258::-;21347:1;21357:113;21371:6;21368:1;21365:13;21357:113;;;21447:11;;;21441:18;21428:11;;;21421:39;21393:2;21386:10;21357:113;;;21488:6;21485:1;21482:13;21479:48;;;-1:-1:-1;;21523:1:1;21505:16;;21498:27;21275:258::o;21538:380::-;21617:1;21613:12;;;;21660;;;21681:61;;21735:4;21727:6;21723:17;21713:27;;21681:61;21788:2;21780:6;21777:14;21757:18;21754:38;21751:161;;;21834:10;21829:3;21825:20;21822:1;21815:31;21869:4;21866:1;21859:15;21897:4;21894:1;21887:15;21751:161;;21538:380;;;:::o;21923:135::-;21962:3;-1:-1:-1;;21983:17:1;;21980:43;;;22003:18;;:::i;:::-;-1:-1:-1;22050:1:1;22039:13;;21923:135::o;22063:112::-;22095:1;22121;22111:35;;22126:18;;:::i;:::-;-1:-1:-1;22160:9:1;;22063:112::o;22180:127::-;22241:10;22236:3;22232:20;22229:1;22222:31;22272:4;22269:1;22262:15;22296:4;22293:1;22286:15;22312:127;22373:10;22368:3;22364:20;22361:1;22354:31;22404:4;22401:1;22394:15;22428:4;22425:1;22418:15;22444:127;22505:10;22500:3;22496:20;22493:1;22486:31;22536:4;22533:1;22526:15;22560:4;22557:1;22550:15;22576:127;22637:10;22632:3;22628:20;22625:1;22618:31;22668:4;22665:1;22658:15;22692:4;22689:1;22682:15;22708:127;22769:10;22764:3;22760:20;22757:1;22750:31;22800:4;22797:1;22790:15;22824:4;22821:1;22814:15;22840:131;-1:-1:-1;;;;;;22914:32:1;;22904:43;;22894:71;;22961:1;22958;22951:12
Swarm Source
ipfs://ec768cf1011959ff2f5be7788e37ffa4acfa1145da6c653ddf725fad68520d96
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.