ERC-721
NFT
Overview
Max Total Supply
267 Petta
Holders
148
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 PettaLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Pettametti
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-04 */ // ]y ,▄▒ // ▄╬╩▄▓▓╬╢╬▒⌐ // ▓#╟▓▄╣▀╫╬╚╨., // ▐▓∩▓¬╠╬█╓╣╟`%▄▄▀*ΣW@▓╠╘│▌⌐╙≈ // ╠^╚╝▓╝╚▀╬╩ `ⁿ╝╩╠╙ÖT╢Q╠╠╜Θ²╙╩"╔R══Qæ ,▄R⌐~ç , µ▄ // "`"╜*"` ╠ ╬Γ7▄▀╨╜╬▄▄╫╫Q╠╩@"╚╬#╬▓▓▓Ö╠╬▓╫╩╬▓▓╗╖▄▄Æ#╗▓▓▀ // ║▐╚▒ ▀╞ µ ``╙ ^²▄╟¥⌐]╩¬ ``╙╙╨╩╩╙╙^` // ╟╠╬▌ ▒Ü╠ ╚╣¬╠ // ╣║╣ ╠╙╚ ▐▌╠▓ // ü╟╬ j╗▐⌐ j▓▄╞ // ▓╪╔ ╣╠▌ ]╙▌Q% // ╬▌╟ ╘╝▓ ▓▌▒⌐▓ // ]▒▒ε ╬╙ ▀▒ └Q╬╕ // ╣╬▌ ▓▌▄ ╬▒▀ ¼╬µ // ▓▌▌ ╫▒▌ ▓╣┘ ╟Γ¬ // ▐╬▌▌ ╠▓▌ ▌µ` ╫▓╫ // ╓╬╗╬╟ ╟╣╬ ▄▐╠▐ ]▌█▄ // ╝╫▀▄⌐ ╬▓▓╟ ▐╙▀▓√µ ▐╫▓╩ // Pettametti, art project by artist Pumpametti, 300 pettamettis for the 300 Pumpamettis, every Pumpa will get a Petta. // Pumpametti holder get lifetime free mint for my projects, of course that includes the Pettametti! // Go to MettiMint if you have one OG metti or MettiMultiMint if you have more than one OG mettis, // simply input your token ID, put 0 at the ether amount and you are good to go! For MettiMultiMint please write your token IDs separated by commas and no spaces, // for example if you own Metti #1 and Mettti #5, input 1,5 at mettiIds (uint256[]). // There'll only be 300 Pettamettis. // File: @openzeppelin/contracts/utils/Counters.sol 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; } } // File: contracts/WithLimitedSupply.sol pragma solidity ^0.8.0; /// @author 1001.digital /// @title A token tracker that limits the token supply and increments token IDs on each new mint. abstract contract WithLimitedSupply { using Counters for Counters.Counter; // Keeps track of how many we have minted Counters.Counter private _tokenCount; /// @dev The maximum count of tokens this token tracker will hold. uint256 private _maxSupply; /// Instanciate the contract /// @param totalSupply_ how many tokens this collection should hold constructor (uint256 totalSupply_) { _maxSupply = totalSupply_; } /// @dev Get the max Supply /// @return the maximum token count function maxSupply() public view returns (uint256) { return _maxSupply; } /// @dev Get the current token count /// @return the created token count function tokenCount() public view returns (uint256) { return _tokenCount.current(); } /// @dev Check whether tokens are still available /// @return the available token count function availableTokenCount() public view returns (uint256) { return maxSupply() - tokenCount(); } /// @dev Increment the token count and fetch the latest count /// @return the next token id function nextToken() internal virtual ensureAvailability returns (uint256) { uint256 token = _tokenCount.current(); _tokenCount.increment(); return token; } /// @dev Check whether another token is still available modifier ensureAvailability() { require(availableTokenCount() > 0, "No more tokens available"); _; } /// @param amount Check whether number of tokens are still available /// @dev Check whether tokens are still available modifier ensureAvailabilityFor(uint256 amount) { require(availableTokenCount() >= amount, "Requested number of tokens not available"); _; } } // File: contracts/RandomlyAssigned.sol pragma solidity ^0.8.0; /// @author 1001.digital /// @title Randomly assign tokenIDs from a given set of tokens. abstract contract RandomlyAssigned is WithLimitedSupply { // Used for random index assignment mapping(uint256 => uint256) private tokenMatrix; // The initial token ID uint256 private startFrom; /// Instanciate the contract /// @param _maxSupply how many tokens this collection should hold /// @param _startFrom the tokenID with which to start counting constructor (uint256 _maxSupply, uint256 _startFrom) WithLimitedSupply(_maxSupply) { startFrom = _startFrom; } /// Get the next token ID /// @dev Randomly gets a new token ID and keeps track of the ones that are still available. /// @return the next token ID function nextToken() internal override ensureAvailability returns (uint256) { uint256 maxIndex = maxSupply() - tokenCount(); uint256 random = uint256(keccak256( abi.encodePacked( msg.sender, block.coinbase, block.difficulty, block.gaslimit, block.timestamp ) )) % maxIndex; uint256 value = 0; if (tokenMatrix[random] == 0) { // If this matrix position is empty, set the value to the generated random number. value = random; } else { // Otherwise, use the previously stored number from the matrix. value = tokenMatrix[random]; } // If the last available tokenID is still unused... if (tokenMatrix[maxIndex - 1] == 0) { // ...store that ID in the current matrix position. tokenMatrix[random] = maxIndex - 1; } else { // ...otherwise copy over the stored number to the current matrix position. tokenMatrix[random] = tokenMatrix[maxIndex - 1]; } // Increment counts super.nextToken(); return value + startFrom; } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol 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/introspection/IERC165.sol 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/IERC721.sol 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/extensions/IERC721Enumerable.sol 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/utils/introspection/ERC165.sol 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/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol 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); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol 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/token/ERC721/IERC721Receiver.sol 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/ERC721.sol 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.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/ERC721Enumerable.sol 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: contracts/Pettametti.sol // ]y ,▄▒ // ▄╬╩▄▓▓╬╢╬▒⌐ // ▓#╟▓▄╣▀╫╬╚╨., // ▐▓∩▓¬╠╬█╓╣╟`%▄▄▀*ΣW@▓╠╘│▌⌐╙≈ // ╠^╚╝▓╝╚▀╬╩ `ⁿ╝╩╠╙ÖT╢Q╠╠╜Θ²╙╩"╔R══Qæ ,▄R⌐~ç , µ▄ // "`"╜*"` ╠ ╬Γ7▄▀╨╜╬▄▄╫╫Q╠╩@"╚╬#╬▓▓▓Ö╠╬▓╫╩╬▓▓╗╖▄▄Æ#╗▓▓▀ // ║▐╚▒ ▀╞ µ ``╙ ^²▄╟¥⌐]╩¬ ``╙╙╨╩╩╙╙^` // ╟╠╬▌ ▒Ü╠ ╚╣¬╠ // ╣║╣ ╠╙╚ ▐▌╠▓ // ü╟╬ j╗▐⌐ j▓▄╞ // ▓╪╔ ╣╠▌ ]╙▌Q% // ╬▌╟ ╘╝▓ ▓▌▒⌐▓ // ]▒▒ε ╬╙ ▀▒ └Q╬╕ // ╣╬▌ ▓▌▄ ╬▒▀ ¼╬µ // ▓▌▌ ╫▒▌ ▓╣┘ ╟Γ¬ // ▐╬▌▌ ╠▓▌ ▌µ` ╫▓╫ // ╓╬╗╬╟ ╟╣╬ ▄▐╠▐ ]▌█▄ // ╝╫▀▄⌐ ╬▓▓╟ ▐╙▀▓√µ ▐╫▓╩ // Pettametti, art project by artist Pumpametti, 300 pettamettis for the 300 Pumpamettis, every Pumpa will get a Petta. // Pumpametti holder get lifetime free mint for my projects, of course that includes the Pettametti! // Go to MettiMint if you have one OG metti or MettiMultiMint if you have more than one OG mettis, // simply input your token ID, put 0 at the ether amount and you are good to go! For MettiMultiMint please write your token IDs separated by commas and no spaces, // for example if you own Metti #1 and Mettti #5, input 1,5 at mettiIds (uint256[]). // There'll only be 300 Pettamettis. //SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface MettiInterface { function ownerOf(uint256 tokenId) external view returns (address owner); function balanceOf(address owner) external view returns (uint256 balance); function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); } contract Pettametti is ERC721Enumerable, Ownable, RandomlyAssigned { using Strings for uint256; string public baseExtension = ".json"; uint256 public cost = 0.00 ether; uint256 public maxMettiSupply = 300; uint256 public maxPettaSupply = 300; uint256 public maxMintAmount = 20; bool public paused = false; string public baseURI = "https://ipfs.io/ipfs/QmRgXjdjTTFtzJEiXrD3atGJxQZ8nXFbtLuP8C2TX3Ykkc/"; //Allow OG Pumpametti holders to mint for free address public MettiAddress = 0x09646c5c1e42ede848A57d6542382C32f2877164; MettiInterface MettiContract = MettiInterface(MettiAddress); uint public MettiOwnersSupplyMinted = 0; uint public publicSupplyMinted = 0; constructor( ) ERC721("Pettametti", "Petta") RandomlyAssigned(300, 1) {} // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function MettiFreeMint(uint mettiId) public payable { require(mettiId > 0 && mettiId <= 300, "Token ID invalid"); require(MettiContract.ownerOf(mettiId) == msg.sender, "Not the owner of this pumpametti"); _safeMint(msg.sender, mettiId); } function MettiMultiFreeMint(uint256[] memory mettiIds) public payable { for (uint256 i = 0; i < mettiIds.length; i++) { require(MettiContract.ownerOf(mettiIds[i]) == msg.sender, "Not the owner of this pumpametti"); _safeMint(_msgSender(), mettiIds[i]); } } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function withdraw() public payable onlyOwner { require(payable(msg.sender).send(address(this).balance)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"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":[],"name":"MettiAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mettiId","type":"uint256"}],"name":"MettiFreeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"mettiIds","type":"uint256[]"}],"name":"MettiMultiFreeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"MettiOwnersSupplyMinted","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":[],"name":"availableTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxMettiSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPettaSupply","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSupplyMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","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":[],"name":"tokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600f9190620001b3565b50600060105561012c601181905560125560146013819055805460ff19169055604080516080810190915260448082526200257c602083013980516200007791601591602090910190620001b3565b50601680547309646c5c1e42ede848a57d6542382c32f28771646001600160a01b0319918216811790925560178054909116909117905560006018819055601955348015620000c557600080fd5b50604080518082018252600a81526950657474616d6574746960b01b602080830191825283518085019094526005845264506574746160d81b90840152815161012c93600193859390926200011d91600091620001b3565b50805162000133906001906020840190620001b3565b505050620001506200014a6200015d60201b60201c565b62000161565b600c55600e555062000296565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001c19062000259565b90600052602060002090601f016020900481019282620001e5576000855562000230565b82601f106200020057805160ff191683800117855562000230565b8280016001018555821562000230579182015b828111156200023057825182559160200191906001019062000213565b506200023e92915062000242565b5090565b5b808211156200023e576000815560010162000243565b600181811c908216806200026e57607f821691505b602082108114156200029057634e487b7160e01b600052602260045260246000fd5b50919050565b6122d680620002a66000396000f3fe60806040526004361061020f5760003560e01c80636c0360eb11610118578063af6a22b7116100a0578063d5abeb011161006f578063d5abeb0114610588578063e14ca3531461059d578063e91b809d146105b2578063e985e9c5146105d2578063f2fde38b1461061b57600080fd5b8063af6a22b71461051d578063b88d4fde14610533578063c668286214610553578063c87b56dd1461056857600080fd5b80638da5cb5b116100e75780638da5cb5b146104a257806395d89b41146104c0578063969e12ab146104d55780639f181b5e146104e8578063a22cb465146104fd57600080fd5b80636c0360eb1461044257806370a0823114610457578063715018a61461047757806388f627f71461048c57600080fd5b80632518ad291161019b578063438b63001161016a578063438b6300146103a85780634f6ccce7146103d55780635a827c4d146103f55780635c975abb146104085780636352211e1461042257600080fd5b80632518ad291461034a5780632f745c59146103605780633ccfd60b1461038057806342842e0e1461038857600080fd5b806313faede6116101e257806313faede6146102c557806316cdae2c146102e957806318160ddd146102ff578063239c70ae1461031457806323b872dd1461032a57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611be7565b61063b565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e610666565b6040516102409190611c5c565b34801561027757600080fd5b5061028b610286366004611c6f565b6106f8565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611c9d565b610792565b005b3480156102d157600080fd5b506102db60105481565b604051908152602001610240565b3480156102f557600080fd5b506102db60125481565b34801561030b57600080fd5b506008546102db565b34801561032057600080fd5b506102db60135481565b34801561033657600080fd5b506102c3610345366004611cc9565b6108a8565b34801561035657600080fd5b506102db60115481565b34801561036c57600080fd5b506102db61037b366004611c9d565b6108d9565b6102c361096f565b34801561039457600080fd5b506102c36103a3366004611cc9565b6109bf565b3480156103b457600080fd5b506103c86103c3366004611d0a565b6109da565b6040516102409190611d27565b3480156103e157600080fd5b506102db6103f0366004611c6f565b610a7c565b6102c3610403366004611db2565b610b0f565b34801561041457600080fd5b506014546102349060ff1681565b34801561042e57600080fd5b5061028b61043d366004611c6f565b610c49565b34801561044e57600080fd5b5061025e610cc0565b34801561046357600080fd5b506102db610472366004611d0a565b610d4e565b34801561048357600080fd5b506102c3610dd5565b34801561049857600080fd5b506102db60195481565b3480156104ae57600080fd5b50600a546001600160a01b031661028b565b3480156104cc57600080fd5b5061025e610e09565b6102c36104e3366004611c6f565b610e18565b3480156104f457600080fd5b506102db610f48565b34801561050957600080fd5b506102c3610518366004611e58565b610f58565b34801561052957600080fd5b506102db60185481565b34801561053f57600080fd5b506102c361054e366004611e96565b61101d565b34801561055f57600080fd5b5061025e611055565b34801561057457600080fd5b5061025e610583366004611c6f565b611062565b34801561059457600080fd5b50600c546102db565b3480156105a957600080fd5b506102db611140565b3480156105be57600080fd5b5060165461028b906001600160a01b031681565b3480156105de57600080fd5b506102346105ed366004611f5a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561062757600080fd5b506102c3610636366004611d0a565b611157565b60006001600160e01b0319821663780e9d6360e01b14806106605750610660826111ef565b92915050565b60606000805461067590611f88565b80601f01602080910402602001604051908101604052809291908181526020018280546106a190611f88565b80156106ee5780601f106106c3576101008083540402835291602001916106ee565b820191906000526020600020905b8154815290600101906020018083116106d157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107765760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061079d82610c49565b9050806001600160a01b0316836001600160a01b0316141561080b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161076d565b336001600160a01b0382161480610827575061082781336105ed565b6108995760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161076d565b6108a3838361123f565b505050565b6108b233826112ad565b6108ce5760405162461bcd60e51b815260040161076d90611fc3565b6108a38383836113a4565b60006108e483610d4e565b82106109465760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161076d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109995760405162461bcd60e51b815260040161076d90612014565b60405133904780156108fc02916000818181858888f193505050506109bd57600080fd5b565b6108a38383836040518060200160405280600081525061101d565b606060006109e783610d4e565b905060008167ffffffffffffffff811115610a0457610a04611d6b565b604051908082528060200260200182016040528015610a2d578160200160208202803683370190505b50905060005b82811015610a7457610a4585826108d9565b828281518110610a5757610a57612049565b602090810291909101015280610a6c81612075565b915050610a33565b509392505050565b6000610a8760085490565b8210610aea5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161076d565b60088281548110610afd57610afd612049565b90600052602060002001549050919050565b60005b8151811015610c4557601754825133916001600160a01b031690636352211e90859085908110610b4457610b44612049565b60200260200101516040518263ffffffff1660e01b8152600401610b6a91815260200190565b60206040518083038186803b158015610b8257600080fd5b505afa158015610b96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bba9190612090565b6001600160a01b031614610c105760405162461bcd60e51b815260206004820181905260248201527f4e6f7420746865206f776e6572206f6620746869732070756d70616d65747469604482015260640161076d565b610c3333838381518110610c2657610c26612049565b602002602001015161154f565b80610c3d81612075565b915050610b12565b5050565b6000818152600260205260408120546001600160a01b0316806106605760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161076d565b60158054610ccd90611f88565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf990611f88565b8015610d465780601f10610d1b57610100808354040283529160200191610d46565b820191906000526020600020905b815481529060010190602001808311610d2957829003601f168201915b505050505081565b60006001600160a01b038216610db95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161076d565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610dff5760405162461bcd60e51b815260040161076d90612014565b6109bd6000611569565b60606001805461067590611f88565b600081118015610e2a575061012c8111155b610e695760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b604482015260640161076d565b6017546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b158015610ead57600080fd5b505afa158015610ec1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee59190612090565b6001600160a01b031614610f3b5760405162461bcd60e51b815260206004820181905260248201527f4e6f7420746865206f776e6572206f6620746869732070756d70616d65747469604482015260640161076d565b610f45338261154f565b50565b6000610f53600b5490565b905090565b6001600160a01b038216331415610fb15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161076d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61102733836112ad565b6110435760405162461bcd60e51b815260040161076d90611fc3565b61104f848484846115bb565b50505050565b600f8054610ccd90611f88565b6000818152600260205260409020546060906001600160a01b03166110e15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161076d565b60006110eb6115ee565b9050600081511161110b5760405180602001604052806000815250611139565b80611115846115fd565b600f604051602001611129939291906120ad565b6040516020818303038152906040525b9392505050565b600061114a610f48565b600c54610f539190612171565b600a546001600160a01b031633146111815760405162461bcd60e51b815260040161076d90612014565b6001600160a01b0381166111e65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076d565b610f4581611569565b60006001600160e01b031982166380ac58cd60e01b148061122057506001600160e01b03198216635b5e139f60e01b145b8061066057506301ffc9a760e01b6001600160e01b0319831614610660565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061127482610c49565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113265760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161076d565b600061133183610c49565b9050806001600160a01b0316846001600160a01b0316148061136c5750836001600160a01b0316611361846106f8565b6001600160a01b0316145b8061139c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113b782610c49565b6001600160a01b03161461141f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161076d565b6001600160a01b0382166114815760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161076d565b61148c8383836116fb565b61149760008261123f565b6001600160a01b03831660009081526003602052604081208054600192906114c0908490612171565b90915550506001600160a01b03821660009081526003602052604081208054600192906114ee908490612188565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610c458282604051806020016040528060008152506117b3565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115c68484846113a4565b6115d2848484846117e6565b61104f5760405162461bcd60e51b815260040161076d906121a0565b60606015805461067590611f88565b6060816116215750506040805180820190915260018152600360fc1b602082015290565b8160005b811561164b578061163581612075565b91506116449050600a83612208565b9150611625565b60008167ffffffffffffffff81111561166657611666611d6b565b6040519080825280601f01601f191660200182016040528015611690576020820181803683370190505b5090505b841561139c576116a5600183612171565b91506116b2600a8661221c565b6116bd906030612188565b60f81b8183815181106116d2576116d2612049565b60200101906001600160f81b031916908160001a9053506116f4600a86612208565b9450611694565b6001600160a01b0383166117565761175181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611779565b816001600160a01b0316836001600160a01b0316146117795761177983826118f3565b6001600160a01b038216611790576108a381611990565b826001600160a01b0316826001600160a01b0316146108a3576108a38282611a3f565b6117bd8383611a83565b6117ca60008484846117e6565b6108a35760405162461bcd60e51b815260040161076d906121a0565b60006001600160a01b0384163b156118e857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061182a903390899088908890600401612230565b602060405180830381600087803b15801561184457600080fd5b505af1925050508015611874575060408051601f3d908101601f191682019092526118719181019061226d565b60015b6118ce573d8080156118a2576040519150601f19603f3d011682016040523d82523d6000602084013e6118a7565b606091505b5080516118c65760405162461bcd60e51b815260040161076d906121a0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061139c565b506001949350505050565b6000600161190084610d4e565b61190a9190612171565b60008381526007602052604090205490915080821461195d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906119a290600190612171565b600083815260096020526040812054600880549394509092849081106119ca576119ca612049565b9060005260206000200154905080600883815481106119eb576119eb612049565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a2357611a2361228a565b6001900381819060005260206000200160009055905550505050565b6000611a4a83610d4e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611ad95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161076d565b6000818152600260205260409020546001600160a01b031615611b3e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161076d565b611b4a600083836116fb565b6001600160a01b0382166000908152600360205260408120805460019290611b73908490612188565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610f4557600080fd5b600060208284031215611bf957600080fd5b813561113981611bd1565b60005b83811015611c1f578181015183820152602001611c07565b8381111561104f5750506000910152565b60008151808452611c48816020860160208601611c04565b601f01601f19169290920160200192915050565b6020815260006111396020830184611c30565b600060208284031215611c8157600080fd5b5035919050565b6001600160a01b0381168114610f4557600080fd5b60008060408385031215611cb057600080fd5b8235611cbb81611c88565b946020939093013593505050565b600080600060608486031215611cde57600080fd5b8335611ce981611c88565b92506020840135611cf981611c88565b929592945050506040919091013590565b600060208284031215611d1c57600080fd5b813561113981611c88565b6020808252825182820181905260009190848201906040850190845b81811015611d5f57835183529284019291840191600101611d43565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611daa57611daa611d6b565b604052919050565b60006020808385031215611dc557600080fd5b823567ffffffffffffffff80821115611ddd57600080fd5b818501915085601f830112611df157600080fd5b813581811115611e0357611e03611d6b565b8060051b9150611e14848301611d81565b8181529183018401918481019088841115611e2e57600080fd5b938501935b83851015611e4c57843582529385019390850190611e33565b98975050505050505050565b60008060408385031215611e6b57600080fd5b8235611e7681611c88565b915060208301358015158114611e8b57600080fd5b809150509250929050565b60008060008060808587031215611eac57600080fd5b8435611eb781611c88565b9350602085810135611ec881611c88565b935060408601359250606086013567ffffffffffffffff80821115611eec57600080fd5b818801915088601f830112611f0057600080fd5b813581811115611f1257611f12611d6b565b611f24601f8201601f19168501611d81565b91508082528984828501011115611f3a57600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215611f6d57600080fd5b8235611f7881611c88565b91506020830135611e8b81611c88565b600181811c90821680611f9c57607f821691505b60208210811415611fbd57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156120895761208961205f565b5060010190565b6000602082840312156120a257600080fd5b815161113981611c88565b6000845160206120c08285838a01611c04565b8551918401916120d38184848a01611c04565b8554920191600090600181811c90808316806120f057607f831692505b85831081141561210e57634e487b7160e01b85526022600452602485fd5b808015612122576001811461213357612160565b60ff19851688528388019550612160565b60008b81526020902060005b858110156121585781548a82015290840190880161213f565b505083880195505b50939b9a5050505050505050505050565b6000828210156121835761218361205f565b500390565b6000821982111561219b5761219b61205f565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612217576122176121f2565b500490565b60008261222b5761222b6121f2565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061226390830184611c30565b9695505050505050565b60006020828403121561227f57600080fd5b815161113981611bd1565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220d1459db360142237f84a253eb41c3e2b66cbbf0f729f116ab5c992a969585d7764736f6c6343000809003368747470733a2f2f697066732e696f2f697066732f516d5267586a646a545446747a4a4569587244336174474a78515a386e584662744c7550384332545833596b6b632f
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80636c0360eb11610118578063af6a22b7116100a0578063d5abeb011161006f578063d5abeb0114610588578063e14ca3531461059d578063e91b809d146105b2578063e985e9c5146105d2578063f2fde38b1461061b57600080fd5b8063af6a22b71461051d578063b88d4fde14610533578063c668286214610553578063c87b56dd1461056857600080fd5b80638da5cb5b116100e75780638da5cb5b146104a257806395d89b41146104c0578063969e12ab146104d55780639f181b5e146104e8578063a22cb465146104fd57600080fd5b80636c0360eb1461044257806370a0823114610457578063715018a61461047757806388f627f71461048c57600080fd5b80632518ad291161019b578063438b63001161016a578063438b6300146103a85780634f6ccce7146103d55780635a827c4d146103f55780635c975abb146104085780636352211e1461042257600080fd5b80632518ad291461034a5780632f745c59146103605780633ccfd60b1461038057806342842e0e1461038857600080fd5b806313faede6116101e257806313faede6146102c557806316cdae2c146102e957806318160ddd146102ff578063239c70ae1461031457806323b872dd1461032a57600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611be7565b61063b565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e610666565b6040516102409190611c5c565b34801561027757600080fd5b5061028b610286366004611c6f565b6106f8565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004611c9d565b610792565b005b3480156102d157600080fd5b506102db60105481565b604051908152602001610240565b3480156102f557600080fd5b506102db60125481565b34801561030b57600080fd5b506008546102db565b34801561032057600080fd5b506102db60135481565b34801561033657600080fd5b506102c3610345366004611cc9565b6108a8565b34801561035657600080fd5b506102db60115481565b34801561036c57600080fd5b506102db61037b366004611c9d565b6108d9565b6102c361096f565b34801561039457600080fd5b506102c36103a3366004611cc9565b6109bf565b3480156103b457600080fd5b506103c86103c3366004611d0a565b6109da565b6040516102409190611d27565b3480156103e157600080fd5b506102db6103f0366004611c6f565b610a7c565b6102c3610403366004611db2565b610b0f565b34801561041457600080fd5b506014546102349060ff1681565b34801561042e57600080fd5b5061028b61043d366004611c6f565b610c49565b34801561044e57600080fd5b5061025e610cc0565b34801561046357600080fd5b506102db610472366004611d0a565b610d4e565b34801561048357600080fd5b506102c3610dd5565b34801561049857600080fd5b506102db60195481565b3480156104ae57600080fd5b50600a546001600160a01b031661028b565b3480156104cc57600080fd5b5061025e610e09565b6102c36104e3366004611c6f565b610e18565b3480156104f457600080fd5b506102db610f48565b34801561050957600080fd5b506102c3610518366004611e58565b610f58565b34801561052957600080fd5b506102db60185481565b34801561053f57600080fd5b506102c361054e366004611e96565b61101d565b34801561055f57600080fd5b5061025e611055565b34801561057457600080fd5b5061025e610583366004611c6f565b611062565b34801561059457600080fd5b50600c546102db565b3480156105a957600080fd5b506102db611140565b3480156105be57600080fd5b5060165461028b906001600160a01b031681565b3480156105de57600080fd5b506102346105ed366004611f5a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561062757600080fd5b506102c3610636366004611d0a565b611157565b60006001600160e01b0319821663780e9d6360e01b14806106605750610660826111ef565b92915050565b60606000805461067590611f88565b80601f01602080910402602001604051908101604052809291908181526020018280546106a190611f88565b80156106ee5780601f106106c3576101008083540402835291602001916106ee565b820191906000526020600020905b8154815290600101906020018083116106d157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107765760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061079d82610c49565b9050806001600160a01b0316836001600160a01b0316141561080b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161076d565b336001600160a01b0382161480610827575061082781336105ed565b6108995760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161076d565b6108a3838361123f565b505050565b6108b233826112ad565b6108ce5760405162461bcd60e51b815260040161076d90611fc3565b6108a38383836113a4565b60006108e483610d4e565b82106109465760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161076d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109995760405162461bcd60e51b815260040161076d90612014565b60405133904780156108fc02916000818181858888f193505050506109bd57600080fd5b565b6108a38383836040518060200160405280600081525061101d565b606060006109e783610d4e565b905060008167ffffffffffffffff811115610a0457610a04611d6b565b604051908082528060200260200182016040528015610a2d578160200160208202803683370190505b50905060005b82811015610a7457610a4585826108d9565b828281518110610a5757610a57612049565b602090810291909101015280610a6c81612075565b915050610a33565b509392505050565b6000610a8760085490565b8210610aea5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161076d565b60088281548110610afd57610afd612049565b90600052602060002001549050919050565b60005b8151811015610c4557601754825133916001600160a01b031690636352211e90859085908110610b4457610b44612049565b60200260200101516040518263ffffffff1660e01b8152600401610b6a91815260200190565b60206040518083038186803b158015610b8257600080fd5b505afa158015610b96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bba9190612090565b6001600160a01b031614610c105760405162461bcd60e51b815260206004820181905260248201527f4e6f7420746865206f776e6572206f6620746869732070756d70616d65747469604482015260640161076d565b610c3333838381518110610c2657610c26612049565b602002602001015161154f565b80610c3d81612075565b915050610b12565b5050565b6000818152600260205260408120546001600160a01b0316806106605760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161076d565b60158054610ccd90611f88565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf990611f88565b8015610d465780601f10610d1b57610100808354040283529160200191610d46565b820191906000526020600020905b815481529060010190602001808311610d2957829003601f168201915b505050505081565b60006001600160a01b038216610db95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161076d565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610dff5760405162461bcd60e51b815260040161076d90612014565b6109bd6000611569565b60606001805461067590611f88565b600081118015610e2a575061012c8111155b610e695760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b604482015260640161076d565b6017546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b158015610ead57600080fd5b505afa158015610ec1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ee59190612090565b6001600160a01b031614610f3b5760405162461bcd60e51b815260206004820181905260248201527f4e6f7420746865206f776e6572206f6620746869732070756d70616d65747469604482015260640161076d565b610f45338261154f565b50565b6000610f53600b5490565b905090565b6001600160a01b038216331415610fb15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161076d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61102733836112ad565b6110435760405162461bcd60e51b815260040161076d90611fc3565b61104f848484846115bb565b50505050565b600f8054610ccd90611f88565b6000818152600260205260409020546060906001600160a01b03166110e15760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161076d565b60006110eb6115ee565b9050600081511161110b5760405180602001604052806000815250611139565b80611115846115fd565b600f604051602001611129939291906120ad565b6040516020818303038152906040525b9392505050565b600061114a610f48565b600c54610f539190612171565b600a546001600160a01b031633146111815760405162461bcd60e51b815260040161076d90612014565b6001600160a01b0381166111e65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076d565b610f4581611569565b60006001600160e01b031982166380ac58cd60e01b148061122057506001600160e01b03198216635b5e139f60e01b145b8061066057506301ffc9a760e01b6001600160e01b0319831614610660565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061127482610c49565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166113265760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161076d565b600061133183610c49565b9050806001600160a01b0316846001600160a01b0316148061136c5750836001600160a01b0316611361846106f8565b6001600160a01b0316145b8061139c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113b782610c49565b6001600160a01b03161461141f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161076d565b6001600160a01b0382166114815760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161076d565b61148c8383836116fb565b61149760008261123f565b6001600160a01b03831660009081526003602052604081208054600192906114c0908490612171565b90915550506001600160a01b03821660009081526003602052604081208054600192906114ee908490612188565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610c458282604051806020016040528060008152506117b3565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115c68484846113a4565b6115d2848484846117e6565b61104f5760405162461bcd60e51b815260040161076d906121a0565b60606015805461067590611f88565b6060816116215750506040805180820190915260018152600360fc1b602082015290565b8160005b811561164b578061163581612075565b91506116449050600a83612208565b9150611625565b60008167ffffffffffffffff81111561166657611666611d6b565b6040519080825280601f01601f191660200182016040528015611690576020820181803683370190505b5090505b841561139c576116a5600183612171565b91506116b2600a8661221c565b6116bd906030612188565b60f81b8183815181106116d2576116d2612049565b60200101906001600160f81b031916908160001a9053506116f4600a86612208565b9450611694565b6001600160a01b0383166117565761175181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611779565b816001600160a01b0316836001600160a01b0316146117795761177983826118f3565b6001600160a01b038216611790576108a381611990565b826001600160a01b0316826001600160a01b0316146108a3576108a38282611a3f565b6117bd8383611a83565b6117ca60008484846117e6565b6108a35760405162461bcd60e51b815260040161076d906121a0565b60006001600160a01b0384163b156118e857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061182a903390899088908890600401612230565b602060405180830381600087803b15801561184457600080fd5b505af1925050508015611874575060408051601f3d908101601f191682019092526118719181019061226d565b60015b6118ce573d8080156118a2576040519150601f19603f3d011682016040523d82523d6000602084013e6118a7565b606091505b5080516118c65760405162461bcd60e51b815260040161076d906121a0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061139c565b506001949350505050565b6000600161190084610d4e565b61190a9190612171565b60008381526007602052604090205490915080821461195d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906119a290600190612171565b600083815260096020526040812054600880549394509092849081106119ca576119ca612049565b9060005260206000200154905080600883815481106119eb576119eb612049565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611a2357611a2361228a565b6001900381819060005260206000200160009055905550505050565b6000611a4a83610d4e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611ad95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161076d565b6000818152600260205260409020546001600160a01b031615611b3e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161076d565b611b4a600083836116fb565b6001600160a01b0382166000908152600360205260408120805460019290611b73908490612188565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610f4557600080fd5b600060208284031215611bf957600080fd5b813561113981611bd1565b60005b83811015611c1f578181015183820152602001611c07565b8381111561104f5750506000910152565b60008151808452611c48816020860160208601611c04565b601f01601f19169290920160200192915050565b6020815260006111396020830184611c30565b600060208284031215611c8157600080fd5b5035919050565b6001600160a01b0381168114610f4557600080fd5b60008060408385031215611cb057600080fd5b8235611cbb81611c88565b946020939093013593505050565b600080600060608486031215611cde57600080fd5b8335611ce981611c88565b92506020840135611cf981611c88565b929592945050506040919091013590565b600060208284031215611d1c57600080fd5b813561113981611c88565b6020808252825182820181905260009190848201906040850190845b81811015611d5f57835183529284019291840191600101611d43565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611daa57611daa611d6b565b604052919050565b60006020808385031215611dc557600080fd5b823567ffffffffffffffff80821115611ddd57600080fd5b818501915085601f830112611df157600080fd5b813581811115611e0357611e03611d6b565b8060051b9150611e14848301611d81565b8181529183018401918481019088841115611e2e57600080fd5b938501935b83851015611e4c57843582529385019390850190611e33565b98975050505050505050565b60008060408385031215611e6b57600080fd5b8235611e7681611c88565b915060208301358015158114611e8b57600080fd5b809150509250929050565b60008060008060808587031215611eac57600080fd5b8435611eb781611c88565b9350602085810135611ec881611c88565b935060408601359250606086013567ffffffffffffffff80821115611eec57600080fd5b818801915088601f830112611f0057600080fd5b813581811115611f1257611f12611d6b565b611f24601f8201601f19168501611d81565b91508082528984828501011115611f3a57600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215611f6d57600080fd5b8235611f7881611c88565b91506020830135611e8b81611c88565b600181811c90821680611f9c57607f821691505b60208210811415611fbd57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156120895761208961205f565b5060010190565b6000602082840312156120a257600080fd5b815161113981611c88565b6000845160206120c08285838a01611c04565b8551918401916120d38184848a01611c04565b8554920191600090600181811c90808316806120f057607f831692505b85831081141561210e57634e487b7160e01b85526022600452602485fd5b808015612122576001811461213357612160565b60ff19851688528388019550612160565b60008b81526020902060005b858110156121585781548a82015290840190880161213f565b505083880195505b50939b9a5050505050505050505050565b6000828210156121835761218361205f565b500390565b6000821982111561219b5761219b61205f565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612217576122176121f2565b500490565b60008261222b5761222b6121f2565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061226390830184611c30565b9695505050505050565b60006020828403121561227f57600080fd5b815161113981611bd1565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220d1459db360142237f84a253eb41c3e2b66cbbf0f729f116ab5c992a969585d7764736f6c63430008090033
Deployed Bytecode Sourcemap
53498:2441:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44745:224;;;;;;;;;;-1:-1:-1;44745:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;44745:224:0;;;;;;;;32637:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34196:221::-;;;;;;;;;;-1:-1:-1;34196:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;34196:221:0;1528:203:1;33719:411:0;;;;;;;;;;-1:-1:-1;33719:411:0;;;;;:::i;:::-;;:::i;:::-;;53646:32;;;;;;;;;;;;;;;;;;;2338:25:1;;;2326:2;2311:18;53646:32:0;2192:177:1;53723:35:0;;;;;;;;;;;;;;;;45385:113;;;;;;;;;;-1:-1:-1;45473:10:0;:17;45385:113;;53763:33;;;;;;;;;;;;;;;;35086:339;;;;;;;;;;-1:-1:-1;35086:339:0;;;;;:::i;:::-;;:::i;53683:35::-;;;;;;;;;;;;;;;;45053:256;;;;;;;;;;-1:-1:-1;45053:256:0;;;;;:::i;:::-;;:::i;55822:114::-;;;:::i;35496:185::-;;;;;;;;;;-1:-1:-1;35496:185:0;;;;;:::i;:::-;;:::i;55021:348::-;;;;;;;;;;-1:-1:-1;55021:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45575:233::-;;;;;;;;;;-1:-1:-1;45575:233:0;;;;;:::i;:::-;;:::i;54710:305::-;;;;;;:::i;:::-;;:::i;53801:26::-;;;;;;;;;;-1:-1:-1;53801:26:0;;;;;;;;32331:239;;;;;;;;;;-1:-1:-1;32331:239:0;;;;;:::i;:::-;;:::i;53836:94::-;;;;;;;;;;;;;:::i;32061:208::-;;;;;;;;;;-1:-1:-1;32061:208:0;;;;;:::i;:::-;;:::i;10262:94::-;;;;;;;;;;;;;:::i;54180:34::-;;;;;;;;;;;;;;;;9611:87;;;;;;;;;;-1:-1:-1;9684:6:0;;-1:-1:-1;;;;;9684:6:0;9611:87;;32806:104;;;;;;;;;;;;;:::i;54430:272::-;;;;;;:::i;:::-;;:::i;4519:99::-;;;;;;;;;;;;;:::i;34489:295::-;;;;;;;;;;-1:-1:-1;34489:295:0;;;;;:::i;:::-;;:::i;54136:39::-;;;;;;;;;;;;;;;;35752:328;;;;;;;;;;-1:-1:-1;35752:328:0;;;;;:::i;:::-;;:::i;53604:37::-;;;;;;;;;;;;;:::i;55375:423::-;;;;;;;;;;-1:-1:-1;55375:423:0;;;;;:::i;:::-;;:::i;4341:87::-;;;;;;;;;;-1:-1:-1;4410:10:0;;4341:87;;4724:113;;;;;;;;;;;;;:::i;53995:72::-;;;;;;;;;;-1:-1:-1;53995:72:0;;;;-1:-1:-1;;;;;53995:72:0;;;34855:164;;;;;;;;;;-1:-1:-1;34855:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34976:25:0;;;34952:4;34976:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34855:164;10511:192;;;;;;;;;;-1:-1:-1;10511:192:0;;;;;:::i;:::-;;:::i;44745:224::-;44847:4;-1:-1:-1;;;;;;44871:50:0;;-1:-1:-1;;;44871:50:0;;:90;;;44925:36;44949:11;44925:23;:36::i;:::-;44864:97;44745:224;-1:-1:-1;;44745:224:0:o;32637:100::-;32691:13;32724:5;32717:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32637:100;:::o;34196:221::-;34272:7;37679:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37679:16:0;34292:73;;;;-1:-1:-1;;;34292:73:0;;7601:2:1;34292:73:0;;;7583:21:1;7640:2;7620:18;;;7613:30;7679:34;7659:18;;;7652:62;-1:-1:-1;;;7730:18:1;;;7723:42;7782:19;;34292:73:0;;;;;;;;;-1:-1:-1;34385:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34385:24:0;;34196:221::o;33719:411::-;33800:13;33816:23;33831:7;33816:14;:23::i;:::-;33800:39;;33864:5;-1:-1:-1;;;;;33858:11:0;:2;-1:-1:-1;;;;;33858:11:0;;;33850:57;;;;-1:-1:-1;;;33850:57:0;;8014:2:1;33850:57:0;;;7996:21:1;8053:2;8033:18;;;8026:30;8092:34;8072:18;;;8065:62;-1:-1:-1;;;8143:18:1;;;8136:31;8184:19;;33850:57:0;7812:397:1;33850:57:0;8479:10;-1:-1:-1;;;;;33942:21:0;;;;:62;;-1:-1:-1;33967:37:0;33984:5;8479:10;34855:164;:::i;33967:37::-;33920:168;;;;-1:-1:-1;;;33920:168:0;;8416:2:1;33920:168:0;;;8398:21:1;8455:2;8435:18;;;8428:30;8494:34;8474:18;;;8467:62;8565:26;8545:18;;;8538:54;8609:19;;33920:168:0;8214:420:1;33920:168:0;34101:21;34110:2;34114:7;34101:8;:21::i;:::-;33789:341;33719:411;;:::o;35086:339::-;35281:41;8479:10;35314:7;35281:18;:41::i;:::-;35273:103;;;;-1:-1:-1;;;35273:103:0;;;;;;;:::i;:::-;35389:28;35399:4;35405:2;35409:7;35389:9;:28::i;45053:256::-;45150:7;45186:23;45203:5;45186:16;:23::i;:::-;45178:5;:31;45170:87;;;;-1:-1:-1;;;45170:87:0;;9259:2:1;45170:87:0;;;9241:21:1;9298:2;9278:18;;;9271:30;9337:34;9317:18;;;9310:62;-1:-1:-1;;;9388:18:1;;;9381:41;9439:19;;45170:87:0;9057:407:1;45170:87:0;-1:-1:-1;;;;;;45275:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;45053:256::o;55822:114::-;9684:6;;-1:-1:-1;;;;;9684:6:0;8479:10;9831:23;9823:68;;;;-1:-1:-1;;;9823:68:0;;;;;;;:::i;:::-;55882:47:::1;::::0;55890:10:::1;::::0;55907:21:::1;55882:47:::0;::::1;;;::::0;::::1;::::0;;;55907:21;55890:10;55882:47;::::1;;;;;;55874:56;;;::::0;::::1;;55822:114::o:0;35496:185::-;35634:39;35651:4;35657:2;35661:7;35634:39;;;;;;;;;;;;:16;:39::i;55021:348::-;55096:16;55124:23;55150:17;55160:6;55150:9;:17::i;:::-;55124:43;;55174:25;55216:15;55202:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55202:30:0;;55174:58;;55244:9;55239:103;55259:15;55255:1;:19;55239:103;;;55304:30;55324:6;55332:1;55304:19;:30::i;:::-;55290:8;55299:1;55290:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;55276:3;;;;:::i;:::-;;;;55239:103;;;-1:-1:-1;55355:8:0;55021:348;-1:-1:-1;;;55021:348:0:o;45575:233::-;45650:7;45686:30;45473:10;:17;;45385:113;45686:30;45678:5;:38;45670:95;;;;-1:-1:-1;;;45670:95:0;;10436:2:1;45670:95:0;;;10418:21:1;10475:2;10455:18;;;10448:30;10514:34;10494:18;;;10487:62;-1:-1:-1;;;10565:18:1;;;10558:42;10617:19;;45670:95:0;10234:408:1;45670:95:0;45783:10;45794:5;45783:17;;;;;;;;:::i;:::-;;;;;;;;;45776:24;;45575:233;;;:::o;54710:305::-;54796:9;54791:217;54815:8;:15;54811:1;:19;54791:217;;;54860:13;;54882:11;;54898:10;;-1:-1:-1;;;;;54860:13:0;;:21;;54882:8;;54891:1;;54882:11;;;;;;:::i;:::-;;;;;;;54860:34;;;;;;;;;;;;;2338:25:1;;2326:2;2311:18;;2192:177;54860:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;54860:48:0;;54852:93;;;;-1:-1:-1;;;54852:93:0;;11105:2:1;54852:93:0;;;11087:21:1;;;11124:18;;;11117:30;11183:34;11163:18;;;11156:62;11235:18;;54852:93:0;10903:356:1;54852:93:0;54960:36;8479:10;54984:8;54993:1;54984:11;;;;;;;;:::i;:::-;;;;;;;54960:9;:36::i;:::-;54832:3;;;;:::i;:::-;;;;54791:217;;;;54710:305;:::o;32331:239::-;32403:7;32439:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32439:16:0;32474:19;32466:73;;;;-1:-1:-1;;;32466:73:0;;11466:2:1;32466:73:0;;;11448:21:1;11505:2;11485:18;;;11478:30;11544:34;11524:18;;;11517:62;-1:-1:-1;;;11595:18:1;;;11588:39;11644:19;;32466:73:0;11264:405:1;53836:94:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32061:208::-;32133:7;-1:-1:-1;;;;;32161:19:0;;32153:74;;;;-1:-1:-1;;;32153:74:0;;11876:2:1;32153:74:0;;;11858:21:1;11915:2;11895:18;;;11888:30;11954:34;11934:18;;;11927:62;-1:-1:-1;;;12005:18:1;;;11998:40;12055:19;;32153:74:0;11674:406:1;32153:74:0;-1:-1:-1;;;;;;32245:16:0;;;;;:9;:16;;;;;;;32061:208::o;10262:94::-;9684:6;;-1:-1:-1;;;;;9684:6:0;8479:10;9831:23;9823:68;;;;-1:-1:-1;;;9823:68:0;;;;;;;:::i;:::-;10327:21:::1;10345:1;10327:9;:21::i;32806:104::-:0;32862:13;32895:7;32888:14;;;;;:::i;54430:272::-;54511:1;54501:7;:11;:29;;;;;54527:3;54516:7;:14;;54501:29;54493:58;;;;-1:-1:-1;;;54493:58:0;;12287:2:1;54493:58:0;;;12269:21:1;12326:2;12306:18;;;12299:30;-1:-1:-1;;;12345:18:1;;;12338:46;12401:18;;54493:58:0;12085:340:1;54493:58:0;54570:13;;:30;;-1:-1:-1;;;54570:30:0;;;;;2338:25:1;;;54604:10:0;;-1:-1:-1;;;;;54570:13:0;;:21;;2311:18:1;;54570:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;54570:44:0;;54562:89;;;;-1:-1:-1;;;54562:89:0;;11105:2:1;54562:89:0;;;11087:21:1;;;11124:18;;;11117:30;11183:34;11163:18;;;11156:62;11235:18;;54562:89:0;10903:356:1;54562:89:0;54664:30;54674:10;54686:7;54664:9;:30::i;:::-;54430:272;:::o;4519:99::-;4562:7;4589:21;:11;3084:14;;2992:114;4589:21;4582:28;;4519:99;:::o;34489:295::-;-1:-1:-1;;;;;34592:24:0;;8479:10;34592:24;;34584:62;;;;-1:-1:-1;;;34584:62:0;;12632:2:1;34584:62:0;;;12614:21:1;12671:2;12651:18;;;12644:30;12710:27;12690:18;;;12683:55;12755:18;;34584:62:0;12430:349:1;34584:62:0;8479:10;34659:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34659:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34659:53:0;;;;;;;;;;34728:48;;540:41:1;;;34659:42:0;;8479:10;34728:48;;513:18:1;34728:48:0;;;;;;;34489:295;;:::o;35752:328::-;35927:41;8479:10;35960:7;35927:18;:41::i;:::-;35919:103;;;;-1:-1:-1;;;35919:103:0;;;;;;;:::i;:::-;36033:39;36047:4;36053:2;36057:7;36066:5;36033:13;:39::i;:::-;35752:328;;;;:::o;53604:37::-;;;;;;;:::i;55375:423::-;37655:4;37679:16;;;:7;:16;;;;;;55473:13;;-1:-1:-1;;;;;37679:16:0;55498:97;;;;-1:-1:-1;;;55498:97:0;;12986:2:1;55498:97:0;;;12968:21:1;13025:2;13005:18;;;12998:30;13064:34;13044:18;;;13037:62;-1:-1:-1;;;13115:18:1;;;13108:45;13170:19;;55498:97:0;12784:411:1;55498:97:0;55604:28;55635:10;:8;:10::i;:::-;55604:41;;55690:1;55665:14;55659:28;:32;:133;;;;;;;;;;;;;;;;;55727:14;55743:18;:7;:16;:18::i;:::-;55763:13;55710:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55659:133;55652:140;55375:423;-1:-1:-1;;;55375:423:0:o;4724:113::-;4776:7;4817:12;:10;:12::i;:::-;4410:10;;4803:26;;;;:::i;10511:192::-;9684:6;;-1:-1:-1;;;;;9684:6:0;8479:10;9831:23;9823:68;;;;-1:-1:-1;;;9823:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10600:22:0;::::1;10592:73;;;::::0;-1:-1:-1;;;10592:73:0;;15190:2:1;10592:73:0::1;::::0;::::1;15172:21:1::0;15229:2;15209:18;;;15202:30;15268:34;15248:18;;;15241:62;-1:-1:-1;;;15319:18:1;;;15312:36;15365:19;;10592:73:0::1;14988:402:1::0;10592:73:0::1;10676:19;10686:8;10676:9;:19::i;31692:305::-:0;31794:4;-1:-1:-1;;;;;;31831:40:0;;-1:-1:-1;;;31831:40:0;;:105;;-1:-1:-1;;;;;;;31888:48:0;;-1:-1:-1;;;31888:48:0;31831:105;:158;;;-1:-1:-1;;;;;;;;;;18441:40:0;;;31953:36;18332:157;41572:174;41647:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;41647:29:0;-1:-1:-1;;;;;41647:29:0;;;;;;;;:24;;41701:23;41647:24;41701:14;:23::i;:::-;-1:-1:-1;;;;;41692:46:0;;;;;;;;;;;41572:174;;:::o;37884:348::-;37977:4;37679:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37679:16:0;37994:73;;;;-1:-1:-1;;;37994:73:0;;15597:2:1;37994:73:0;;;15579:21:1;15636:2;15616:18;;;15609:30;15675:34;15655:18;;;15648:62;-1:-1:-1;;;15726:18:1;;;15719:42;15778:19;;37994:73:0;15395:408:1;37994:73:0;38078:13;38094:23;38109:7;38094:14;:23::i;:::-;38078:39;;38147:5;-1:-1:-1;;;;;38136:16:0;:7;-1:-1:-1;;;;;38136:16:0;;:51;;;;38180:7;-1:-1:-1;;;;;38156:31:0;:20;38168:7;38156:11;:20::i;:::-;-1:-1:-1;;;;;38156:31:0;;38136:51;:87;;;-1:-1:-1;;;;;;34976:25:0;;;34952:4;34976:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;38191:32;38128:96;37884:348;-1:-1:-1;;;;37884:348:0:o;40876:578::-;41035:4;-1:-1:-1;;;;;41008:31:0;:23;41023:7;41008:14;:23::i;:::-;-1:-1:-1;;;;;41008:31:0;;41000:85;;;;-1:-1:-1;;;41000:85:0;;16010:2:1;41000:85:0;;;15992:21:1;16049:2;16029:18;;;16022:30;16088:34;16068:18;;;16061:62;-1:-1:-1;;;16139:18:1;;;16132:39;16188:19;;41000:85:0;15808:405:1;41000:85:0;-1:-1:-1;;;;;41104:16:0;;41096:65;;;;-1:-1:-1;;;41096:65:0;;16420:2:1;41096:65:0;;;16402:21:1;16459:2;16439:18;;;16432:30;16498:34;16478:18;;;16471:62;-1:-1:-1;;;16549:18:1;;;16542:34;16593:19;;41096:65:0;16218:400:1;41096:65:0;41174:39;41195:4;41201:2;41205:7;41174:20;:39::i;:::-;41278:29;41295:1;41299:7;41278:8;:29::i;:::-;-1:-1:-1;;;;;41320:15:0;;;;;;:9;:15;;;;;:20;;41339:1;;41320:15;:20;;41339:1;;41320:20;:::i;:::-;;;;-1:-1:-1;;;;;;;41351:13:0;;;;;;:9;:13;;;;;:18;;41368:1;;41351:13;:18;;41368:1;;41351:18;:::i;:::-;;;;-1:-1:-1;;41380:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41380:21:0;-1:-1:-1;;;;;41380:21:0;;;;;;;;;41419:27;;41380:16;;41419:27;;;;;;;40876:578;;;:::o;38574:110::-;38650:26;38660:2;38664:7;38650:26;;;;;;;;;;;;:9;:26::i;10711:173::-;10786:6;;;-1:-1:-1;;;;;10803:17:0;;;-1:-1:-1;;;;;;10803:17:0;;;;;;;10836:40;;10786:6;;;10803:17;10786:6;;10836:40;;10767:16;;10836:40;10756:128;10711:173;:::o;36962:315::-;37119:28;37129:4;37135:2;37139:7;37119:9;:28::i;:::-;37166:48;37189:4;37195:2;37199:7;37208:5;37166:22;:48::i;:::-;37158:111;;;;-1:-1:-1;;;37158:111:0;;;;;;;:::i;54322:102::-;54382:13;54411:7;54404:14;;;;;:::i;18807:723::-;18863:13;19084:10;19080:53;;-1:-1:-1;;19111:10:0;;;;;;;;;;;;-1:-1:-1;;;19111:10:0;;;;;18807:723::o;19080:53::-;19158:5;19143:12;19199:78;19206:9;;19199:78;;19232:8;;;;:::i;:::-;;-1:-1:-1;19255:10:0;;-1:-1:-1;19263:2:0;19255:10;;:::i;:::-;;;19199:78;;;19287:19;19319:6;19309:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19309:17:0;;19287:39;;19337:154;19344:10;;19337:154;;19371:11;19381:1;19371:11;;:::i;:::-;;-1:-1:-1;19440:10:0;19448:2;19440:5;:10;:::i;:::-;19427:24;;:2;:24;:::i;:::-;19414:39;;19397:6;19404;19397:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19397:56:0;;;;;;;;-1:-1:-1;19468:11:0;19477:2;19468:11;;:::i;:::-;;;19337:154;;46421:589;-1:-1:-1;;;;;46627:18:0;;46623:187;;46662:40;46694:7;47837:10;:17;;47810:24;;;;:15;:24;;;;;:44;;;47865:24;;;;;;;;;;;;47733:164;46662:40;46623:187;;;46732:2;-1:-1:-1;;;;;46724:10:0;:4;-1:-1:-1;;;;;46724:10:0;;46720:90;;46751:47;46784:4;46790:7;46751:32;:47::i;:::-;-1:-1:-1;;;;;46824:16:0;;46820:183;;46857:45;46894:7;46857:36;:45::i;46820:183::-;46930:4;-1:-1:-1;;;;;46924:10:0;:2;-1:-1:-1;;;;;46924:10:0;;46920:83;;46951:40;46979:2;46983:7;46951:27;:40::i;38911:321::-;39041:18;39047:2;39051:7;39041:5;:18::i;:::-;39092:54;39123:1;39127:2;39131:7;39140:5;39092:22;:54::i;:::-;39070:154;;;;-1:-1:-1;;;39070:154:0;;;;;;;:::i;42311:799::-;42466:4;-1:-1:-1;;;;;42487:13:0;;21657:20;21705:8;42483:620;;42523:72;;-1:-1:-1;;;42523:72:0;;-1:-1:-1;;;;;42523:36:0;;;;;:72;;8479:10;;42574:4;;42580:7;;42589:5;;42523:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42523:72:0;;;;;;;;-1:-1:-1;;42523:72:0;;;;;;;;;;;;:::i;:::-;;;42519:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42765:13:0;;42761:272;;42808:60;;-1:-1:-1;;;42808:60:0;;;;;;;:::i;42761:272::-;42983:6;42977:13;42968:6;42964:2;42960:15;42953:38;42519:529;-1:-1:-1;;;;;;42646:51:0;-1:-1:-1;;;42646:51:0;;-1:-1:-1;42639:58:0;;42483:620;-1:-1:-1;43087:4:0;42311:799;;;;;;:::o;48524:988::-;48790:22;48840:1;48815:22;48832:4;48815:16;:22::i;:::-;:26;;;;:::i;:::-;48852:18;48873:26;;;:17;:26;;;;;;48790:51;;-1:-1:-1;49006:28:0;;;49002:328;;-1:-1:-1;;;;;49073:18:0;;49051:19;49073:18;;;:12;:18;;;;;;;;:34;;;;;;;;;49124:30;;;;;;:44;;;49241:30;;:17;:30;;;;;:43;;;49002:328;-1:-1:-1;49426:26:0;;;;:17;:26;;;;;;;;49419:33;;;-1:-1:-1;;;;;49470:18:0;;;;;:12;:18;;;;;:34;;;;;;;49463:41;48524:988::o;49807:1079::-;50085:10;:17;50060:22;;50085:21;;50105:1;;50085:21;:::i;:::-;50117:18;50138:24;;;:15;:24;;;;;;50511:10;:26;;50060:46;;-1:-1:-1;50138:24:0;;50060:46;;50511:26;;;;;;:::i;:::-;;;;;;;;;50489:48;;50575:11;50550:10;50561;50550:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;50655:28;;;:15;:28;;;;;;;:41;;;50827:24;;;;;50820:31;50862:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;49878:1008;;;49807:1079;:::o;47311:221::-;47396:14;47413:20;47430:2;47413:16;:20::i;:::-;-1:-1:-1;;;;;47444:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;47489:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;47311:221:0:o;39568:382::-;-1:-1:-1;;;;;39648:16:0;;39640:61;;;;-1:-1:-1;;;39640:61:0;;18631:2:1;39640:61:0;;;18613:21:1;;;18650:18;;;18643:30;18709:34;18689:18;;;18682:62;18761:18;;39640:61:0;18429:356:1;39640:61:0;37655:4;37679:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37679:16:0;:30;39712:58;;;;-1:-1:-1;;;39712:58:0;;18992:2:1;39712:58:0;;;18974:21:1;19031:2;19011:18;;;19004:30;19070;19050:18;;;19043:58;19118:18;;39712:58:0;18790:352:1;39712:58:0;39783:45;39812:1;39816:2;39820:7;39783:20;:45::i;:::-;-1:-1:-1;;;;;39841:13:0;;;;;;:9;:13;;;;;:18;;39858:1;;39841:13;:18;;39858:1;;39841:18;:::i;:::-;;;;-1:-1:-1;;39870:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39870:21:0;-1:-1:-1;;;;;39870:21:0;;;;;;;;39909:33;;39870:16;;;39909:33;;39870:16;;39909:33;39568:382;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:131::-;-1:-1:-1;;;;;1811:31:1;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:1:o;2374:456::-;2451:6;2459;2467;2520:2;2508:9;2499:7;2495:23;2491:32;2488:52;;;2536:1;2533;2526:12;2488:52;2575:9;2562:23;2594:31;2619:5;2594:31;:::i;:::-;2644:5;-1:-1:-1;2701:2:1;2686:18;;2673:32;2714:33;2673:32;2714:33;:::i;:::-;2374:456;;2766:7;;-1:-1:-1;;;2820:2:1;2805:18;;;;2792:32;;2374:456::o;2835:247::-;2894:6;2947:2;2935:9;2926:7;2922:23;2918:32;2915:52;;;2963:1;2960;2953:12;2915:52;3002:9;2989:23;3021:31;3046:5;3021:31;:::i;3087:632::-;3258:2;3310:21;;;3380:13;;3283:18;;;3402:22;;;3229:4;;3258:2;3481:15;;;;3455:2;3440:18;;;3229:4;3524:169;3538:6;3535:1;3532:13;3524:169;;;3599:13;;3587:26;;3668:15;;;;3633:12;;;;3560:1;3553:9;3524:169;;;-1:-1:-1;3710:3:1;;3087:632;-1:-1:-1;;;;;;3087:632:1:o;3724:127::-;3785:10;3780:3;3776:20;3773:1;3766:31;3816:4;3813:1;3806:15;3840:4;3837:1;3830:15;3856:275;3927:2;3921:9;3992:2;3973:13;;-1:-1:-1;;3969:27:1;3957:40;;4027:18;4012:34;;4048:22;;;4009:62;4006:88;;;4074:18;;:::i;:::-;4110:2;4103:22;3856:275;;-1:-1:-1;3856:275:1:o;4136:946::-;4220:6;4251:2;4294;4282:9;4273:7;4269:23;4265:32;4262:52;;;4310:1;4307;4300:12;4262:52;4350:9;4337:23;4379:18;4420:2;4412:6;4409:14;4406:34;;;4436:1;4433;4426:12;4406:34;4474:6;4463:9;4459:22;4449:32;;4519:7;4512:4;4508:2;4504:13;4500:27;4490:55;;4541:1;4538;4531:12;4490:55;4577:2;4564:16;4599:2;4595;4592:10;4589:36;;;4605:18;;:::i;:::-;4651:2;4648:1;4644:10;4634:20;;4674:28;4698:2;4694;4690:11;4674:28;:::i;:::-;4736:15;;;4806:11;;;4802:20;;;4767:12;;;;4834:19;;;4831:39;;;4866:1;4863;4856:12;4831:39;4890:11;;;;4910:142;4926:6;4921:3;4918:15;4910:142;;;4992:17;;4980:30;;4943:12;;;;5030;;;;4910:142;;;5071:5;4136:946;-1:-1:-1;;;;;;;;4136:946:1:o;5087:416::-;5152:6;5160;5213:2;5201:9;5192:7;5188:23;5184:32;5181:52;;;5229:1;5226;5219:12;5181:52;5268:9;5255:23;5287:31;5312:5;5287:31;:::i;:::-;5337:5;-1:-1:-1;5394:2:1;5379:18;;5366:32;5436:15;;5429:23;5417:36;;5407:64;;5467:1;5464;5457:12;5407:64;5490:7;5480:17;;;5087:416;;;;;:::o;5508:1108::-;5603:6;5611;5619;5627;5680:3;5668:9;5659:7;5655:23;5651:33;5648:53;;;5697:1;5694;5687:12;5648:53;5736:9;5723:23;5755:31;5780:5;5755:31;:::i;:::-;5805:5;-1:-1:-1;5829:2:1;5868:18;;;5855:32;5896:33;5855:32;5896:33;:::i;:::-;5948:7;-1:-1:-1;6002:2:1;5987:18;;5974:32;;-1:-1:-1;6057:2:1;6042:18;;6029:32;6080:18;6110:14;;;6107:34;;;6137:1;6134;6127:12;6107:34;6175:6;6164:9;6160:22;6150:32;;6220:7;6213:4;6209:2;6205:13;6201:27;6191:55;;6242:1;6239;6232:12;6191:55;6278:2;6265:16;6300:2;6296;6293:10;6290:36;;;6306:18;;:::i;:::-;6348:53;6391:2;6372:13;;-1:-1:-1;;6368:27:1;6364:36;;6348:53;:::i;:::-;6335:66;;6424:2;6417:5;6410:17;6464:7;6459:2;6454;6450;6446:11;6442:20;6439:33;6436:53;;;6485:1;6482;6475:12;6436:53;6540:2;6535;6531;6527:11;6522:2;6515:5;6511:14;6498:45;6584:1;6579:2;6574;6567:5;6563:14;6559:23;6552:34;;6605:5;6595:15;;;;;5508:1108;;;;;;;:::o;6621:388::-;6689:6;6697;6750:2;6738:9;6729:7;6725:23;6721:32;6718:52;;;6766:1;6763;6756:12;6718:52;6805:9;6792:23;6824:31;6849:5;6824:31;:::i;:::-;6874:5;-1:-1:-1;6931:2:1;6916:18;;6903:32;6944:33;6903:32;6944:33;:::i;7014:380::-;7093:1;7089:12;;;;7136;;;7157:61;;7211:4;7203:6;7199:17;7189:27;;7157:61;7264:2;7256:6;7253:14;7233:18;7230:38;7227:161;;;7310:10;7305:3;7301:20;7298:1;7291:31;7345:4;7342:1;7335:15;7373:4;7370:1;7363:15;7227:161;;7014:380;;;:::o;8639:413::-;8841:2;8823:21;;;8880:2;8860:18;;;8853:30;8919:34;8914:2;8899:18;;8892:62;-1:-1:-1;;;8985:2:1;8970:18;;8963:47;9042:3;9027:19;;8639:413::o;9469:356::-;9671:2;9653:21;;;9690:18;;;9683:30;9749:34;9744:2;9729:18;;9722:62;9816:2;9801:18;;9469:356::o;9830:127::-;9891:10;9886:3;9882:20;9879:1;9872:31;9922:4;9919:1;9912:15;9946:4;9943:1;9936:15;9962:127;10023:10;10018:3;10014:20;10011:1;10004:31;10054:4;10051:1;10044:15;10078:4;10075:1;10068:15;10094:135;10133:3;-1:-1:-1;;10154:17:1;;10151:43;;;10174:18;;:::i;:::-;-1:-1:-1;10221:1:1;10210:13;;10094:135::o;10647:251::-;10717:6;10770:2;10758:9;10749:7;10745:23;10741:32;10738:52;;;10786:1;10783;10776:12;10738:52;10818:9;10812:16;10837:31;10862:5;10837:31;:::i;13326:1527::-;13550:3;13588:6;13582:13;13614:4;13627:51;13671:6;13666:3;13661:2;13653:6;13649:15;13627:51;:::i;:::-;13741:13;;13700:16;;;;13763:55;13741:13;13700:16;13785:15;;;13763:55;:::i;:::-;13907:13;;13840:20;;;13880:1;;13967;13989:18;;;;14042;;;;14069:93;;14147:4;14137:8;14133:19;14121:31;;14069:93;14210:2;14200:8;14197:16;14177:18;14174:40;14171:167;;;-1:-1:-1;;;14237:33:1;;14293:4;14290:1;14283:15;14323:4;14244:3;14311:17;14171:167;14354:18;14381:110;;;;14505:1;14500:328;;;;14347:481;;14381:110;-1:-1:-1;;14416:24:1;;14402:39;;14461:20;;;;-1:-1:-1;14381:110:1;;14500:328;13273:1;13266:14;;;13310:4;13297:18;;14595:1;14609:169;14623:8;14620:1;14617:15;14609:169;;;14705:14;;14690:13;;;14683:37;14748:16;;;;14640:10;;14609:169;;;14613:3;;14809:8;14802:5;14798:20;14791:27;;14347:481;-1:-1:-1;14844:3:1;;13326:1527;-1:-1:-1;;;;;;;;;;;13326:1527:1:o;14858:125::-;14898:4;14926:1;14923;14920:8;14917:34;;;14931:18;;:::i;:::-;-1:-1:-1;14968:9:1;;14858:125::o;16623:128::-;16663:3;16694:1;16690:6;16687:1;16684:13;16681:39;;;16700:18;;:::i;:::-;-1:-1:-1;16736:9:1;;16623:128::o;16756:414::-;16958:2;16940:21;;;16997:2;16977:18;;;16970:30;17036:34;17031:2;17016:18;;17009:62;-1:-1:-1;;;17102:2:1;17087:18;;17080:48;17160:3;17145:19;;16756:414::o;17175:127::-;17236:10;17231:3;17227:20;17224:1;17217:31;17267:4;17264:1;17257:15;17291:4;17288:1;17281:15;17307:120;17347:1;17373;17363:35;;17378:18;;:::i;:::-;-1:-1:-1;17412:9:1;;17307:120::o;17432:112::-;17464:1;17490;17480:35;;17495:18;;:::i;:::-;-1:-1:-1;17529:9:1;;17432:112::o;17549:489::-;-1:-1:-1;;;;;17818:15:1;;;17800:34;;17870:15;;17865:2;17850:18;;17843:43;17917:2;17902:18;;17895:34;;;17965:3;17960:2;17945:18;;17938:31;;;17743:4;;17986:46;;18012:19;;18004:6;17986:46;:::i;:::-;17978:54;17549:489;-1:-1:-1;;;;;;17549:489:1:o;18043:249::-;18112:6;18165:2;18153:9;18144:7;18140:23;18136:32;18133:52;;;18181:1;18178;18171:12;18133:52;18213:9;18207:16;18232:30;18256:5;18232:30;:::i;18297:127::-;18358:10;18353:3;18349:20;18346:1;18339:31;18389:4;18386:1;18379:15;18413:4;18410:1;18403:15
Swarm Source
ipfs://d1459db360142237f84a253eb41c3e2b66cbbf0f729f116ab5c992a969585d77
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.