ETH Price: $2,393.72 (-4.44%)

Token

Shameless Sandwich Snatchers (SSS)
 

Overview

Max Total Supply

145 SSS

Holders

20

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
PepePal: Deployer
Balance
11 SSS
0xd5d8F9ec5EBc83402f5e08A9F2B02FC765979671
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SneakySandwichSnatchers

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-31
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/Strings.sol

// OpenZeppelin Contracts v4.4.0 (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/Context.sol


// OpenZeppelin Contracts v4.4.0 (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


// OpenZeppelin Contracts v4.4.0 (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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.0 (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/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.0 (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/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.0 (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/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.0 (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/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.0 (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


// OpenZeppelin Contracts v4.4.0 (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/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.0 (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/ERC721.sol


// OpenZeppelin Contracts v4.4.0 (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 {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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


// OpenZeppelin Contracts v4.4.0 (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/token.sol

pragma solidity ^0.8.0;

contract SneakySandwichSnatchers is ERC721Enumerable, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0.025 ether;
    uint256 public maxSupply = 997;
    uint256 public maxMintAmount = 10;
    bool public paused = true;

      constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
      ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
      }

      // internal
      function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
      }

      // public
      function mint(address _to, uint256 _mintAmount) public payable {

        uint256 supply = totalSupply();
        require(!paused, 'S1');
        require(_mintAmount > 0, 'S2');
        require(_mintAmount <= maxMintAmount, 'S3');
        require(supply + _mintAmount <= maxSupply, 'S4');
        require(msg.value >= _mintAmount * cost, 'S5');

        for (uint256 i = 1; i <= _mintAmount; i++) {
          _safeMint(_to, supply + 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 setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
        baseExtension = _newBaseExtension;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function withdraw() public payable onlyOwner {
       require(payable(msg.sender).send(address(this).balance));
    }

    function withdrawToWithdrawer(address _withdrawer, uint256 _amount) public payable onlyOwner {
        require(payable(_withdrawer).send(_amount));
    }

    function getSelfAddress() public view returns(address) {
        return address(this);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"getSelfAddress","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":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"},{"inputs":[{"internalType":"address","name":"_withdrawer","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawToWithdrawer","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001a9565b506658d15e17628000600d556103e5600e55600a600f556010805460ff191660011790553480156200005957600080fd5b5060405162002998380380620029988339810160408190526200007c91620002fa565b82518390839062000095906000906020850190620001a9565b508051620000ab906001906020840190620001a9565b505050620000c8620000c2620000dc60201b60201c565b620000e0565b620000d38162000132565b5050506200040f565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200013c620000dc565b6001600160a01b03166200014f6200019a565b6001600160a01b031614620001815760405162461bcd60e51b8152600401620001789062000387565b60405180910390fd5b80516200019690600b906020840190620001a9565b5050565b600a546001600160a01b031690565b828054620001b790620003bc565b90600052602060002090601f016020900481019282620001db576000855562000226565b82601f10620001f657805160ff191683800117855562000226565b8280016001018555821562000226579182015b828111156200022657825182559160200191906001019062000209565b506200023492915062000238565b5090565b5b8082111562000234576000815560010162000239565b600082601f83011262000260578081fd5b81516001600160401b03808211156200027d576200027d620003f9565b6040516020601f8401601f1916820181018381118382101715620002a557620002a5620003f9565b6040528382528584018101871015620002bc578485fd5b8492505b83831015620002df5785830181015182840182015291820191620002c0565b83831115620002f057848185840101525b5095945050505050565b6000806000606084860312156200030f578283fd5b83516001600160401b038082111562000326578485fd5b62000334878388016200024f565b945060208601519150808211156200034a578384fd5b62000358878388016200024f565b935060408601519150808211156200036e578283fd5b506200037d868287016200024f565b9150509250925092565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600281046001821680620003d157607f821691505b60208210811415620003f357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612579806200041f6000396000f3fe6080604052600436106102045760003560e01c80635c975abb11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610575578063da3ef23f1461058a578063e985e9c5146105aa578063f2fde38b146105ca578063f556fcdb146105ea57610204565b8063a22cb46514610500578063b88d4fde14610520578063c668286214610540578063c87b56dd1461055557610204565b8063715018a6116100e7578063715018a61461048e5780637dea82ca146104a35780637f00c7a6146104b65780638da5cb5b146104d657806395d89b41146104eb57610204565b80635c975abb146104245780636352211e146104395780636c0360eb1461045957806370a082311461046e57610204565b806323b872dd1161019b57806342842e0e1161016a57806342842e0e14610377578063438b63001461039757806344a0d68a146103c45780634f6ccce7146103e457806355f804b31461040457610204565b806323b872dd1461031c5780632f745c591461033c5780633ccfd60b1461035c57806340c10f191461036457610204565b8063095ea7b3116101d7578063095ea7b3146102b057806313faede6146102d057806318160ddd146102f2578063239c70ae1461030757610204565b806301ffc9a71461020957806302329a291461023f57806306fdde0314610261578063081812fc14610283575b600080fd5b34801561021557600080fd5b50610229610224366004611c1e565b6105ff565b6040516102369190611e37565b60405180910390f35b34801561024b57600080fd5b5061025f61025a366004611c04565b61062c565b005b34801561026d57600080fd5b50610276610687565b6040516102369190611e42565b34801561028f57600080fd5b506102a361029e366004611c9c565b610719565b6040516102369190611da2565b3480156102bc57600080fd5b5061025f6102cb366004611bdb565b61075c565b3480156102dc57600080fd5b506102e56107f4565b60405161023691906123de565b3480156102fe57600080fd5b506102e56107fa565b34801561031357600080fd5b506102e5610800565b34801561032857600080fd5b5061025f610337366004611afe565b610806565b34801561034857600080fd5b506102e5610357366004611bdb565b61083e565b61025f610890565b61025f610372366004611bdb565b6108f5565b34801561038357600080fd5b5061025f610392366004611afe565b6109f3565b3480156103a357600080fd5b506103b76103b2366004611ab2565b610a0e565b6040516102369190611df3565b3480156103d057600080fd5b5061025f6103df366004611c9c565b610acc565b3480156103f057600080fd5b506102e56103ff366004611c9c565b610b10565b34801561041057600080fd5b5061025f61041f366004611c56565b610b6b565b34801561043057600080fd5b50610229610bc1565b34801561044557600080fd5b506102a3610454366004611c9c565b610bca565b34801561046557600080fd5b50610276610bff565b34801561047a57600080fd5b506102e5610489366004611ab2565b610c8d565b34801561049a57600080fd5b5061025f610cd1565b61025f6104b1366004611bdb565b610d1a565b3480156104c257600080fd5b5061025f6104d1366004611c9c565b610d87565b3480156104e257600080fd5b506102a3610dcb565b3480156104f757600080fd5b50610276610dda565b34801561050c57600080fd5b5061025f61051b366004611bb2565b610de9565b34801561052c57600080fd5b5061025f61053b366004611b39565b610dfb565b34801561054c57600080fd5b50610276610e34565b34801561056157600080fd5b50610276610570366004611c9c565b610e41565b34801561058157600080fd5b506102e5610ec7565b34801561059657600080fd5b5061025f6105a5366004611c56565b610ecd565b3480156105b657600080fd5b506102296105c5366004611acc565b610f1f565b3480156105d657600080fd5b5061025f6105e5366004611ab2565b610f4d565b3480156105f657600080fd5b506102a3610fbe565b60006001600160e01b0319821663780e9d6360e01b1480610624575061062482610fc2565b90505b919050565b610634611002565b6001600160a01b0316610645610dcb565b6001600160a01b0316146106745760405162461bcd60e51b815260040161066b906121df565b60405180910390fd5b6010805460ff1916911515919091179055565b60606000805461069690612481565b80601f01602080910402602001604051908101604052809291908181526020018280546106c290612481565b801561070f5780601f106106e45761010080835404028352916020019161070f565b820191906000526020600020905b8154815290600101906020018083116106f257829003601f168201915b5050505050905090565b600061072482611006565b6107405760405162461bcd60e51b815260040161066b90612193565b506000908152600460205260409020546001600160a01b031690565b600061076782610bca565b9050806001600160a01b0316836001600160a01b0316141561079b5760405162461bcd60e51b815260040161066b906122ac565b806001600160a01b03166107ad611002565b6001600160a01b031614806107c957506107c9816105c5611002565b6107e55760405162461bcd60e51b815260040161066b9061206e565b6107ef8383611023565b505050565b600d5481565b60085490565b600f5481565b610817610811611002565b82611091565b6108335760405162461bcd60e51b815260040161066b90612325565b6107ef838383611116565b600061084983610c8d565b82106108675760405162461bcd60e51b815260040161066b90611e71565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610898611002565b6001600160a01b03166108a9610dcb565b6001600160a01b0316146108cf5760405162461bcd60e51b815260040161066b906121df565b60405133904780156108fc02916000818181858888f193505050506108f357600080fd5b565b60006108ff6107fa565b60105490915060ff16156109255760405162461bcd60e51b815260040161066b90612376565b600082116109455760405162461bcd60e51b815260040161066b90612052565b600f548211156109675760405162461bcd60e51b815260040161066b90611e55565b600e5461097483836123f3565b11156109925760405162461bcd60e51b815260040161066b90612309565b600d5461099f908361241f565b3410156109be5760405162461bcd60e51b815260040161066b906122ed565b60015b8281116109ed576109db846109d683856123f3565b611243565b806109e5816124bc565b9150506109c1565b50505050565b6107ef83838360405180602001604052806000815250610dfb565b60606000610a1b83610c8d565b905060008167ffffffffffffffff811115610a4657634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610a6f578160200160208202803683370190505b50905060005b82811015610ac457610a87858261083e565b828281518110610aa757634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610abc816124bc565b915050610a75565b509392505050565b610ad4611002565b6001600160a01b0316610ae5610dcb565b6001600160a01b031614610b0b5760405162461bcd60e51b815260040161066b906121df565b600d55565b6000610b1a6107fa565b8210610b385760405162461bcd60e51b815260040161066b90612392565b60088281548110610b5957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610b73611002565b6001600160a01b0316610b84610dcb565b6001600160a01b031614610baa5760405162461bcd60e51b815260040161066b906121df565b8051610bbd90600b906020840190611982565b5050565b60105460ff1681565b6000818152600260205260408120546001600160a01b0316806106245760405162461bcd60e51b815260040161066b90612115565b600b8054610c0c90612481565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3890612481565b8015610c855780601f10610c5a57610100808354040283529160200191610c85565b820191906000526020600020905b815481529060010190602001808311610c6857829003601f168201915b505050505081565b60006001600160a01b038216610cb55760405162461bcd60e51b815260040161066b906120cb565b506001600160a01b031660009081526003602052604090205490565b610cd9611002565b6001600160a01b0316610cea610dcb565b6001600160a01b031614610d105760405162461bcd60e51b815260040161066b906121df565b6108f3600061125d565b610d22611002565b6001600160a01b0316610d33610dcb565b6001600160a01b031614610d595760405162461bcd60e51b815260040161066b906121df565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050610bbd57600080fd5b610d8f611002565b6001600160a01b0316610da0610dcb565b6001600160a01b031614610dc65760405162461bcd60e51b815260040161066b906121df565b600f55565b600a546001600160a01b031690565b60606001805461069690612481565b610bbd610df4611002565b83836112af565b610e0c610e06611002565b83611091565b610e285760405162461bcd60e51b815260040161066b90612325565b6109ed84848484611352565b600c8054610c0c90612481565b6060610e4c82611006565b610e685760405162461bcd60e51b815260040161066b9061225d565b6000610e72611385565b90506000815111610e925760405180602001604052806000815250610ec0565b80610e9c84611394565b600c604051602001610eb093929190611ce0565b6040516020818303038152906040525b9392505050565b600e5481565b610ed5611002565b6001600160a01b0316610ee6610dcb565b6001600160a01b031614610f0c5760405162461bcd60e51b815260040161066b906121df565b8051610bbd90600c906020840190611982565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610f55611002565b6001600160a01b0316610f66610dcb565b6001600160a01b031614610f8c5760405162461bcd60e51b815260040161066b906121df565b6001600160a01b038116610fb25760405162461bcd60e51b815260040161066b90611f0e565b610fbb8161125d565b50565b3090565b60006001600160e01b031982166380ac58cd60e01b1480610ff357506001600160e01b03198216635b5e139f60e01b145b806106245750610624826114af565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061105882610bca565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061109c82611006565b6110b85760405162461bcd60e51b815260040161066b90612006565b60006110c383610bca565b9050806001600160a01b0316846001600160a01b031614806110fe5750836001600160a01b03166110f384610719565b6001600160a01b0316145b8061110e575061110e8185610f1f565b949350505050565b826001600160a01b031661112982610bca565b6001600160a01b03161461114f5760405162461bcd60e51b815260040161066b90612214565b6001600160a01b0382166111755760405162461bcd60e51b815260040161066b90611f8b565b6111808383836114c8565b61118b600082611023565b6001600160a01b03831660009081526003602052604081208054600192906111b490849061243e565b90915550506001600160a01b03821660009081526003602052604081208054600192906111e29084906123f3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bbd828260405180602001604052806000815250611551565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156112e15760405162461bcd60e51b815260040161066b90611fcf565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611345908590611e37565b60405180910390a3505050565b61135d848484611116565b61136984848484611584565b6109ed5760405162461bcd60e51b815260040161066b90611ebc565b6060600b805461069690612481565b6060816113b957506040805180820190915260018152600360fc1b6020820152610627565b8160005b81156113e357806113cd816124bc565b91506113dc9050600a8361240b565b91506113bd565b60008167ffffffffffffffff81111561140c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611436576020820181803683370190505b5090505b841561110e5761144b60018361243e565b9150611458600a866124d7565b6114639060306123f3565b60f81b81838151811061148657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506114a8600a8661240b565b945061143a565b6001600160e01b031981166301ffc9a760e01b14919050565b6114d38383836107ef565b6001600160a01b0383166114ef576114ea8161169f565b611512565b816001600160a01b0316836001600160a01b0316146115125761151283826116e3565b6001600160a01b03821661152e5761152981611780565b6107ef565b826001600160a01b0316826001600160a01b0316146107ef576107ef8282611859565b61155b838361189d565b6115686000848484611584565b6107ef5760405162461bcd60e51b815260040161066b90611ebc565b6000611598846001600160a01b031661197c565b1561169457836001600160a01b031663150b7a026115b4611002565b8786866040518563ffffffff1660e01b81526004016115d69493929190611db6565b602060405180830381600087803b1580156115f057600080fd5b505af1925050508015611620575060408051601f3d908101601f1916820190925261161d91810190611c3a565b60015b61167a573d80801561164e576040519150601f19603f3d011682016040523d82523d6000602084013e611653565b606091505b5080516116725760405162461bcd60e51b815260040161066b90611ebc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061110e565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016116f084610c8d565b6116fa919061243e565b60008381526007602052604090205490915080821461174d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906117929060019061243e565b600083815260096020526040812054600880549394509092849081106117c857634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106117f757634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061183d57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061186483610c8d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166118c35760405162461bcd60e51b815260040161066b9061215e565b6118cc81611006565b156118e95760405162461bcd60e51b815260040161066b90611f54565b6118f5600083836114c8565b6001600160a01b038216600090815260036020526040812080546001929061191e9084906123f3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b82805461198e90612481565b90600052602060002090601f0160209004810192826119b057600085556119f6565b82601f106119c957805160ff19168380011785556119f6565b828001600101855582156119f6579182015b828111156119f65782518255916020019190600101906119db565b50611a02929150611a06565b5090565b5b80821115611a025760008155600101611a07565b600067ffffffffffffffff80841115611a3657611a36612517565b604051601f8501601f191681016020018281118282101715611a5a57611a5a612517565b604052848152915081838501861015611a7257600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461062757600080fd5b8035801515811461062757600080fd5b600060208284031215611ac3578081fd5b610ec082611a8b565b60008060408385031215611ade578081fd5b611ae783611a8b565b9150611af560208401611a8b565b90509250929050565b600080600060608486031215611b12578081fd5b611b1b84611a8b565b9250611b2960208501611a8b565b9150604084013590509250925092565b60008060008060808587031215611b4e578081fd5b611b5785611a8b565b9350611b6560208601611a8b565b925060408501359150606085013567ffffffffffffffff811115611b87578182fd5b8501601f81018713611b97578182fd5b611ba687823560208401611a1b565b91505092959194509250565b60008060408385031215611bc4578182fd5b611bcd83611a8b565b9150611af560208401611aa2565b60008060408385031215611bed578182fd5b611bf683611a8b565b946020939093013593505050565b600060208284031215611c15578081fd5b610ec082611aa2565b600060208284031215611c2f578081fd5b8135610ec08161252d565b600060208284031215611c4b578081fd5b8151610ec08161252d565b600060208284031215611c67578081fd5b813567ffffffffffffffff811115611c7d578182fd5b8201601f81018413611c8d578182fd5b61110e84823560208401611a1b565b600060208284031215611cad578081fd5b5035919050565b60008151808452611ccc816020860160208601612455565b601f01601f19169290920160200192915050565b600084516020611cf38285838a01612455565b855191840191611d068184848a01612455565b8554920191839060028104600180831680611d2257607f831692505b858310811415611d4057634e487b7160e01b88526022600452602488fd5b808015611d545760018114611d6557611d91565b60ff19851688528388019550611d91565b611d6e8b6123e7565b895b85811015611d895781548a820152908401908801611d70565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611de990830184611cb4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611e2b57835183529284019291840191600101611e0f565b50909695505050505050565b901515815260200190565b600060208252610ec06020830184611cb4565b602080825260029082015261533360f01b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b602080825260029082015261299960f11b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b602080825260029082015261533560f01b604082015260600190565b60208082526002908201526114cd60f21b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260029082015261533160f01b604082015260600190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b60009081526020902090565b60008219821115612406576124066124eb565b500190565b60008261241a5761241a612501565b500490565b6000816000190483118215151615612439576124396124eb565b500290565b600082821015612450576124506124eb565b500390565b60005b83811015612470578181015183820152602001612458565b838111156109ed5750506000910152565b60028104600182168061249557607f821691505b602082108114156124b657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124d0576124d06124eb565b5060010190565b6000826124e6576124e6612501565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610fbb57600080fdfea2646970667358221220958590e16a3e0d6777ececa814233935da8a6805739045e01fc0d4139820110d64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001c5368616d656c6573732053616e647769636820536e6174636865727300000000000000000000000000000000000000000000000000000000000000000000000353535300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000027697066733a2f2f4d494e454d494e454d494e454d494e454d494e454d494e454d494e454d494e4500000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c80635c975abb11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb0114610575578063da3ef23f1461058a578063e985e9c5146105aa578063f2fde38b146105ca578063f556fcdb146105ea57610204565b8063a22cb46514610500578063b88d4fde14610520578063c668286214610540578063c87b56dd1461055557610204565b8063715018a6116100e7578063715018a61461048e5780637dea82ca146104a35780637f00c7a6146104b65780638da5cb5b146104d657806395d89b41146104eb57610204565b80635c975abb146104245780636352211e146104395780636c0360eb1461045957806370a082311461046e57610204565b806323b872dd1161019b57806342842e0e1161016a57806342842e0e14610377578063438b63001461039757806344a0d68a146103c45780634f6ccce7146103e457806355f804b31461040457610204565b806323b872dd1461031c5780632f745c591461033c5780633ccfd60b1461035c57806340c10f191461036457610204565b8063095ea7b3116101d7578063095ea7b3146102b057806313faede6146102d057806318160ddd146102f2578063239c70ae1461030757610204565b806301ffc9a71461020957806302329a291461023f57806306fdde0314610261578063081812fc14610283575b600080fd5b34801561021557600080fd5b50610229610224366004611c1e565b6105ff565b6040516102369190611e37565b60405180910390f35b34801561024b57600080fd5b5061025f61025a366004611c04565b61062c565b005b34801561026d57600080fd5b50610276610687565b6040516102369190611e42565b34801561028f57600080fd5b506102a361029e366004611c9c565b610719565b6040516102369190611da2565b3480156102bc57600080fd5b5061025f6102cb366004611bdb565b61075c565b3480156102dc57600080fd5b506102e56107f4565b60405161023691906123de565b3480156102fe57600080fd5b506102e56107fa565b34801561031357600080fd5b506102e5610800565b34801561032857600080fd5b5061025f610337366004611afe565b610806565b34801561034857600080fd5b506102e5610357366004611bdb565b61083e565b61025f610890565b61025f610372366004611bdb565b6108f5565b34801561038357600080fd5b5061025f610392366004611afe565b6109f3565b3480156103a357600080fd5b506103b76103b2366004611ab2565b610a0e565b6040516102369190611df3565b3480156103d057600080fd5b5061025f6103df366004611c9c565b610acc565b3480156103f057600080fd5b506102e56103ff366004611c9c565b610b10565b34801561041057600080fd5b5061025f61041f366004611c56565b610b6b565b34801561043057600080fd5b50610229610bc1565b34801561044557600080fd5b506102a3610454366004611c9c565b610bca565b34801561046557600080fd5b50610276610bff565b34801561047a57600080fd5b506102e5610489366004611ab2565b610c8d565b34801561049a57600080fd5b5061025f610cd1565b61025f6104b1366004611bdb565b610d1a565b3480156104c257600080fd5b5061025f6104d1366004611c9c565b610d87565b3480156104e257600080fd5b506102a3610dcb565b3480156104f757600080fd5b50610276610dda565b34801561050c57600080fd5b5061025f61051b366004611bb2565b610de9565b34801561052c57600080fd5b5061025f61053b366004611b39565b610dfb565b34801561054c57600080fd5b50610276610e34565b34801561056157600080fd5b50610276610570366004611c9c565b610e41565b34801561058157600080fd5b506102e5610ec7565b34801561059657600080fd5b5061025f6105a5366004611c56565b610ecd565b3480156105b657600080fd5b506102296105c5366004611acc565b610f1f565b3480156105d657600080fd5b5061025f6105e5366004611ab2565b610f4d565b3480156105f657600080fd5b506102a3610fbe565b60006001600160e01b0319821663780e9d6360e01b1480610624575061062482610fc2565b90505b919050565b610634611002565b6001600160a01b0316610645610dcb565b6001600160a01b0316146106745760405162461bcd60e51b815260040161066b906121df565b60405180910390fd5b6010805460ff1916911515919091179055565b60606000805461069690612481565b80601f01602080910402602001604051908101604052809291908181526020018280546106c290612481565b801561070f5780601f106106e45761010080835404028352916020019161070f565b820191906000526020600020905b8154815290600101906020018083116106f257829003601f168201915b5050505050905090565b600061072482611006565b6107405760405162461bcd60e51b815260040161066b90612193565b506000908152600460205260409020546001600160a01b031690565b600061076782610bca565b9050806001600160a01b0316836001600160a01b0316141561079b5760405162461bcd60e51b815260040161066b906122ac565b806001600160a01b03166107ad611002565b6001600160a01b031614806107c957506107c9816105c5611002565b6107e55760405162461bcd60e51b815260040161066b9061206e565b6107ef8383611023565b505050565b600d5481565b60085490565b600f5481565b610817610811611002565b82611091565b6108335760405162461bcd60e51b815260040161066b90612325565b6107ef838383611116565b600061084983610c8d565b82106108675760405162461bcd60e51b815260040161066b90611e71565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610898611002565b6001600160a01b03166108a9610dcb565b6001600160a01b0316146108cf5760405162461bcd60e51b815260040161066b906121df565b60405133904780156108fc02916000818181858888f193505050506108f357600080fd5b565b60006108ff6107fa565b60105490915060ff16156109255760405162461bcd60e51b815260040161066b90612376565b600082116109455760405162461bcd60e51b815260040161066b90612052565b600f548211156109675760405162461bcd60e51b815260040161066b90611e55565b600e5461097483836123f3565b11156109925760405162461bcd60e51b815260040161066b90612309565b600d5461099f908361241f565b3410156109be5760405162461bcd60e51b815260040161066b906122ed565b60015b8281116109ed576109db846109d683856123f3565b611243565b806109e5816124bc565b9150506109c1565b50505050565b6107ef83838360405180602001604052806000815250610dfb565b60606000610a1b83610c8d565b905060008167ffffffffffffffff811115610a4657634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610a6f578160200160208202803683370190505b50905060005b82811015610ac457610a87858261083e565b828281518110610aa757634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610abc816124bc565b915050610a75565b509392505050565b610ad4611002565b6001600160a01b0316610ae5610dcb565b6001600160a01b031614610b0b5760405162461bcd60e51b815260040161066b906121df565b600d55565b6000610b1a6107fa565b8210610b385760405162461bcd60e51b815260040161066b90612392565b60088281548110610b5957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610b73611002565b6001600160a01b0316610b84610dcb565b6001600160a01b031614610baa5760405162461bcd60e51b815260040161066b906121df565b8051610bbd90600b906020840190611982565b5050565b60105460ff1681565b6000818152600260205260408120546001600160a01b0316806106245760405162461bcd60e51b815260040161066b90612115565b600b8054610c0c90612481565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3890612481565b8015610c855780601f10610c5a57610100808354040283529160200191610c85565b820191906000526020600020905b815481529060010190602001808311610c6857829003601f168201915b505050505081565b60006001600160a01b038216610cb55760405162461bcd60e51b815260040161066b906120cb565b506001600160a01b031660009081526003602052604090205490565b610cd9611002565b6001600160a01b0316610cea610dcb565b6001600160a01b031614610d105760405162461bcd60e51b815260040161066b906121df565b6108f3600061125d565b610d22611002565b6001600160a01b0316610d33610dcb565b6001600160a01b031614610d595760405162461bcd60e51b815260040161066b906121df565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050610bbd57600080fd5b610d8f611002565b6001600160a01b0316610da0610dcb565b6001600160a01b031614610dc65760405162461bcd60e51b815260040161066b906121df565b600f55565b600a546001600160a01b031690565b60606001805461069690612481565b610bbd610df4611002565b83836112af565b610e0c610e06611002565b83611091565b610e285760405162461bcd60e51b815260040161066b90612325565b6109ed84848484611352565b600c8054610c0c90612481565b6060610e4c82611006565b610e685760405162461bcd60e51b815260040161066b9061225d565b6000610e72611385565b90506000815111610e925760405180602001604052806000815250610ec0565b80610e9c84611394565b600c604051602001610eb093929190611ce0565b6040516020818303038152906040525b9392505050565b600e5481565b610ed5611002565b6001600160a01b0316610ee6610dcb565b6001600160a01b031614610f0c5760405162461bcd60e51b815260040161066b906121df565b8051610bbd90600c906020840190611982565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610f55611002565b6001600160a01b0316610f66610dcb565b6001600160a01b031614610f8c5760405162461bcd60e51b815260040161066b906121df565b6001600160a01b038116610fb25760405162461bcd60e51b815260040161066b90611f0e565b610fbb8161125d565b50565b3090565b60006001600160e01b031982166380ac58cd60e01b1480610ff357506001600160e01b03198216635b5e139f60e01b145b806106245750610624826114af565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061105882610bca565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061109c82611006565b6110b85760405162461bcd60e51b815260040161066b90612006565b60006110c383610bca565b9050806001600160a01b0316846001600160a01b031614806110fe5750836001600160a01b03166110f384610719565b6001600160a01b0316145b8061110e575061110e8185610f1f565b949350505050565b826001600160a01b031661112982610bca565b6001600160a01b03161461114f5760405162461bcd60e51b815260040161066b90612214565b6001600160a01b0382166111755760405162461bcd60e51b815260040161066b90611f8b565b6111808383836114c8565b61118b600082611023565b6001600160a01b03831660009081526003602052604081208054600192906111b490849061243e565b90915550506001600160a01b03821660009081526003602052604081208054600192906111e29084906123f3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bbd828260405180602001604052806000815250611551565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156112e15760405162461bcd60e51b815260040161066b90611fcf565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190611345908590611e37565b60405180910390a3505050565b61135d848484611116565b61136984848484611584565b6109ed5760405162461bcd60e51b815260040161066b90611ebc565b6060600b805461069690612481565b6060816113b957506040805180820190915260018152600360fc1b6020820152610627565b8160005b81156113e357806113cd816124bc565b91506113dc9050600a8361240b565b91506113bd565b60008167ffffffffffffffff81111561140c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611436576020820181803683370190505b5090505b841561110e5761144b60018361243e565b9150611458600a866124d7565b6114639060306123f3565b60f81b81838151811061148657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506114a8600a8661240b565b945061143a565b6001600160e01b031981166301ffc9a760e01b14919050565b6114d38383836107ef565b6001600160a01b0383166114ef576114ea8161169f565b611512565b816001600160a01b0316836001600160a01b0316146115125761151283826116e3565b6001600160a01b03821661152e5761152981611780565b6107ef565b826001600160a01b0316826001600160a01b0316146107ef576107ef8282611859565b61155b838361189d565b6115686000848484611584565b6107ef5760405162461bcd60e51b815260040161066b90611ebc565b6000611598846001600160a01b031661197c565b1561169457836001600160a01b031663150b7a026115b4611002565b8786866040518563ffffffff1660e01b81526004016115d69493929190611db6565b602060405180830381600087803b1580156115f057600080fd5b505af1925050508015611620575060408051601f3d908101601f1916820190925261161d91810190611c3a565b60015b61167a573d80801561164e576040519150601f19603f3d011682016040523d82523d6000602084013e611653565b606091505b5080516116725760405162461bcd60e51b815260040161066b90611ebc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061110e565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016116f084610c8d565b6116fa919061243e565b60008381526007602052604090205490915080821461174d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906117929060019061243e565b600083815260096020526040812054600880549394509092849081106117c857634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106117f757634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061183d57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061186483610c8d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166118c35760405162461bcd60e51b815260040161066b9061215e565b6118cc81611006565b156118e95760405162461bcd60e51b815260040161066b90611f54565b6118f5600083836114c8565b6001600160a01b038216600090815260036020526040812080546001929061191e9084906123f3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b82805461198e90612481565b90600052602060002090601f0160209004810192826119b057600085556119f6565b82601f106119c957805160ff19168380011785556119f6565b828001600101855582156119f6579182015b828111156119f65782518255916020019190600101906119db565b50611a02929150611a06565b5090565b5b80821115611a025760008155600101611a07565b600067ffffffffffffffff80841115611a3657611a36612517565b604051601f8501601f191681016020018281118282101715611a5a57611a5a612517565b604052848152915081838501861015611a7257600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461062757600080fd5b8035801515811461062757600080fd5b600060208284031215611ac3578081fd5b610ec082611a8b565b60008060408385031215611ade578081fd5b611ae783611a8b565b9150611af560208401611a8b565b90509250929050565b600080600060608486031215611b12578081fd5b611b1b84611a8b565b9250611b2960208501611a8b565b9150604084013590509250925092565b60008060008060808587031215611b4e578081fd5b611b5785611a8b565b9350611b6560208601611a8b565b925060408501359150606085013567ffffffffffffffff811115611b87578182fd5b8501601f81018713611b97578182fd5b611ba687823560208401611a1b565b91505092959194509250565b60008060408385031215611bc4578182fd5b611bcd83611a8b565b9150611af560208401611aa2565b60008060408385031215611bed578182fd5b611bf683611a8b565b946020939093013593505050565b600060208284031215611c15578081fd5b610ec082611aa2565b600060208284031215611c2f578081fd5b8135610ec08161252d565b600060208284031215611c4b578081fd5b8151610ec08161252d565b600060208284031215611c67578081fd5b813567ffffffffffffffff811115611c7d578182fd5b8201601f81018413611c8d578182fd5b61110e84823560208401611a1b565b600060208284031215611cad578081fd5b5035919050565b60008151808452611ccc816020860160208601612455565b601f01601f19169290920160200192915050565b600084516020611cf38285838a01612455565b855191840191611d068184848a01612455565b8554920191839060028104600180831680611d2257607f831692505b858310811415611d4057634e487b7160e01b88526022600452602488fd5b808015611d545760018114611d6557611d91565b60ff19851688528388019550611d91565b611d6e8b6123e7565b895b85811015611d895781548a820152908401908801611d70565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611de990830184611cb4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611e2b57835183529284019291840191600101611e0f565b50909695505050505050565b901515815260200190565b600060208252610ec06020830184611cb4565b602080825260029082015261533360f01b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b602080825260029082015261299960f11b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b602080825260029082015261533560f01b604082015260600190565b60208082526002908201526114cd60f21b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260029082015261533160f01b604082015260600190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b60009081526020902090565b60008219821115612406576124066124eb565b500190565b60008261241a5761241a612501565b500490565b6000816000190483118215151615612439576124396124eb565b500290565b600082821015612450576124506124eb565b500390565b60005b83811015612470578181015183820152602001612458565b838111156109ed5750506000910152565b60028104600182168061249557607f821691505b602082108114156124b657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124d0576124d06124eb565b5060010190565b6000826124e6576124e6612501565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610fbb57600080fdfea2646970667358221220958590e16a3e0d6777ececa814233935da8a6805739045e01fc0d4139820110d64736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001c5368616d656c6573732053616e647769636820536e6174636865727300000000000000000000000000000000000000000000000000000000000000000000000353535300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000027697066733a2f2f4d494e454d494e454d494e454d494e454d494e454d494e454d494e454d494e4500000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Shameless Sandwich Snatchers
Arg [1] : _symbol (string): SSS
Arg [2] : _initBaseURI (string): ipfs://MINEMINEMINEMINEMINEMINEMINEMINE

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000001c
Arg [4] : 5368616d656c6573732053616e647769636820536e6174636865727300000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 5353530000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000027
Arg [8] : 697066733a2f2f4d494e454d494e454d494e454d494e454d494e454d494e454d
Arg [9] : 494e454d494e4500000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44506:3019:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38299:224;;;;;;;;;;-1:-1:-1;38299:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47049:79;;;;;;;;;;-1:-1:-1;47049:79:0;;;;;:::i;:::-;;:::i;:::-;;25793:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27352:221::-;;;;;;;;;;-1:-1:-1;27352:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;26875:411::-;;;;;;;;;;-1:-1:-1;26875:411:0;;;;;:::i;:::-;;:::i;44681:33::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38939:113::-;;;;;;;;;;;;;:::i;44758:33::-;;;;;;;;;;;;;:::i;28102:339::-;;;;;;;;;;-1:-1:-1;28102:339:0;;;;;:::i;:::-;;:::i;38607:256::-;;;;;;;;;;-1:-1:-1;38607:256:0;;;;;:::i;:::-;;:::i;47136:119::-;;;:::i;45188:468::-;;;;;;:::i;:::-;;:::i;28512:185::-;;;;;;;;;;-1:-1:-1;28512:185:0;;;;;:::i;:::-;;:::i;45666:392::-;;;;;;;;;;-1:-1:-1;45666:392:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46577:86::-;;;;;;;;;;-1:-1:-1;46577:86:0;;;;;:::i;:::-;;:::i;39129:233::-;;;;;;;;;;-1:-1:-1;39129:233:0;;;;;:::i;:::-;;:::i;46801:104::-;;;;;;;;;;-1:-1:-1;46801:104:0;;;;;:::i;:::-;;:::i;44798:25::-;;;;;;;;;;;;;:::i;25487:239::-;;;;;;;;;;-1:-1:-1;25487:239:0;;;;;:::i;:::-;;:::i;44609:21::-;;;;;;;;;;;;;:::i;25217:208::-;;;;;;;;;;-1:-1:-1;25217:208:0;;;;;:::i;:::-;;:::i;4763:103::-;;;;;;;;;;;;;:::i;47263:155::-;;;;;;:::i;:::-;;:::i;46671:122::-;;;;;;;;;;-1:-1:-1;46671:122:0;;;;;:::i;:::-;;:::i;4112:87::-;;;;;;;;;;;;;:::i;25962:104::-;;;;;;;;;;;;;:::i;27645:155::-;;;;;;;;;;-1:-1:-1;27645:155:0;;;;;:::i;:::-;;:::i;28768:328::-;;;;;;;;;;-1:-1:-1;28768:328:0;;;;;:::i;:::-;;:::i;44637:37::-;;;;;;;;;;;;;:::i;46068:483::-;;;;;;;;;;-1:-1:-1;46068:483:0;;;;;:::i;:::-;;:::i;44721:30::-;;;;;;;;;;;;;:::i;46913:128::-;;;;;;;;;;-1:-1:-1;46913:128:0;;;;;:::i;:::-;;:::i;27871:164::-;;;;;;;;;;-1:-1:-1;27871:164:0;;;;;:::i;:::-;;:::i;5021:201::-;;;;;;;;;;-1:-1:-1;5021:201:0;;;;;:::i;:::-;;:::i;47426:94::-;;;;;;;;;;;;;:::i;38299:224::-;38401:4;-1:-1:-1;;;;;;38425:50:0;;-1:-1:-1;;;38425:50:0;;:90;;;38479:36;38503:11;38479:23;:36::i;:::-;38418:97;;38299:224;;;;:::o;47049:79::-;4343:12;:10;:12::i;:::-;-1:-1:-1;;;;;4332:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4332:23:0;;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;;;;;;;;;47105:6:::1;:15:::0;;-1:-1:-1;;47105:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47049:79::o;25793:100::-;25847:13;25880:5;25873:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25793:100;:::o;27352:221::-;27428:7;27456:16;27464:7;27456;:16::i;:::-;27448:73;;;;-1:-1:-1;;;27448:73:0;;;;;;;:::i;:::-;-1:-1:-1;27541:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27541:24:0;;27352:221::o;26875:411::-;26956:13;26972:23;26987:7;26972:14;:23::i;:::-;26956:39;;27020:5;-1:-1:-1;;;;;27014:11:0;:2;-1:-1:-1;;;;;27014:11:0;;;27006:57;;;;-1:-1:-1;;;27006:57:0;;;;;;;:::i;:::-;27114:5;-1:-1:-1;;;;;27098:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;27098:21:0;;:62;;;;27123:37;27140:5;27147:12;:10;:12::i;27123:37::-;27076:168;;;;-1:-1:-1;;;27076:168:0;;;;;;;:::i;:::-;27257:21;27266:2;27270:7;27257:8;:21::i;:::-;26875:411;;;:::o;44681:33::-;;;;:::o;38939:113::-;39027:10;:17;38939:113;:::o;44758:33::-;;;;:::o;28102:339::-;28297:41;28316:12;:10;:12::i;:::-;28330:7;28297:18;:41::i;:::-;28289:103;;;;-1:-1:-1;;;28289:103:0;;;;;;;:::i;:::-;28405:28;28415:4;28421:2;28425:7;28405:9;:28::i;38607:256::-;38704:7;38740:23;38757:5;38740:16;:23::i;:::-;38732:5;:31;38724:87;;;;-1:-1:-1;;;38724:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;38829:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38607:256::o;47136:119::-;4343:12;:10;:12::i;:::-;-1:-1:-1;;;;;4332:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4332:23:0;;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;47199:47:::1;::::0;47207:10:::1;::::0;47224:21:::1;47199:47:::0;::::1;;;::::0;::::1;::::0;;;47224:21;47207:10;47199:47;::::1;;;;;;47191:56;;;::::0;::::1;;47136:119::o:0;45188:468::-;45264:14;45281:13;:11;:13::i;:::-;45314:6;;45264:30;;-1:-1:-1;45314:6:0;;45313:7;45305:22;;;;-1:-1:-1;;;45305:22:0;;;;;;;:::i;:::-;45360:1;45346:11;:15;45338:30;;;;-1:-1:-1;;;45338:30:0;;;;;;;:::i;:::-;45402:13;;45387:11;:28;;45379:43;;;;-1:-1:-1;;;45379:43:0;;;;;;;:::i;:::-;45465:9;;45441:20;45450:11;45441:6;:20;:::i;:::-;:33;;45433:48;;;;-1:-1:-1;;;45433:48:0;;;;;;;:::i;:::-;45527:4;;45513:18;;:11;:18;:::i;:::-;45500:9;:31;;45492:46;;;;-1:-1:-1;;;45492:46:0;;;;;;;:::i;:::-;45568:1;45551:94;45576:11;45571:1;:16;45551:94;;45607:26;45617:3;45622:10;45631:1;45622:6;:10;:::i;:::-;45607:9;:26::i;:::-;45589:3;;;;:::i;:::-;;;;45551:94;;;;45188:468;;;:::o;28512:185::-;28650:39;28667:4;28673:2;28677:7;28650:39;;;;;;;;;;;;:16;:39::i;45666:392::-;45753:16;45789:23;45815:17;45825:6;45815:9;:17::i;:::-;45789:43;;45843:25;45885:15;45871:30;;;;;;-1:-1:-1;;;45871:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45871:30:0;;45843:58;;45917:9;45912:111;45932:15;45928:1;:19;45912:111;;;45981:30;46001:6;46009:1;45981:19;:30::i;:::-;45967:8;45976:1;45967:11;;;;;;-1:-1:-1;;;45967:11:0;;;;;;;;;;;;;;;;;;:44;45949:3;;;;:::i;:::-;;;;45912:111;;;-1:-1:-1;46040:8:0;45666:392;-1:-1:-1;;;45666:392:0:o;46577:86::-;4343:12;:10;:12::i;:::-;-1:-1:-1;;;;;4332:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4332:23:0;;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;46640:4:::1;:15:::0;46577:86::o;39129:233::-;39204:7;39240:30;:28;:30::i;:::-;39232:5;:38;39224:95;;;;-1:-1:-1;;;39224:95:0;;;;;;;:::i;:::-;39337:10;39348:5;39337:17;;;;;;-1:-1:-1;;;39337:17:0;;;;;;;;;;;;;;;;;39330:24;;39129:233;;;:::o;46801:104::-;4343:12;:10;:12::i;:::-;-1:-1:-1;;;;;4332:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4332:23:0;;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;46876:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46801:104:::0;:::o;44798:25::-;;;;;;:::o;25487:239::-;25559:7;25595:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25595:16:0;25630:19;25622:73;;;;-1:-1:-1;;;25622:73:0;;;;;;;:::i;44609:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25217:208::-;25289:7;-1:-1:-1;;;;;25317:19:0;;25309:74;;;;-1:-1:-1;;;25309:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;25401:16:0;;;;;:9;:16;;;;;;;25217:208::o;4763:103::-;4343:12;:10;:12::i;:::-;-1:-1:-1;;;;;4332:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4332:23:0;;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;4828:30:::1;4855:1;4828:18;:30::i;47263:155::-:0;4343:12;:10;:12::i;:::-;-1:-1:-1;;;;;4332:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4332:23:0;;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;47375:34:::1;::::0;-1:-1:-1;;;;;47375:25:0;::::1;::::0;:34;::::1;;;::::0;47401:7;;47375:34:::1;::::0;;;47401:7;47375:25;:34;::::1;;;;;;47367:43;;;::::0;::::1;46671:122:::0;4343:12;:10;:12::i;:::-;-1:-1:-1;;;;;4332:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4332:23:0;;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;46752:13:::1;:33:::0;46671:122::o;4112:87::-;4185:6;;-1:-1:-1;;;;;4185:6:0;4112:87;:::o;25962:104::-;26018:13;26051:7;26044:14;;;;;:::i;27645:155::-;27740:52;27759:12;:10;:12::i;:::-;27773:8;27783;27740:18;:52::i;28768:328::-;28943:41;28962:12;:10;:12::i;:::-;28976:7;28943:18;:41::i;:::-;28935:103;;;;-1:-1:-1;;;28935:103:0;;;;;;;:::i;:::-;29049:39;29063:4;29069:2;29073:7;29082:5;29049:13;:39::i;44637:37::-;;;;;;;:::i;46068:483::-;46186:13;46239:16;46247:7;46239;:16::i;:::-;46219:109;;;;-1:-1:-1;;;46219:109:0;;;;;;;:::i;:::-;46341:28;46372:10;:8;:10::i;:::-;46341:41;;46431:1;46406:14;46400:28;:32;:141;;;;;;;;;;;;;;;;;46472:14;46488:18;:7;:16;:18::i;:::-;46508:13;46455:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46400:141;46393:148;46068:483;-1:-1:-1;;;46068:483:0:o;44721:30::-;;;;:::o;46913:128::-;4343:12;:10;:12::i;:::-;-1:-1:-1;;;;;4332:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4332:23:0;;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;47000:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;27871:164::-:0;-1:-1:-1;;;;;27992:25:0;;;27968:4;27992:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27871:164::o;5021:201::-;4343:12;:10;:12::i;:::-;-1:-1:-1;;;;;4332:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4332:23:0;;4324:68;;;;-1:-1:-1;;;4324:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5110:22:0;::::1;5102:73;;;;-1:-1:-1::0;;;5102:73:0::1;;;;;;;:::i;:::-;5186:28;5205:8;5186:18;:28::i;:::-;5021:201:::0;:::o;47426:94::-;47507:4;47426:94;:::o;24848:305::-;24950:4;-1:-1:-1;;;;;;24987:40:0;;-1:-1:-1;;;24987:40:0;;:105;;-1:-1:-1;;;;;;;25044:48:0;;-1:-1:-1;;;25044:48:0;24987:105;:158;;;;25109:36;25133:11;25109:23;:36::i;2836:98::-;2916:10;2836:98;:::o;30606:127::-;30671:4;30695:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30695:16:0;:30;;;30606:127::o;34588:174::-;34663:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34663:29:0;-1:-1:-1;;;;;34663:29:0;;;;;;;;:24;;34717:23;34663:24;34717:14;:23::i;:::-;-1:-1:-1;;;;;34708:46:0;;;;;;;;;;;34588:174;;:::o;30900:348::-;30993:4;31018:16;31026:7;31018;:16::i;:::-;31010:73;;;;-1:-1:-1;;;31010:73:0;;;;;;;:::i;:::-;31094:13;31110:23;31125:7;31110:14;:23::i;:::-;31094:39;;31163:5;-1:-1:-1;;;;;31152:16:0;:7;-1:-1:-1;;;;;31152:16:0;;:51;;;;31196:7;-1:-1:-1;;;;;31172:31:0;:20;31184:7;31172:11;:20::i;:::-;-1:-1:-1;;;;;31172:31:0;;31152:51;:87;;;;31207:32;31224:5;31231:7;31207:16;:32::i;:::-;31144:96;30900:348;-1:-1:-1;;;;30900:348:0:o;33892:578::-;34051:4;-1:-1:-1;;;;;34024:31:0;:23;34039:7;34024:14;:23::i;:::-;-1:-1:-1;;;;;34024:31:0;;34016:85;;;;-1:-1:-1;;;34016:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34120:16:0;;34112:65;;;;-1:-1:-1;;;34112:65:0;;;;;;;:::i;:::-;34190:39;34211:4;34217:2;34221:7;34190:20;:39::i;:::-;34294:29;34311:1;34315:7;34294:8;:29::i;:::-;-1:-1:-1;;;;;34336:15:0;;;;;;:9;:15;;;;;:20;;34355:1;;34336:15;:20;;34355:1;;34336:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34367:13:0;;;;;;:9;:13;;;;;:18;;34384:1;;34367:13;:18;;34384:1;;34367:18;:::i;:::-;;;;-1:-1:-1;;34396:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34396:21:0;-1:-1:-1;;;;;34396:21:0;;;;;;;;;34435:27;;34396:16;;34435:27;;;;;;;33892:578;;;:::o;31590:110::-;31666:26;31676:2;31680:7;31666:26;;;;;;;;;;;;:9;:26::i;5382:191::-;5475:6;;;-1:-1:-1;;;;;5492:17:0;;;-1:-1:-1;;;;;;5492:17:0;;;;;;;5525:40;;5475:6;;;5492:17;5475:6;;5525:40;;5456:16;;5525:40;5382:191;;:::o;34904:315::-;35059:8;-1:-1:-1;;;;;35050:17:0;:5;-1:-1:-1;;;;;35050:17:0;;;35042:55;;;;-1:-1:-1;;;35042:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35108:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;35108:46:0;;;;;;;35170:41;;;;;35108:46;;35170:41;:::i;:::-;;;;;;;;34904:315;;;:::o;29978:::-;30135:28;30145:4;30151:2;30155:7;30135:9;:28::i;:::-;30182:48;30205:4;30211:2;30215:7;30224:5;30182:22;:48::i;:::-;30174:111;;;;-1:-1:-1;;;30174:111:0;;;;;;;:::i;45051:110::-;45111:13;45144:7;45137:14;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;;671:53;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;-1:-1:-1;;;900:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;-1:-1:-1;;;988:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;16544:157;-1:-1:-1;;;;;;16653:40:0;;-1:-1:-1;;;16653:40:0;16544:157;;;:::o;39975:589::-;40119:45;40146:4;40152:2;40156:7;40119:26;:45::i;:::-;-1:-1:-1;;;;;40181:18:0;;40177:187;;40216:40;40248:7;40216:31;:40::i;:::-;40177:187;;;40286:2;-1:-1:-1;;;;;40278:10:0;:4;-1:-1:-1;;;;;40278:10:0;;40274:90;;40305:47;40338:4;40344:7;40305:32;:47::i;:::-;-1:-1:-1;;;;;40378:16:0;;40374:183;;40411:45;40448:7;40411:36;:45::i;:::-;40374:183;;;40484:4;-1:-1:-1;;;;;40478:10:0;:2;-1:-1:-1;;;;;40478:10:0;;40474:83;;40505:40;40533:2;40537:7;40505:27;:40::i;31927:321::-;32057:18;32063:2;32067:7;32057:5;:18::i;:::-;32108:54;32139:1;32143:2;32147:7;32156:5;32108:22;:54::i;:::-;32086:154;;;;-1:-1:-1;;;32086:154:0;;;;;;;:::i;35784:799::-;35939:4;35960:15;:2;-1:-1:-1;;;;;35960:13:0;;:15::i;:::-;35956:620;;;36012:2;-1:-1:-1;;;;;35996:36:0;;36033:12;:10;:12::i;:::-;36047:4;36053:7;36062:5;35996:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35996:72:0;;;;;;;;-1:-1:-1;;35996:72:0;;;;;;;;;;;;:::i;:::-;;;35992:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36238:13:0;;36234:272;;36281:60;;-1:-1:-1;;;36281:60:0;;;;;;;:::i;36234:272::-;36456:6;36450:13;36441:6;36437:2;36433:15;36426:38;35992:529;-1:-1:-1;;;;;;36119:51:0;-1:-1:-1;;;36119:51:0;;-1:-1:-1;36112:58:0;;35956:620;-1:-1:-1;36560:4:0;35784:799;;;;;;:::o;41287:164::-;41391:10;:17;;41364:24;;;;:15;:24;;;;;:44;;;41419:24;;;;;;;;;;;;41287:164::o;42078:988::-;42344:22;42394:1;42369:22;42386:4;42369:16;:22::i;:::-;:26;;;;:::i;:::-;42406:18;42427:26;;;:17;:26;;;;;;42344:51;;-1:-1:-1;42560:28:0;;;42556:328;;-1:-1:-1;;;;;42627:18:0;;42605:19;42627:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42678:30;;;;;;:44;;;42795:30;;:17;:30;;;;;:43;;;42556:328;-1:-1:-1;42980:26:0;;;;:17;:26;;;;;;;;42973:33;;;-1:-1:-1;;;;;43024:18:0;;;;;:12;:18;;;;;:34;;;;;;;43017:41;42078:988::o;43361:1079::-;43639:10;:17;43614:22;;43639:21;;43659:1;;43639:21;:::i;:::-;43671:18;43692:24;;;:15;:24;;;;;;44065:10;:26;;43614:46;;-1:-1:-1;43692:24:0;;43614:46;;44065:26;;;;-1:-1:-1;;;44065:26:0;;;;;;;;;;;;;;;;;44043:48;;44129:11;44104:10;44115;44104:22;;;;;;-1:-1:-1;;;44104:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;44209:28;;;:15;:28;;;;;;;:41;;;44381:24;;;;;44374:31;44416:10;:16;;;;;-1:-1:-1;;;44416:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;43361:1079;;;;:::o;40865:221::-;40950:14;40967:20;40984:2;40967:16;:20::i;:::-;-1:-1:-1;;;;;40998:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41043:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40865:221:0:o;32584:382::-;-1:-1:-1;;;;;32664:16:0;;32656:61;;;;-1:-1:-1;;;32656:61:0;;;;;;;:::i;:::-;32737:16;32745:7;32737;:16::i;:::-;32736:17;32728:58;;;;-1:-1:-1;;;32728:58:0;;;;;;;:::i;:::-;32799:45;32828:1;32832:2;32836:7;32799:20;:45::i;:::-;-1:-1:-1;;;;;32857:13:0;;;;;;:9;:13;;;;;:18;;32874:1;;32857:13;:18;;32874:1;;32857:18;:::i;:::-;;;;-1:-1:-1;;32886:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32886:21:0;-1:-1:-1;;;;;32886:21:0;;;;;;;;32925:33;;32886:16;;;32925:33;;32886:16;;32925:33;32584:382;;:::o;6400:387::-;6723:20;6771:8;;;6400:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:1;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:1;;4335:120;-1:-1:-1;4335:120:1:o;4460:259::-;;4541:5;4535:12;4568:6;4563:3;4556:19;4584:63;4640:6;4633:4;4628:3;4624:14;4617:4;4610:5;4606:16;4584:63;:::i;:::-;4701:2;4680:15;-1:-1:-1;;4676:29:1;4667:39;;;;4708:4;4663:50;;4511:208;-1:-1:-1;;4511:208:1:o;4724:1532::-;;4986:6;4980:13;5012:4;5025:51;5069:6;5064:3;5059:2;5051:6;5047:15;5025:51;:::i;:::-;5139:13;;5098:16;;;;5161:55;5139:13;5098:16;5183:15;;;5161:55;:::i;:::-;5307:13;;5238:20;;;5278:3;;5384:1;5369:17;;5405:1;5441:18;;;;5468:2;;5546:4;5536:8;5532:19;5520:31;;5468:2;5609;5599:8;5596:16;5576:18;5573:40;5570:2;;;-1:-1:-1;;;5636:33:1;;5692:4;5689:1;5682:15;5722:4;5643:3;5710:17;5570:2;5753:18;5780:110;;;;5904:1;5899:332;;;;5746:485;;5780:110;-1:-1:-1;;5815:24:1;;5801:39;;5860:20;;;;-1:-1:-1;5780:110:1;;5899:332;5935:39;5967:6;5935:39;:::i;:::-;5996:3;6012:169;6026:8;6023:1;6020:15;6012:169;;;6108:14;;6093:13;;;6086:37;6151:16;;;;6043:10;;6012:169;;;6016:3;;6212:8;6205:5;6201:20;6194:27;;5746:485;-1:-1:-1;6247:3:1;;4956:1300;-1:-1:-1;;;;;;;;;;;4956:1300:1:o;6261:203::-;-1:-1:-1;;;;;6425:32:1;;;;6407:51;;6395:2;6380:18;;6362:102::o;6469:490::-;-1:-1:-1;;;;;6738:15:1;;;6720:34;;6790:15;;6785:2;6770:18;;6763:43;6837:2;6822:18;;6815:34;;;6885:3;6880:2;6865:18;;6858:31;;;6469:490;;6906:47;;6933:19;;6925:6;6906:47;:::i;:::-;6898:55;6672:287;-1:-1:-1;;;;;;6672:287:1:o;6964:635::-;7135:2;7187:21;;;7257:13;;7160:18;;;7279:22;;;6964:635;;7135:2;7358:15;;;;7332:2;7317:18;;;6964:635;7404:169;7418:6;7415:1;7412:13;7404:169;;;7479:13;;7467:26;;7548:15;;;;7513:12;;;;7440:1;7433:9;7404:169;;;-1:-1:-1;7590:3:1;;7115:484;-1:-1:-1;;;;;;7115:484:1:o;7604:187::-;7769:14;;7762:22;7744:41;;7732:2;7717:18;;7699:92::o;7796:221::-;;7945:2;7934:9;7927:21;7965:46;8007:2;7996:9;7992:18;7984:6;7965:46;:::i;8022:325::-;8224:2;8206:21;;;8263:1;8243:18;;;8236:29;-1:-1:-1;;;8296:2:1;8281:18;;8274:32;8338:2;8323:18;;8196:151::o;8352:407::-;8554:2;8536:21;;;8593:2;8573:18;;;8566:30;8632:34;8627:2;8612:18;;8605:62;-1:-1:-1;;;8698:2:1;8683:18;;8676:41;8749:3;8734:19;;8526:233::o;8764:414::-;8966:2;8948:21;;;9005:2;8985:18;;;8978:30;9044:34;9039:2;9024:18;;9017:62;-1:-1:-1;;;9110:2:1;9095:18;;9088:48;9168:3;9153:19;;8938:240::o;9183:402::-;9385:2;9367:21;;;9424:2;9404:18;;;9397:30;9463:34;9458:2;9443:18;;9436:62;-1:-1:-1;;;9529:2:1;9514:18;;9507:36;9575:3;9560:19;;9357:228::o;9590:352::-;9792:2;9774:21;;;9831:2;9811:18;;;9804:30;9870;9865:2;9850:18;;9843:58;9933:2;9918:18;;9764:178::o;9947:400::-;10149:2;10131:21;;;10188:2;10168:18;;;10161:30;10227:34;10222:2;10207:18;;10200:62;-1:-1:-1;;;10293:2:1;10278:18;;10271:34;10337:3;10322:19;;10121:226::o;10352:349::-;10554:2;10536:21;;;10593:2;10573:18;;;10566:30;10632:27;10627:2;10612:18;;10605:55;10692:2;10677:18;;10526:175::o;10706:408::-;10908:2;10890:21;;;10947:2;10927:18;;;10920:30;10986:34;10981:2;10966:18;;10959:62;-1:-1:-1;;;11052:2:1;11037:18;;11030:42;11104:3;11089:19;;10880:234::o;11119:325::-;11321:2;11303:21;;;11360:1;11340:18;;;11333:29;-1:-1:-1;;;11393:2:1;11378:18;;11371:32;11435:2;11420:18;;11293:151::o;11449:420::-;11651:2;11633:21;;;11690:2;11670:18;;;11663:30;11729:34;11724:2;11709:18;;11702:62;11800:26;11795:2;11780:18;;11773:54;11859:3;11844:19;;11623:246::o;11874:406::-;12076:2;12058:21;;;12115:2;12095:18;;;12088:30;12154:34;12149:2;12134:18;;12127:62;-1:-1:-1;;;12220:2:1;12205:18;;12198:40;12270:3;12255:19;;12048:232::o;12285:405::-;12487:2;12469:21;;;12526:2;12506:18;;;12499:30;12565:34;12560:2;12545:18;;12538:62;-1:-1:-1;;;12631:2:1;12616:18;;12609:39;12680:3;12665:19;;12459:231::o;12695:356::-;12897:2;12879:21;;;12916:18;;;12909:30;12975:34;12970:2;12955:18;;12948:62;13042:2;13027:18;;12869:182::o;13056:408::-;13258:2;13240:21;;;13297:2;13277:18;;;13270:30;13336:34;13331:2;13316:18;;13309:62;-1:-1:-1;;;13402:2:1;13387:18;;13380:42;13454:3;13439:19;;13230:234::o;13469:356::-;13671:2;13653:21;;;13690:18;;;13683:30;13749:34;13744:2;13729:18;;13722:62;13816:2;13801:18;;13643:182::o;13830:405::-;14032:2;14014:21;;;14071:2;14051:18;;;14044:30;14110:34;14105:2;14090:18;;14083:62;-1:-1:-1;;;14176:2:1;14161:18;;14154:39;14225:3;14210:19;;14004:231::o;14240:411::-;14442:2;14424:21;;;14481:2;14461:18;;;14454:30;14520:34;14515:2;14500:18;;14493:62;-1:-1:-1;;;14586:2:1;14571:18;;14564:45;14641:3;14626:19;;14414:237::o;14656:397::-;14858:2;14840:21;;;14897:2;14877:18;;;14870:30;14936:34;14931:2;14916:18;;14909:62;-1:-1:-1;;;15002:2:1;14987:18;;14980:31;15043:3;15028:19;;14830:223::o;15058:325::-;15260:2;15242:21;;;15299:1;15279:18;;;15272:29;-1:-1:-1;;;15332:2:1;15317:18;;15310:32;15374:2;15359:18;;15232:151::o;15388:325::-;15590:2;15572:21;;;15629:1;15609:18;;;15602:29;-1:-1:-1;;;15662:2:1;15647:18;;15640:32;15704:2;15689:18;;15562:151::o;15718:413::-;15920:2;15902:21;;;15959:2;15939:18;;;15932:30;15998:34;15993:2;15978:18;;15971:62;-1:-1:-1;;;16064:2:1;16049:18;;16042:47;16121:3;16106:19;;15892:239::o;16136:325::-;16338:2;16320:21;;;16377:1;16357:18;;;16350:29;-1:-1:-1;;;16410:2:1;16395:18;;16388:32;16452:2;16437:18;;16310:151::o;16466:408::-;16668:2;16650:21;;;16707:2;16687:18;;;16680:30;16746:34;16741:2;16726:18;;16719:62;-1:-1:-1;;;16812:2:1;16797:18;;16790:42;16864:3;16849:19;;16640:234::o;16879:177::-;17025:25;;;17013:2;16998:18;;16980:76::o;17061:129::-;;17129:17;;;17179:4;17163:21;;;17119:71::o;17195:128::-;;17266:1;17262:6;17259:1;17256:13;17253:2;;;17272:18;;:::i;:::-;-1:-1:-1;17308:9:1;;17243:80::o;17328:120::-;;17394:1;17384:2;;17399:18;;:::i;:::-;-1:-1:-1;17433:9:1;;17374:74::o;17453:168::-;;17559:1;17555;17551:6;17547:14;17544:1;17541:21;17536:1;17529:9;17522:17;17518:45;17515:2;;;17566:18;;:::i;:::-;-1:-1:-1;17606:9:1;;17505:116::o;17626:125::-;;17694:1;17691;17688:8;17685:2;;;17699:18;;:::i;:::-;-1:-1:-1;17736:9:1;;17675:76::o;17756:258::-;17828:1;17838:113;17852:6;17849:1;17846:13;17838:113;;;17928:11;;;17922:18;17909:11;;;17902:39;17874:2;17867:10;17838:113;;;17969:6;17966:1;17963:13;17960:2;;;-1:-1:-1;;18004:1:1;17986:16;;17979:27;17809:205::o;18019:380::-;18104:1;18094:12;;18151:1;18141:12;;;18162:2;;18216:4;18208:6;18204:17;18194:27;;18162:2;18269;18261:6;18258:14;18238:18;18235:38;18232:2;;;18315:10;18310:3;18306:20;18303:1;18296:31;18350:4;18347:1;18340:15;18378:4;18375:1;18368:15;18232:2;;18074:325;;;:::o;18404:135::-;;-1:-1:-1;;18464:17:1;;18461:2;;;18484:18;;:::i;:::-;-1:-1:-1;18531:1:1;18520:13;;18451:88::o;18544:112::-;;18602:1;18592:2;;18607:18;;:::i;:::-;-1:-1:-1;18641:9:1;;18582:74::o;18661:127::-;18722:10;18717:3;18713:20;18710:1;18703:31;18753:4;18750:1;18743:15;18777:4;18774:1;18767:15;18793:127;18854:10;18849:3;18845:20;18842:1;18835:31;18885:4;18882:1;18875:15;18909:4;18906:1;18899:15;18925:127;18986:10;18981:3;18977:20;18974:1;18967:31;19017:4;19014:1;19007:15;19041:4;19038:1;19031:15;19057:133;-1:-1:-1;;;;;;19133:32:1;;19123:43;;19113:2;;19180:1;19177;19170:12

Swarm Source

ipfs://958590e16a3e0d6777ececa814233935da8a6805739045e01fc0d4139820110d
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.