ERC-721
Overview
Max Total Supply
960 STEAMPUNKHAMSTERS
Holders
453
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 STEAMPUNKHAMSTERSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
STEAMPUNKHAMSTERS
Compiler Version
v0.8.2+commit.661d1103
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-20 */ // Sources flattened with hardhat v2.5.0 https://hardhat.org // File @openzeppelin/contracts/utils/introspection/[email protected] // 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); } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @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; } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @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); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @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); } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @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); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private 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); } } } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] pragma solidity ^0.8.0; /** * @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; } } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @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(to).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 {} } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @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); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @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(); } } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @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); } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } pragma solidity ^0.8.2; contract STEAMPUNKHAMSTERS is ERC721, ERC721Enumerable, ERC721Burnable, Ownable { using Counters for Counters.Counter; string public baseURI; Counters.Counter private _tokenIdCounter; // Where funds should be sent to address payable public fundsTo; // Maximum supply of the NFT uint256 public maxSupply; // Maximum mints per transaction uint256 public maxPerTx; // Is sale on? bool public sale; // Sale price uint256 public pricePer; uint256 public pricePerPre; uint256 public maxPreMint; uint256 public maxWallet = 3; bool public presale = false; bool public checkwhitelist = true; mapping (address => bool) userAddr; mapping(address => uint256) public minted; // To check how many tokens an address has minted constructor(address payable fundsTo_, uint256 maxSupply_, uint256 maxPerTx_, uint256 pricePer_, uint256 pricePerPre_) ERC721("STEAMPUNKHAMSTERS", "STEAMPUNKHAMSTERS") { fundsTo = fundsTo_; maxSupply = maxSupply_; maxPerTx = maxPerTx_; sale = false; pricePer = pricePer_; pricePerPre = pricePerPre_; } function updateFundsTo(address payable newFundsTo) public onlyOwner { fundsTo = newFundsTo; } function enableSale() public onlyOwner { sale = true; } function claimBalance() public onlyOwner { (bool success, ) = fundsTo.call{value: address(this).balance}(""); require(success, "transfer failed"); } function safeMint(address to, uint256 quantity) payable public { // Sale must be enabled require(sale, "Sale disabled"); // Cannot mint 0 require(quantity != 0, "Requested quantity cannot be zero"); // Cannot mint more than maximum require(quantity <= maxPerTx, "Requested quantity more than maximum"); // Transaction must have at least quantity * price (any more is considered a tip) require(quantity * pricePer <= msg.value, "Not enough ether sent"); // Mint operation cannot lead to more than max supply require(!Address.isContract(msg.sender), "Contracts are not allowed to mint"); require(minted[msg.sender] + quantity <= maxWallet, "Purchase would exceed max tokens per wallet"); require(super.totalSupply() + quantity <= maxSupply, "Total supply will exceed limit"); for (uint256 i = 0; i < quantity; i++) { _safeMint(to, _tokenIdCounter.current()); _tokenIdCounter.increment(); } minted[msg.sender] += quantity; } function preMint(address to, uint256 quantity) external payable { // Sale must NOT be enabled require(!sale, "Sale already in progress"); require(presale,"Presale must be active"); require(quantity != 0, "Requested quantity cannot be zero"); require(quantity * pricePerPre <= msg.value, "Not enough ether sent"); require(super.totalSupply() + quantity <= maxPreMint, "Purchase would exceed max tokens for presale"); require(minted[msg.sender] + quantity <= maxWallet, "Purchase would exceed max tokens per wallet"); require(!Address.isContract(msg.sender), "Contracts are not allowed to mint"); if(checkwhitelist) { require(_iswhitelistAddress(msg.sender), "Account not whitelisted"); } for (uint256 i = 0; i < quantity; i++) { _safeMint(to, _tokenIdCounter.current()); _tokenIdCounter.increment(); } minted[msg.sender] += quantity; } function setBaseURI(string memory __baseURI) external onlyOwner { baseURI = __baseURI; } function setMaxPreMint(uint __maxPreMint) external onlyOwner { maxPreMint = __maxPreMint; } function _baseURI() internal view override returns (string memory) { return baseURI; } function flipSaleState() public onlyOwner { sale = !sale; } function flipPresaleState() public onlyOwner { presale = !presale; } function flipCheckWhitelist() public onlyOwner { checkwhitelist = !checkwhitelist; } function setMaxWallet(uint _newMaxWallet) external onlyOwner { maxWallet = _newMaxWallet; } 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); } function whitelistAddress (address user) public onlyOwner { userAddr[user] = true; } function _iswhitelistAddress (address user) public view returns (bool) { return userAddr[user]; } function totalSupplyMinted() public view returns (uint256) { return _tokenIdCounter.current(); } function setPrePrice(uint256 prePrice_) external onlyOwner { pricePerPre = prePrice_; } function setPostPrice(uint256 postPrice_) external onlyOwner { pricePer = postPrice_; } function _preMintPrice() public view returns (uint256) { return pricePerPre; } function _salePrice() public view returns (uint256) { return pricePer; } function checkTokenExists(uint256 tokenId) public view returns(bool) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address payable","name":"fundsTo_","type":"address"},{"internalType":"uint256","name":"maxSupply_","type":"uint256"},{"internalType":"uint256","name":"maxPerTx_","type":"uint256"},{"internalType":"uint256","name":"pricePer_","type":"uint256"},{"internalType":"uint256","name":"pricePerPre_","type":"uint256"}],"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":"user","type":"address"}],"name":"_iswhitelistAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_preMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"checkTokenExists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkwhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipCheckWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fundsTo","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPreMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePerPre","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"payable","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":"sale","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":"uint256","name":"__maxPreMint","type":"uint256"}],"name":"setMaxPreMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxWallet","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"postPrice_","type":"uint256"}],"name":"setPostPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"prePrice_","type":"uint256"}],"name":"setPrePrice","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":[{"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":[],"name":"totalSupplyMinted","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 payable","name":"newFundsTo","type":"address"}],"name":"updateFundsTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"whitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260036014556015805461ffff19166101001790553480156200002557600080fd5b5060405162002e9f38038062002e9f833981016040819052620000489162000203565b604080518082018252601180825270535445414d50554e4b48414d535445525360781b60208084018281528551808701909652928552840152815191929162000094916000916200015d565b508051620000aa9060019060208401906200015d565b505050620000c7620000c16200010760201b60201c565b6200010b565b600d80546001600160a01b0319166001600160a01b039690961695909517909455600e92909255600f556010805460ff1916905560115560125562000295565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016b9062000258565b90600052602060002090601f0160209004810192826200018f5760008555620001da565b82601f10620001aa57805160ff1916838001178555620001da565b82800160010185558215620001da579182015b82811115620001da578251825591602001919060010190620001bd565b50620001e8929150620001ec565b5090565b5b80821115620001e85760008155600101620001ed565b600080600080600060a086880312156200021b578081fd5b85516001600160a01b038116811462000232578182fd5b602087015160408801516060890151608090990151929a91995097965090945092505050565b6002810460018216806200026d57607f821691505b602082108114156200028f57634e487b7160e01b600052602260045260246000fd5b50919050565b612bfa80620002a56000396000f3fe6080604052600436106102e45760003560e01c8063933e95b211610190578063d5abeb01116100dc578063f2fde38b11610095578063f8b45b051161006f578063f8b45b0514610893578063f968adbe146108a9578063f9affd43146108bf578063fdea8e0b146108d4576102e4565b8063f2fde38b14610849578063f39d502a14610869578063f81227d41461087e576102e4565b8063d5abeb011461075d578063d9c44d0414610773578063de666fb5146107ac578063e985e9c5146107cb578063ec40217514610814578063ecc1da2714610829576102e4565b8063b88d4fde11610149578063c835990e11610123578063c835990e146106dd578063c87b56dd146106fd578063c9417bb31461071d578063ca694de01461073d576102e4565b8063b88d4fde14610688578063bfd5621e146106a8578063c683d8e4146106c8576102e4565b8063933e95b2146105ff57806395d89b41146106145780639b1d24be14610629578063a14481941461063f578063a22cb46514610652578063a7ee066d14610672576102e4565b806334918dfd1161024f5780635d0044ca116102085780636c0360eb116101e25780636c0360eb1461059757806370a08231146105ac578063715018a6146105cc5780638da5cb5b146105e1576102e4565b80635d0044ca1461053d5780636352211e1461055d5780636ad1fe021461057d576102e4565b806334918dfd14610488578063415665851461049d57806342842e0e146104bd57806342966c68146104dd5780634f6ccce7146104fd57806355f804b31461051d576102e4565b80631e7269c5116102a15780631e7269c5146103d357806323b872dd14610400578063290c292d146104205780632f745c591461043357806330136e381461045357806330509bca14610473576102e4565b806301ffc9a7146102e957806306fdde031461031e578063070a8a8514610340578063081812fc14610364578063095ea7b31461039c57806318160ddd146103be575b600080fd5b3480156102f557600080fd5b5061030961030436600461272a565b6108ee565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b50610333610901565b6040516103159190612858565b34801561034c57600080fd5b5061035660115481565b604051908152602001610315565b34801561037057600080fd5b5061038461037f3660046127a8565b610993565b6040516001600160a01b039091168152602001610315565b3480156103a857600080fd5b506103bc6103b73660046126ff565b610a2d565b005b3480156103ca57600080fd5b50600854610356565b3480156103df57600080fd5b506103566103ee3660046125bd565b60176020526000908152604090205481565b34801561040c57600080fd5b506103bc61041b366004612611565b610b43565b6103bc61042e3660046126ff565b610b75565b34801561043f57600080fd5b5061035661044e3660046126ff565b610e2f565b34801561045f57600080fd5b50600d54610384906001600160a01b031681565b34801561047f57600080fd5b506103bc610ec5565b34801561049457600080fd5b506103bc610f87565b3480156104a957600080fd5b506103bc6104b83660046125bd565b610fc5565b3480156104c957600080fd5b506103bc6104d8366004612611565b611013565b3480156104e957600080fd5b506103bc6104f83660046127a8565b61102e565b34801561050957600080fd5b506103566105183660046127a8565b6110a5565b34801561052957600080fd5b506103bc610538366004612762565b611146565b34801561054957600080fd5b506103bc6105583660046127a8565b611187565b34801561056957600080fd5b506103846105783660046127a8565b6111b6565b34801561058957600080fd5b506010546103099060ff1681565b3480156105a357600080fd5b5061033361122d565b3480156105b857600080fd5b506103566105c73660046125bd565b6112bb565b3480156105d857600080fd5b506103bc611342565b3480156105ed57600080fd5b50600a546001600160a01b0316610384565b34801561060b57600080fd5b50610356611378565b34801561062057600080fd5b50610333611388565b34801561063557600080fd5b5061035660125481565b6103bc61064d3660046126ff565b611397565b34801561065e57600080fd5b506103bc61066d3660046126ce565b6115a1565b34801561067e57600080fd5b5061035660135481565b34801561069457600080fd5b506103bc6106a3366004612651565b611673565b3480156106b457600080fd5b506103096106c33660046127a8565b6116ab565b3480156106d457600080fd5b506103bc6116e7565b3480156106e957600080fd5b506103bc6106f83660046127a8565b611720565b34801561070957600080fd5b506103336107183660046127a8565b61174f565b34801561072957600080fd5b506103bc6107383660046127a8565b6117e2565b34801561074957600080fd5b506103bc6107583660046127a8565b611811565b34801561076957600080fd5b50610356600e5481565b34801561077f57600080fd5b5061030961078e3660046125bd565b6001600160a01b031660009081526016602052604090205460ff1690565b3480156107b857600080fd5b5060155461030990610100900460ff1681565b3480156107d757600080fd5b506103096107e63660046125d9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561082057600080fd5b50601154610356565b34801561083557600080fd5b506103bc6108443660046125bd565b611840565b34801561085557600080fd5b506103bc6108643660046125bd565b61188c565b34801561087557600080fd5b506103bc611924565b34801561088a57600080fd5b506103bc61196b565b34801561089f57600080fd5b5061035660145481565b3480156108b557600080fd5b50610356600f5481565b3480156108cb57600080fd5b50601254610356565b3480156108e057600080fd5b506015546103099060ff1681565b60006108f9826119a9565b90505b919050565b60606000805461091090612aed565b80601f016020809104026020016040519081016040528092919081815260200182805461093c90612aed565b80156109895780601f1061095e57610100808354040283529160200191610989565b820191906000526020600020905b81548152906001019060200180831161096c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a115760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a38826111b6565b9050806001600160a01b0316836001600160a01b03161415610aa65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a08565b336001600160a01b0382161480610ac25750610ac281336107e6565b610b345760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a08565b610b3e83836119ce565b505050565b610b4e335b82611a3c565b610b6a5760405162461bcd60e51b8152600401610a089061298c565b610b3e838383611b33565b60105460ff1615610bc85760405162461bcd60e51b815260206004820152601860248201527f53616c6520616c726561647920696e2070726f677265737300000000000000006044820152606401610a08565b60155460ff16610c135760405162461bcd60e51b815260206004820152601660248201527550726573616c65206d7573742062652061637469766560501b6044820152606401610a08565b80610c305760405162461bcd60e51b8152600401610a08906129dd565b3460125482610c3f9190612a8b565b1115610c855760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610a08565b60135481610c9260085490565b610c9c9190612a5f565b1115610cff5760405162461bcd60e51b815260206004820152602c60248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201526b20666f722070726573616c6560a01b6064820152608401610a08565b60145433600090815260176020526040902054610d1d908390612a5f565b1115610d3b5760405162461bcd60e51b8152600401610a089061286b565b333b15610d5a5760405162461bcd60e51b8152600401610a0890612a1e565b601554610100900460ff1615610dc9573360009081526016602052604090205460ff16610dc95760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206e6f742077686974656c69737465640000000000000000006044820152606401610a08565b60005b81811015610e0657610de683610de1600c5490565b611cde565b610df4600c80546001019055565b80610dfe81612b28565b915050610dcc565b503360009081526017602052604081208054839290610e26908490612a5f565b90915550505050565b6000610e3a836112bb565b8210610e9c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a08565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610eef5760405162461bcd60e51b8152600401610a0890612908565b600d546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610f3c576040519150601f19603f3d011682016040523d82523d6000602084013e610f41565b606091505b5050905080610f845760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b6044820152606401610a08565b50565b600a546001600160a01b03163314610fb15760405162461bcd60e51b8152600401610a0890612908565b6010805460ff19811660ff90911615179055565b600a546001600160a01b03163314610fef5760405162461bcd60e51b8152600401610a0890612908565b6001600160a01b03166000908152601660205260409020805460ff19166001179055565b610b3e83838360405180602001604052806000815250611673565b61103733610b48565b61109c5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610a08565b610f8481611cf8565b60006110b060085490565b82106111135760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a08565b6008828154811061113457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b031633146111705760405162461bcd60e51b8152600401610a0890612908565b805161118390600b9060208401906124ae565b5050565b600a546001600160a01b031633146111b15760405162461bcd60e51b8152600401610a0890612908565b601455565b6000818152600260205260408120546001600160a01b0316806108f95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a08565b600b805461123a90612aed565b80601f016020809104026020016040519081016040528092919081815260200182805461126690612aed565b80156112b35780601f10611288576101008083540402835291602001916112b3565b820191906000526020600020905b81548152906001019060200180831161129657829003601f168201915b505050505081565b60006001600160a01b0382166113265760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a08565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461136c5760405162461bcd60e51b8152600401610a0890612908565b6113766000611d9f565b565b6000611383600c5490565b905090565b60606001805461091090612aed565b60105460ff166113d95760405162461bcd60e51b815260206004820152600d60248201526c14d85b1948191a5cd8589b1959609a1b6044820152606401610a08565b806113f65760405162461bcd60e51b8152600401610a08906129dd565b600f548111156114545760405162461bcd60e51b8152602060048201526024808201527f526571756573746564207175616e74697479206d6f7265207468616e206d6178604482015263696d756d60e01b6064820152608401610a08565b34601154826114639190612a8b565b11156114a95760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610a08565b333b156114c85760405162461bcd60e51b8152600401610a0890612a1e565b601454336000908152601760205260409020546114e6908390612a5f565b11156115045760405162461bcd60e51b8152600401610a089061286b565b600e548161151160085490565b61151b9190612a5f565b11156115695760405162461bcd60e51b815260206004820152601e60248201527f546f74616c20737570706c792077696c6c20657863656564206c696d697400006044820152606401610a08565b60005b81811015610e065761158183610de1600c5490565b61158f600c80546001019055565b8061159981612b28565b91505061156c565b6001600160a01b0382163314156115fa5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a08565b3360008181526005602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611667911515815260200190565b60405180910390a35050565b61167d3383611a3c565b6116995760405162461bcd60e51b8152600401610a089061298c565b6116a584848484611df1565b50505050565b6000818152600260205260408120546001600160a01b03166116df5760405162461bcd60e51b8152600401610a089061293d565b506001919050565b600a546001600160a01b031633146117115760405162461bcd60e51b8152600401610a0890612908565b6010805460ff19166001179055565b600a546001600160a01b0316331461174a5760405162461bcd60e51b8152600401610a0890612908565b601255565b6000818152600260205260409020546060906001600160a01b03166117865760405162461bcd60e51b8152600401610a089061293d565b6000611790611e24565b905060008151116117b057604051806020016040528060008152506117db565b806117ba84611e33565b6040516020016117cb9291906127ec565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461180c5760405162461bcd60e51b8152600401610a0890612908565b601355565b600a546001600160a01b0316331461183b5760405162461bcd60e51b8152600401610a0890612908565b601155565b600a546001600160a01b0316331461186a5760405162461bcd60e51b8152600401610a0890612908565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146118b65760405162461bcd60e51b8152600401610a0890612908565b6001600160a01b03811661191b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a08565b610f8481611d9f565b600a546001600160a01b0316331461194e5760405162461bcd60e51b8152600401610a0890612908565b6015805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b031633146119955760405162461bcd60e51b8152600401610a0890612908565b6015805460ff19811660ff90911615179055565b60006001600160e01b0319821663780e9d6360e01b14806108f957506108f982611f4e565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a03826111b6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ab55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a08565b6000611ac0836111b6565b9050806001600160a01b0316846001600160a01b03161480611afb5750836001600160a01b0316611af084610993565b6001600160a01b0316145b80611b2b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b46826111b6565b6001600160a01b031614611bae5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a08565b6001600160a01b038216611c105760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a08565b611c1b838383611f9e565b611c266000826119ce565b6001600160a01b0383166000908152600360205260408120805460019290611c4f908490612aaa565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c7d908490612a5f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611183828260405180602001604052806000815250611fa9565b6000611d03826111b6565b9050611d1181600084611f9e565b611d1c6000836119ce565b6001600160a01b0381166000908152600360205260408120805460019290611d45908490612aaa565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611dfc848484611b33565b611e0884848484611fdc565b6116a55760405162461bcd60e51b8152600401610a08906128b6565b6060600b805461091090612aed565b606081611e5857506040805180820190915260018152600360fc1b60208201526108fc565b8160005b8115611e825780611e6c81612b28565b9150611e7b9050600a83612a77565b9150611e5c565b60008167ffffffffffffffff811115611eab57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ed5576020820181803683370190505b5090505b8415611b2b57611eea600183612aaa565b9150611ef7600a86612b43565b611f02906030612a5f565b60f81b818381518110611f2557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611f47600a86612a77565b9450611ed9565b60006001600160e01b031982166380ac58cd60e01b1480611f7f57506001600160e01b03198216635b5e139f60e01b145b806108f957506301ffc9a760e01b6001600160e01b03198316146108f9565b610b3e8383836120e9565b611fb383836121a6565b611fc06000848484611fdc565b610b3e5760405162461bcd60e51b8152600401610a08906128b6565b60006001600160a01b0384163b156120de57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061202090339089908890889060040161281b565b602060405180830381600087803b15801561203a57600080fd5b505af192505050801561206a575060408051601f3d908101601f1916820190925261206791810190612746565b60015b6120c4573d808015612098576040519150601f19603f3d011682016040523d82523d6000602084013e61209d565b606091505b5080516120bc5760405162461bcd60e51b8152600401610a08906128b6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b2b565b506001949350505050565b6001600160a01b0383166121445761213f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612167565b816001600160a01b0316836001600160a01b0316146121675761216783826122f4565b6001600160a01b0382166121835761217e81612391565b610b3e565b826001600160a01b0316826001600160a01b031614610b3e57610b3e828261246a565b6001600160a01b0382166121fc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a08565b6000818152600260205260409020546001600160a01b0316156122615760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a08565b61226d60008383611f9e565b6001600160a01b0382166000908152600360205260408120805460019290612296908490612a5f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612301846112bb565b61230b9190612aaa565b60008381526007602052604090205490915080821461235e576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906123a390600190612aaa565b600083815260096020526040812054600880549394509092849081106123d957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061240857634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061244e57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612475836112bb565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546124ba90612aed565b90600052602060002090601f0160209004810192826124dc5760008555612522565b82601f106124f557805160ff1916838001178555612522565b82800160010185558215612522579182015b82811115612522578251825591602001919060010190612507565b5061252e929150612532565b5090565b5b8082111561252e5760008155600101612533565b600067ffffffffffffffff8084111561256257612562612b83565b604051601f8501601f19908116603f0116810190828211818310171561258a5761258a612b83565b816040528093508581528686860111156125a357600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156125ce578081fd5b81356117db81612b99565b600080604083850312156125eb578081fd5b82356125f681612b99565b9150602083013561260681612b99565b809150509250929050565b600080600060608486031215612625578081fd5b833561263081612b99565b9250602084013561264081612b99565b929592945050506040919091013590565b60008060008060808587031215612666578081fd5b843561267181612b99565b9350602085013561268181612b99565b925060408501359150606085013567ffffffffffffffff8111156126a3578182fd5b8501601f810187136126b3578182fd5b6126c287823560208401612547565b91505092959194509250565b600080604083850312156126e0578182fd5b82356126eb81612b99565b915060208301358015158114612606578182fd5b60008060408385031215612711578182fd5b823561271c81612b99565b946020939093013593505050565b60006020828403121561273b578081fd5b81356117db81612bae565b600060208284031215612757578081fd5b81516117db81612bae565b600060208284031215612773578081fd5b813567ffffffffffffffff811115612789578182fd5b8201601f81018413612799578182fd5b611b2b84823560208401612547565b6000602082840312156127b9578081fd5b5035919050565b600081518084526127d8816020860160208601612ac1565b601f01601f19169290920160200192915050565b600083516127fe818460208801612ac1565b835190830190612812818360208801612ac1565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061284e908301846127c0565b9695505050505050565b6000602082526117db60208301846127c0565b6020808252602b908201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360408201526a081c195c881dd85b1b195d60aa1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f526571756573746564207175616e746974792063616e6e6f74206265207a65726040820152606f60f81b606082015260800190565b60208082526021908201527f436f6e74726163747320617265206e6f7420616c6c6f77656420746f206d696e6040820152601d60fa1b606082015260800190565b60008219821115612a7257612a72612b57565b500190565b600082612a8657612a86612b6d565b500490565b6000816000190483118215151615612aa557612aa5612b57565b500290565b600082821015612abc57612abc612b57565b500390565b60005b83811015612adc578181015183820152602001612ac4565b838111156116a55750506000910152565b600281046001821680612b0157607f821691505b60208210811415612b2257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b3c57612b3c612b57565b5060010190565b600082612b5257612b52612b6d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f8457600080fd5b6001600160e01b031981168114610f8457600080fdfea264697066735822122059f09bee3a5028eb712c7a8bc8c7e605efc98c27a055a620f977353df8364a8864736f6c634300080200330000000000000000000000002647f1ba75f6f1fbd6ef2b6ab1fb7c5096ef90ea0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000d529ae9e860000
Deployed Bytecode
0x6080604052600436106102e45760003560e01c8063933e95b211610190578063d5abeb01116100dc578063f2fde38b11610095578063f8b45b051161006f578063f8b45b0514610893578063f968adbe146108a9578063f9affd43146108bf578063fdea8e0b146108d4576102e4565b8063f2fde38b14610849578063f39d502a14610869578063f81227d41461087e576102e4565b8063d5abeb011461075d578063d9c44d0414610773578063de666fb5146107ac578063e985e9c5146107cb578063ec40217514610814578063ecc1da2714610829576102e4565b8063b88d4fde11610149578063c835990e11610123578063c835990e146106dd578063c87b56dd146106fd578063c9417bb31461071d578063ca694de01461073d576102e4565b8063b88d4fde14610688578063bfd5621e146106a8578063c683d8e4146106c8576102e4565b8063933e95b2146105ff57806395d89b41146106145780639b1d24be14610629578063a14481941461063f578063a22cb46514610652578063a7ee066d14610672576102e4565b806334918dfd1161024f5780635d0044ca116102085780636c0360eb116101e25780636c0360eb1461059757806370a08231146105ac578063715018a6146105cc5780638da5cb5b146105e1576102e4565b80635d0044ca1461053d5780636352211e1461055d5780636ad1fe021461057d576102e4565b806334918dfd14610488578063415665851461049d57806342842e0e146104bd57806342966c68146104dd5780634f6ccce7146104fd57806355f804b31461051d576102e4565b80631e7269c5116102a15780631e7269c5146103d357806323b872dd14610400578063290c292d146104205780632f745c591461043357806330136e381461045357806330509bca14610473576102e4565b806301ffc9a7146102e957806306fdde031461031e578063070a8a8514610340578063081812fc14610364578063095ea7b31461039c57806318160ddd146103be575b600080fd5b3480156102f557600080fd5b5061030961030436600461272a565b6108ee565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b50610333610901565b6040516103159190612858565b34801561034c57600080fd5b5061035660115481565b604051908152602001610315565b34801561037057600080fd5b5061038461037f3660046127a8565b610993565b6040516001600160a01b039091168152602001610315565b3480156103a857600080fd5b506103bc6103b73660046126ff565b610a2d565b005b3480156103ca57600080fd5b50600854610356565b3480156103df57600080fd5b506103566103ee3660046125bd565b60176020526000908152604090205481565b34801561040c57600080fd5b506103bc61041b366004612611565b610b43565b6103bc61042e3660046126ff565b610b75565b34801561043f57600080fd5b5061035661044e3660046126ff565b610e2f565b34801561045f57600080fd5b50600d54610384906001600160a01b031681565b34801561047f57600080fd5b506103bc610ec5565b34801561049457600080fd5b506103bc610f87565b3480156104a957600080fd5b506103bc6104b83660046125bd565b610fc5565b3480156104c957600080fd5b506103bc6104d8366004612611565b611013565b3480156104e957600080fd5b506103bc6104f83660046127a8565b61102e565b34801561050957600080fd5b506103566105183660046127a8565b6110a5565b34801561052957600080fd5b506103bc610538366004612762565b611146565b34801561054957600080fd5b506103bc6105583660046127a8565b611187565b34801561056957600080fd5b506103846105783660046127a8565b6111b6565b34801561058957600080fd5b506010546103099060ff1681565b3480156105a357600080fd5b5061033361122d565b3480156105b857600080fd5b506103566105c73660046125bd565b6112bb565b3480156105d857600080fd5b506103bc611342565b3480156105ed57600080fd5b50600a546001600160a01b0316610384565b34801561060b57600080fd5b50610356611378565b34801561062057600080fd5b50610333611388565b34801561063557600080fd5b5061035660125481565b6103bc61064d3660046126ff565b611397565b34801561065e57600080fd5b506103bc61066d3660046126ce565b6115a1565b34801561067e57600080fd5b5061035660135481565b34801561069457600080fd5b506103bc6106a3366004612651565b611673565b3480156106b457600080fd5b506103096106c33660046127a8565b6116ab565b3480156106d457600080fd5b506103bc6116e7565b3480156106e957600080fd5b506103bc6106f83660046127a8565b611720565b34801561070957600080fd5b506103336107183660046127a8565b61174f565b34801561072957600080fd5b506103bc6107383660046127a8565b6117e2565b34801561074957600080fd5b506103bc6107583660046127a8565b611811565b34801561076957600080fd5b50610356600e5481565b34801561077f57600080fd5b5061030961078e3660046125bd565b6001600160a01b031660009081526016602052604090205460ff1690565b3480156107b857600080fd5b5060155461030990610100900460ff1681565b3480156107d757600080fd5b506103096107e63660046125d9565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561082057600080fd5b50601154610356565b34801561083557600080fd5b506103bc6108443660046125bd565b611840565b34801561085557600080fd5b506103bc6108643660046125bd565b61188c565b34801561087557600080fd5b506103bc611924565b34801561088a57600080fd5b506103bc61196b565b34801561089f57600080fd5b5061035660145481565b3480156108b557600080fd5b50610356600f5481565b3480156108cb57600080fd5b50601254610356565b3480156108e057600080fd5b506015546103099060ff1681565b60006108f9826119a9565b90505b919050565b60606000805461091090612aed565b80601f016020809104026020016040519081016040528092919081815260200182805461093c90612aed565b80156109895780601f1061095e57610100808354040283529160200191610989565b820191906000526020600020905b81548152906001019060200180831161096c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a115760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a38826111b6565b9050806001600160a01b0316836001600160a01b03161415610aa65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a08565b336001600160a01b0382161480610ac25750610ac281336107e6565b610b345760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a08565b610b3e83836119ce565b505050565b610b4e335b82611a3c565b610b6a5760405162461bcd60e51b8152600401610a089061298c565b610b3e838383611b33565b60105460ff1615610bc85760405162461bcd60e51b815260206004820152601860248201527f53616c6520616c726561647920696e2070726f677265737300000000000000006044820152606401610a08565b60155460ff16610c135760405162461bcd60e51b815260206004820152601660248201527550726573616c65206d7573742062652061637469766560501b6044820152606401610a08565b80610c305760405162461bcd60e51b8152600401610a08906129dd565b3460125482610c3f9190612a8b565b1115610c855760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610a08565b60135481610c9260085490565b610c9c9190612a5f565b1115610cff5760405162461bcd60e51b815260206004820152602c60248201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360448201526b20666f722070726573616c6560a01b6064820152608401610a08565b60145433600090815260176020526040902054610d1d908390612a5f565b1115610d3b5760405162461bcd60e51b8152600401610a089061286b565b333b15610d5a5760405162461bcd60e51b8152600401610a0890612a1e565b601554610100900460ff1615610dc9573360009081526016602052604090205460ff16610dc95760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206e6f742077686974656c69737465640000000000000000006044820152606401610a08565b60005b81811015610e0657610de683610de1600c5490565b611cde565b610df4600c80546001019055565b80610dfe81612b28565b915050610dcc565b503360009081526017602052604081208054839290610e26908490612a5f565b90915550505050565b6000610e3a836112bb565b8210610e9c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a08565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610eef5760405162461bcd60e51b8152600401610a0890612908565b600d546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610f3c576040519150601f19603f3d011682016040523d82523d6000602084013e610f41565b606091505b5050905080610f845760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b6044820152606401610a08565b50565b600a546001600160a01b03163314610fb15760405162461bcd60e51b8152600401610a0890612908565b6010805460ff19811660ff90911615179055565b600a546001600160a01b03163314610fef5760405162461bcd60e51b8152600401610a0890612908565b6001600160a01b03166000908152601660205260409020805460ff19166001179055565b610b3e83838360405180602001604052806000815250611673565b61103733610b48565b61109c5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610a08565b610f8481611cf8565b60006110b060085490565b82106111135760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a08565b6008828154811061113457634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b031633146111705760405162461bcd60e51b8152600401610a0890612908565b805161118390600b9060208401906124ae565b5050565b600a546001600160a01b031633146111b15760405162461bcd60e51b8152600401610a0890612908565b601455565b6000818152600260205260408120546001600160a01b0316806108f95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a08565b600b805461123a90612aed565b80601f016020809104026020016040519081016040528092919081815260200182805461126690612aed565b80156112b35780601f10611288576101008083540402835291602001916112b3565b820191906000526020600020905b81548152906001019060200180831161129657829003601f168201915b505050505081565b60006001600160a01b0382166113265760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a08565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461136c5760405162461bcd60e51b8152600401610a0890612908565b6113766000611d9f565b565b6000611383600c5490565b905090565b60606001805461091090612aed565b60105460ff166113d95760405162461bcd60e51b815260206004820152600d60248201526c14d85b1948191a5cd8589b1959609a1b6044820152606401610a08565b806113f65760405162461bcd60e51b8152600401610a08906129dd565b600f548111156114545760405162461bcd60e51b8152602060048201526024808201527f526571756573746564207175616e74697479206d6f7265207468616e206d6178604482015263696d756d60e01b6064820152608401610a08565b34601154826114639190612a8b565b11156114a95760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08195d1a195c881cd95b9d605a1b6044820152606401610a08565b333b156114c85760405162461bcd60e51b8152600401610a0890612a1e565b601454336000908152601760205260409020546114e6908390612a5f565b11156115045760405162461bcd60e51b8152600401610a089061286b565b600e548161151160085490565b61151b9190612a5f565b11156115695760405162461bcd60e51b815260206004820152601e60248201527f546f74616c20737570706c792077696c6c20657863656564206c696d697400006044820152606401610a08565b60005b81811015610e065761158183610de1600c5490565b61158f600c80546001019055565b8061159981612b28565b91505061156c565b6001600160a01b0382163314156115fa5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a08565b3360008181526005602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611667911515815260200190565b60405180910390a35050565b61167d3383611a3c565b6116995760405162461bcd60e51b8152600401610a089061298c565b6116a584848484611df1565b50505050565b6000818152600260205260408120546001600160a01b03166116df5760405162461bcd60e51b8152600401610a089061293d565b506001919050565b600a546001600160a01b031633146117115760405162461bcd60e51b8152600401610a0890612908565b6010805460ff19166001179055565b600a546001600160a01b0316331461174a5760405162461bcd60e51b8152600401610a0890612908565b601255565b6000818152600260205260409020546060906001600160a01b03166117865760405162461bcd60e51b8152600401610a089061293d565b6000611790611e24565b905060008151116117b057604051806020016040528060008152506117db565b806117ba84611e33565b6040516020016117cb9291906127ec565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461180c5760405162461bcd60e51b8152600401610a0890612908565b601355565b600a546001600160a01b0316331461183b5760405162461bcd60e51b8152600401610a0890612908565b601155565b600a546001600160a01b0316331461186a5760405162461bcd60e51b8152600401610a0890612908565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146118b65760405162461bcd60e51b8152600401610a0890612908565b6001600160a01b03811661191b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a08565b610f8481611d9f565b600a546001600160a01b0316331461194e5760405162461bcd60e51b8152600401610a0890612908565b6015805461ff001981166101009182900460ff1615909102179055565b600a546001600160a01b031633146119955760405162461bcd60e51b8152600401610a0890612908565b6015805460ff19811660ff90911615179055565b60006001600160e01b0319821663780e9d6360e01b14806108f957506108f982611f4e565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a03826111b6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ab55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a08565b6000611ac0836111b6565b9050806001600160a01b0316846001600160a01b03161480611afb5750836001600160a01b0316611af084610993565b6001600160a01b0316145b80611b2b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b46826111b6565b6001600160a01b031614611bae5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a08565b6001600160a01b038216611c105760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a08565b611c1b838383611f9e565b611c266000826119ce565b6001600160a01b0383166000908152600360205260408120805460019290611c4f908490612aaa565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c7d908490612a5f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611183828260405180602001604052806000815250611fa9565b6000611d03826111b6565b9050611d1181600084611f9e565b611d1c6000836119ce565b6001600160a01b0381166000908152600360205260408120805460019290611d45908490612aaa565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611dfc848484611b33565b611e0884848484611fdc565b6116a55760405162461bcd60e51b8152600401610a08906128b6565b6060600b805461091090612aed565b606081611e5857506040805180820190915260018152600360fc1b60208201526108fc565b8160005b8115611e825780611e6c81612b28565b9150611e7b9050600a83612a77565b9150611e5c565b60008167ffffffffffffffff811115611eab57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ed5576020820181803683370190505b5090505b8415611b2b57611eea600183612aaa565b9150611ef7600a86612b43565b611f02906030612a5f565b60f81b818381518110611f2557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611f47600a86612a77565b9450611ed9565b60006001600160e01b031982166380ac58cd60e01b1480611f7f57506001600160e01b03198216635b5e139f60e01b145b806108f957506301ffc9a760e01b6001600160e01b03198316146108f9565b610b3e8383836120e9565b611fb383836121a6565b611fc06000848484611fdc565b610b3e5760405162461bcd60e51b8152600401610a08906128b6565b60006001600160a01b0384163b156120de57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061202090339089908890889060040161281b565b602060405180830381600087803b15801561203a57600080fd5b505af192505050801561206a575060408051601f3d908101601f1916820190925261206791810190612746565b60015b6120c4573d808015612098576040519150601f19603f3d011682016040523d82523d6000602084013e61209d565b606091505b5080516120bc5760405162461bcd60e51b8152600401610a08906128b6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b2b565b506001949350505050565b6001600160a01b0383166121445761213f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612167565b816001600160a01b0316836001600160a01b0316146121675761216783826122f4565b6001600160a01b0382166121835761217e81612391565b610b3e565b826001600160a01b0316826001600160a01b031614610b3e57610b3e828261246a565b6001600160a01b0382166121fc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a08565b6000818152600260205260409020546001600160a01b0316156122615760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a08565b61226d60008383611f9e565b6001600160a01b0382166000908152600360205260408120805460019290612296908490612a5f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612301846112bb565b61230b9190612aaa565b60008381526007602052604090205490915080821461235e576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906123a390600190612aaa565b600083815260096020526040812054600880549394509092849081106123d957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061240857634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061244e57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612475836112bb565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546124ba90612aed565b90600052602060002090601f0160209004810192826124dc5760008555612522565b82601f106124f557805160ff1916838001178555612522565b82800160010185558215612522579182015b82811115612522578251825591602001919060010190612507565b5061252e929150612532565b5090565b5b8082111561252e5760008155600101612533565b600067ffffffffffffffff8084111561256257612562612b83565b604051601f8501601f19908116603f0116810190828211818310171561258a5761258a612b83565b816040528093508581528686860111156125a357600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156125ce578081fd5b81356117db81612b99565b600080604083850312156125eb578081fd5b82356125f681612b99565b9150602083013561260681612b99565b809150509250929050565b600080600060608486031215612625578081fd5b833561263081612b99565b9250602084013561264081612b99565b929592945050506040919091013590565b60008060008060808587031215612666578081fd5b843561267181612b99565b9350602085013561268181612b99565b925060408501359150606085013567ffffffffffffffff8111156126a3578182fd5b8501601f810187136126b3578182fd5b6126c287823560208401612547565b91505092959194509250565b600080604083850312156126e0578182fd5b82356126eb81612b99565b915060208301358015158114612606578182fd5b60008060408385031215612711578182fd5b823561271c81612b99565b946020939093013593505050565b60006020828403121561273b578081fd5b81356117db81612bae565b600060208284031215612757578081fd5b81516117db81612bae565b600060208284031215612773578081fd5b813567ffffffffffffffff811115612789578182fd5b8201601f81018413612799578182fd5b611b2b84823560208401612547565b6000602082840312156127b9578081fd5b5035919050565b600081518084526127d8816020860160208601612ac1565b601f01601f19169290920160200192915050565b600083516127fe818460208801612ac1565b835190830190612812818360208801612ac1565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061284e908301846127c0565b9695505050505050565b6000602082526117db60208301846127c0565b6020808252602b908201527f507572636861736520776f756c6420657863656564206d617820746f6b656e7360408201526a081c195c881dd85b1b195d60aa1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f526571756573746564207175616e746974792063616e6e6f74206265207a65726040820152606f60f81b606082015260800190565b60208082526021908201527f436f6e74726163747320617265206e6f7420616c6c6f77656420746f206d696e6040820152601d60fa1b606082015260800190565b60008219821115612a7257612a72612b57565b500190565b600082612a8657612a86612b6d565b500490565b6000816000190483118215151615612aa557612aa5612b57565b500290565b600082821015612abc57612abc612b57565b500390565b60005b83811015612adc578181015183820152602001612ac4565b838111156116a55750506000910152565b600281046001821680612b0157607f821691505b60208210811415612b2257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b3c57612b3c612b57565b5060010190565b600082612b5257612b52612b6d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f8457600080fd5b6001600160e01b031981168114610f8457600080fdfea264697066735822122059f09bee3a5028eb712c7a8bc8c7e605efc98c27a055a620f977353df8364a8864736f6c63430008020033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000002647f1ba75f6f1fbd6ef2b6ab1fb7c5096ef90ea0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000f000000000000000000000000000000000000000000000000011c37937e08000000000000000000000000000000000000000000000000000000d529ae9e860000
-----Decoded View---------------
Arg [0] : fundsTo_ (address): 0x2647F1bA75f6F1fBD6ef2b6ab1fb7C5096Ef90Ea
Arg [1] : maxSupply_ (uint256): 10000
Arg [2] : maxPerTx_ (uint256): 15
Arg [3] : pricePer_ (uint256): 80000000000000000
Arg [4] : pricePerPre_ (uint256): 60000000000000000
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000002647f1ba75f6f1fbd6ef2b6ab1fb7c5096ef90ea
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [3] : 000000000000000000000000000000000000000000000000011c37937e080000
Arg [4] : 00000000000000000000000000000000000000000000000000d529ae9e860000
Deployed Bytecode Sourcemap
45248:5728:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49840:171;;;;;;;;;;-1:-1:-1;49840:171:0;;;;;:::i;:::-;;:::i;:::-;;;6897:14:1;;6890:22;6872:41;;6860:2;6845:18;49840:171:0;;;;;;;;21529:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;45732:23::-;;;;;;;;;;;;;;;;;;;19403:25:1;;;19391:2;19376:18;45732:23:0;19358:76:1;23088:221:0;;;;;;;;;;-1:-1:-1;23088:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5971:32:1;;;5953:51;;5941:2;5926:18;23088:221:0;5908:102:1;22611:411:0;;;;;;;;;;-1:-1:-1;22611:411:0;;;;;:::i;:::-;;:::i;:::-;;35284:113;;;;;;;;;;-1:-1:-1;35372:10:0;:17;35284:113;;45978:41;;;;;;;;;;-1:-1:-1;45978:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;23978:339;;;;;;;;;;-1:-1:-1;23978:339:0;;;;;:::i;:::-;;:::i;47911:1005::-;;;;;;:::i;:::-;;:::i;34952:256::-;;;;;;;;;;-1:-1:-1;34952:256:0;;;;;:::i;:::-;;:::i;45492:30::-;;;;;;;;;;-1:-1:-1;45492:30:0;;;;-1:-1:-1;;;;;45492:30:0;;;46635:171;;;;;;;;;;;;;:::i;49259:73::-;;;;;;;;;;;;;:::i;50017:98::-;;;;;;;;;;-1:-1:-1;50017:98:0;;;;;:::i;:::-;;:::i;24388:185::-;;;;;;;;;;-1:-1:-1;24388:185:0;;;;;:::i;:::-;;:::i;41255:245::-;;;;;;;;;;-1:-1:-1;41255:245:0;;;;;:::i;:::-;;:::i;35474:233::-;;;;;;;;;;-1:-1:-1;35474:233:0;;;;;:::i;:::-;;:::i;48922:102::-;;;;;;;;;;-1:-1:-1;48922:102:0;;;;;:::i;:::-;;:::i;49540:105::-;;;;;;;;;;-1:-1:-1;49540:105:0;;;;;:::i;:::-;;:::i;21223:239::-;;;;;;;;;;-1:-1:-1;21223:239:0;;;;;:::i;:::-;;:::i;45688:16::-;;;;;;;;;;-1:-1:-1;45688:16:0;;;;;;;;45377:21;;;;;;;;;;;;;:::i;20953:208::-;;;;;;;;;;-1:-1:-1;20953:208:0;;;;;:::i;:::-;;:::i;43162:94::-;;;;;;;;;;;;;:::i;42511:87::-;;;;;;;;;;-1:-1:-1;42584:6:0;;-1:-1:-1;;;;;42584:6:0;42511:87;;50238:113;;;;;;;;;;;;;:::i;21698:104::-;;;;;;;;;;;;;:::i;45762:26::-;;;;;;;;;;;;;;;;46814:1089;;;;;;:::i;:::-;;:::i;23381:295::-;;;;;;;;;;-1:-1:-1;23381:295:0;;;;;:::i;:::-;;:::i;45795:25::-;;;;;;;;;;;;;;;;24644:328;;;;;;;;;;-1:-1:-1;24644:328:0;;;;;:::i;:::-;;:::i;50769:192::-;;;;;;;;;;-1:-1:-1;50769:192:0;;;;;:::i;:::-;;:::i;46558:69::-;;;;;;;;;;;;;:::i;50363:101::-;;;;;;;;;;-1:-1:-1;50363:101:0;;;;;:::i;:::-;;:::i;21873:334::-;;;;;;;;;;-1:-1:-1;21873:334:0;;;;;:::i;:::-;;:::i;49036:105::-;;;;;;;;;;-1:-1:-1;49036:105:0;;;;;:::i;:::-;;:::i;50470:101::-;;;;;;;;;;-1:-1:-1;50470:101:0;;;;;:::i;:::-;;:::i;45565:24::-;;;;;;;;;;;;;;;;50121:111;;;;;;;;;;-1:-1:-1;50121:111:0;;;;;:::i;:::-;-1:-1:-1;;;;;50210:14:0;50186:4;50210:14;;;:8;:14;;;;;;;;;50121:111;45896:33;;;;;;;;;;-1:-1:-1;45896:33:0;;;;;;;;;;;23747:164;;;;;;;;;;-1:-1:-1;23747:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23868:25:0;;;23844:4;23868:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23747:164;50676:87;;;;;;;;;;-1:-1:-1;50747:8:0;;50676:87;;46443:107;;;;;;;;;;-1:-1:-1;46443:107:0;;;;;:::i;:::-;;:::i;43411:192::-;;;;;;;;;;-1:-1:-1;43411:192:0;;;;;:::i;:::-;;:::i;49434:98::-;;;;;;;;;;;;;:::i;49340:82::-;;;;;;;;;;;;;:::i;45827:28::-;;;;;;;;;;;;;;;;45636:23;;;;;;;;;;;;;;;;50577:93;;;;;;;;;;-1:-1:-1;50651:11:0;;50577:93;;45862:27;;;;;;;;;;-1:-1:-1;45862:27:0;;;;;;;;49840:171;49943:4;49967:36;49991:11;49967:23;:36::i;:::-;49960:43;;49840:171;;;;:::o;21529:100::-;21583:13;21616:5;21609:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21529:100;:::o;23088:221::-;23164:7;26571:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26571:16:0;23184:73;;;;-1:-1:-1;;;23184:73:0;;12902:2:1;23184:73:0;;;12884:21:1;12941:2;12921:18;;;12914:30;12980:34;12960:18;;;12953:62;-1:-1:-1;;;13031:18:1;;;13024:42;13083:19;;23184:73:0;;;;;;;;;-1:-1:-1;23277:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23277:24:0;;23088:221::o;22611:411::-;22692:13;22708:23;22723:7;22708:14;:23::i;:::-;22692:39;;22756:5;-1:-1:-1;;;;;22750:11:0;:2;-1:-1:-1;;;;;22750:11:0;;;22742:57;;;;-1:-1:-1;;;22742:57:0;;15195:2:1;22742:57:0;;;15177:21:1;15234:2;15214:18;;;15207:30;15273:34;15253:18;;;15246:62;-1:-1:-1;;;15324:18:1;;;15317:31;15365:19;;22742:57:0;15167:223:1;22742:57:0;16066:10;-1:-1:-1;;;;;22834:21:0;;;;:62;;-1:-1:-1;22859:37:0;22876:5;16066:10;22883:12;15986:98;22859:37;22812:168;;;;-1:-1:-1;;;22812:168:0;;10882:2:1;22812:168:0;;;10864:21:1;10921:2;10901:18;;;10894:30;10960:34;10940:18;;;10933:62;11031:26;11011:18;;;11004:54;11075:19;;22812:168:0;10854:246:1;22812:168:0;22993:21;23002:2;23006:7;22993:8;:21::i;:::-;22611:411;;;:::o;23978:339::-;24173:41;16066:10;24192:12;24206:7;24173:18;:41::i;:::-;24165:103;;;;-1:-1:-1;;;24165:103:0;;;;;;;:::i;:::-;24281:28;24291:4;24297:2;24301:7;24281:9;:28::i;47911:1005::-;48032:4;;;;48031:5;48023:42;;;;-1:-1:-1;;;48023:42:0;;9357:2:1;48023:42:0;;;9339:21:1;9396:2;9376:18;;;9369:30;9435:26;9415:18;;;9408:54;9479:18;;48023:42:0;9329:174:1;48023:42:0;48084:7;;;;48076:41;;;;-1:-1:-1;;;48076:41:0;;13676:2:1;48076:41:0;;;13658:21:1;13715:2;13695:18;;;13688:30;-1:-1:-1;;;13734:18:1;;;13727:52;13796:18;;48076:41:0;13648:172:1;48076:41:0;48136:13;48128:59;;;;-1:-1:-1;;;48128:59:0;;;;;;;:::i;:::-;48232:9;48217:11;;48206:8;:22;;;;:::i;:::-;:35;;48198:69;;;;-1:-1:-1;;;48198:69:0;;16787:2:1;48198:69:0;;;16769:21:1;16826:2;16806:18;;;16799:30;-1:-1:-1;;;16845:18:1;;;16838:51;16906:18;;48198:69:0;16759:171:1;48198:69:0;48320:10;;48308:8;48286:19;35372:10;:17;35284:113;;48286:19;:30;;;;:::i;:::-;:44;;48278:101;;;;-1:-1:-1;;;48278:101:0;;12128:2:1;48278:101:0;;;12110:21:1;12167:2;12147:18;;;12140:30;12206:34;12186:18;;;12179:62;-1:-1:-1;;;12257:18:1;;;12250:42;12309:19;;48278:101:0;12100:234:1;48278:101:0;48432:9;;48406:10;48399:18;;;;:6;:18;;;;;;:29;;48420:8;;48399:29;:::i;:::-;:42;;48391:98;;;;-1:-1:-1;;;48391:98:0;;;;;;;:::i;:::-;48528:10;8563:20;8611:8;48500:77;;;;-1:-1:-1;;;48500:77:0;;;;;;;:::i;:::-;48591:14;;;;;;;48588:122;;;48659:10;50186:4;50210:14;;;:8;:14;;;;;;;;48631:67;;;;-1:-1:-1;;;48631:67:0;;17883:2:1;48631:67:0;;;17865:21:1;17922:2;17902:18;;;17895:30;17961:25;17941:18;;;17934:53;18004:18;;48631:67:0;17855:173:1;48631:67:0;48725:9;48720:148;48744:8;48740:1;:12;48720:148;;;48774:40;48784:2;48788:25;:15;44708:14;;44616:114;48788:25;48774:9;:40::i;:::-;48829:27;:15;44827:19;;44845:1;44827:19;;;44738:127;48829:27;48754:3;;;;:::i;:::-;;;;48720:148;;;-1:-1:-1;48885:10:0;48878:18;;;;:6;:18;;;;;:30;;48900:8;;48878:18;:30;;48900:8;;48878:30;:::i;:::-;;;;-1:-1:-1;;;;47911:1005:0:o;34952:256::-;35049:7;35085:23;35102:5;35085:16;:23::i;:::-;35077:5;:31;35069:87;;;;-1:-1:-1;;;35069:87:0;;7762:2:1;35069:87:0;;;7744:21:1;7801:2;7781:18;;;7774:30;7840:34;7820:18;;;7813:62;-1:-1:-1;;;7891:18:1;;;7884:41;7942:19;;35069:87:0;7734:233:1;35069:87:0;-1:-1:-1;;;;;;35174:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34952:256::o;46635:171::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;46706:7:::1;::::0;:46:::1;::::0;46688:12:::1;::::0;-1:-1:-1;;;;;46706:7:0::1;::::0;46726:21:::1;::::0;46688:12;46706:46;46688:12;46706:46;46726:21;46706:7;:46:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46687:65;;;46771:7;46763:35;;;::::0;-1:-1:-1;;;46763:35:0;;17539:2:1;46763:35:0::1;::::0;::::1;17521:21:1::0;17578:2;17558:18;;;17551:30;-1:-1:-1;;;17597:18:1;;;17590:45;17652:18;;46763:35:0::1;17511:165:1::0;46763:35:0::1;42802:1;46635:171::o:0;49259:73::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;49320:4:::1;::::0;;-1:-1:-1;;49312:12:0;::::1;49320:4;::::0;;::::1;49319:5;49312:12;::::0;;49259:73::o;50017:98::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50086:14:0::1;;::::0;;;:8:::1;:14;::::0;;;;:21;;-1:-1:-1;;50086:21:0::1;50103:4;50086:21;::::0;;50017:98::o;24388:185::-;24526:39;24543:4;24549:2;24553:7;24526:39;;;;;;;;;;;;:16;:39::i;41255:245::-;41373:41;16066:10;41392:12;15986:98;41373:41;41365:102;;;;-1:-1:-1;;;41365:102:0;;18640:2:1;41365:102:0;;;18622:21:1;18679:2;18659:18;;;18652:30;18718:34;18698:18;;;18691:62;-1:-1:-1;;;18769:18:1;;;18762:46;18825:19;;41365:102:0;18612:238:1;41365:102:0;41478:14;41484:7;41478:5;:14::i;35474:233::-;35549:7;35585:30;35372:10;:17;35284:113;;35585:30;35577:5;:38;35569:95;;;;-1:-1:-1;;;35569:95:0;;16374:2:1;35569:95:0;;;16356:21:1;16413:2;16393:18;;;16386:30;16452:34;16432:18;;;16425:62;-1:-1:-1;;;16503:18:1;;;16496:42;16555:19;;35569:95:0;16346:234:1;35569:95:0;35682:10;35693:5;35682:17;;;;;;-1:-1:-1;;;35682:17:0;;;;;;;;;;;;;;;;;35675:24;;35474:233;;;:::o;48922:102::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;48997:19;;::::1;::::0;:7:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48922:102:::0;:::o;49540:105::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;49612:9:::1;:25:::0;49540:105::o;21223:239::-;21295:7;21331:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21331:16:0;21366:19;21358:73;;;;-1:-1:-1;;;21358:73:0;;11718:2:1;21358:73:0;;;11700:21:1;11757:2;11737:18;;;11730:30;11796:34;11776:18;;;11769:62;-1:-1:-1;;;11847:18:1;;;11840:39;11896:19;;21358:73:0;11690:231:1;45377:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20953:208::-;21025:7;-1:-1:-1;;;;;21053:19:0;;21045:74;;;;-1:-1:-1;;;21045:74:0;;11307:2:1;21045:74:0;;;11289:21:1;11346:2;11326:18;;;11319:30;11385:34;11365:18;;;11358:62;-1:-1:-1;;;11436:18:1;;;11429:40;11486:19;;21045:74:0;11279:232:1;21045:74:0;-1:-1:-1;;;;;;21137:16:0;;;;;:9;:16;;;;;;;20953:208::o;43162:94::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;43227:21:::1;43245:1;43227:9;:21::i;:::-;43162:94::o:0;50238:113::-;50289:7;50317:25;:15;44708:14;;44616:114;50317:25;50310:32;;50238:113;:::o;21698:104::-;21754:13;21787:7;21780:14;;;;;:::i;46814:1089::-;46929:4;;;;46921:30;;;;-1:-1:-1;;;46921:30:0;;14853:2:1;46921:30:0;;;14835:21:1;14892:2;14872:18;;;14865:30;-1:-1:-1;;;14911:18:1;;;14904:43;14964:18;;46921:30:0;14825:163:1;46921:30:0;46996:13;46988:59;;;;-1:-1:-1;;;46988:59:0;;;;;;;:::i;:::-;47120:8;;47108;:20;;47100:69;;;;-1:-1:-1;;;47100:69:0;;18235:2:1;47100:69:0;;;18217:21:1;18274:2;18254:18;;;18247:30;18313:34;18293:18;;;18286:62;-1:-1:-1;;;18364:18:1;;;18357:34;18408:19;;47100:69:0;18207:226:1;47100:69:0;47302:9;47290:8;;47279;:19;;;;:::i;:::-;:32;;47271:66;;;;-1:-1:-1;;;47271:66:0;;16787:2:1;47271:66:0;;;16769:21:1;16826:2;16806:18;;;16799:30;-1:-1:-1;;;16845:18:1;;;16838:51;16906:18;;47271:66:0;16759:171:1;47271:66:0;47439:10;8563:20;8611:8;47411:77;;;;-1:-1:-1;;;47411:77:0;;;;;;;:::i;:::-;47540:9;;47514:10;47507:18;;;;:6;:18;;;;;;:29;;47528:8;;47507:29;:::i;:::-;:42;;47499:98;;;;-1:-1:-1;;;47499:98:0;;;;;;;:::i;:::-;47650:9;;47638:8;47616:19;35372:10;:17;35284:113;;47616:19;:30;;;;:::i;:::-;:43;;47608:86;;;;-1:-1:-1;;;47608:86:0;;15597:2:1;47608:86:0;;;15579:21:1;15636:2;15616:18;;;15609:30;15675:32;15655:18;;;15648:60;15725:18;;47608:86:0;15569:180:1;47608:86:0;47712:9;47707:148;47731:8;47727:1;:12;47707:148;;;47761:40;47771:2;47775:25;:15;44708:14;;44616:114;47761:40;47816:27;:15;44827:19;;44845:1;44827:19;;;44738:127;47816:27;47741:3;;;;:::i;:::-;;;;47707:148;;23381:295;-1:-1:-1;;;;;23484:24:0;;16066:10;23484:24;;23476:62;;;;-1:-1:-1;;;23476:62:0;;10115:2:1;23476:62:0;;;10097:21:1;10154:2;10134:18;;;10127:30;10193:27;10173:18;;;10166:55;10238:18;;23476:62:0;10087:175:1;23476:62:0;16066:10;23551:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23551:42:0;;;;;;;;;;:53;;-1:-1:-1;;23551:53:0;;;;;;;:42;-1:-1:-1;;;;;23620:48:0;;23659:8;23620:48;;;;6897:14:1;6890:22;6872:41;;6860:2;6845:18;;6827:92;23620:48:0;;;;;;;;23381:295;;:::o;24644:328::-;24819:41;16066:10;24852:7;24819:18;:41::i;:::-;24811:103;;;;-1:-1:-1;;;24811:103:0;;;;;;;:::i;:::-;24925:39;24939:4;24945:2;24949:7;24958:5;24925:13;:39::i;:::-;24644:328;;;;:::o;50769:192::-;50832:4;26571:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26571:16:0;50855:76;;;;-1:-1:-1;;;50855:76:0;;;;;;;:::i;:::-;-1:-1:-1;50949:4:0;50769:192;;;:::o;46558:69::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;46608:4:::1;:11:::0;;-1:-1:-1;;46608:11:0::1;46615:4;46608:11;::::0;;46558:69::o;50363:101::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;50433:11:::1;:23:::0;50363:101::o;21873:334::-;26547:4;26571:16;;;:7;:16;;;;;;21946:13;;-1:-1:-1;;;;;26571:16:0;21972:76;;;;-1:-1:-1;;;21972:76:0;;;;;;;:::i;:::-;22061:21;22085:10;:8;:10::i;:::-;22061:34;;22137:1;22119:7;22113:21;:25;:86;;;;;;;;;;;;;;;;;22165:7;22174:18;:7;:16;:18::i;:::-;22148:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22113:86;22106:93;21873:334;-1:-1:-1;;;21873:334:0:o;49036:105::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;49108:10:::1;:25:::0;49036:105::o;50470:101::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;50542:8:::1;:21:::0;50470:101::o;46443:107::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;46522:7:::1;:20:::0;;-1:-1:-1;;;;;;46522:20:0::1;-1:-1:-1::0;;;;;46522:20:0;;;::::1;::::0;;;::::1;::::0;;46443:107::o;43411:192::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43500:22:0;::::1;43492:73;;;::::0;-1:-1:-1;;;43492:73:0;;8593:2:1;43492:73:0::1;::::0;::::1;8575:21:1::0;8632:2;8612:18;;;8605:30;8671:34;8651:18;;;8644:62;-1:-1:-1;;;8722:18:1;;;8715:36;8768:19;;43492:73:0::1;8565:228:1::0;43492:73:0::1;43576:19;43586:8;43576:9;:19::i;49434:98::-:0;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;49510:14:::1;::::0;;-1:-1:-1;;49492:32:0;::::1;49510:14;::::0;;;::::1;;;49509:15;49492:32:::0;;::::1;;::::0;;49434:98::o;49340:82::-;42584:6;;-1:-1:-1;;;;;42584:6:0;16066:10;42731:23;42723:68;;;;-1:-1:-1;;;42723:68:0;;;;;;;:::i;:::-;49407:7:::1;::::0;;-1:-1:-1;;49396:18:0;::::1;49407:7;::::0;;::::1;49406:8;49396:18;::::0;;49340:82::o;34644:224::-;34746:4;-1:-1:-1;;;;;;34770:50:0;;-1:-1:-1;;;34770:50:0;;:90;;;34824:36;34848:11;34824:23;:36::i;30464:174::-;30539:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30539:29:0;-1:-1:-1;;;;;30539:29:0;;;;;;;;:24;;30593:23;30539:24;30593:14;:23::i;:::-;-1:-1:-1;;;;;30584:46:0;;;;;;;;;;;30464:174;;:::o;26776:348::-;26869:4;26571:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26571:16:0;26886:73;;;;-1:-1:-1;;;26886:73:0;;10469:2:1;26886:73:0;;;10451:21:1;10508:2;10488:18;;;10481:30;10547:34;10527:18;;;10520:62;-1:-1:-1;;;10598:18:1;;;10591:42;10650:19;;26886:73:0;10441:234:1;26886:73:0;26970:13;26986:23;27001:7;26986:14;:23::i;:::-;26970:39;;27039:5;-1:-1:-1;;;;;27028:16:0;:7;-1:-1:-1;;;;;27028:16:0;;:51;;;;27072:7;-1:-1:-1;;;;;27048:31:0;:20;27060:7;27048:11;:20::i;:::-;-1:-1:-1;;;;;27048:31:0;;27028:51;:87;;;-1:-1:-1;;;;;;23868:25:0;;;23844:4;23868:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27083:32;27020:96;26776:348;-1:-1:-1;;;;26776:348:0:o;29768:578::-;29927:4;-1:-1:-1;;;;;29900:31:0;:23;29915:7;29900:14;:23::i;:::-;-1:-1:-1;;;;;29900:31:0;;29892:85;;;;-1:-1:-1;;;29892:85:0;;14027:2:1;29892:85:0;;;14009:21:1;14066:2;14046:18;;;14039:30;14105:34;14085:18;;;14078:62;-1:-1:-1;;;14156:18:1;;;14149:39;14205:19;;29892:85:0;13999:231:1;29892:85:0;-1:-1:-1;;;;;29996:16:0;;29988:65;;;;-1:-1:-1;;;29988:65:0;;9710:2:1;29988:65:0;;;9692:21:1;9749:2;9729:18;;;9722:30;9788:34;9768:18;;;9761:62;-1:-1:-1;;;9839:18:1;;;9832:34;9883:19;;29988:65:0;9682:226:1;29988:65:0;30066:39;30087:4;30093:2;30097:7;30066:20;:39::i;:::-;30170:29;30187:1;30191:7;30170:8;:29::i;:::-;-1:-1:-1;;;;;30212:15:0;;;;;;:9;:15;;;;;:20;;30231:1;;30212:15;:20;;30231:1;;30212:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30243:13:0;;;;;;:9;:13;;;;;:18;;30260:1;;30243:13;:18;;30260:1;;30243:18;:::i;:::-;;;;-1:-1:-1;;30272:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30272:21:0;-1:-1:-1;;;;;30272:21:0;;;;;;;;;30311:27;;30272:16;;30311:27;;;;;;;29768:578;;;:::o;27466:110::-;27542:26;27552:2;27556:7;27542:26;;;;;;;;;;;;:9;:26::i;29071:360::-;29131:13;29147:23;29162:7;29147:14;:23::i;:::-;29131:39;;29183:48;29204:5;29219:1;29223:7;29183:20;:48::i;:::-;29272:29;29289:1;29293:7;29272:8;:29::i;:::-;-1:-1:-1;;;;;29314:16:0;;;;;;:9;:16;;;;;:21;;29334:1;;29314:16;:21;;29334:1;;29314:21;:::i;:::-;;;;-1:-1:-1;;29353:16:0;;;;:7;:16;;;;;;29346:23;;-1:-1:-1;;;;;;29346:23:0;;;29387:36;29361:7;;29353:16;-1:-1:-1;;;;;29387:36:0;;;;;29353:16;;29387:36;29071:360;;:::o;43611:173::-;43686:6;;;-1:-1:-1;;;;;43703:17:0;;;-1:-1:-1;;;;;;43703:17:0;;;;;;;43736:40;;43686:6;;;43703:17;43686:6;;43736:40;;43667:16;;43736:40;43611:173;;:::o;25854:315::-;26011:28;26021:4;26027:2;26031:7;26011:9;:28::i;:::-;26058:48;26081:4;26087:2;26091:7;26100:5;26058:22;:48::i;:::-;26050:111;;;;-1:-1:-1;;;26050:111:0;;;;;;;:::i;49153:100::-;49205:13;49238:7;49231:14;;;;;:::i;16519:723::-;16575:13;16796:10;16792:53;;-1:-1:-1;16823:10:0;;;;;;;;;;;;-1:-1:-1;;;16823:10:0;;;;;;16792:53;16870:5;16855:12;16911:78;16918:9;;16911:78;;16944:8;;;;:::i;:::-;;-1:-1:-1;16967:10:0;;-1:-1:-1;16975:2:0;16967:10;;:::i;:::-;;;16911:78;;;16999:19;17031:6;17021:17;;;;;;-1:-1:-1;;;17021:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17021:17:0;;16999:39;;17049:154;17056:10;;17049:154;;17083:11;17093:1;17083:11;;:::i;:::-;;-1:-1:-1;17152:10:0;17160:2;17152:5;:10;:::i;:::-;17139:24;;:2;:24;:::i;:::-;17126:39;;17109:6;17116;17109:14;;;;;;-1:-1:-1;;;17109:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17109:56:0;;;;;;;;-1:-1:-1;17180:11:0;17189:2;17180:11;;:::i;:::-;;;17049:154;;20584:305;20686:4;-1:-1:-1;;;;;;20723:40:0;;-1:-1:-1;;;20723:40:0;;:105;;-1:-1:-1;;;;;;;20780:48:0;;-1:-1:-1;;;20780:48:0;20723:105;:158;;;-1:-1:-1;;;;;;;;;;19191:40:0;;;20845:36;19082:157;49651:181;49779:45;49806:4;49812:2;49816:7;49779:26;:45::i;27803:321::-;27933:18;27939:2;27943:7;27933:5;:18::i;:::-;27984:54;28015:1;28019:2;28023:7;28032:5;27984:22;:54::i;:::-;27962:154;;;;-1:-1:-1;;;27962:154:0;;;;;;;:::i;31203:803::-;31358:4;-1:-1:-1;;;;;31379:13:0;;8563:20;8611:8;31375:624;;31415:72;;-1:-1:-1;;;31415:72:0;;-1:-1:-1;;;;;31415:36:0;;;;;:72;;16066:10;;31466:4;;31472:7;;31481:5;;31415:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31415:72:0;;;;;;;;-1:-1:-1;;31415:72:0;;;;;;;;;;;;:::i;:::-;;;31411:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31661:13:0;;31657:272;;31704:60;;-1:-1:-1;;;31704:60:0;;;;;;;:::i;31657:272::-;31879:6;31873:13;31864:6;31860:2;31856:15;31849:38;31411:533;-1:-1:-1;;;;;;31538:55:0;-1:-1:-1;;;31538:55:0;;-1:-1:-1;31531:62:0;;31375:624;-1:-1:-1;31983:4:0;31203:803;;;;;;:::o;36320:589::-;-1:-1:-1;;;;;36526:18:0;;36522:187;;36561:40;36593:7;37736:10;:17;;37709:24;;;;:15;:24;;;;;:44;;;37764:24;;;;;;;;;;;;37632:164;36561:40;36522:187;;;36631:2;-1:-1:-1;;;;;36623:10:0;:4;-1:-1:-1;;;;;36623:10:0;;36619:90;;36650:47;36683:4;36689:7;36650:32;:47::i;:::-;-1:-1:-1;;;;;36723:16:0;;36719:183;;36756:45;36793:7;36756:36;:45::i;:::-;36719:183;;;36829:4;-1:-1:-1;;;;;36823:10:0;:2;-1:-1:-1;;;;;36823:10:0;;36819:83;;36850:40;36878:2;36882:7;36850:27;:40::i;28460:382::-;-1:-1:-1;;;;;28540:16:0;;28532:61;;;;-1:-1:-1;;;28532:61:0;;12541:2:1;28532:61:0;;;12523:21:1;;;12560:18;;;12553:30;12619:34;12599:18;;;12592:62;12671:18;;28532:61:0;12513:182:1;28532:61:0;26547:4;26571:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26571:16:0;:30;28604:58;;;;-1:-1:-1;;;28604:58:0;;9000:2:1;28604:58:0;;;8982:21:1;9039:2;9019:18;;;9012:30;9078;9058:18;;;9051:58;9126:18;;28604:58:0;8972:178:1;28604:58:0;28675:45;28704:1;28708:2;28712:7;28675:20;:45::i;:::-;-1:-1:-1;;;;;28733:13:0;;;;;;:9;:13;;;;;:18;;28750:1;;28733:13;:18;;28750:1;;28733:18;:::i;:::-;;;;-1:-1:-1;;28762:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28762:21:0;-1:-1:-1;;;;;28762:21:0;;;;;;;;28801:33;;28762:16;;;28801:33;;28762:16;;28801:33;28460:382;;:::o;38423:988::-;38689:22;38739:1;38714:22;38731:4;38714:16;:22::i;:::-;:26;;;;:::i;:::-;38751:18;38772:26;;;:17;:26;;;;;;38689:51;;-1:-1:-1;38905:28:0;;;38901:328;;-1:-1:-1;;;;;38972:18:0;;38950:19;38972:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39023:30;;;;;;:44;;;39140:30;;:17;:30;;;;;:43;;;38901:328;-1:-1:-1;39325:26:0;;;;:17;:26;;;;;;;;39318:33;;;-1:-1:-1;;;;;39369:18:0;;;;;:12;:18;;;;;:34;;;;;;;39362:41;38423:988::o;39706:1079::-;39984:10;:17;39959:22;;39984:21;;40004:1;;39984:21;:::i;:::-;40016:18;40037:24;;;:15;:24;;;;;;40410:10;:26;;39959:46;;-1:-1:-1;40037:24:0;;39959:46;;40410:26;;;;-1:-1:-1;;;40410:26:0;;;;;;;;;;;;;;;;;40388:48;;40474:11;40449:10;40460;40449:22;;;;;;-1:-1:-1;;;40449:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40554:28;;;:15;:28;;;;;;;:41;;;40726:24;;;;;40719:31;40761:10;:16;;;;;-1:-1:-1;;;40761:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39706:1079;;;;:::o;37210:221::-;37295:14;37312:20;37329:2;37312:16;:20::i;:::-;-1:-1:-1;;;;;37343:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37388:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37210:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:257::-;;762:2;750:9;741:7;737:23;733:32;730:2;;;783:6;775;768:22;730:2;827:9;814:23;846:31;871:5;846:31;:::i;1182:398::-;;;1311:2;1299:9;1290:7;1286:23;1282:32;1279:2;;;1332:6;1324;1317:22;1279:2;1376:9;1363:23;1395:31;1420:5;1395:31;:::i;:::-;1445:5;-1:-1:-1;1502:2:1;1487:18;;1474:32;1515:33;1474:32;1515:33;:::i;:::-;1567:7;1557:17;;;1269:311;;;;;:::o;1585:466::-;;;;1731:2;1719:9;1710:7;1706:23;1702:32;1699:2;;;1752:6;1744;1737:22;1699:2;1796:9;1783:23;1815:31;1840:5;1815:31;:::i;:::-;1865:5;-1:-1:-1;1922:2:1;1907:18;;1894:32;1935:33;1894:32;1935:33;:::i;:::-;1689:362;;1987:7;;-1:-1:-1;;;2041:2:1;2026:18;;;;2013:32;;1689:362::o;2056:824::-;;;;;2228:3;2216:9;2207:7;2203:23;2199:33;2196:2;;;2250:6;2242;2235:22;2196:2;2294:9;2281:23;2313:31;2338:5;2313:31;:::i;:::-;2363:5;-1:-1:-1;2420:2:1;2405:18;;2392:32;2433:33;2392:32;2433:33;:::i;:::-;2485:7;-1:-1:-1;2539:2:1;2524:18;;2511:32;;-1:-1:-1;2594:2:1;2579:18;;2566:32;2621:18;2610:30;;2607:2;;;2658:6;2650;2643:22;2607:2;2686:22;;2739:4;2731:13;;2727:27;-1:-1:-1;2717:2:1;;2773:6;2765;2758:22;2717:2;2801:73;2866:7;2861:2;2848:16;2843:2;2839;2835:11;2801:73;:::i;:::-;2791:83;;;2186:694;;;;;;;:::o;2885:436::-;;;3011:2;2999:9;2990:7;2986:23;2982:32;2979:2;;;3032:6;3024;3017:22;2979:2;3076:9;3063:23;3095:31;3120:5;3095:31;:::i;:::-;3145:5;-1:-1:-1;3202:2:1;3187:18;;3174:32;3244:15;;3237:23;3225:36;;3215:2;;3280:6;3272;3265:22;3326:325;;;3455:2;3443:9;3434:7;3430:23;3426:32;3423:2;;;3476:6;3468;3461:22;3423:2;3520:9;3507:23;3539:31;3564:5;3539:31;:::i;:::-;3589:5;3641:2;3626:18;;;;3613:32;;-1:-1:-1;;;3413:238:1:o;3656:255::-;;3767:2;3755:9;3746:7;3742:23;3738:32;3735:2;;;3788:6;3780;3773:22;3735:2;3832:9;3819:23;3851:30;3875:5;3851:30;:::i;3916:259::-;;4038:2;4026:9;4017:7;4013:23;4009:32;4006:2;;;4059:6;4051;4044:22;4006:2;4096:9;4090:16;4115:30;4139:5;4115:30;:::i;4180:480::-;;4302:2;4290:9;4281:7;4277:23;4273:32;4270:2;;;4323:6;4315;4308:22;4270:2;4368:9;4355:23;4401:18;4393:6;4390:30;4387:2;;;4438:6;4430;4423:22;4387:2;4466:22;;4519:4;4511:13;;4507:27;-1:-1:-1;4497:2:1;;4553:6;4545;4538:22;4497:2;4581:73;4646:7;4641:2;4628:16;4623:2;4619;4615:11;4581:73;:::i;4665:190::-;;4777:2;4765:9;4756:7;4752:23;4748:32;4745:2;;;4798:6;4790;4783:22;4745:2;-1:-1:-1;4826:23:1;;4735:120;-1:-1:-1;4735:120:1:o;4860:257::-;;4939:5;4933:12;4966:6;4961:3;4954:19;4982:63;5038:6;5031:4;5026:3;5022:14;5015:4;5008:5;5004:16;4982:63;:::i;:::-;5099:2;5078:15;-1:-1:-1;;5074:29:1;5065:39;;;;5106:4;5061:50;;4909:208;-1:-1:-1;;4909:208:1:o;5122:470::-;;5339:6;5333:13;5355:53;5401:6;5396:3;5389:4;5381:6;5377:17;5355:53;:::i;:::-;5471:13;;5430:16;;;;5493:57;5471:13;5430:16;5527:4;5515:17;;5493:57;:::i;:::-;5566:20;;5309:283;-1:-1:-1;;;;5309:283:1:o;6239:488::-;-1:-1:-1;;;;;6508:15:1;;;6490:34;;6560:15;;6555:2;6540:18;;6533:43;6607:2;6592:18;;6585:34;;;6655:3;6650:2;6635:18;;6628:31;;;6239:488;;6676:45;;6701:19;;6693:6;6676:45;:::i;:::-;6668:53;6442:285;-1:-1:-1;;;;;;6442:285:1:o;6924:219::-;;7073:2;7062:9;7055:21;7093:44;7133:2;7122:9;7118:18;7110:6;7093:44;:::i;7148:407::-;7350:2;7332:21;;;7389:2;7369:18;;;7362:30;7428:34;7423:2;7408:18;;7401:62;-1:-1:-1;;;7494:2:1;7479:18;;7472:41;7545:3;7530:19;;7322:233::o;7972:414::-;8174:2;8156:21;;;8213:2;8193:18;;;8186:30;8252:34;8247:2;8232:18;;8225:62;-1:-1:-1;;;8318:2:1;8303:18;;8296:48;8376:3;8361:19;;8146:240::o;13113:356::-;13315:2;13297:21;;;13334:18;;;13327:30;13393:34;13388:2;13373:18;;13366:62;13460:2;13445:18;;13287:182::o;14235:411::-;14437:2;14419:21;;;14476:2;14456:18;;;14449:30;14515:34;14510:2;14495:18;;14488:62;-1:-1:-1;;;14581:2:1;14566:18;;14559:45;14636:3;14621:19;;14409:237::o;15754:413::-;15956:2;15938:21;;;15995:2;15975:18;;;15968:30;16034:34;16029:2;16014:18;;16007:62;-1:-1:-1;;;16100:2:1;16085:18;;16078:47;16157:3;16142:19;;15928:239::o;16935:397::-;17137:2;17119:21;;;17176:2;17156:18;;;17149:30;17215:34;17210:2;17195:18;;17188:62;-1:-1:-1;;;17281:2:1;17266:18;;17259:31;17322:3;17307:19;;17109:223::o;18855:397::-;19057:2;19039:21;;;19096:2;19076:18;;;19069:30;19135:34;19130:2;19115:18;;19108:62;-1:-1:-1;;;19201:2:1;19186:18;;19179:31;19242:3;19227:19;;19029:223::o;19439:128::-;;19510:1;19506:6;19503:1;19500:13;19497:2;;;19516:18;;:::i;:::-;-1:-1:-1;19552:9:1;;19487:80::o;19572:120::-;;19638:1;19628:2;;19643:18;;:::i;:::-;-1:-1:-1;19677:9:1;;19618:74::o;19697:168::-;;19803:1;19799;19795:6;19791:14;19788:1;19785:21;19780:1;19773:9;19766:17;19762:45;19759:2;;;19810:18;;:::i;:::-;-1:-1:-1;19850:9:1;;19749:116::o;19870:125::-;;19938:1;19935;19932:8;19929:2;;;19943:18;;:::i;:::-;-1:-1:-1;19980:9:1;;19919:76::o;20000:258::-;20072:1;20082:113;20096:6;20093:1;20090:13;20082:113;;;20172:11;;;20166:18;20153:11;;;20146:39;20118:2;20111:10;20082:113;;;20213:6;20210:1;20207:13;20204:2;;;-1:-1:-1;;20248:1:1;20230:16;;20223:27;20053:205::o;20263:380::-;20348:1;20338:12;;20395:1;20385:12;;;20406:2;;20460:4;20452:6;20448:17;20438:27;;20406:2;20513;20505:6;20502:14;20482:18;20479:38;20476:2;;;20559:10;20554:3;20550:20;20547:1;20540:31;20594:4;20591:1;20584:15;20622:4;20619:1;20612:15;20476:2;;20318:325;;;:::o;20648:135::-;;-1:-1:-1;;20708:17:1;;20705:2;;;20728:18;;:::i;:::-;-1:-1:-1;20775:1:1;20764:13;;20695:88::o;20788:112::-;;20846:1;20836:2;;20851:18;;:::i;:::-;-1:-1:-1;20885:9:1;;20826:74::o;20905:127::-;20966:10;20961:3;20957:20;20954:1;20947:31;20997:4;20994:1;20987:15;21021:4;21018:1;21011:15;21037:127;21098:10;21093:3;21089:20;21086:1;21079:31;21129:4;21126:1;21119:15;21153:4;21150:1;21143:15;21169:127;21230:10;21225:3;21221:20;21218:1;21211:31;21261:4;21258:1;21251:15;21285:4;21282:1;21275:15;21301:131;-1:-1:-1;;;;;21376:31:1;;21366:42;;21356:2;;21422:1;21419;21412:12;21437:131;-1:-1:-1;;;;;;21511:32:1;;21501:43;;21491:2;;21558:1;21555;21548:12
Swarm Source
ipfs://59f09bee3a5028eb712c7a8bc8c7e605efc98c27a055a620f977353df8364a88
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.