ETH Price: $3,255.11 (-2.32%)
 

Overview

Max Total Supply

514 SNOOD

Holders

41

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cashoffer.eth
Balance
1 SNOOD
0xC38bDB83c35Be18A0a233E9077DFe09c52795aE7
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:
Snoodles

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-10
*/

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
pragma solidity ^0.8.0;
/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}


// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol
pragma solidity ^0.8.0;
/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
pragma solidity ^0.8.0;
/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/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/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


// File: @openzeppelin/contracts/access/Ownable.sol
pragma solidity ^0.8.0;
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/Snoodles.sol

pragma solidity ^0.8.0;

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

    string _baseUri;
    string _contractUri;
    
    uint public maximumFreeMint = 500;
    bool public isSalesActive = false;
    uint public constant MAX_SUPPLY = 5000;
    uint public price = 0.02 ether;

    constructor(
        string memory name_,
        string memory symbol_,
        string memory baseURI_
    ) ERC721(name_, symbol_) {
        _baseUri = baseURI_;
        _contractUri = baseURI_;
    }

    function _baseURI() internal view override returns (string memory) {
        return _baseUri;
    }
    
    function mint(uint quantity) external payable {
        uint256 supply = totalSupply();
        require(isSalesActive, "the sale is not active yet");
        require(quantity <= 10, "maximum mints per transaction have been exceeded");
        require(supply + quantity <= MAX_SUPPLY, "Snoodles have sold out");
        if (msg.sender != owner()) {
            require(msg.value >= price * quantity, "You have insufficient funds");
        }
        for (uint i = 0; i < quantity; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function freeMint(uint quantity) external {
        uint256 supply = totalSupply();
        require(isSalesActive, "the sale is not active yet");
        require(quantity <= 10, "maximum mints per transaction have been exceeded");
        require(supply< maximumFreeMint, "theres no free mints remaining");
        
        for (uint i = 0; i < quantity; i++) {
            _safeMint(msg.sender, supply + i);
        }
    }

    function contractURI() public view returns (string memory) {
        return _contractUri;
    }
    
    function toggleSales() external onlyOwner {
        isSalesActive = !isSalesActive;
    }

    function setBaseURI(string memory newBaseURI) external onlyOwner {
        _baseUri = newBaseURI;
        _contractUri = newBaseURI;
    }

    function withdrawAll() external onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
    
    function setPrice(uint newPrice) external onlyOwner {
        price = newPrice;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSalesActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","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":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526101f4600d55600e805460ff1916905566470de4df820000600f553480156200002c57600080fd5b50604051620024ba380380620024ba8339810160408190526200004f9162000283565b8251839083906200006890600090602085019062000126565b5080516200007e90600190602084019062000126565b5050506200009b62000095620000d060201b60201c565b620000d4565b8051620000b090600b90602084019062000126565b508051620000c690600c90602084019062000126565b5050505062000367565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001349062000314565b90600052602060002090601f016020900481019282620001585760008555620001a3565b82601f106200017357805160ff1916838001178555620001a3565b82800160010185558215620001a3579182015b82811115620001a357825182559160200191906001019062000186565b50620001b1929150620001b5565b5090565b5b80821115620001b15760008155600101620001b6565b600082601f830112620001de57600080fd5b81516001600160401b0380821115620001fb57620001fb62000351565b604051601f8301601f19908116603f0116810190828211818310171562000226576200022662000351565b816040528381526020925086838588010111156200024357600080fd5b600091505b8382101562000267578582018301518183018401529082019062000248565b83821115620002795760008385830101525b9695505050505050565b6000806000606084860312156200029957600080fd5b83516001600160401b0380821115620002b157600080fd5b620002bf87838801620001cc565b94506020860151915080821115620002d657600080fd5b620002e487838801620001cc565b93506040860151915080821115620002fb57600080fd5b506200030a86828701620001cc565b9150509250925092565b600181811c908216806200032957607f821691505b602082108114156200034b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61214380620003776000396000f3fe6080604052600436106101cd5760003560e01c8063853828b6116100f7578063aa53591911610095578063dbd30ae011610064578063dbd30ae0146104ee578063e8a3d48514610503578063e985e9c514610518578063f2fde38b1461056157600080fd5b8063aa5359191461047e578063b88d4fde14610494578063c87b56dd146104b4578063daa81cdd146104d457600080fd5b806395d89b41116100d157806395d89b4114610420578063a035b1fe14610435578063a0712d681461044b578063a22cb4651461045e57600080fd5b8063853828b6146103cd5780638da5cb5b146103e257806391b7f5ed1461040057600080fd5b806332cb6b0c1161016f5780636352211e1161013e5780636352211e1461035857806370a0823114610378578063715018a6146103985780637c928fe9146103ad57600080fd5b806332cb6b0c146102e257806342842e0e146102f85780634f6ccce71461031857806355f804b31461033857600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a25780632f745c59146102c257600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611d22565b610581565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105ac565b6040516101fe9190611e56565b34801561023557600080fd5b50610249610244366004611da5565b61063e565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611cf8565b6106d8565b005b34801561028f57600080fd5b506008545b6040519081526020016101fe565b3480156102ae57600080fd5b506102816102bd366004611c04565b6107ee565b3480156102ce57600080fd5b506102946102dd366004611cf8565b61081f565b3480156102ee57600080fd5b5061029461138881565b34801561030457600080fd5b50610281610313366004611c04565b6108b5565b34801561032457600080fd5b50610294610333366004611da5565b6108d0565b34801561034457600080fd5b50610281610353366004611d5c565b610963565b34801561036457600080fd5b50610249610373366004611da5565b6109b8565b34801561038457600080fd5b50610294610393366004611bb6565b610a2f565b3480156103a457600080fd5b50610281610ab6565b3480156103b957600080fd5b506102816103c8366004611da5565b610aec565b3480156103d957600080fd5b50610281610bee565b3480156103ee57600080fd5b50600a546001600160a01b0316610249565b34801561040c57600080fd5b5061028161041b366004611da5565b610c3c565b34801561042c57600080fd5b5061021c610c6b565b34801561044157600080fd5b50610294600f5481565b610281610459366004611da5565b610c7a565b34801561046a57600080fd5b50610281610479366004611cbc565b610de9565b34801561048a57600080fd5b50610294600d5481565b3480156104a057600080fd5b506102816104af366004611c40565b610eae565b3480156104c057600080fd5b5061021c6104cf366004611da5565b610ee6565b3480156104e057600080fd5b50600e546101f29060ff1681565b3480156104fa57600080fd5b50610281610fc1565b34801561050f57600080fd5b5061021c610fff565b34801561052457600080fd5b506101f2610533366004611bd1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561056d57600080fd5b5061028161057c366004611bb6565b61100e565b60006001600160e01b0319821663780e9d6360e01b14806105a657506105a6826110a9565b92915050565b6060600080546105bb9061201f565b80601f01602080910402602001604051908101604052809291908181526020018280546105e79061201f565b80156106345780601f1061060957610100808354040283529160200191610634565b820191906000526020600020905b81548152906001019060200180831161061757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106bc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106e3826109b8565b9050806001600160a01b0316836001600160a01b031614156107515760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106b3565b336001600160a01b038216148061076d575061076d8133610533565b6107df5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106b3565b6107e983836110f9565b505050565b6107f83382611167565b6108145760405162461bcd60e51b81526004016106b390611f40565b6107e983838361125e565b600061082a83610a2f565b821061088c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106b3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107e983838360405180602001604052806000815250610eae565b60006108db60085490565b821061093e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106b3565b60088281548110610951576109516120cb565b90600052602060002001549050919050565b600a546001600160a01b0316331461098d5760405162461bcd60e51b81526004016106b390611f0b565b80516109a090600b906020840190611a8b565b5080516109b490600c906020840190611a8b565b5050565b6000818152600260205260408120546001600160a01b0316806105a65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106b3565b60006001600160a01b038216610a9a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106b3565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610ae05760405162461bcd60e51b81526004016106b390611f0b565b610aea6000611409565b565b6000610af760085490565b600e5490915060ff16610b4c5760405162461bcd60e51b815260206004820152601a60248201527f7468652073616c65206973206e6f74206163746976652079657400000000000060448201526064016106b3565b600a821115610b6d5760405162461bcd60e51b81526004016106b390611ebb565b600d548110610bbe5760405162461bcd60e51b815260206004820152601e60248201527f746865726573206e6f2066726565206d696e74732072656d61696e696e67000060448201526064016106b3565b60005b828110156107e957610bdc33610bd78385611f91565b61145b565b80610be68161205a565b915050610bc1565b600a546001600160a01b03163314610c185760405162461bcd60e51b81526004016106b390611f0b565b60405133904780156108fc02916000818181858888f19350505050610aea57600080fd5b600a546001600160a01b03163314610c665760405162461bcd60e51b81526004016106b390611f0b565b600f55565b6060600180546105bb9061201f565b6000610c8560085490565b600e5490915060ff16610cda5760405162461bcd60e51b815260206004820152601a60248201527f7468652073616c65206973206e6f74206163746976652079657400000000000060448201526064016106b3565b600a821115610cfb5760405162461bcd60e51b81526004016106b390611ebb565b611388610d088383611f91565b1115610d4f5760405162461bcd60e51b815260206004820152601660248201527514db9bdbd91b195cc81a185d99481cdbdb19081bdd5d60521b60448201526064016106b3565b600a546001600160a01b03163314610dbe5781600f54610d6f9190611fbd565b341015610dbe5760405162461bcd60e51b815260206004820152601b60248201527f596f75206861766520696e73756666696369656e742066756e6473000000000060448201526064016106b3565b60005b828110156107e957610dd733610bd78385611f91565b80610de18161205a565b915050610dc1565b6001600160a01b038216331415610e425760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106b3565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610eb83383611167565b610ed45760405162461bcd60e51b81526004016106b390611f40565b610ee084848484611475565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f655760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106b3565b6000610f6f6114a8565b90506000815111610f8f5760405180602001604052806000815250610fba565b80610f99846114b7565b604051602001610faa929190611dea565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610feb5760405162461bcd60e51b81526004016106b390611f0b565b600e805460ff19811660ff90911615179055565b6060600c80546105bb9061201f565b600a546001600160a01b031633146110385760405162461bcd60e51b81526004016106b390611f0b565b6001600160a01b03811661109d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b3565b6110a681611409565b50565b60006001600160e01b031982166380ac58cd60e01b14806110da57506001600160e01b03198216635b5e139f60e01b145b806105a657506301ffc9a760e01b6001600160e01b03198316146105a6565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061112e826109b8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111e05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106b3565b60006111eb836109b8565b9050806001600160a01b0316846001600160a01b031614806112265750836001600160a01b031661121b8461063e565b6001600160a01b0316145b8061125657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611271826109b8565b6001600160a01b0316146112d95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106b3565b6001600160a01b03821661133b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106b3565b6113468383836115b5565b6113516000826110f9565b6001600160a01b038316600090815260036020526040812080546001929061137a908490611fdc565b90915550506001600160a01b03821660009081526003602052604081208054600192906113a8908490611f91565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109b482826040518060200160405280600081525061166d565b61148084848461125e565b61148c848484846116a0565b610ee05760405162461bcd60e51b81526004016106b390611e69565b6060600b80546105bb9061201f565b6060816114db5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561150557806114ef8161205a565b91506114fe9050600a83611fa9565b91506114df565b60008167ffffffffffffffff811115611520576115206120e1565b6040519080825280601f01601f19166020018201604052801561154a576020820181803683370190505b5090505b84156112565761155f600183611fdc565b915061156c600a86612075565b611577906030611f91565b60f81b81838151811061158c5761158c6120cb565b60200101906001600160f81b031916908160001a9053506115ae600a86611fa9565b945061154e565b6001600160a01b0383166116105761160b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611633565b816001600160a01b0316836001600160a01b0316146116335761163383826117ad565b6001600160a01b03821661164a576107e98161184a565b826001600160a01b0316826001600160a01b0316146107e9576107e982826118f9565b611677838361193d565b61168460008484846116a0565b6107e95760405162461bcd60e51b81526004016106b390611e69565b60006001600160a01b0384163b156117a257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116e4903390899088908890600401611e19565b602060405180830381600087803b1580156116fe57600080fd5b505af192505050801561172e575060408051601f3d908101601f1916820190925261172b91810190611d3f565b60015b611788573d80801561175c576040519150601f19603f3d011682016040523d82523d6000602084013e611761565b606091505b5080516117805760405162461bcd60e51b81526004016106b390611e69565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611256565b506001949350505050565b600060016117ba84610a2f565b6117c49190611fdc565b600083815260076020526040902054909150808214611817576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061185c90600190611fdc565b60008381526009602052604081205460088054939450909284908110611884576118846120cb565b9060005260206000200154905080600883815481106118a5576118a56120cb565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806118dd576118dd6120b5565b6001900381819060005260206000200160009055905550505050565b600061190483610a2f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166119935760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106b3565b6000818152600260205260409020546001600160a01b0316156119f85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106b3565b611a04600083836115b5565b6001600160a01b0382166000908152600360205260408120805460019290611a2d908490611f91565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611a979061201f565b90600052602060002090601f016020900481019282611ab95760008555611aff565b82601f10611ad257805160ff1916838001178555611aff565b82800160010185558215611aff579182015b82811115611aff578251825591602001919060010190611ae4565b50611b0b929150611b0f565b5090565b5b80821115611b0b5760008155600101611b10565b600067ffffffffffffffff80841115611b3f57611b3f6120e1565b604051601f8501601f19908116603f01168101908282118183101715611b6757611b676120e1565b81604052809350858152868686011115611b8057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611bb157600080fd5b919050565b600060208284031215611bc857600080fd5b610fba82611b9a565b60008060408385031215611be457600080fd5b611bed83611b9a565b9150611bfb60208401611b9a565b90509250929050565b600080600060608486031215611c1957600080fd5b611c2284611b9a565b9250611c3060208501611b9a565b9150604084013590509250925092565b60008060008060808587031215611c5657600080fd5b611c5f85611b9a565b9350611c6d60208601611b9a565b925060408501359150606085013567ffffffffffffffff811115611c9057600080fd5b8501601f81018713611ca157600080fd5b611cb087823560208401611b24565b91505092959194509250565b60008060408385031215611ccf57600080fd5b611cd883611b9a565b915060208301358015158114611ced57600080fd5b809150509250929050565b60008060408385031215611d0b57600080fd5b611d1483611b9a565b946020939093013593505050565b600060208284031215611d3457600080fd5b8135610fba816120f7565b600060208284031215611d5157600080fd5b8151610fba816120f7565b600060208284031215611d6e57600080fd5b813567ffffffffffffffff811115611d8557600080fd5b8201601f81018413611d9657600080fd5b61125684823560208401611b24565b600060208284031215611db757600080fd5b5035919050565b60008151808452611dd6816020860160208601611ff3565b601f01601f19169290920160200192915050565b60008351611dfc818460208801611ff3565b835190830190611e10818360208801611ff3565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e4c90830184611dbe565b9695505050505050565b602081526000610fba6020830184611dbe565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526030908201527f6d6178696d756d206d696e747320706572207472616e73616374696f6e20686160408201526f1d99481899595b88195e18d95959195960821b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611fa457611fa4612089565b500190565b600082611fb857611fb861209f565b500490565b6000816000190483118215151615611fd757611fd7612089565b500290565b600082821015611fee57611fee612089565b500390565b60005b8381101561200e578181015183820152602001611ff6565b83811115610ee05750506000910152565b600181811c9082168061203357607f821691505b6020821081141561205457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561206e5761206e612089565b5060010190565b6000826120845761208461209f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110a657600080fdfea26469706673582212209ba26c4ec4042216938a098a3cf330f341e1ba99d665742d85a78729511a69fb64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000008536e6f6f646c65730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005534e4f4f440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d637170515a6f434e5245386a5a537a4a46687032516435337a784a66563145476476797245647075447464332f00000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063853828b6116100f7578063aa53591911610095578063dbd30ae011610064578063dbd30ae0146104ee578063e8a3d48514610503578063e985e9c514610518578063f2fde38b1461056157600080fd5b8063aa5359191461047e578063b88d4fde14610494578063c87b56dd146104b4578063daa81cdd146104d457600080fd5b806395d89b41116100d157806395d89b4114610420578063a035b1fe14610435578063a0712d681461044b578063a22cb4651461045e57600080fd5b8063853828b6146103cd5780638da5cb5b146103e257806391b7f5ed1461040057600080fd5b806332cb6b0c1161016f5780636352211e1161013e5780636352211e1461035857806370a0823114610378578063715018a6146103985780637c928fe9146103ad57600080fd5b806332cb6b0c146102e257806342842e0e146102f85780634f6ccce71461031857806355f804b31461033857600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a25780632f745c59146102c257600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611d22565b610581565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105ac565b6040516101fe9190611e56565b34801561023557600080fd5b50610249610244366004611da5565b61063e565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611cf8565b6106d8565b005b34801561028f57600080fd5b506008545b6040519081526020016101fe565b3480156102ae57600080fd5b506102816102bd366004611c04565b6107ee565b3480156102ce57600080fd5b506102946102dd366004611cf8565b61081f565b3480156102ee57600080fd5b5061029461138881565b34801561030457600080fd5b50610281610313366004611c04565b6108b5565b34801561032457600080fd5b50610294610333366004611da5565b6108d0565b34801561034457600080fd5b50610281610353366004611d5c565b610963565b34801561036457600080fd5b50610249610373366004611da5565b6109b8565b34801561038457600080fd5b50610294610393366004611bb6565b610a2f565b3480156103a457600080fd5b50610281610ab6565b3480156103b957600080fd5b506102816103c8366004611da5565b610aec565b3480156103d957600080fd5b50610281610bee565b3480156103ee57600080fd5b50600a546001600160a01b0316610249565b34801561040c57600080fd5b5061028161041b366004611da5565b610c3c565b34801561042c57600080fd5b5061021c610c6b565b34801561044157600080fd5b50610294600f5481565b610281610459366004611da5565b610c7a565b34801561046a57600080fd5b50610281610479366004611cbc565b610de9565b34801561048a57600080fd5b50610294600d5481565b3480156104a057600080fd5b506102816104af366004611c40565b610eae565b3480156104c057600080fd5b5061021c6104cf366004611da5565b610ee6565b3480156104e057600080fd5b50600e546101f29060ff1681565b3480156104fa57600080fd5b50610281610fc1565b34801561050f57600080fd5b5061021c610fff565b34801561052457600080fd5b506101f2610533366004611bd1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561056d57600080fd5b5061028161057c366004611bb6565b61100e565b60006001600160e01b0319821663780e9d6360e01b14806105a657506105a6826110a9565b92915050565b6060600080546105bb9061201f565b80601f01602080910402602001604051908101604052809291908181526020018280546105e79061201f565b80156106345780601f1061060957610100808354040283529160200191610634565b820191906000526020600020905b81548152906001019060200180831161061757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106bc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106e3826109b8565b9050806001600160a01b0316836001600160a01b031614156107515760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106b3565b336001600160a01b038216148061076d575061076d8133610533565b6107df5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106b3565b6107e983836110f9565b505050565b6107f83382611167565b6108145760405162461bcd60e51b81526004016106b390611f40565b6107e983838361125e565b600061082a83610a2f565b821061088c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106b3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107e983838360405180602001604052806000815250610eae565b60006108db60085490565b821061093e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106b3565b60088281548110610951576109516120cb565b90600052602060002001549050919050565b600a546001600160a01b0316331461098d5760405162461bcd60e51b81526004016106b390611f0b565b80516109a090600b906020840190611a8b565b5080516109b490600c906020840190611a8b565b5050565b6000818152600260205260408120546001600160a01b0316806105a65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106b3565b60006001600160a01b038216610a9a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106b3565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610ae05760405162461bcd60e51b81526004016106b390611f0b565b610aea6000611409565b565b6000610af760085490565b600e5490915060ff16610b4c5760405162461bcd60e51b815260206004820152601a60248201527f7468652073616c65206973206e6f74206163746976652079657400000000000060448201526064016106b3565b600a821115610b6d5760405162461bcd60e51b81526004016106b390611ebb565b600d548110610bbe5760405162461bcd60e51b815260206004820152601e60248201527f746865726573206e6f2066726565206d696e74732072656d61696e696e67000060448201526064016106b3565b60005b828110156107e957610bdc33610bd78385611f91565b61145b565b80610be68161205a565b915050610bc1565b600a546001600160a01b03163314610c185760405162461bcd60e51b81526004016106b390611f0b565b60405133904780156108fc02916000818181858888f19350505050610aea57600080fd5b600a546001600160a01b03163314610c665760405162461bcd60e51b81526004016106b390611f0b565b600f55565b6060600180546105bb9061201f565b6000610c8560085490565b600e5490915060ff16610cda5760405162461bcd60e51b815260206004820152601a60248201527f7468652073616c65206973206e6f74206163746976652079657400000000000060448201526064016106b3565b600a821115610cfb5760405162461bcd60e51b81526004016106b390611ebb565b611388610d088383611f91565b1115610d4f5760405162461bcd60e51b815260206004820152601660248201527514db9bdbd91b195cc81a185d99481cdbdb19081bdd5d60521b60448201526064016106b3565b600a546001600160a01b03163314610dbe5781600f54610d6f9190611fbd565b341015610dbe5760405162461bcd60e51b815260206004820152601b60248201527f596f75206861766520696e73756666696369656e742066756e6473000000000060448201526064016106b3565b60005b828110156107e957610dd733610bd78385611f91565b80610de18161205a565b915050610dc1565b6001600160a01b038216331415610e425760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106b3565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610eb83383611167565b610ed45760405162461bcd60e51b81526004016106b390611f40565b610ee084848484611475565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f655760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106b3565b6000610f6f6114a8565b90506000815111610f8f5760405180602001604052806000815250610fba565b80610f99846114b7565b604051602001610faa929190611dea565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314610feb5760405162461bcd60e51b81526004016106b390611f0b565b600e805460ff19811660ff90911615179055565b6060600c80546105bb9061201f565b600a546001600160a01b031633146110385760405162461bcd60e51b81526004016106b390611f0b565b6001600160a01b03811661109d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b3565b6110a681611409565b50565b60006001600160e01b031982166380ac58cd60e01b14806110da57506001600160e01b03198216635b5e139f60e01b145b806105a657506301ffc9a760e01b6001600160e01b03198316146105a6565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061112e826109b8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111e05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106b3565b60006111eb836109b8565b9050806001600160a01b0316846001600160a01b031614806112265750836001600160a01b031661121b8461063e565b6001600160a01b0316145b8061125657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611271826109b8565b6001600160a01b0316146112d95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106b3565b6001600160a01b03821661133b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106b3565b6113468383836115b5565b6113516000826110f9565b6001600160a01b038316600090815260036020526040812080546001929061137a908490611fdc565b90915550506001600160a01b03821660009081526003602052604081208054600192906113a8908490611f91565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109b482826040518060200160405280600081525061166d565b61148084848461125e565b61148c848484846116a0565b610ee05760405162461bcd60e51b81526004016106b390611e69565b6060600b80546105bb9061201f565b6060816114db5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561150557806114ef8161205a565b91506114fe9050600a83611fa9565b91506114df565b60008167ffffffffffffffff811115611520576115206120e1565b6040519080825280601f01601f19166020018201604052801561154a576020820181803683370190505b5090505b84156112565761155f600183611fdc565b915061156c600a86612075565b611577906030611f91565b60f81b81838151811061158c5761158c6120cb565b60200101906001600160f81b031916908160001a9053506115ae600a86611fa9565b945061154e565b6001600160a01b0383166116105761160b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611633565b816001600160a01b0316836001600160a01b0316146116335761163383826117ad565b6001600160a01b03821661164a576107e98161184a565b826001600160a01b0316826001600160a01b0316146107e9576107e982826118f9565b611677838361193d565b61168460008484846116a0565b6107e95760405162461bcd60e51b81526004016106b390611e69565b60006001600160a01b0384163b156117a257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116e4903390899088908890600401611e19565b602060405180830381600087803b1580156116fe57600080fd5b505af192505050801561172e575060408051601f3d908101601f1916820190925261172b91810190611d3f565b60015b611788573d80801561175c576040519150601f19603f3d011682016040523d82523d6000602084013e611761565b606091505b5080516117805760405162461bcd60e51b81526004016106b390611e69565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611256565b506001949350505050565b600060016117ba84610a2f565b6117c49190611fdc565b600083815260076020526040902054909150808214611817576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061185c90600190611fdc565b60008381526009602052604081205460088054939450909284908110611884576118846120cb565b9060005260206000200154905080600883815481106118a5576118a56120cb565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806118dd576118dd6120b5565b6001900381819060005260206000200160009055905550505050565b600061190483610a2f565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166119935760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106b3565b6000818152600260205260409020546001600160a01b0316156119f85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106b3565b611a04600083836115b5565b6001600160a01b0382166000908152600360205260408120805460019290611a2d908490611f91565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611a979061201f565b90600052602060002090601f016020900481019282611ab95760008555611aff565b82601f10611ad257805160ff1916838001178555611aff565b82800160010185558215611aff579182015b82811115611aff578251825591602001919060010190611ae4565b50611b0b929150611b0f565b5090565b5b80821115611b0b5760008155600101611b10565b600067ffffffffffffffff80841115611b3f57611b3f6120e1565b604051601f8501601f19908116603f01168101908282118183101715611b6757611b676120e1565b81604052809350858152868686011115611b8057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611bb157600080fd5b919050565b600060208284031215611bc857600080fd5b610fba82611b9a565b60008060408385031215611be457600080fd5b611bed83611b9a565b9150611bfb60208401611b9a565b90509250929050565b600080600060608486031215611c1957600080fd5b611c2284611b9a565b9250611c3060208501611b9a565b9150604084013590509250925092565b60008060008060808587031215611c5657600080fd5b611c5f85611b9a565b9350611c6d60208601611b9a565b925060408501359150606085013567ffffffffffffffff811115611c9057600080fd5b8501601f81018713611ca157600080fd5b611cb087823560208401611b24565b91505092959194509250565b60008060408385031215611ccf57600080fd5b611cd883611b9a565b915060208301358015158114611ced57600080fd5b809150509250929050565b60008060408385031215611d0b57600080fd5b611d1483611b9a565b946020939093013593505050565b600060208284031215611d3457600080fd5b8135610fba816120f7565b600060208284031215611d5157600080fd5b8151610fba816120f7565b600060208284031215611d6e57600080fd5b813567ffffffffffffffff811115611d8557600080fd5b8201601f81018413611d9657600080fd5b61125684823560208401611b24565b600060208284031215611db757600080fd5b5035919050565b60008151808452611dd6816020860160208601611ff3565b601f01601f19169290920160200192915050565b60008351611dfc818460208801611ff3565b835190830190611e10818360208801611ff3565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e4c90830184611dbe565b9695505050505050565b602081526000610fba6020830184611dbe565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526030908201527f6d6178696d756d206d696e747320706572207472616e73616374696f6e20686160408201526f1d99481899595b88195e18d95959195960821b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611fa457611fa4612089565b500190565b600082611fb857611fb861209f565b500490565b6000816000190483118215151615611fd757611fd7612089565b500290565b600082821015611fee57611fee612089565b500390565b60005b8381101561200e578181015183820152602001611ff6565b83811115610ee05750506000910152565b600181811c9082168061203357607f821691505b6020821081141561205457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561206e5761206e612089565b5060010190565b6000826120845761208461209f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110a657600080fdfea26469706673582212209ba26c4ec4042216938a098a3cf330f341e1ba99d665742d85a78729511a69fb64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000008536e6f6f646c65730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005534e4f4f440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d637170515a6f434e5245386a5a537a4a46687032516435337a784a66563145476476797245647075447464332f00000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Snoodles
Arg [1] : symbol_ (string): SNOOD
Arg [2] : baseURI_ (string): ipfs://QmcqpQZoCNRE8jZSzJFhp2Qd53zxJfV1EGdvyrEdpuDtd3/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 536e6f6f646c6573000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 534e4f4f44000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d637170515a6f434e5245386a5a537a4a46687032516435
Arg [9] : 337a784a66563145476476797245647075447464332f00000000000000000000


Deployed Bytecode Sourcemap

43107:2221:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34627:224;;;;;;;;;;-1:-1:-1;34627:224:0;;;;;:::i;:::-;;:::i;:::-;;;5646:14:1;;5639:22;5621:41;;5609:2;5594:18;34627:224:0;;;;;;;;22519:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24078:221::-;;;;;;;;;;-1:-1:-1;24078:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4944:32:1;;;4926:51;;4914:2;4899:18;24078:221:0;4780:203:1;23601:411:0;;;;;;;;;;-1:-1:-1;23601:411:0;;;;;:::i;:::-;;:::i;:::-;;35267:113;;;;;;;;;;-1:-1:-1;35355:10:0;:17;35267:113;;;15088:25:1;;;15076:2;15061:18;35267:113:0;14942:177:1;24968:339:0;;;;;;;;;;-1:-1:-1;24968:339:0;;;;;:::i;:::-;;:::i;34935:256::-;;;;;;;;;;-1:-1:-1;34935:256:0;;;;;:::i;:::-;;:::i;43329:38::-;;;;;;;;;;;;43363:4;43329:38;;25378:185;;;;;;;;;;-1:-1:-1;25378:185:0;;;;;:::i;:::-;;:::i;35457:233::-;;;;;;;;;;-1:-1:-1;35457:233:0;;;;;:::i;:::-;;:::i;44960:141::-;;;;;;;;;;-1:-1:-1;44960:141:0;;;;;:::i;:::-;;:::i;22213:239::-;;;;;;;;;;-1:-1:-1;22213:239:0;;;;;:::i;:::-;;:::i;21943:208::-;;;;;;;;;;-1:-1:-1;21943:208:0;;;;;:::i;:::-;;:::i;42416:94::-;;;;;;;;;;;;;:::i;44311:433::-;;;;;;;;;;-1:-1:-1;44311:433:0;;;;;:::i;:::-;;:::i;45109:117::-;;;;;;;;;;;;;:::i;41765:87::-;;;;;;;;;;-1:-1:-1;41838:6:0;;-1:-1:-1;;;;;41838:6:0;41765:87;;45238;;;;;;;;;;-1:-1:-1;45238:87:0;;;;;:::i;:::-;;:::i;22688:104::-;;;;;;;;;;;;;:::i;43374:30::-;;;;;;;;;;;;;;;;43743:560;;;;;;:::i;:::-;;:::i;24371:295::-;;;;;;;;;;-1:-1:-1;24371:295:0;;;;;:::i;:::-;;:::i;43249:33::-;;;;;;;;;;;;;;;;25634:328;;;;;;;;;;-1:-1:-1;25634:328:0;;;;;:::i;:::-;;:::i;22863:334::-;;;;;;;;;;-1:-1:-1;22863:334:0;;;;;:::i;:::-;;:::i;43289:33::-;;;;;;;;;;-1:-1:-1;43289:33:0;;;;;;;;44861:91;;;;;;;;;;;;;:::i;44752:97::-;;;;;;;;;;;;;:::i;24737:164::-;;;;;;;;;;-1:-1:-1;24737:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24858:25:0;;;24834:4;24858:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24737:164;42665:192;;;;;;;;;;-1:-1:-1;42665:192:0;;;;;:::i;:::-;;:::i;34627:224::-;34729:4;-1:-1:-1;;;;;;34753:50:0;;-1:-1:-1;;;34753:50:0;;:90;;;34807:36;34831:11;34807:23;:36::i;:::-;34746:97;34627:224;-1:-1:-1;;34627:224:0:o;22519:100::-;22573:13;22606:5;22599:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22519:100;:::o;24078:221::-;24154:7;27561:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27561:16:0;24174:73;;;;-1:-1:-1;;;24174:73:0;;12311:2:1;24174:73:0;;;12293:21:1;12350:2;12330:18;;;12323:30;12389:34;12369:18;;;12362:62;-1:-1:-1;;;12440:18:1;;;12433:42;12492:19;;24174:73:0;;;;;;;;;-1:-1:-1;24267:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24267:24:0;;24078:221::o;23601:411::-;23682:13;23698:23;23713:7;23698:14;:23::i;:::-;23682:39;;23746:5;-1:-1:-1;;;;;23740:11:0;:2;-1:-1:-1;;;;;23740:11:0;;;23732:57;;;;-1:-1:-1;;;23732:57:0;;13911:2:1;23732:57:0;;;13893:21:1;13950:2;13930:18;;;13923:30;13989:34;13969:18;;;13962:62;-1:-1:-1;;;14040:18:1;;;14033:31;14081:19;;23732:57:0;13709:397:1;23732:57:0;20128:10;-1:-1:-1;;;;;23824:21:0;;;;:62;;-1:-1:-1;23849:37:0;23866:5;20128:10;24737:164;:::i;23849:37::-;23802:168;;;;-1:-1:-1;;;23802:168:0;;9936:2:1;23802:168:0;;;9918:21:1;9975:2;9955:18;;;9948:30;10014:34;9994:18;;;9987:62;10085:26;10065:18;;;10058:54;10129:19;;23802:168:0;9734:420:1;23802:168:0;23983:21;23992:2;23996:7;23983:8;:21::i;:::-;23671:341;23601:411;;:::o;24968:339::-;25163:41;20128:10;25196:7;25163:18;:41::i;:::-;25155:103;;;;-1:-1:-1;;;25155:103:0;;;;;;;:::i;:::-;25271:28;25281:4;25287:2;25291:7;25271:9;:28::i;34935:256::-;35032:7;35068:23;35085:5;35068:16;:23::i;:::-;35060:5;:31;35052:87;;;;-1:-1:-1;;;35052:87:0;;6099:2:1;35052:87:0;;;6081:21:1;6138:2;6118:18;;;6111:30;6177:34;6157:18;;;6150:62;-1:-1:-1;;;6228:18:1;;;6221:41;6279:19;;35052:87:0;5897:407:1;35052:87:0;-1:-1:-1;;;;;;35157:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34935:256::o;25378:185::-;25516:39;25533:4;25539:2;25543:7;25516:39;;;;;;;;;;;;:16;:39::i;35457:233::-;35532:7;35568:30;35355:10;:17;;35267:113;35568:30;35560:5;:38;35552:95;;;;-1:-1:-1;;;35552:95:0;;14731:2:1;35552:95:0;;;14713:21:1;14770:2;14750:18;;;14743:30;14809:34;14789:18;;;14782:62;-1:-1:-1;;;14860:18:1;;;14853:42;14912:19;;35552:95:0;14529:408:1;35552:95:0;35665:10;35676:5;35665:17;;;;;;;;:::i;:::-;;;;;;;;;35658:24;;35457:233;;;:::o;44960:141::-;41838:6;;-1:-1:-1;;;;;41838:6:0;20128:10;41985:23;41977:68;;;;-1:-1:-1;;;41977:68:0;;;;;;;:::i;:::-;45036:21;;::::1;::::0;:8:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;45068:25:0;;::::1;::::0;:12:::1;::::0;:25:::1;::::0;::::1;::::0;::::1;:::i;:::-;;44960:141:::0;:::o;22213:239::-;22285:7;22321:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22321:16:0;22356:19;22348:73;;;;-1:-1:-1;;;22348:73:0;;10772:2:1;22348:73:0;;;10754:21:1;10811:2;10791:18;;;10784:30;10850:34;10830:18;;;10823:62;-1:-1:-1;;;10901:18:1;;;10894:39;10950:19;;22348:73:0;10570:405:1;21943:208:0;22015:7;-1:-1:-1;;;;;22043:19:0;;22035:74;;;;-1:-1:-1;;;22035:74:0;;10361:2:1;22035:74:0;;;10343:21:1;10400:2;10380:18;;;10373:30;10439:34;10419:18;;;10412:62;-1:-1:-1;;;10490:18:1;;;10483:40;10540:19;;22035:74:0;10159:406:1;22035:74:0;-1:-1:-1;;;;;;22127:16:0;;;;;:9;:16;;;;;;;21943:208::o;42416:94::-;41838:6;;-1:-1:-1;;;;;41838:6:0;20128:10;41985:23;41977:68;;;;-1:-1:-1;;;41977:68:0;;;;;;;:::i;:::-;42481:21:::1;42499:1;42481:9;:21::i;:::-;42416:94::o:0;44311:433::-;44364:14;44381:13;35355:10;:17;;35267:113;44381:13;44413;;44364:30;;-1:-1:-1;44413:13:0;;44405:52;;;;-1:-1:-1;;;44405:52:0;;9581:2:1;44405:52:0;;;9563:21:1;9620:2;9600:18;;;9593:30;9659:28;9639:18;;;9632:56;9705:18;;44405:52:0;9379:350:1;44405:52:0;44488:2;44476:8;:14;;44468:75;;;;-1:-1:-1;;;44468:75:0;;;;;;;:::i;:::-;44570:15;;44562:6;:23;44554:66;;;;-1:-1:-1;;;44554:66:0;;8050:2:1;44554:66:0;;;8032:21:1;8089:2;8069:18;;;8062:30;8128:32;8108:18;;;8101:60;8178:18;;44554:66:0;7848:354:1;44554:66:0;44646:6;44641:96;44662:8;44658:1;:12;44641:96;;;44692:33;44702:10;44714;44723:1;44714:6;:10;:::i;:::-;44692:9;:33::i;:::-;44672:3;;;;:::i;:::-;;;;44641:96;;45109:117;41838:6;;-1:-1:-1;;;;;41838:6:0;20128:10;41985:23;41977:68;;;;-1:-1:-1;;;41977:68:0;;;;;;;:::i;:::-;45170:47:::1;::::0;45178:10:::1;::::0;45195:21:::1;45170:47:::0;::::1;;;::::0;::::1;::::0;;;45195:21;45178:10;45170:47;::::1;;;;;;45162:56;;;::::0;::::1;45238:87:::0;41838:6;;-1:-1:-1;;;;;41838:6:0;20128:10;41985:23;41977:68;;;;-1:-1:-1;;;41977:68:0;;;;;;;:::i;:::-;45301:5:::1;:16:::0;45238:87::o;22688:104::-;22744:13;22777:7;22770:14;;;;;:::i;43743:560::-;43800:14;43817:13;35355:10;:17;;35267:113;43817:13;43849;;43800:30;;-1:-1:-1;43849:13:0;;43841:52;;;;-1:-1:-1;;;43841:52:0;;9581:2:1;43841:52:0;;;9563:21:1;9620:2;9600:18;;;9593:30;9659:28;9639:18;;;9632:56;9705:18;;43841:52:0;9379:350:1;43841:52:0;43924:2;43912:8;:14;;43904:75;;;;-1:-1:-1;;;43904:75:0;;;;;;;:::i;:::-;43363:4;43998:17;44007:8;43998:6;:17;:::i;:::-;:31;;43990:66;;;;-1:-1:-1;;;43990:66:0;;11182:2:1;43990:66:0;;;11164:21:1;11221:2;11201:18;;;11194:30;-1:-1:-1;;;11240:18:1;;;11233:52;11302:18;;43990:66:0;10980:346:1;43990:66:0;41838:6;;-1:-1:-1;;;;;41838:6:0;44071:10;:21;44067:123;;44138:8;44130:5;;:16;;;;:::i;:::-;44117:9;:29;;44109:69;;;;-1:-1:-1;;;44109:69:0;;7694:2:1;44109:69:0;;;7676:21:1;7733:2;7713:18;;;7706:30;7772:29;7752:18;;;7745:57;7819:18;;44109:69:0;7492:351:1;44109:69:0;44205:6;44200:96;44221:8;44217:1;:12;44200:96;;;44251:33;44261:10;44273;44282:1;44273:6;:10;:::i;44251:33::-;44231:3;;;;:::i;:::-;;;;44200:96;;24371:295;-1:-1:-1;;;;;24474:24:0;;20128:10;24474:24;;24466:62;;;;-1:-1:-1;;;24466:62:0;;8814:2:1;24466:62:0;;;8796:21:1;8853:2;8833:18;;;8826:30;8892:27;8872:18;;;8865:55;8937:18;;24466:62:0;8612:349:1;24466:62:0;20128:10;24541:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24541:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24541:53:0;;;;;;;;;;24610:48;;5621:41:1;;;24541:42:0;;20128:10;24610:48;;5594:18:1;24610:48:0;;;;;;;24371:295;;:::o;25634:328::-;25809:41;20128:10;25842:7;25809:18;:41::i;:::-;25801:103;;;;-1:-1:-1;;;25801:103:0;;;;;;;:::i;:::-;25915:39;25929:4;25935:2;25939:7;25948:5;25915:13;:39::i;:::-;25634:328;;;;:::o;22863:334::-;27537:4;27561:16;;;:7;:16;;;;;;22936:13;;-1:-1:-1;;;;;27561:16:0;22962:76;;;;-1:-1:-1;;;22962:76:0;;13495:2:1;22962:76:0;;;13477:21:1;13534:2;13514:18;;;13507:30;13573:34;13553:18;;;13546:62;-1:-1:-1;;;13624:18:1;;;13617:45;13679:19;;22962:76:0;13293:411:1;22962:76:0;23051:21;23075:10;:8;:10::i;:::-;23051:34;;23127:1;23109:7;23103:21;:25;:86;;;;;;;;;;;;;;;;;23155:7;23164:18;:7;:16;:18::i;:::-;23138:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23103:86;23096:93;22863:334;-1:-1:-1;;;22863:334:0:o;44861:91::-;41838:6;;-1:-1:-1;;;;;41838:6:0;20128:10;41985:23;41977:68;;;;-1:-1:-1;;;41977:68:0;;;;;;;:::i;:::-;44931:13:::1;::::0;;-1:-1:-1;;44914:30:0;::::1;44931:13;::::0;;::::1;44930:14;44914:30;::::0;;44861:91::o;44752:97::-;44796:13;44829:12;44822:19;;;;;:::i;42665:192::-;41838:6;;-1:-1:-1;;;;;41838:6:0;20128:10;41985:23;41977:68;;;;-1:-1:-1;;;41977:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42754:22:0;::::1;42746:73;;;::::0;-1:-1:-1;;;42746:73:0;;6930:2:1;42746:73:0::1;::::0;::::1;6912:21:1::0;6969:2;6949:18;;;6942:30;7008:34;6988:18;;;6981:62;-1:-1:-1;;;7059:18:1;;;7052:36;7105:19;;42746:73:0::1;6728:402:1::0;42746:73:0::1;42830:19;42840:8;42830:9;:19::i;:::-;42665:192:::0;:::o;21574:305::-;21676:4;-1:-1:-1;;;;;;21713:40:0;;-1:-1:-1;;;21713:40:0;;:105;;-1:-1:-1;;;;;;;21770:48:0;;-1:-1:-1;;;21770:48:0;21713:105;:158;;;-1:-1:-1;;;;;;;;;;7514:40:0;;;21835:36;7405:157;31454:174;31529:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31529:29:0;-1:-1:-1;;;;;31529:29:0;;;;;;;;:24;;31583:23;31529:24;31583:14;:23::i;:::-;-1:-1:-1;;;;;31574:46:0;;;;;;;;;;;31454:174;;:::o;27766:348::-;27859:4;27561:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27561:16:0;27876:73;;;;-1:-1:-1;;;27876:73:0;;9168:2:1;27876:73:0;;;9150:21:1;9207:2;9187:18;;;9180:30;9246:34;9226:18;;;9219:62;-1:-1:-1;;;9297:18:1;;;9290:42;9349:19;;27876:73:0;8966:408:1;27876:73:0;27960:13;27976:23;27991:7;27976:14;:23::i;:::-;27960:39;;28029:5;-1:-1:-1;;;;;28018:16:0;:7;-1:-1:-1;;;;;28018:16:0;;:51;;;;28062:7;-1:-1:-1;;;;;28038:31:0;:20;28050:7;28038:11;:20::i;:::-;-1:-1:-1;;;;;28038:31:0;;28018:51;:87;;;-1:-1:-1;;;;;;24858:25:0;;;24834:4;24858:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28073:32;28010:96;27766:348;-1:-1:-1;;;;27766:348:0:o;30758:578::-;30917:4;-1:-1:-1;;;;;30890:31:0;:23;30905:7;30890:14;:23::i;:::-;-1:-1:-1;;;;;30890:31:0;;30882:85;;;;-1:-1:-1;;;30882:85:0;;13085:2:1;30882:85:0;;;13067:21:1;13124:2;13104:18;;;13097:30;13163:34;13143:18;;;13136:62;-1:-1:-1;;;13214:18:1;;;13207:39;13263:19;;30882:85:0;12883:405:1;30882:85:0;-1:-1:-1;;;;;30986:16:0;;30978:65;;;;-1:-1:-1;;;30978:65:0;;8409:2:1;30978:65:0;;;8391:21:1;8448:2;8428:18;;;8421:30;8487:34;8467:18;;;8460:62;-1:-1:-1;;;8538:18:1;;;8531:34;8582:19;;30978:65:0;8207:400:1;30978:65:0;31056:39;31077:4;31083:2;31087:7;31056:20;:39::i;:::-;31160:29;31177:1;31181:7;31160:8;:29::i;:::-;-1:-1:-1;;;;;31202:15:0;;;;;;:9;:15;;;;;:20;;31221:1;;31202:15;:20;;31221:1;;31202:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31233:13:0;;;;;;:9;:13;;;;;:18;;31250:1;;31233:13;:18;;31250:1;;31233:18;:::i;:::-;;;;-1:-1:-1;;31262:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31262:21:0;-1:-1:-1;;;;;31262:21:0;;;;;;;;;31301:27;;31262:16;;31301:27;;;;;;;30758:578;;;:::o;42865:173::-;42940:6;;;-1:-1:-1;;;;;42957:17:0;;;-1:-1:-1;;;;;;42957:17:0;;;;;;;42990:40;;42940:6;;;42957:17;42940:6;;42990:40;;42921:16;;42990:40;42910:128;42865:173;:::o;28456:110::-;28532:26;28542:2;28546:7;28532:26;;;;;;;;;;;;:9;:26::i;26844:315::-;27001:28;27011:4;27017:2;27021:7;27001:9;:28::i;:::-;27048:48;27071:4;27077:2;27081:7;27090:5;27048:22;:48::i;:::-;27040:111;;;;-1:-1:-1;;;27040:111:0;;;;;;;:::i;43630:101::-;43682:13;43715:8;43708:15;;;;;:::i;7880:723::-;7936:13;8157:10;8153:53;;-1:-1:-1;;8184:10:0;;;;;;;;;;;;-1:-1:-1;;;8184:10:0;;;;;7880:723::o;8153:53::-;8231:5;8216:12;8272:78;8279:9;;8272:78;;8305:8;;;;:::i;:::-;;-1:-1:-1;8328:10:0;;-1:-1:-1;8336:2:0;8328:10;;:::i;:::-;;;8272:78;;;8360:19;8392:6;8382:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8382:17:0;;8360:39;;8410:154;8417:10;;8410:154;;8444:11;8454:1;8444:11;;:::i;:::-;;-1:-1:-1;8513:10:0;8521:2;8513:5;:10;:::i;:::-;8500:24;;:2;:24;:::i;:::-;8487:39;;8470:6;8477;8470:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8470:56:0;;;;;;;;-1:-1:-1;8541:11:0;8550:2;8541:11;;:::i;:::-;;;8410:154;;36303:589;-1:-1:-1;;;;;36509:18:0;;36505:187;;36544:40;36576:7;37719:10;:17;;37692:24;;;;:15;:24;;;;;:44;;;37747:24;;;;;;;;;;;;37615:164;36544:40;36505:187;;;36614:2;-1:-1:-1;;;;;36606:10:0;:4;-1:-1:-1;;;;;36606:10:0;;36602:90;;36633:47;36666:4;36672:7;36633:32;:47::i;:::-;-1:-1:-1;;;;;36706:16:0;;36702:183;;36739:45;36776:7;36739:36;:45::i;36702:183::-;36812:4;-1:-1:-1;;;;;36806:10:0;:2;-1:-1:-1;;;;;36806:10:0;;36802:83;;36833:40;36861:2;36865:7;36833:27;:40::i;28793:321::-;28923:18;28929:2;28933:7;28923:5;:18::i;:::-;28974:54;29005:1;29009:2;29013:7;29022:5;28974:22;:54::i;:::-;28952:154;;;;-1:-1:-1;;;28952:154:0;;;;;;;:::i;32193:799::-;32348:4;-1:-1:-1;;;;;32369:13:0;;10728:20;10776:8;32365:620;;32405:72;;-1:-1:-1;;;32405:72:0;;-1:-1:-1;;;;;32405:36:0;;;;;:72;;20128:10;;32456:4;;32462:7;;32471:5;;32405:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32405:72:0;;;;;;;;-1:-1:-1;;32405:72:0;;;;;;;;;;;;:::i;:::-;;;32401:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32647:13:0;;32643:272;;32690:60;;-1:-1:-1;;;32690:60:0;;;;;;;:::i;32643:272::-;32865:6;32859:13;32850:6;32846:2;32842:15;32835:38;32401:529;-1:-1:-1;;;;;;32528:51:0;-1:-1:-1;;;32528:51:0;;-1:-1:-1;32521:58:0;;32365:620;-1:-1:-1;32969:4:0;32193:799;;;;;;:::o;38406:988::-;38672:22;38722:1;38697:22;38714:4;38697:16;:22::i;:::-;:26;;;;:::i;:::-;38734:18;38755:26;;;:17;:26;;;;;;38672:51;;-1:-1:-1;38888:28:0;;;38884:328;;-1:-1:-1;;;;;38955:18:0;;38933:19;38955:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39006:30;;;;;;:44;;;39123:30;;:17;:30;;;;;:43;;;38884:328;-1:-1:-1;39308:26:0;;;;:17;:26;;;;;;;;39301:33;;;-1:-1:-1;;;;;39352:18:0;;;;;:12;:18;;;;;:34;;;;;;;39345:41;38406:988::o;39689:1079::-;39967:10;:17;39942:22;;39967:21;;39987:1;;39967:21;:::i;:::-;39999:18;40020:24;;;:15;:24;;;;;;40393:10;:26;;39942:46;;-1:-1:-1;40020:24:0;;39942:46;;40393:26;;;;;;:::i;:::-;;;;;;;;;40371:48;;40457:11;40432:10;40443;40432:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40537:28;;;:15;:28;;;;;;;:41;;;40709:24;;;;;40702:31;40744:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39760:1008;;;39689:1079;:::o;37193:221::-;37278:14;37295:20;37312:2;37295:16;:20::i;:::-;-1:-1:-1;;;;;37326:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37371:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37193:221:0:o;29450:382::-;-1:-1:-1;;;;;29530:16:0;;29522:61;;;;-1:-1:-1;;;29522:61:0;;11533:2:1;29522:61:0;;;11515:21:1;;;11552:18;;;11545:30;11611:34;11591:18;;;11584:62;11663:18;;29522:61:0;11331:356:1;29522:61:0;27537:4;27561:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27561:16:0;:30;29594:58;;;;-1:-1:-1;;;29594:58:0;;7337:2:1;29594:58:0;;;7319:21:1;7376:2;7356:18;;;7349:30;7415;7395:18;;;7388:58;7463:18;;29594:58:0;7135:352:1;29594:58:0;29665:45;29694:1;29698:2;29702:7;29665:20;:45::i;:::-;-1:-1:-1;;;;;29723:13:0;;;;;;:9;:13;;;;;:18;;29740:1;;29723:13;:18;;29740:1;;29723:18;:::i;:::-;;;;-1:-1:-1;;29752:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29752:21:0;-1:-1:-1;;;;;29752:21:0;;;;;;;;29791:33;;29752:16;;;29791:33;;29752:16;;29791:33;29450:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:1:o;4988:488::-;-1:-1:-1;;;;;5257:15:1;;;5239:34;;5309:15;;5304:2;5289:18;;5282:43;5356:2;5341:18;;5334:34;;;5404:3;5399:2;5384:18;;5377:31;;;5182:4;;5425:45;;5450:19;;5442:6;5425:45;:::i;:::-;5417:53;4988:488;-1:-1:-1;;;;;;4988:488:1:o;5673:219::-;5822:2;5811:9;5804:21;5785:4;5842:44;5882:2;5871:9;5867:18;5859:6;5842:44;:::i;6309:414::-;6511:2;6493:21;;;6550:2;6530:18;;;6523:30;6589:34;6584:2;6569:18;;6562:62;-1:-1:-1;;;6655:2:1;6640:18;;6633:48;6713:3;6698:19;;6309:414::o;11692:412::-;11894:2;11876:21;;;11933:2;11913:18;;;11906:30;11972:34;11967:2;11952:18;;11945:62;-1:-1:-1;;;12038:2:1;12023:18;;12016:46;12094:3;12079:19;;11692:412::o;12522:356::-;12724:2;12706:21;;;12743:18;;;12736:30;12802:34;12797:2;12782:18;;12775:62;12869:2;12854:18;;12522:356::o;14111:413::-;14313:2;14295:21;;;14352:2;14332:18;;;14325:30;14391:34;14386:2;14371:18;;14364:62;-1:-1:-1;;;14457:2:1;14442:18;;14435:47;14514:3;14499:19;;14111:413::o;15124:128::-;15164:3;15195:1;15191:6;15188:1;15185:13;15182:39;;;15201:18;;:::i;:::-;-1:-1:-1;15237:9:1;;15124:128::o;15257:120::-;15297:1;15323;15313:35;;15328:18;;:::i;:::-;-1:-1:-1;15362:9:1;;15257:120::o;15382:168::-;15422:7;15488:1;15484;15480:6;15476:14;15473:1;15470:21;15465:1;15458:9;15451:17;15447:45;15444:71;;;15495:18;;:::i;:::-;-1:-1:-1;15535:9:1;;15382:168::o;15555:125::-;15595:4;15623:1;15620;15617:8;15614:34;;;15628:18;;:::i;:::-;-1:-1:-1;15665:9:1;;15555:125::o;15685:258::-;15757:1;15767:113;15781:6;15778:1;15775:13;15767:113;;;15857:11;;;15851:18;15838:11;;;15831:39;15803:2;15796:10;15767:113;;;15898:6;15895:1;15892:13;15889:48;;;-1:-1:-1;;15933:1:1;15915:16;;15908:27;15685:258::o;15948:380::-;16027:1;16023:12;;;;16070;;;16091:61;;16145:4;16137:6;16133:17;16123:27;;16091:61;16198:2;16190:6;16187:14;16167:18;16164:38;16161:161;;;16244:10;16239:3;16235:20;16232:1;16225:31;16279:4;16276:1;16269:15;16307:4;16304:1;16297:15;16161:161;;15948:380;;;:::o;16333:135::-;16372:3;-1:-1:-1;;16393:17:1;;16390:43;;;16413:18;;:::i;:::-;-1:-1:-1;16460:1:1;16449:13;;16333:135::o;16473:112::-;16505:1;16531;16521:35;;16536:18;;:::i;:::-;-1:-1:-1;16570:9:1;;16473:112::o;16590:127::-;16651:10;16646:3;16642:20;16639:1;16632:31;16682:4;16679:1;16672:15;16706:4;16703:1;16696:15;16722:127;16783:10;16778:3;16774:20;16771:1;16764:31;16814:4;16811:1;16804:15;16838:4;16835:1;16828:15;16854:127;16915:10;16910:3;16906:20;16903:1;16896:31;16946:4;16943:1;16936:15;16970:4;16967:1;16960:15;16986:127;17047:10;17042:3;17038:20;17035:1;17028:31;17078:4;17075:1;17068:15;17102:4;17099:1;17092:15;17118:127;17179:10;17174:3;17170:20;17167:1;17160:31;17210:4;17207:1;17200:15;17234:4;17231:1;17224:15;17250:131;-1:-1:-1;;;;;;17324:32:1;;17314:43;;17304:71;;17371:1;17368;17361:12

Swarm Source

ipfs://9ba26c4ec4042216938a098a3cf330f341e1ba99d665742d85a78729511a69fb
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.