ETH Price: $3,484.50 (-1.43%)
Gas: 4 Gwei

Coopmas Advent Calendar 2022 - Baubles (CoopyAdvent)
 

Overview

TokenID

12

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
CoopyNFT

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-28
*/

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

/**
 *Submitted for verification at BscScan.com on 2022-05-29
*/

// File: Libraries.sol



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

/**
 * @dev 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;
    }
}

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);
    }
}

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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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);
            }
        }
    }
}

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;
}

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);

    /**
     * @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);
}

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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}
/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
/**
 * @dev 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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner"
        );
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}



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

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

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

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

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

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

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

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

/**
 * @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();
    }
}

interface IERC20 {
    function totalSupply() external view returns (uint256);

    function decimals() external view returns (uint8);

    function symbol() external view returns (string memory);

    function name() external view returns (string memory);

    function getOwner() external view returns (address);

    function balanceOf(address account) external view returns (uint256);

    function transfer(address recipient, uint256 amount)
        external
        returns (bool);

    function allowance(address _owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}
// File: B.sol


pragma solidity >=0.8.0 <0.9.0;

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

    string baseURI="https://mlnft.mypinata.cloud/ipfs/QmcaHV7fVtyhfEVq2s1qF2rK7YQsMWUeqTEpYriVSzu82m";

    uint256 public cost = 0.001 ether;

    uint256 public currentSupply = 0;
    uint public currentEpoch = 0;
    uint256 public maxMintAmount = 4;
    bool public paused = false;

    constructor() ERC721("Coopmas Advent Calendar 2022 - Baubles", "CoopyAdvent") {
    }

    // internal
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    mapping (address=>uint) epoch;
    mapping (address=> uint) currentMintcount;

    function mintsLeft(address account) public view returns(uint){
        if(epoch[account]<currentEpoch) return maxMintAmount;
        return maxMintAmount-currentMintcount[account];
    }
    function newEpoch(uint mints) external onlyOwner{
        currentEpoch++;
        currentSupply+=mints;
    }
    function mintsPerEpoch(uint mints) external onlyOwner{
        maxMintAmount=mints;
    }
    event OnMint(address account, uint firstID, uint count);
    // Mint public
    function mint(uint8 _mintAmount) public payable {
        require(currentEpoch>0,"minting not yet started");
        uint256 supply = totalSupply();
        address msgSender=msg.sender;
        require(_mintAmount > 0);
        require(_mintAmount <= maxMintAmount);
        require(supply + _mintAmount <= currentSupply);

        if (msg.sender != owner()) {
            require(!paused);
            require(msg.value >= cost * _mintAmount);
            uint remainingMints=mintsLeft(msgSender);
            require(remainingMints>=_mintAmount,"No mints remaining");
            if(epoch[msgSender]==currentEpoch){
                currentMintcount[msgSender]+=_mintAmount;
            }else currentMintcount[msgSender]=_mintAmount;
            epoch[msgSender]=currentEpoch;
        }

        for (uint256 i = 1; i <= _mintAmount; i++) {
            _safeMint(msgSender, supply + i);
        }
        emit OnMint(msgSender,supply+1,_mintAmount);
    }


    // Misc
    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        
        string memory currentBaseURI = _baseURI();
        return currentBaseURI;
    }



    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

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


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



    function pause(bool _state) public onlyOwner {
        paused = _state;
    }
    function OwnerClaimETH() public onlyOwner {
        (bool sent,)=msg.sender.call{value: address(this).balance}("");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"firstID","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"count","type":"uint256"}],"name":"OnMint","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":"OwnerClaimETH","outputs":[],"stateMutability":"nonpayable","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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentEpoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"mintsLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mints","type":"uint256"}],"name":"mintsPerEpoch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mints","type":"uint256"}],"name":"newEpoch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]

6101006040526050608081815290620024e160a039600b90620000239082620001cd565b5066038d7ea4c68000600c556000600d819055600e556004600f556010805460ff191690553480156200005557600080fd5b50604051806060016040528060268152602001620024bb6026913960408051808201909152600b81526a10dbdbdc1e50591d995b9d60aa1b60208201526000620000a08382620001cd565b506001620000af8282620001cd565b505050620000cc620000c6620000d260201b60201c565b620000d6565b62000299565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200015357607f821691505b6020821081036200017457634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001c857600081815260208120601f850160051c81016020861015620001a35750805b601f850160051c820191505b81811015620001c457828155600101620001af565b5050505b505050565b81516001600160401b03811115620001e957620001e962000128565b6200020181620001fa84546200013e565b846200017a565b602080601f831160018114620002395760008415620002205750858301515b600019600386901b1c1916600185901b178555620001c4565b600085815260208120601f198616915b828110156200026a5788860151825594840194600190910190840162000249565b5085821015620002895787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61221280620002a96000396000f3fe6080604052600436106101f95760003560e01c80635c975abb1161010d57806380de2c27116100a0578063b88d4fde1161006f578063b88d4fde14610561578063c4ed916b14610581578063c87b56dd146105a1578063e985e9c5146105c1578063f2fde38b1461060a57600080fd5b806380de2c27146104ee5780638da5cb5b1461050e57806395d89b411461052c578063a22cb4651461054157600080fd5b8063715018a6116100dc578063715018a6146104ad57806376671808146104c2578063771282f6146104d85780637f00c7a61461030857600080fd5b80635c975abb146104405780636352211e1461045a5780636ecd23061461047a57806370a082311461048d57600080fd5b806318160ddd1161019057806342842e0e1161015f57806342842e0e14610393578063438b6300146103b357806344a0d68a146103e05780634f6ccce71461040057806355f804b31461042057600080fd5b806318160ddd14610328578063239c70ae1461033d57806323b872dd146103535780632f745c591461037357600080fd5b8063095ea7b3116101cc578063095ea7b3146102af57806312084fd9146102cf57806313faede6146102e457806316bff3b11461030857600080fd5b806301ffc9a7146101fe57806302329a291461023357806306fdde0314610255578063081812fc14610277575b600080fd5b34801561020a57600080fd5b5061021e610219366004611b5e565b61062a565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061025361024e366004611b90565b610655565b005b34801561026157600080fd5b5061026a61069b565b60405161022a9190611bf1565b34801561028357600080fd5b50610297610292366004611c04565b61072d565b6040516001600160a01b03909116815260200161022a565b3480156102bb57600080fd5b506102536102ca366004611c34565b6107c2565b3480156102db57600080fd5b506102536108d7565b3480156102f057600080fd5b506102fa600c5481565b60405190815260200161022a565b34801561031457600080fd5b50610253610323366004611c04565b61094e565b34801561033457600080fd5b506008546102fa565b34801561034957600080fd5b506102fa600f5481565b34801561035f57600080fd5b5061025361036e366004611c5e565b61097d565b34801561037f57600080fd5b506102fa61038e366004611c34565b6109ae565b34801561039f57600080fd5b506102536103ae366004611c5e565b610a44565b3480156103bf57600080fd5b506103d36103ce366004611c9a565b610a5f565b60405161022a9190611cb5565b3480156103ec57600080fd5b506102536103fb366004611c04565b610b01565b34801561040c57600080fd5b506102fa61041b366004611c04565b610b30565b34801561042c57600080fd5b5061025361043b366004611d85565b610bc3565b34801561044c57600080fd5b5060105461021e9060ff1681565b34801561046657600080fd5b50610297610475366004611c04565b610bfd565b610253610488366004611dce565b610c74565b34801561049957600080fd5b506102fa6104a8366004611c9a565b610ec7565b3480156104b957600080fd5b50610253610f4e565b3480156104ce57600080fd5b506102fa600e5481565b3480156104e457600080fd5b506102fa600d5481565b3480156104fa57600080fd5b506102fa610509366004611c9a565b610f84565b34801561051a57600080fd5b50600a546001600160a01b0316610297565b34801561053857600080fd5b5061026a610fd6565b34801561054d57600080fd5b5061025361055c366004611df1565b610fe5565b34801561056d57600080fd5b5061025361057c366004611e24565b610ff0565b34801561058d57600080fd5b5061025361059c366004611c04565b611022565b3480156105ad57600080fd5b5061026a6105bc366004611c04565b61107b565b3480156105cd57600080fd5b5061021e6105dc366004611ea0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561061657600080fd5b50610253610625366004611c9a565b61110b565b60006001600160e01b0319821663780e9d6360e01b148061064f575061064f826111a6565b92915050565b600a546001600160a01b031633146106885760405162461bcd60e51b815260040161067f90611eca565b60405180910390fd5b6010805460ff1916911515919091179055565b6060600080546106aa90611eff565b80601f01602080910402602001604051908101604052809291908181526020018280546106d690611eff565b80156107235780601f106106f857610100808354040283529160200191610723565b820191906000526020600020905b81548152906001019060200180831161070657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107a65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161067f565b506000908152600460205260409020546001600160a01b031690565b60006107cd82610bfd565b9050806001600160a01b0316836001600160a01b03160361083a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161067f565b336001600160a01b0382161480610856575061085681336105dc565b6108c85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161067f565b6108d283836111f6565b505050565b600a546001600160a01b031633146109015760405162461bcd60e51b815260040161067f90611eca565b604051600090339047908381818185875af1925050503d8060008114610943576040519150601f19603f3d011682016040523d82523d6000602084013e610948565b606091505b50505050565b600a546001600160a01b031633146109785760405162461bcd60e51b815260040161067f90611eca565b600f55565b6109873382611264565b6109a35760405162461bcd60e51b815260040161067f90611f39565b6108d283838361135b565b60006109b983610ec7565b8210610a1b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161067f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108d283838360405180602001604052806000815250610ff0565b60606000610a6c83610ec7565b905060008167ffffffffffffffff811115610a8957610a89611cf9565b604051908082528060200260200182016040528015610ab2578160200160208202803683370190505b50905060005b82811015610af957610aca85826109ae565b828281518110610adc57610adc611f8a565b602090810291909101015280610af181611fb6565b915050610ab8565b509392505050565b600a546001600160a01b03163314610b2b5760405162461bcd60e51b815260040161067f90611eca565b600c55565b6000610b3b60085490565b8210610b9e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161067f565b60088281548110610bb157610bb1611f8a565b90600052602060002001549050919050565b600a546001600160a01b03163314610bed5760405162461bcd60e51b815260040161067f90611eca565b600b610bf9828261201d565b5050565b6000818152600260205260408120546001600160a01b03168061064f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161067f565b6000600e5411610cc65760405162461bcd60e51b815260206004820152601760248201527f6d696e74696e67206e6f74207965742073746172746564000000000000000000604482015260640161067f565b6000610cd160085490565b90503360ff8316610ce157600080fd5b600f548360ff161115610cf357600080fd5b600d54610d0360ff8516846120dd565b1115610d0e57600080fd5b600a546001600160a01b03163314610e365760105460ff1615610d3057600080fd5b8260ff16600c54610d4191906120f0565b341015610d4d57600080fd5b6000610d5882610f84565b90508360ff16811015610da25760405162461bcd60e51b81526020600482015260126024820152714e6f206d696e74732072656d61696e696e6760701b604482015260640161067f565b600e546001600160a01b03831660009081526011602052604090205403610df9576001600160a01b0382166000908152601260205260408120805460ff87169290610dee9084906120dd565b90915550610e189050565b6001600160a01b038216600090815260126020526040902060ff851690555b50600e546001600160a01b0382166000908152601160205260409020555b60015b8360ff168111610e6857610e5682610e5183866120dd565b611502565b80610e6081611fb6565b915050610e39565b507fccf69f462721ec8b22aafda416e016cbcb56c80c266973e03ac70f02f02a607d81610e968460016120dd565b604080516001600160a01b039093168352602083019190915260ff86169082015260600160405180910390a1505050565b60006001600160a01b038216610f325760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161067f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f785760405162461bcd60e51b815260040161067f90611eca565b610f82600061151c565b565b600e546001600160a01b03821660009081526011602052604081205490911115610fb0575050600f5490565b6001600160a01b038216600090815260126020526040902054600f5461064f9190612107565b6060600180546106aa90611eff565b610bf933838361156e565b610ffa3383611264565b6110165760405162461bcd60e51b815260040161067f90611f39565b6109488484848461163c565b600a546001600160a01b0316331461104c5760405162461bcd60e51b815260040161067f90611eca565b600e805490600061105c83611fb6565b919050555080600d600082825461107391906120dd565b909155505050565b6000818152600260205260409020546060906001600160a01b03166110fa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161067f565b600061110461166f565b9392505050565b600a546001600160a01b031633146111355760405162461bcd60e51b815260040161067f90611eca565b6001600160a01b03811661119a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161067f565b6111a38161151c565b50565b60006001600160e01b031982166380ac58cd60e01b14806111d757506001600160e01b03198216635b5e139f60e01b145b8061064f57506301ffc9a760e01b6001600160e01b031983161461064f565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061122b82610bfd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112dd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161067f565b60006112e883610bfd565b9050806001600160a01b0316846001600160a01b0316148061132f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806113535750836001600160a01b03166113488461072d565b6001600160a01b0316145b949350505050565b826001600160a01b031661136e82610bfd565b6001600160a01b0316146113d25760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161067f565b6001600160a01b0382166114345760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161067f565b61143f83838361167e565b61144a6000826111f6565b6001600160a01b0383166000908152600360205260408120805460019290611473908490612107565b90915550506001600160a01b03821660009081526003602052604081208054600192906114a19084906120dd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bf9828260405180602001604052806000815250611736565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036115cf5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161067f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61164784848461135b565b61165384848484611769565b6109485760405162461bcd60e51b815260040161067f9061211a565b6060600b80546106aa90611eff565b6001600160a01b0383166116d9576116d481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6116fc565b816001600160a01b0316836001600160a01b0316146116fc576116fc838261186a565b6001600160a01b038216611713576108d281611907565b826001600160a01b0316826001600160a01b0316146108d2576108d282826119b6565b61174083836119fa565b61174d6000848484611769565b6108d25760405162461bcd60e51b815260040161067f9061211a565b60006001600160a01b0384163b1561185f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117ad90339089908890889060040161216c565b6020604051808303816000875af19250505080156117e8575060408051601f3d908101601f191682019092526117e5918101906121a9565b60015b611845573d808015611816576040519150601f19603f3d011682016040523d82523d6000602084013e61181b565b606091505b50805160000361183d5760405162461bcd60e51b815260040161067f9061211a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611353565b506001949350505050565b6000600161187784610ec7565b6118819190612107565b6000838152600760205260409020549091508082146118d4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061191990600190612107565b6000838152600960205260408120546008805493945090928490811061194157611941611f8a565b90600052602060002001549050806008838154811061196257611962611f8a565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061199a5761199a6121c6565b6001900381819060005260206000200160009055905550505050565b60006119c183610ec7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611a505760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161067f565b6000818152600260205260409020546001600160a01b031615611ab55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161067f565b611ac16000838361167e565b6001600160a01b0382166000908152600360205260408120805460019290611aea9084906120dd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146111a357600080fd5b600060208284031215611b7057600080fd5b813561110481611b48565b80358015158114611b8b57600080fd5b919050565b600060208284031215611ba257600080fd5b61110482611b7b565b6000815180845260005b81811015611bd157602081850181015186830182015201611bb5565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006111046020830184611bab565b600060208284031215611c1657600080fd5b5035919050565b80356001600160a01b0381168114611b8b57600080fd5b60008060408385031215611c4757600080fd5b611c5083611c1d565b946020939093013593505050565b600080600060608486031215611c7357600080fd5b611c7c84611c1d565b9250611c8a60208501611c1d565b9150604084013590509250925092565b600060208284031215611cac57600080fd5b61110482611c1d565b6020808252825182820181905260009190848201906040850190845b81811015611ced57835183529284019291840191600101611cd1565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d2a57611d2a611cf9565b604051601f8501601f19908116603f01168101908282118183101715611d5257611d52611cf9565b81604052809350858152868686011115611d6b57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d9757600080fd5b813567ffffffffffffffff811115611dae57600080fd5b8201601f81018413611dbf57600080fd5b61135384823560208401611d0f565b600060208284031215611de057600080fd5b813560ff8116811461110457600080fd5b60008060408385031215611e0457600080fd5b611e0d83611c1d565b9150611e1b60208401611b7b565b90509250929050565b60008060008060808587031215611e3a57600080fd5b611e4385611c1d565b9350611e5160208601611c1d565b925060408501359150606085013567ffffffffffffffff811115611e7457600080fd5b8501601f81018713611e8557600080fd5b611e9487823560208401611d0f565b91505092959194509250565b60008060408385031215611eb357600080fd5b611ebc83611c1d565b9150611e1b60208401611c1d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611f1357607f821691505b602082108103611f3357634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611fc857611fc8611fa0565b5060010190565b601f8211156108d257600081815260208120601f850160051c81016020861015611ff65750805b601f850160051c820191505b8181101561201557828155600101612002565b505050505050565b815167ffffffffffffffff81111561203757612037611cf9565b61204b816120458454611eff565b84611fcf565b602080601f83116001811461208057600084156120685750858301515b600019600386901b1c1916600185901b178555612015565b600085815260208120601f198616915b828110156120af57888601518255948401946001909101908401612090565b50858210156120cd5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111561064f5761064f611fa0565b808202811582820484141761064f5761064f611fa0565b8181038181111561064f5761064f611fa0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061219f90830184611bab565b9695505050505050565b6000602082840312156121bb57600080fd5b815161110481611b48565b634e487b7160e01b600052603160045260246000fdfea26469706673582212203ef3228c738f811a18dea4fd75bf574be8450709205bd2adc2ed4189e5b1e65564736f6c63430008110033436f6f706d617320416476656e742043616c656e6461722032303232202d20426175626c657368747470733a2f2f6d6c6e66742e6d7970696e6174612e636c6f75642f697066732f516d6361485637665674796866455671327331714632724b375951734d5755657154457059726956537a7538326d

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80635c975abb1161010d57806380de2c27116100a0578063b88d4fde1161006f578063b88d4fde14610561578063c4ed916b14610581578063c87b56dd146105a1578063e985e9c5146105c1578063f2fde38b1461060a57600080fd5b806380de2c27146104ee5780638da5cb5b1461050e57806395d89b411461052c578063a22cb4651461054157600080fd5b8063715018a6116100dc578063715018a6146104ad57806376671808146104c2578063771282f6146104d85780637f00c7a61461030857600080fd5b80635c975abb146104405780636352211e1461045a5780636ecd23061461047a57806370a082311461048d57600080fd5b806318160ddd1161019057806342842e0e1161015f57806342842e0e14610393578063438b6300146103b357806344a0d68a146103e05780634f6ccce71461040057806355f804b31461042057600080fd5b806318160ddd14610328578063239c70ae1461033d57806323b872dd146103535780632f745c591461037357600080fd5b8063095ea7b3116101cc578063095ea7b3146102af57806312084fd9146102cf57806313faede6146102e457806316bff3b11461030857600080fd5b806301ffc9a7146101fe57806302329a291461023357806306fdde0314610255578063081812fc14610277575b600080fd5b34801561020a57600080fd5b5061021e610219366004611b5e565b61062a565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b5061025361024e366004611b90565b610655565b005b34801561026157600080fd5b5061026a61069b565b60405161022a9190611bf1565b34801561028357600080fd5b50610297610292366004611c04565b61072d565b6040516001600160a01b03909116815260200161022a565b3480156102bb57600080fd5b506102536102ca366004611c34565b6107c2565b3480156102db57600080fd5b506102536108d7565b3480156102f057600080fd5b506102fa600c5481565b60405190815260200161022a565b34801561031457600080fd5b50610253610323366004611c04565b61094e565b34801561033457600080fd5b506008546102fa565b34801561034957600080fd5b506102fa600f5481565b34801561035f57600080fd5b5061025361036e366004611c5e565b61097d565b34801561037f57600080fd5b506102fa61038e366004611c34565b6109ae565b34801561039f57600080fd5b506102536103ae366004611c5e565b610a44565b3480156103bf57600080fd5b506103d36103ce366004611c9a565b610a5f565b60405161022a9190611cb5565b3480156103ec57600080fd5b506102536103fb366004611c04565b610b01565b34801561040c57600080fd5b506102fa61041b366004611c04565b610b30565b34801561042c57600080fd5b5061025361043b366004611d85565b610bc3565b34801561044c57600080fd5b5060105461021e9060ff1681565b34801561046657600080fd5b50610297610475366004611c04565b610bfd565b610253610488366004611dce565b610c74565b34801561049957600080fd5b506102fa6104a8366004611c9a565b610ec7565b3480156104b957600080fd5b50610253610f4e565b3480156104ce57600080fd5b506102fa600e5481565b3480156104e457600080fd5b506102fa600d5481565b3480156104fa57600080fd5b506102fa610509366004611c9a565b610f84565b34801561051a57600080fd5b50600a546001600160a01b0316610297565b34801561053857600080fd5b5061026a610fd6565b34801561054d57600080fd5b5061025361055c366004611df1565b610fe5565b34801561056d57600080fd5b5061025361057c366004611e24565b610ff0565b34801561058d57600080fd5b5061025361059c366004611c04565b611022565b3480156105ad57600080fd5b5061026a6105bc366004611c04565b61107b565b3480156105cd57600080fd5b5061021e6105dc366004611ea0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561061657600080fd5b50610253610625366004611c9a565b61110b565b60006001600160e01b0319821663780e9d6360e01b148061064f575061064f826111a6565b92915050565b600a546001600160a01b031633146106885760405162461bcd60e51b815260040161067f90611eca565b60405180910390fd5b6010805460ff1916911515919091179055565b6060600080546106aa90611eff565b80601f01602080910402602001604051908101604052809291908181526020018280546106d690611eff565b80156107235780601f106106f857610100808354040283529160200191610723565b820191906000526020600020905b81548152906001019060200180831161070657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107a65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161067f565b506000908152600460205260409020546001600160a01b031690565b60006107cd82610bfd565b9050806001600160a01b0316836001600160a01b03160361083a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161067f565b336001600160a01b0382161480610856575061085681336105dc565b6108c85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161067f565b6108d283836111f6565b505050565b600a546001600160a01b031633146109015760405162461bcd60e51b815260040161067f90611eca565b604051600090339047908381818185875af1925050503d8060008114610943576040519150601f19603f3d011682016040523d82523d6000602084013e610948565b606091505b50505050565b600a546001600160a01b031633146109785760405162461bcd60e51b815260040161067f90611eca565b600f55565b6109873382611264565b6109a35760405162461bcd60e51b815260040161067f90611f39565b6108d283838361135b565b60006109b983610ec7565b8210610a1b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161067f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6108d283838360405180602001604052806000815250610ff0565b60606000610a6c83610ec7565b905060008167ffffffffffffffff811115610a8957610a89611cf9565b604051908082528060200260200182016040528015610ab2578160200160208202803683370190505b50905060005b82811015610af957610aca85826109ae565b828281518110610adc57610adc611f8a565b602090810291909101015280610af181611fb6565b915050610ab8565b509392505050565b600a546001600160a01b03163314610b2b5760405162461bcd60e51b815260040161067f90611eca565b600c55565b6000610b3b60085490565b8210610b9e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161067f565b60088281548110610bb157610bb1611f8a565b90600052602060002001549050919050565b600a546001600160a01b03163314610bed5760405162461bcd60e51b815260040161067f90611eca565b600b610bf9828261201d565b5050565b6000818152600260205260408120546001600160a01b03168061064f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161067f565b6000600e5411610cc65760405162461bcd60e51b815260206004820152601760248201527f6d696e74696e67206e6f74207965742073746172746564000000000000000000604482015260640161067f565b6000610cd160085490565b90503360ff8316610ce157600080fd5b600f548360ff161115610cf357600080fd5b600d54610d0360ff8516846120dd565b1115610d0e57600080fd5b600a546001600160a01b03163314610e365760105460ff1615610d3057600080fd5b8260ff16600c54610d4191906120f0565b341015610d4d57600080fd5b6000610d5882610f84565b90508360ff16811015610da25760405162461bcd60e51b81526020600482015260126024820152714e6f206d696e74732072656d61696e696e6760701b604482015260640161067f565b600e546001600160a01b03831660009081526011602052604090205403610df9576001600160a01b0382166000908152601260205260408120805460ff87169290610dee9084906120dd565b90915550610e189050565b6001600160a01b038216600090815260126020526040902060ff851690555b50600e546001600160a01b0382166000908152601160205260409020555b60015b8360ff168111610e6857610e5682610e5183866120dd565b611502565b80610e6081611fb6565b915050610e39565b507fccf69f462721ec8b22aafda416e016cbcb56c80c266973e03ac70f02f02a607d81610e968460016120dd565b604080516001600160a01b039093168352602083019190915260ff86169082015260600160405180910390a1505050565b60006001600160a01b038216610f325760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161067f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f785760405162461bcd60e51b815260040161067f90611eca565b610f82600061151c565b565b600e546001600160a01b03821660009081526011602052604081205490911115610fb0575050600f5490565b6001600160a01b038216600090815260126020526040902054600f5461064f9190612107565b6060600180546106aa90611eff565b610bf933838361156e565b610ffa3383611264565b6110165760405162461bcd60e51b815260040161067f90611f39565b6109488484848461163c565b600a546001600160a01b0316331461104c5760405162461bcd60e51b815260040161067f90611eca565b600e805490600061105c83611fb6565b919050555080600d600082825461107391906120dd565b909155505050565b6000818152600260205260409020546060906001600160a01b03166110fa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161067f565b600061110461166f565b9392505050565b600a546001600160a01b031633146111355760405162461bcd60e51b815260040161067f90611eca565b6001600160a01b03811661119a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161067f565b6111a38161151c565b50565b60006001600160e01b031982166380ac58cd60e01b14806111d757506001600160e01b03198216635b5e139f60e01b145b8061064f57506301ffc9a760e01b6001600160e01b031983161461064f565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061122b82610bfd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112dd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161067f565b60006112e883610bfd565b9050806001600160a01b0316846001600160a01b0316148061132f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806113535750836001600160a01b03166113488461072d565b6001600160a01b0316145b949350505050565b826001600160a01b031661136e82610bfd565b6001600160a01b0316146113d25760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161067f565b6001600160a01b0382166114345760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161067f565b61143f83838361167e565b61144a6000826111f6565b6001600160a01b0383166000908152600360205260408120805460019290611473908490612107565b90915550506001600160a01b03821660009081526003602052604081208054600192906114a19084906120dd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bf9828260405180602001604052806000815250611736565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036115cf5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161067f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61164784848461135b565b61165384848484611769565b6109485760405162461bcd60e51b815260040161067f9061211a565b6060600b80546106aa90611eff565b6001600160a01b0383166116d9576116d481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6116fc565b816001600160a01b0316836001600160a01b0316146116fc576116fc838261186a565b6001600160a01b038216611713576108d281611907565b826001600160a01b0316826001600160a01b0316146108d2576108d282826119b6565b61174083836119fa565b61174d6000848484611769565b6108d25760405162461bcd60e51b815260040161067f9061211a565b60006001600160a01b0384163b1561185f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117ad90339089908890889060040161216c565b6020604051808303816000875af19250505080156117e8575060408051601f3d908101601f191682019092526117e5918101906121a9565b60015b611845573d808015611816576040519150601f19603f3d011682016040523d82523d6000602084013e61181b565b606091505b50805160000361183d5760405162461bcd60e51b815260040161067f9061211a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611353565b506001949350505050565b6000600161187784610ec7565b6118819190612107565b6000838152600760205260409020549091508082146118d4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061191990600190612107565b6000838152600960205260408120546008805493945090928490811061194157611941611f8a565b90600052602060002001549050806008838154811061196257611962611f8a565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061199a5761199a6121c6565b6001900381819060005260206000200160009055905550505050565b60006119c183610ec7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611a505760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161067f565b6000818152600260205260409020546001600160a01b031615611ab55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161067f565b611ac16000838361167e565b6001600160a01b0382166000908152600360205260408120805460019290611aea9084906120dd565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146111a357600080fd5b600060208284031215611b7057600080fd5b813561110481611b48565b80358015158114611b8b57600080fd5b919050565b600060208284031215611ba257600080fd5b61110482611b7b565b6000815180845260005b81811015611bd157602081850181015186830182015201611bb5565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006111046020830184611bab565b600060208284031215611c1657600080fd5b5035919050565b80356001600160a01b0381168114611b8b57600080fd5b60008060408385031215611c4757600080fd5b611c5083611c1d565b946020939093013593505050565b600080600060608486031215611c7357600080fd5b611c7c84611c1d565b9250611c8a60208501611c1d565b9150604084013590509250925092565b600060208284031215611cac57600080fd5b61110482611c1d565b6020808252825182820181905260009190848201906040850190845b81811015611ced57835183529284019291840191600101611cd1565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611d2a57611d2a611cf9565b604051601f8501601f19908116603f01168101908282118183101715611d5257611d52611cf9565b81604052809350858152868686011115611d6b57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611d9757600080fd5b813567ffffffffffffffff811115611dae57600080fd5b8201601f81018413611dbf57600080fd5b61135384823560208401611d0f565b600060208284031215611de057600080fd5b813560ff8116811461110457600080fd5b60008060408385031215611e0457600080fd5b611e0d83611c1d565b9150611e1b60208401611b7b565b90509250929050565b60008060008060808587031215611e3a57600080fd5b611e4385611c1d565b9350611e5160208601611c1d565b925060408501359150606085013567ffffffffffffffff811115611e7457600080fd5b8501601f81018713611e8557600080fd5b611e9487823560208401611d0f565b91505092959194509250565b60008060408385031215611eb357600080fd5b611ebc83611c1d565b9150611e1b60208401611c1d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611f1357607f821691505b602082108103611f3357634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611fc857611fc8611fa0565b5060010190565b601f8211156108d257600081815260208120601f850160051c81016020861015611ff65750805b601f850160051c820191505b8181101561201557828155600101612002565b505050505050565b815167ffffffffffffffff81111561203757612037611cf9565b61204b816120458454611eff565b84611fcf565b602080601f83116001811461208057600084156120685750858301515b600019600386901b1c1916600185901b178555612015565b600085815260208120601f198616915b828110156120af57888601518255948401946001909101908401612090565b50858210156120cd5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111561064f5761064f611fa0565b808202811582820484141761064f5761064f611fa0565b8181038181111561064f5761064f611fa0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061219f90830184611bab565b9695505050505050565b6000602082840312156121bb57600080fd5b815161110481611b48565b634e487b7160e01b600052603160045260246000fdfea26469706673582212203ef3228c738f811a18dea4fd75bf574be8450709205bd2adc2ed4189e5b1e65564736f6c63430008110033

Deployed Bytecode Sourcemap

46299:3521:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38787:300;;;;;;;;;;-1:-1:-1;38787:300:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;38787:300:0;;;;;;;;49607:79;;;;;;;;;;-1:-1:-1;49607:79:0;;;;;:::i;:::-;;:::i;:::-;;22614:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24308:308::-;;;;;;;;;;-1:-1:-1;24308:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1944:32:1;;;1926:51;;1914:2;1899:18;24308:308:0;1780:203:1;23831:411:0;;;;;;;;;;-1:-1:-1;23831:411:0;;;;;:::i;:::-;;:::i;49692:123::-;;;;;;;;;;;;;:::i;46493:33::-;;;;;;;;;;;;;;;;;;;2571:25:1;;;2559:2;2544:18;46493:33:0;2425:177:1;47307:91:0;;;;;;;;;;-1:-1:-1;47307:91:0;;;;;:::i;:::-;;:::i;39590:113::-;;;;;;;;;;-1:-1:-1;39678:10:0;:17;39590:113;;46609:32;;;;;;;;;;;;;;;;25227:376;;;;;;;;;;-1:-1:-1;25227:376:0;;;;;:::i;:::-;;:::i;39171:343::-;;;;;;;;;;-1:-1:-1;39171:343:0;;;;;:::i;:::-;;:::i;25674:185::-;;;;;;;;;;-1:-1:-1;25674:185:0;;;;;:::i;:::-;;:::i;48489:390::-;;;;;;;;;;-1:-1:-1;48489:390:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49265:86::-;;;;;;;;;;-1:-1:-1;49265:86:0;;;;;:::i;:::-;;:::i;39780:320::-;;;;;;;;;;-1:-1:-1;39780:320:0;;;;;:::i;:::-;;:::i;49491:104::-;;;;;;;;;;-1:-1:-1;49491:104:0;;;;;:::i;:::-;;:::i;46648:26::-;;;;;;;;;;-1:-1:-1;46648:26:0;;;;;;;;22221:326;;;;;;;;;;-1:-1:-1;22221:326:0;;;;;:::i;:::-;;:::i;47486:980::-;;;;;;:::i;:::-;;:::i;21864:295::-;;;;;;;;;;-1:-1:-1;21864:295:0;;;;;:::i;:::-;;:::i;37119:103::-;;;;;;;;;;;;;:::i;46574:28::-;;;;;;;;;;;;;;;;46535:32;;;;;;;;;;;;;;;;46994:189;;;;;;;;;;-1:-1:-1;46994:189:0;;;;;:::i;:::-;;:::i;36468:87::-;;;;;;;;;;-1:-1:-1;36541:6:0;;-1:-1:-1;;;;;36541:6:0;36468:87;;22783:104;;;;;;;;;;;;;:::i;24688:187::-;;;;;;;;;;-1:-1:-1;24688:187:0;;;;;:::i;:::-;;:::i;25930:365::-;;;;;;;;;;-1:-1:-1;25930:365:0;;;;;:::i;:::-;;:::i;47189:112::-;;;;;;;;;;-1:-1:-1;47189:112:0;;;;;:::i;:::-;;:::i;48887:366::-;;;;;;;;;;-1:-1:-1;48887:366:0;;;;;:::i;:::-;;:::i;24946:214::-;;;;;;;;;;-1:-1:-1;24946:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;25117:25:0;;;25088:4;25117:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24946:214;37377:238;;;;;;;;;;-1:-1:-1;37377:238:0;;;;;:::i;:::-;;:::i;38787:300::-;38934:4;-1:-1:-1;;;;;;38976:50:0;;-1:-1:-1;;;38976:50:0;;:103;;;39043:36;39067:11;39043:23;:36::i;:::-;38956:123;38787:300;-1:-1:-1;;38787:300:0:o;49607:79::-;36541:6;;-1:-1:-1;;;;;36541:6:0;20086:10;36688:23;36680:68;;;;-1:-1:-1;;;36680:68:0;;;;;;;:::i;:::-;;;;;;;;;49663:6:::1;:15:::0;;-1:-1:-1;;49663:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49607:79::o;22614:100::-;22668:13;22701:5;22694:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22614:100;:::o;24308:308::-;24429:7;27931:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27931:16:0;24454:110;;;;-1:-1:-1;;;24454:110:0;;7411:2:1;24454:110:0;;;7393:21:1;7450:2;7430:18;;;7423:30;7489:34;7469:18;;;7462:62;-1:-1:-1;;;7540:18:1;;;7533:42;7592:19;;24454:110:0;7209:408:1;24454:110:0;-1:-1:-1;24584:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24584:24:0;;24308:308::o;23831:411::-;23912:13;23928:23;23943:7;23928:14;:23::i;:::-;23912:39;;23976:5;-1:-1:-1;;;;;23970:11:0;:2;-1:-1:-1;;;;;23970:11:0;;23962:57;;;;-1:-1:-1;;;23962:57:0;;7824:2:1;23962:57:0;;;7806:21:1;7863:2;7843:18;;;7836:30;7902:34;7882:18;;;7875:62;-1:-1:-1;;;7953:18:1;;;7946:31;7994:19;;23962:57:0;7622:397:1;23962:57:0;20086:10;-1:-1:-1;;;;;24054:21:0;;;;:62;;-1:-1:-1;24079:37:0;24096:5;20086:10;24946:214;:::i;24079:37::-;24032:168;;;;-1:-1:-1;;;24032:168:0;;8226:2:1;24032:168:0;;;8208:21:1;8265:2;8245:18;;;8238:30;8304:34;8284:18;;;8277:62;8375:26;8355:18;;;8348:54;8419:19;;24032:168:0;8024:420:1;24032:168:0;24213:21;24222:2;24226:7;24213:8;:21::i;:::-;23901:341;23831:411;;:::o;49692:123::-;36541:6;;-1:-1:-1;;;;;36541:6:0;20086:10;36688:23;36680:68;;;;-1:-1:-1;;;36680:68:0;;;;;;;:::i;:::-;49758:49:::1;::::0;49746:9:::1;::::0;49758:10:::1;::::0;49781:21:::1;::::0;49746:9;49758:49;49746:9;49758:49;49781:21;49758:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;49692:123:0:o;47307:91::-;36541:6;;-1:-1:-1;;;;;36541:6:0;20086:10;36688:23;36680:68;;;;-1:-1:-1;;;36680:68:0;;;;;;;:::i;:::-;47371:13:::1;:19:::0;47307:91::o;25227:376::-;25436:41;20086:10;25469:7;25436:18;:41::i;:::-;25414:140;;;;-1:-1:-1;;;25414:140:0;;;;;;;:::i;:::-;25567:28;25577:4;25583:2;25587:7;25567:9;:28::i;39171:343::-;39313:7;39368:23;39385:5;39368:16;:23::i;:::-;39360:5;:31;39338:124;;;;-1:-1:-1;;;39338:124:0;;9279:2:1;39338:124:0;;;9261:21:1;9318:2;9298:18;;;9291:30;9357:34;9337:18;;;9330:62;-1:-1:-1;;;9408:18:1;;;9401:41;9459:19;;39338:124:0;9077:407:1;39338:124:0;-1:-1:-1;;;;;;39480:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39171:343::o;25674:185::-;25812:39;25829:4;25835:2;25839:7;25812:39;;;;;;;;;;;;:16;:39::i;48489:390::-;48576:16;48610:23;48636:17;48646:6;48636:9;:17::i;:::-;48610:43;;48664:25;48706:15;48692:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48692:30:0;;48664:58;;48738:9;48733:113;48753:15;48749:1;:19;48733:113;;;48804:30;48824:6;48832:1;48804:19;:30::i;:::-;48790:8;48799:1;48790:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;48770:3;;;;:::i;:::-;;;;48733:113;;;-1:-1:-1;48863:8:0;48489:390;-1:-1:-1;;;48489:390:0:o;49265:86::-;36541:6;;-1:-1:-1;;;;;36541:6:0;20086:10;36688:23;36680:68;;;;-1:-1:-1;;;36680:68:0;;;;;;;:::i;:::-;49328:4:::1;:15:::0;49265:86::o;39780:320::-;39900:7;39955:30;39678:10;:17;;39590:113;39955:30;39947:5;:38;39925:132;;;;-1:-1:-1;;;39925:132:0;;10095:2:1;39925:132:0;;;10077:21:1;10134:2;10114:18;;;10107:30;10173:34;10153:18;;;10146:62;-1:-1:-1;;;10224:18:1;;;10217:42;10276:19;;39925:132:0;9893:408:1;39925:132:0;40075:10;40086:5;40075:17;;;;;;;;:::i;:::-;;;;;;;;;40068:24;;39780:320;;;:::o;49491:104::-;36541:6;;-1:-1:-1;;;;;36541:6:0;20086:10;36688:23;36680:68;;;;-1:-1:-1;;;36680:68:0;;;;;;;:::i;:::-;49566:7:::1;:21;49576:11:::0;49566:7;:21:::1;:::i;:::-;;49491:104:::0;:::o;22221:326::-;22338:7;22379:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22379:16:0;;22406:110;;;;-1:-1:-1;;;22406:110:0;;12712:2:1;22406:110:0;;;12694:21:1;12751:2;12731:18;;;12724:30;12790:34;12770:18;;;12763:62;-1:-1:-1;;;12841:18:1;;;12834:39;12890:19;;22406:110:0;12510:405:1;47486:980:0;47566:1;47553:12;;:14;47545:49;;;;-1:-1:-1;;;47545:49:0;;13122:2:1;47545:49:0;;;13104:21:1;13161:2;13141:18;;;13134:30;13200:25;13180:18;;;13173:53;13243:18;;47545:49:0;12920:347:1;47545:49:0;47605:14;47622:13;39678:10;:17;;39590:113;47622:13;47605:30;-1:-1:-1;47664:10:0;47693:15;;;47685:24;;;;;;47743:13;;47728:11;:28;;;;47720:37;;;;;;47800:13;;47776:20;;;;:6;:20;:::i;:::-;:37;;47768:46;;;;;;36541:6;;-1:-1:-1;;;;;36541:6:0;47831:10;:21;47827:464;;47878:6;;;;47877:7;47869:16;;;;;;47928:11;47921:18;;:4;;:18;;;;:::i;:::-;47908:9;:31;;47900:40;;;;;;47955:19;47975:20;47985:9;47975;:20::i;:::-;47955:40;;48034:11;48018:27;;:14;:27;;48010:57;;;;-1:-1:-1;;;48010:57:0;;13777:2:1;48010:57:0;;;13759:21:1;13816:2;13796:18;;;13789:30;-1:-1:-1;;;13835:18:1;;;13828:48;13893:18;;48010:57:0;13575:342:1;48010:57:0;48103:12;;-1:-1:-1;;;;;48085:16:0;;;;;;:5;:16;;;;;;:30;48082:153;;-1:-1:-1;;;;;48135:27:0;;;;;;:16;:27;;;;;:40;;;;;;:27;:40;;;;;:::i;:::-;;;;-1:-1:-1;48082:153:0;;-1:-1:-1;48082:153:0;;-1:-1:-1;;;;;48196:27:0;;;;;;:16;:27;;;;;:39;;;;;48082:153;-1:-1:-1;48267:12:0;;-1:-1:-1;;;;;48250:16:0;;;;;;:5;:16;;;;;:29;47827:464;48320:1;48303:102;48328:11;48323:16;;:1;:16;48303:102;;48361:32;48371:9;48382:10;48391:1;48382:6;:10;:::i;:::-;48361:9;:32::i;:::-;48341:3;;;;:::i;:::-;;;;48303:102;;;-1:-1:-1;48420:38:0;48427:9;48437:8;:6;48444:1;48437:8;:::i;:::-;48420:38;;;-1:-1:-1;;;;;14140:32:1;;;14122:51;;14204:2;14189:18;;14182:34;;;;14264:4;14252:17;;14232:18;;;14225:45;14110:2;14095:18;48420:38:0;;;;;;;47534:932;;47486:980;:::o;21864:295::-;21981:7;-1:-1:-1;;;;;22028:19:0;;22006:111;;;;-1:-1:-1;;;22006:111:0;;14483:2:1;22006:111:0;;;14465:21:1;14522:2;14502:18;;;14495:30;14561:34;14541:18;;;14534:62;-1:-1:-1;;;14612:18:1;;;14605:40;14662:19;;22006:111:0;14281:406:1;22006:111:0;-1:-1:-1;;;;;;22135:16:0;;;;;:9;:16;;;;;;;21864:295::o;37119:103::-;36541:6;;-1:-1:-1;;;;;36541:6:0;20086:10;36688:23;36680:68;;;;-1:-1:-1;;;36680:68:0;;;;;;;:::i;:::-;37184:30:::1;37211:1;37184:18;:30::i;:::-;37119:103::o:0;46994:189::-;47084:12;;-1:-1:-1;;;;;47069:14:0;;47050:4;47069:14;;;:5;:14;;;;;;47050:4;;-1:-1:-1;47066:52:0;;;-1:-1:-1;;47105:13:0;;;46994:189::o;47066:52::-;-1:-1:-1;;;;;47150:25:0;;;;;;:16;:25;;;;;;47136:13;;:39;;47150:25;47136:39;:::i;22783:104::-;22839:13;22872:7;22865:14;;;;;:::i;24688:187::-;24815:52;20086:10;24848:8;24858;24815:18;:52::i;25930:365::-;26119:41;20086:10;26152:7;26119:18;:41::i;:::-;26097:140;;;;-1:-1:-1;;;26097:140:0;;;;;;;:::i;:::-;26248:39;26262:4;26268:2;26272:7;26281:5;26248:13;:39::i;47189:112::-;36541:6;;-1:-1:-1;;;;;36541:6:0;20086:10;36688:23;36680:68;;;;-1:-1:-1;;;36680:68:0;;;;;;;:::i;:::-;47248:12:::1;:14:::0;;;:12:::1;:14;::::0;::::1;:::i;:::-;;;;;;47288:5;47273:13;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;47189:112:0:o;48887:366::-;27907:4;27931:16;;;:7;:16;;;;;;49005:13;;-1:-1:-1;;;;;27931:16:0;49036:113;;;;-1:-1:-1;;;49036:113:0;;15027:2:1;49036:113:0;;;15009:21:1;15066:2;15046:18;;;15039:30;15105:34;15085:18;;;15078:62;-1:-1:-1;;;15156:18:1;;;15149:45;15211:19;;49036:113:0;14825:411:1;49036:113:0;49172:28;49203:10;:8;:10::i;:::-;49172:41;48887:366;-1:-1:-1;;;48887:366:0:o;37377:238::-;36541:6;;-1:-1:-1;;;;;36541:6:0;20086:10;36688:23;36680:68;;;;-1:-1:-1;;;36680:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37480:22:0;::::1;37458:110;;;::::0;-1:-1:-1;;;37458:110:0;;15443:2:1;37458:110:0::1;::::0;::::1;15425:21:1::0;15482:2;15462:18;;;15455:30;15521:34;15501:18;;;15494:62;-1:-1:-1;;;15572:18:1;;;15565:36;15618:19;;37458:110:0::1;15241:402:1::0;37458:110:0::1;37579:28;37598:8;37579:18;:28::i;:::-;37377:238:::0;:::o;21445:355::-;21592:4;-1:-1:-1;;;;;;21634:40:0;;-1:-1:-1;;;21634:40:0;;:105;;-1:-1:-1;;;;;;;21691:48:0;;-1:-1:-1;;;21691:48:0;21634:105;:158;;;-1:-1:-1;;;;;;;;;;1811:40:0;;;21756:36;1652:207;32129:174;32204:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32204:29:0;-1:-1:-1;;;;;32204:29:0;;;;;;;;:24;;32258:23;32204:24;32258:14;:23::i;:::-;-1:-1:-1;;;;;32249:46:0;;;;;;;;;;;32129:174;;:::o;28136:452::-;28265:4;27931:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27931:16:0;28287:110;;;;-1:-1:-1;;;28287:110:0;;15850:2:1;28287:110:0;;;15832:21:1;15889:2;15869:18;;;15862:30;15928:34;15908:18;;;15901:62;-1:-1:-1;;;15979:18:1;;;15972:42;16031:19;;28287:110:0;15648:408:1;28287:110:0;28408:13;28424:23;28439:7;28424:14;:23::i;:::-;28408:39;;28477:5;-1:-1:-1;;;;;28466:16:0;:7;-1:-1:-1;;;;;28466:16:0;;:65;;;-1:-1:-1;;;;;;25117:25:0;;;25088:4;25117:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28499:32;28466:113;;;;28572:7;-1:-1:-1;;;;;28548:31:0;:20;28560:7;28548:11;:20::i;:::-;-1:-1:-1;;;;;28548:31:0;;28466:113;28458:122;28136:452;-1:-1:-1;;;;28136:452:0:o;31349:662::-;31522:4;-1:-1:-1;;;;;31495:31:0;:23;31510:7;31495:14;:23::i;:::-;-1:-1:-1;;;;;31495:31:0;;31473:118;;;;-1:-1:-1;;;31473:118:0;;16263:2:1;31473:118:0;;;16245:21:1;16302:2;16282:18;;;16275:30;16341:34;16321:18;;;16314:62;-1:-1:-1;;;16392:18:1;;;16385:35;16437:19;;31473:118:0;16061:401:1;31473:118:0;-1:-1:-1;;;;;31610:16:0;;31602:65;;;;-1:-1:-1;;;31602:65:0;;16669:2:1;31602:65:0;;;16651:21:1;16708:2;16688:18;;;16681:30;16747:34;16727:18;;;16720:62;-1:-1:-1;;;16798:18:1;;;16791:34;16842:19;;31602:65:0;16467:400:1;31602:65:0;31680:39;31701:4;31707:2;31711:7;31680:20;:39::i;:::-;31784:29;31801:1;31805:7;31784:8;:29::i;:::-;-1:-1:-1;;;;;31826:15:0;;;;;;:9;:15;;;;;:20;;31845:1;;31826:15;:20;;31845:1;;31826:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31857:13:0;;;;;;:9;:13;;;;;:18;;31874:1;;31857:13;:18;;31874:1;;31857:18;:::i;:::-;;;;-1:-1:-1;;31886:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31886:21:0;-1:-1:-1;;;;;31886:21:0;;;;;;;;;31925:27;;31886:16;;31925:27;;;;;;;23901:341;23831:411;;:::o;28930:110::-;29006:26;29016:2;29020:7;29006:26;;;;;;;;;;;;:9;:26::i;37775:191::-;37868:6;;;-1:-1:-1;;;;;37885:17:0;;;-1:-1:-1;;;;;;37885:17:0;;;;;;;37918:40;;37868:6;;;37885:17;37868:6;;37918:40;;37849:16;;37918:40;37838:128;37775:191;:::o;32445:315::-;32600:8;-1:-1:-1;;;;;32591:17:0;:5;-1:-1:-1;;;;;32591:17:0;;32583:55;;;;-1:-1:-1;;;32583:55:0;;17074:2:1;32583:55:0;;;17056:21:1;17113:2;17093:18;;;17086:30;17152:27;17132:18;;;17125:55;17197:18;;32583:55:0;16872:349:1;32583:55:0;-1:-1:-1;;;;;32649:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;32649:46:0;;;;;;;;;;32711:41;;540::1;;;32711::0;;513:18:1;32711:41:0;;;;;;;32445:315;;;:::o;27177:352::-;27334:28;27344:4;27350:2;27354:7;27334:9;:28::i;:::-;27395:48;27418:4;27424:2;27428:7;27437:5;27395:22;:48::i;:::-;27373:148;;;;-1:-1:-1;;;27373:148:0;;;;;;;:::i;46794:108::-;46854:13;46887:7;46880:14;;;;;:::i;40713:589::-;-1:-1:-1;;;;;40919:18:0;;40915:187;;40954:40;40986:7;42129:10;:17;;42102:24;;;;:15;:24;;;;;:44;;;42157:24;;;;;;;;;;;;42025:164;40954:40;40915:187;;;41024:2;-1:-1:-1;;;;;41016:10:0;:4;-1:-1:-1;;;;;41016:10:0;;41012:90;;41043:47;41076:4;41082:7;41043:32;:47::i;:::-;-1:-1:-1;;;;;41116:16:0;;41112:183;;41149:45;41186:7;41149:36;:45::i;41112:183::-;41222:4;-1:-1:-1;;;;;41216:10:0;:2;-1:-1:-1;;;;;41216:10:0;;41212:83;;41243:40;41271:2;41275:7;41243:27;:40::i;29267:321::-;29397:18;29403:2;29407:7;29397:5;:18::i;:::-;29448:54;29479:1;29483:2;29487:7;29496:5;29448:22;:54::i;:::-;29426:154;;;;-1:-1:-1;;;29426:154:0;;;;;;;:::i;33325:980::-;33480:4;-1:-1:-1;;;;;33501:13:0;;5148:19;:23;33497:801;;33554:175;;-1:-1:-1;;;33554:175:0;;-1:-1:-1;;;;;33554:36:0;;;;;:175;;20086:10;;33648:4;;33675:7;;33705:5;;33554:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33554:175:0;;;;;;;;-1:-1:-1;;33554:175:0;;;;;;;;;;;;:::i;:::-;;;33533:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33912:6;:13;33929:1;33912:18;33908:320;;33955:108;;-1:-1:-1;;;33955:108:0;;;;;;;:::i;33908:320::-;34178:6;34172:13;34163:6;34159:2;34155:15;34148:38;33533:710;-1:-1:-1;;;;;;33793:51:0;-1:-1:-1;;;33793:51:0;;-1:-1:-1;33786:58:0;;33497:801;-1:-1:-1;34282:4:0;33325:980;;;;;;:::o;42816:1002::-;43096:22;43146:1;43121:22;43138:4;43121:16;:22::i;:::-;:26;;;;:::i;:::-;43158:18;43179:26;;;:17;:26;;;;;;43096:51;;-1:-1:-1;43312:28:0;;;43308:328;;-1:-1:-1;;;;;43379:18:0;;43357:19;43379:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43430:30;;;;;;:44;;;43547:30;;:17;:30;;;;;:43;;;43308:328;-1:-1:-1;43732:26:0;;;;:17;:26;;;;;;;;43725:33;;;-1:-1:-1;;;;;43776:18:0;;;;;:12;:18;;;;;:34;;;;;;;43769:41;42816:1002::o;44113:1079::-;44391:10;:17;44366:22;;44391:21;;44411:1;;44391:21;:::i;:::-;44423:18;44444:24;;;:15;:24;;;;;;44817:10;:26;;44366:46;;-1:-1:-1;44444:24:0;;44366:46;;44817:26;;;;;;:::i;:::-;;;;;;;;;44795:48;;44881:11;44856:10;44867;44856:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44961:28;;;:15;:28;;;;;;;:41;;;45133:24;;;;;45126:31;45168:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44184:1008;;;44113:1079;:::o;41603:221::-;41688:14;41705:20;41722:2;41705:16;:20::i;:::-;-1:-1:-1;;;;;41736:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41781:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41603:221:0:o;29924:439::-;-1:-1:-1;;;;;30004:16:0;;29996:61;;;;-1:-1:-1;;;29996:61:0;;18727:2:1;29996:61:0;;;18709:21:1;;;18746:18;;;18739:30;18805:34;18785:18;;;18778:62;18857:18;;29996:61:0;18525:356:1;29996:61:0;27907:4;27931:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27931:16:0;:30;30068:58;;;;-1:-1:-1;;;30068:58:0;;19088:2:1;30068:58:0;;;19070:21:1;19127:2;19107:18;;;19100:30;19166;19146:18;;;19139:58;19214:18;;30068:58:0;18886:352:1;30068:58:0;30139:45;30168:1;30172:2;30176:7;30139:20;:45::i;:::-;-1:-1:-1;;;;;30197:13:0;;;;;;:9;:13;;;;;:18;;30214:1;;30197:13;:18;;30214:1;;30197:18;:::i;:::-;;;;-1:-1:-1;;30226:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30226:21:0;-1:-1:-1;;;;;30226:21:0;;;;;;;;30265:33;;30226:16;;;30265:33;;30226:16;;30265:33;49566:21:::1;49491:104:::0;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:423::-;984:3;1022:5;1016:12;1049:6;1044:3;1037:19;1074:1;1084:162;1098:6;1095:1;1092:13;1084:162;;;1160:4;1216:13;;;1212:22;;1206:29;1188:11;;;1184:20;;1177:59;1113:12;1084:162;;;1088:3;1291:1;1284:4;1275:6;1270:3;1266:16;1262:27;1255:38;1354:4;1347:2;1343:7;1338:2;1330:6;1326:15;1322:29;1317:3;1313:39;1309:50;1302:57;;;942:423;;;;:::o;1370:220::-;1519:2;1508:9;1501:21;1482:4;1539:45;1580:2;1569:9;1565:18;1557:6;1539:45;:::i;1595:180::-;1654:6;1707:2;1695:9;1686:7;1682:23;1678:32;1675:52;;;1723:1;1720;1713:12;1675:52;-1:-1:-1;1746:23:1;;1595:180;-1:-1:-1;1595:180:1:o;1988:173::-;2056:20;;-1:-1:-1;;;;;2105:31:1;;2095:42;;2085:70;;2151:1;2148;2141:12;2166:254;2234:6;2242;2295:2;2283:9;2274:7;2270:23;2266:32;2263:52;;;2311:1;2308;2301:12;2263:52;2334:29;2353:9;2334:29;:::i;:::-;2324:39;2410:2;2395:18;;;;2382:32;;-1:-1:-1;;;2166:254:1:o;2607:328::-;2684:6;2692;2700;2753:2;2741:9;2732:7;2728:23;2724:32;2721:52;;;2769:1;2766;2759:12;2721:52;2792:29;2811:9;2792:29;:::i;:::-;2782:39;;2840:38;2874:2;2863:9;2859:18;2840:38;:::i;:::-;2830:48;;2925:2;2914:9;2910:18;2897:32;2887:42;;2607:328;;;;;:::o;2940:186::-;2999:6;3052:2;3040:9;3031:7;3027:23;3023:32;3020:52;;;3068:1;3065;3058:12;3020:52;3091:29;3110:9;3091:29;:::i;3131:632::-;3302:2;3354:21;;;3424:13;;3327:18;;;3446:22;;;3273:4;;3302:2;3525:15;;;;3499:2;3484:18;;;3273:4;3568:169;3582:6;3579:1;3576:13;3568:169;;;3643:13;;3631:26;;3712:15;;;;3677:12;;;;3604:1;3597:9;3568:169;;;-1:-1:-1;3754:3:1;;3131:632;-1:-1:-1;;;;;;3131:632:1:o;3768:127::-;3829:10;3824:3;3820:20;3817:1;3810:31;3860:4;3857:1;3850:15;3884:4;3881:1;3874:15;3900:632;3965:5;3995:18;4036:2;4028:6;4025:14;4022:40;;;4042:18;;:::i;:::-;4117:2;4111:9;4085:2;4171:15;;-1:-1:-1;;4167:24:1;;;4193:2;4163:33;4159:42;4147:55;;;4217:18;;;4237:22;;;4214:46;4211:72;;;4263:18;;:::i;:::-;4303:10;4299:2;4292:22;4332:6;4323:15;;4362:6;4354;4347:22;4402:3;4393:6;4388:3;4384:16;4381:25;4378:45;;;4419:1;4416;4409:12;4378:45;4469:6;4464:3;4457:4;4449:6;4445:17;4432:44;4524:1;4517:4;4508:6;4500;4496:19;4492:30;4485:41;;;;3900:632;;;;;:::o;4537:451::-;4606:6;4659:2;4647:9;4638:7;4634:23;4630:32;4627:52;;;4675:1;4672;4665:12;4627:52;4715:9;4702:23;4748:18;4740:6;4737:30;4734:50;;;4780:1;4777;4770:12;4734:50;4803:22;;4856:4;4848:13;;4844:27;-1:-1:-1;4834:55:1;;4885:1;4882;4875:12;4834:55;4908:74;4974:7;4969:2;4956:16;4951:2;4947;4943:11;4908:74;:::i;4993:269::-;5050:6;5103:2;5091:9;5082:7;5078:23;5074:32;5071:52;;;5119:1;5116;5109:12;5071:52;5158:9;5145:23;5208:4;5201:5;5197:16;5190:5;5187:27;5177:55;;5228:1;5225;5218:12;5267:254;5332:6;5340;5393:2;5381:9;5372:7;5368:23;5364:32;5361:52;;;5409:1;5406;5399:12;5361:52;5432:29;5451:9;5432:29;:::i;:::-;5422:39;;5480:35;5511:2;5500:9;5496:18;5480:35;:::i;:::-;5470:45;;5267:254;;;;;:::o;5526:667::-;5621:6;5629;5637;5645;5698:3;5686:9;5677:7;5673:23;5669:33;5666:53;;;5715:1;5712;5705:12;5666:53;5738:29;5757:9;5738:29;:::i;:::-;5728:39;;5786:38;5820:2;5809:9;5805:18;5786:38;:::i;:::-;5776:48;;5871:2;5860:9;5856:18;5843:32;5833:42;;5926:2;5915:9;5911:18;5898:32;5953:18;5945:6;5942:30;5939:50;;;5985:1;5982;5975:12;5939:50;6008:22;;6061:4;6053:13;;6049:27;-1:-1:-1;6039:55:1;;6090:1;6087;6080:12;6039:55;6113:74;6179:7;6174:2;6161:16;6156:2;6152;6148:11;6113:74;:::i;:::-;6103:84;;;5526:667;;;;;;;:::o;6198:260::-;6266:6;6274;6327:2;6315:9;6306:7;6302:23;6298:32;6295:52;;;6343:1;6340;6333:12;6295:52;6366:29;6385:9;6366:29;:::i;:::-;6356:39;;6414:38;6448:2;6437:9;6433:18;6414:38;:::i;6463:356::-;6665:2;6647:21;;;6684:18;;;6677:30;6743:34;6738:2;6723:18;;6716:62;6810:2;6795:18;;6463:356::o;6824:380::-;6903:1;6899:12;;;;6946;;;6967:61;;7021:4;7013:6;7009:17;6999:27;;6967:61;7074:2;7066:6;7063:14;7043:18;7040:38;7037:161;;7120:10;7115:3;7111:20;7108:1;7101:31;7155:4;7152:1;7145:15;7183:4;7180:1;7173:15;7037:161;;6824:380;;;:::o;8659:413::-;8861:2;8843:21;;;8900:2;8880:18;;;8873:30;8939:34;8934:2;8919:18;;8912:62;-1:-1:-1;;;9005:2:1;8990:18;;8983:47;9062:3;9047:19;;8659:413::o;9489:127::-;9550:10;9545:3;9541:20;9538:1;9531:31;9581:4;9578:1;9571:15;9605:4;9602:1;9595:15;9621:127;9682:10;9677:3;9673:20;9670:1;9663:31;9713:4;9710:1;9703:15;9737:4;9734:1;9727:15;9753:135;9792:3;9813:17;;;9810:43;;9833:18;;:::i;:::-;-1:-1:-1;9880:1:1;9869:13;;9753:135::o;10432:545::-;10534:2;10529:3;10526:11;10523:448;;;10570:1;10595:5;10591:2;10584:17;10640:4;10636:2;10626:19;10710:2;10698:10;10694:19;10691:1;10687:27;10681:4;10677:38;10746:4;10734:10;10731:20;10728:47;;;-1:-1:-1;10769:4:1;10728:47;10824:2;10819:3;10815:12;10812:1;10808:20;10802:4;10798:31;10788:41;;10879:82;10897:2;10890:5;10887:13;10879:82;;;10942:17;;;10923:1;10912:13;10879:82;;;10883:3;;;10432:545;;;:::o;11153:1352::-;11279:3;11273:10;11306:18;11298:6;11295:30;11292:56;;;11328:18;;:::i;:::-;11357:97;11447:6;11407:38;11439:4;11433:11;11407:38;:::i;:::-;11401:4;11357:97;:::i;:::-;11509:4;;11573:2;11562:14;;11590:1;11585:663;;;;12292:1;12309:6;12306:89;;;-1:-1:-1;12361:19:1;;;12355:26;12306:89;-1:-1:-1;;11110:1:1;11106:11;;;11102:24;11098:29;11088:40;11134:1;11130:11;;;11085:57;12408:81;;11555:944;;11585:663;10379:1;10372:14;;;10416:4;10403:18;;-1:-1:-1;;11621:20:1;;;11739:236;11753:7;11750:1;11747:14;11739:236;;;11842:19;;;11836:26;11821:42;;11934:27;;;;11902:1;11890:14;;;;11769:19;;11739:236;;;11743:3;12003:6;11994:7;11991:19;11988:201;;;12064:19;;;12058:26;-1:-1:-1;;12147:1:1;12143:14;;;12159:3;12139:24;12135:37;12131:42;12116:58;12101:74;;11988:201;-1:-1:-1;;;;;12235:1:1;12219:14;;;12215:22;12202:36;;-1:-1:-1;11153:1352:1:o;13272:125::-;13337:9;;;13358:10;;;13355:36;;;13371:18;;:::i;13402:168::-;13475:9;;;13506;;13523:15;;;13517:22;;13503:37;13493:71;;13544:18;;:::i;14692:128::-;14759:9;;;14780:11;;;14777:37;;;14794:18;;:::i;17226:414::-;17428:2;17410:21;;;17467:2;17447:18;;;17440:30;17506:34;17501:2;17486:18;;17479:62;-1:-1:-1;;;17572:2:1;17557:18;;17550:48;17630:3;17615:19;;17226:414::o;17645:489::-;-1:-1:-1;;;;;17914:15:1;;;17896:34;;17966:15;;17961:2;17946:18;;17939:43;18013:2;17998:18;;17991:34;;;18061:3;18056:2;18041:18;;18034:31;;;17839:4;;18082:46;;18108:19;;18100:6;18082:46;:::i;:::-;18074:54;17645:489;-1:-1:-1;;;;;;17645:489:1:o;18139:249::-;18208:6;18261:2;18249:9;18240:7;18236:23;18232:32;18229:52;;;18277:1;18274;18267:12;18229:52;18309:9;18303:16;18328:30;18352:5;18328:30;:::i;18393:127::-;18454:10;18449:3;18445:20;18442:1;18435:31;18485:4;18482:1;18475:15;18509:4;18506:1;18499:15

Swarm Source

ipfs://3ef3228c738f811a18dea4fd75bf574be8450709205bd2adc2ed4189e5b1e655
Loading...
Loading
Loading...
Loading
[ 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.