ETH Price: $3,390.58 (+6.22%)
Gas: 35 Gwei

Token

MonkeyHeistClub (MHC)
 

Overview

Max Total Supply

1,050 MHC

Holders

715

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MHC
0xc92c5942468ab60e7a6236dbe3a1e475d4becbd4
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:
MonkeyHeistClub

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-20
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\IERC721.sol

pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed tokenId
    );

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

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

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

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

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

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

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

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

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

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

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

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\IERC721Receiver.sol

pragma solidity ^0.8.0;

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

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\extensions\IERC721Metadata.sol

pragma solidity ^0.8.0;

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

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

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

// File: node_modules\openzeppelin-solidity\contracts\utils\Address.sol

pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: node_modules\openzeppelin-solidity\contracts\utils\Context.sol

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: node_modules\openzeppelin-solidity\contracts\utils\Strings.sol

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: node_modules\openzeppelin-solidity\contracts\utils\introspection\ERC165.sol

pragma solidity ^0.8.0;

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

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\ERC721.sol

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\extensions\IERC721Enumerable.sol

pragma solidity ^0.8.0;

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

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

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

// File: openzeppelin-solidity\contracts\token\ERC721\extensions\ERC721Enumerable.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts\lib\Counters.sol

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        {
            counter._value = value - 1;
        }
    }
}

// File: openzeppelin-solidity\contracts\access\Ownable.sol

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        _creator = msgSender;
        emit OwnershipTransferred(address(0), 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() || _creator == _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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

pragma solidity ^0.8.0;

contract MonkeyHeistClub is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;

    uint256 public constant MHC_MAX = 5555;
    uint256 public constant PURCHASE_LIMIT = 20;
    uint256 public PRICE = 49_900_000_000_000_000; // 0.0499 ETH

    string private _contractURI = "";
    string private _tokenBaseURI = "";
    bool private _isActive = false;

    Counters.Counter private _publicMHC;

    constructor() ERC721("MonkeyHeistClub", "MHC") {}

    function setActive(bool isActive) external onlyOwner {
        _isActive = isActive;
    }

    function setContractURI(string memory URI) external onlyOwner {
        _contractURI = URI;
    }

    function setBaseURI(string memory URI) external onlyOwner {
        _tokenBaseURI = URI;
    }

    function setMintPrice(uint256 mintPrice) external onlyOwner {
        PRICE = mintPrice;
    }

    function purchase(uint256 numberOfTokens) external payable {
        require(_isActive, "Contract is not active");
        require(
            numberOfTokens <= PURCHASE_LIMIT,
            "Can only mint up to 5 tokens"
        );
        require(
            _publicMHC.current() < MHC_MAX,
            "Purchase would exceed MHC_MAX"
        );
        require(
            PRICE * numberOfTokens <= msg.value,
            "ETH amount is not sufficient"
        );

        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = _publicMHC.current();

            if (_publicMHC.current() < MHC_MAX) {
                _publicMHC.increment();
                _safeMint(msg.sender, tokenId);
            }
        }
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        require(_exists(tokenId), "Token does not exist");

        return string(abi.encodePacked(_tokenBaseURI, tokenId.toString()));
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;

        payable(msg.sender).transfer(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":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":"MHC_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","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":"bool","name":"isActive","type":"bool"}],"name":"setActive","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":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"name":"setMintPrice","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

66b147c91e4ac000600c5560a06040819052600060808190526200002691600d9162000141565b506040805160208101918290526000908190526200004791600e9162000141565b50600f805460ff191690553480156200005f57600080fd5b50604080518082018252600f81526e26b7b735b2bca432b4b9ba21b63ab160891b6020808301918252835180850190945260038452624d484360e81b908401528151919291620000b29160009162000141565b508051620000c890600190602084019062000141565b5050506000620000dd6200013d60201b60201c565b600a80546001600160a01b0383166001600160a01b03199182168117909255600b805490911682179055604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000224565b3390565b8280546200014f90620001e7565b90600052602060002090601f016020900481019282620001735760008555620001be565b82601f106200018e57805160ff1916838001178555620001be565b82800160010185558215620001be579182015b82811115620001be578251825591602001919060010190620001a1565b50620001cc929150620001d0565b5090565b5b80821115620001cc5760008155600101620001d1565b600181811c90821680620001fc57607f821691505b602082108114156200021e57634e487b7160e01b600052602260045260246000fd5b50919050565b61217780620002346000396000f3fe6080604052600436106101c25760003560e01c80638d859f3e116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c5146104ca578063efef39a114610513578063f2fde38b14610526578063f4a0a5281461054657600080fd5b8063b88d4fde14610460578063c87b56dd14610480578063d75e6110146104a0578063e8a3d485146104b557600080fd5b8063938e3d7b116100d1578063938e3d7b146103eb57806395d89b411461040b578063a22cb46514610420578063acec338a1461044057600080fd5b80638d859f3e146103a15780638da5cb5b146103b75780638f41b0f0146103d557600080fd5b80633ccfd60b1161016457806355f804b31161013e57806355f804b31461032c5780636352211e1461034c57806370a082311461036c578063715018a61461038c57600080fd5b80633ccfd60b146102d757806342842e0e146102ec5780634f6ccce71461030c57600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd146102975780632f745c59146102b757600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611b0a565b610566565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610591565b6040516101f39190611b86565b34801561022a57600080fd5b5061023e610239366004611b99565b610623565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611bce565b6106bd565b005b34801561028457600080fd5b506008545b6040519081526020016101f3565b3480156102a357600080fd5b506102766102b2366004611bf8565b6107d3565b3480156102c357600080fd5b506102896102d2366004611bce565b610804565b3480156102e357600080fd5b5061027661089a565b3480156102f857600080fd5b50610276610307366004611bf8565b61090c565b34801561031857600080fd5b50610289610327366004611b99565b610927565b34801561033857600080fd5b50610276610347366004611cc0565b6109ba565b34801561035857600080fd5b5061023e610367366004611b99565b610a0c565b34801561037857600080fd5b50610289610387366004611d09565b610a83565b34801561039857600080fd5b50610276610b0a565b3480156103ad57600080fd5b50610289600c5481565b3480156103c357600080fd5b50600a546001600160a01b031661023e565b3480156103e157600080fd5b506102896115b381565b3480156103f757600080fd5b50610276610406366004611cc0565b610b93565b34801561041757600080fd5b50610211610be5565b34801561042c57600080fd5b5061027661043b366004611d34565b610bf4565b34801561044c57600080fd5b5061027661045b366004611d67565b610cb9565b34801561046c57600080fd5b5061027661047b366004611d82565b610d0b565b34801561048c57600080fd5b5061021161049b366004611b99565b610d43565b3480156104ac57600080fd5b50610289601481565b3480156104c157600080fd5b50610211610dd3565b3480156104d657600080fd5b506101e76104e5366004611dfe565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610276610521366004611b99565b610de2565b34801561053257600080fd5b50610276610541366004611d09565b610f85565b34801561055257600080fd5b50610276610561366004611b99565b611085565b60006001600160e01b0319821663780e9d6360e01b148061058b575061058b826110c9565b92915050565b6060600080546105a090611e28565b80601f01602080910402602001604051908101604052809291908181526020018280546105cc90611e28565b80156106195780601f106105ee57610100808354040283529160200191610619565b820191906000526020600020905b8154815290600101906020018083116105fc57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106a15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106c882610a0c565b9050806001600160a01b0316836001600160a01b031614156107365760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610698565b336001600160a01b0382161480610752575061075281336104e5565b6107c45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610698565b6107ce8383611119565b505050565b6107dd3382611187565b6107f95760405162461bcd60e51b815260040161069890611e63565b6107ce83838361127e565b600061080f83610a83565b82106108715760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610698565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314806108bd5750600b546001600160a01b031633145b6108d95760405162461bcd60e51b815260040161069890611eb4565b6040514790339082156108fc029083906000818181858888f19350505050158015610908573d6000803e3d6000fd5b5050565b6107ce83838360405180602001604052806000815250610d0b565b600061093260085490565b82106109955760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610698565b600882815481106109a8576109a8611ee9565b90600052602060002001549050919050565b600a546001600160a01b03163314806109dd5750600b546001600160a01b031633145b6109f95760405162461bcd60e51b815260040161069890611eb4565b805161090890600e906020840190611a58565b6000818152600260205260408120546001600160a01b03168061058b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610698565b60006001600160a01b038216610aee5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610698565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610b2d5750600b546001600160a01b031633145b610b495760405162461bcd60e51b815260040161069890611eb4565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610bb65750600b546001600160a01b031633145b610bd25760405162461bcd60e51b815260040161069890611eb4565b805161090890600d906020840190611a58565b6060600180546105a090611e28565b6001600160a01b038216331415610c4d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610698565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331480610cdc5750600b546001600160a01b031633145b610cf85760405162461bcd60e51b815260040161069890611eb4565b600f805460ff1916911515919091179055565b610d153383611187565b610d315760405162461bcd60e51b815260040161069890611e63565b610d3d84848484611429565b50505050565b6000818152600260205260409020546060906001600160a01b0316610da15760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610698565b600e610dac8361145c565b604051602001610dbd929190611f1b565b6040516020818303038152906040529050919050565b6060600d80546105a090611e28565b600f5460ff16610e2d5760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b6044820152606401610698565b6014811115610e7e5760405162461bcd60e51b815260206004820152601c60248201527f43616e206f6e6c79206d696e7420757020746f203520746f6b656e73000000006044820152606401610698565b6115b3610e8a60105490565b10610ed75760405162461bcd60e51b815260206004820152601d60248201527f507572636861736520776f756c6420657863656564204d48435f4d41580000006044820152606401610698565b3481600c54610ee69190611fd8565b1115610f345760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610698565b60005b81811015610908576000610f4a60105490565b90506115b3610f5860105490565b1015610f7257610f68601061155a565b610f723382611577565b5080610f7d81611ff7565b915050610f37565b600a546001600160a01b0316331480610fa85750600b546001600160a01b031633145b610fc45760405162461bcd60e51b815260040161069890611eb4565b6001600160a01b0381166110295760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610698565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314806110a85750600b546001600160a01b031633145b6110c45760405162461bcd60e51b815260040161069890611eb4565b600c55565b60006001600160e01b031982166380ac58cd60e01b14806110fa57506001600160e01b03198216635b5e139f60e01b145b8061058b57506301ffc9a760e01b6001600160e01b031983161461058b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061114e82610a0c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112005760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610698565b600061120b83610a0c565b9050806001600160a01b0316846001600160a01b031614806112465750836001600160a01b031661123b84610623565b6001600160a01b0316145b8061127657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661129182610a0c565b6001600160a01b0316146112f95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610698565b6001600160a01b03821661135b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610698565b611366838383611591565b611371600082611119565b6001600160a01b038316600090815260036020526040812080546001929061139a908490612012565b90915550506001600160a01b03821660009081526003602052604081208054600192906113c8908490612029565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61143484848461127e565b61144084848484611649565b610d3d5760405162461bcd60e51b815260040161069890612041565b6060816114805750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114aa578061149481611ff7565b91506114a39050600a836120a9565b9150611484565b60008167ffffffffffffffff8111156114c5576114c5611c34565b6040519080825280601f01601f1916602001820160405280156114ef576020820181803683370190505b5090505b841561127657611504600183612012565b9150611511600a866120bd565b61151c906030612029565b60f81b81838151811061153157611531611ee9565b60200101906001600160f81b031916908160001a905350611553600a866120a9565b94506114f3565b600181600001600082825461156f9190612029565b909155505050565b610908828260405180602001604052806000815250611747565b6001600160a01b0383166115ec576115e781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61160f565b816001600160a01b0316836001600160a01b03161461160f5761160f838261177a565b6001600160a01b038216611626576107ce81611817565b826001600160a01b0316826001600160a01b0316146107ce576107ce82826118c6565b60006001600160a01b0384163b1561173c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061168d9033908990889088906004016120d1565b6020604051808303816000875af19250505080156116c8575060408051601f3d908101601f191682019092526116c59181019061210e565b60015b611722573d8080156116f6576040519150601f19603f3d011682016040523d82523d6000602084013e6116fb565b606091505b50805161171a5760405162461bcd60e51b815260040161069890612041565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611276565b506001949350505050565b611751838361190a565b61175e6000848484611649565b6107ce5760405162461bcd60e51b815260040161069890612041565b6000600161178784610a83565b6117919190612012565b6000838152600760205260409020549091508082146117e4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061182990600190612012565b6000838152600960205260408120546008805493945090928490811061185157611851611ee9565b90600052602060002001549050806008838154811061187257611872611ee9565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806118aa576118aa61212b565b6001900381819060005260206000200160009055905550505050565b60006118d183610a83565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166119605760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610698565b6000818152600260205260409020546001600160a01b0316156119c55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610698565b6119d160008383611591565b6001600160a01b03821660009081526003602052604081208054600192906119fa908490612029565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611a6490611e28565b90600052602060002090601f016020900481019282611a865760008555611acc565b82601f10611a9f57805160ff1916838001178555611acc565b82800160010185558215611acc579182015b82811115611acc578251825591602001919060010190611ab1565b50611ad8929150611adc565b5090565b5b80821115611ad85760008155600101611add565b6001600160e01b031981168114611b0757600080fd5b50565b600060208284031215611b1c57600080fd5b8135611b2781611af1565b9392505050565b60005b83811015611b49578181015183820152602001611b31565b83811115610d3d5750506000910152565b60008151808452611b72816020860160208601611b2e565b601f01601f19169290920160200192915050565b602081526000611b276020830184611b5a565b600060208284031215611bab57600080fd5b5035919050565b80356001600160a01b0381168114611bc957600080fd5b919050565b60008060408385031215611be157600080fd5b611bea83611bb2565b946020939093013593505050565b600080600060608486031215611c0d57600080fd5b611c1684611bb2565b9250611c2460208501611bb2565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c6557611c65611c34565b604051601f8501601f19908116603f01168101908282118183101715611c8d57611c8d611c34565b81604052809350858152868686011115611ca657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611cd257600080fd5b813567ffffffffffffffff811115611ce957600080fd5b8201601f81018413611cfa57600080fd5b61127684823560208401611c4a565b600060208284031215611d1b57600080fd5b611b2782611bb2565b80358015158114611bc957600080fd5b60008060408385031215611d4757600080fd5b611d5083611bb2565b9150611d5e60208401611d24565b90509250929050565b600060208284031215611d7957600080fd5b611b2782611d24565b60008060008060808587031215611d9857600080fd5b611da185611bb2565b9350611daf60208601611bb2565b925060408501359150606085013567ffffffffffffffff811115611dd257600080fd5b8501601f81018713611de357600080fd5b611df287823560208401611c4a565b91505092959194509250565b60008060408385031215611e1157600080fd5b611e1a83611bb2565b9150611d5e60208401611bb2565b600181811c90821680611e3c57607f821691505b60208210811415611e5d57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60008151611f11818560208601611b2e565b9290920192915050565b600080845481600182811c915080831680611f3757607f831692505b6020808410821415611f5757634e487b7160e01b86526022600452602486fd5b818015611f6b5760018114611f7c57611fa9565b60ff19861689528489019650611fa9565b60008b81526020902060005b86811015611fa15781548b820152908501908301611f88565b505084890196505b505050505050611fb98185611eff565b95945050505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611ff257611ff2611fc2565b500290565b600060001982141561200b5761200b611fc2565b5060010190565b60008282101561202457612024611fc2565b500390565b6000821982111561203c5761203c611fc2565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826120b8576120b8612093565b500490565b6000826120cc576120cc612093565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061210490830184611b5a565b9695505050505050565b60006020828403121561212057600080fd5b8151611b2781611af1565b634e487b7160e01b600052603160045260246000fdfea264697066735822122025d177a0f1fb2643da64ff7f1d209d29097ae1834106dd30d4a8b8da800a829864736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80638d859f3e116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c5146104ca578063efef39a114610513578063f2fde38b14610526578063f4a0a5281461054657600080fd5b8063b88d4fde14610460578063c87b56dd14610480578063d75e6110146104a0578063e8a3d485146104b557600080fd5b8063938e3d7b116100d1578063938e3d7b146103eb57806395d89b411461040b578063a22cb46514610420578063acec338a1461044057600080fd5b80638d859f3e146103a15780638da5cb5b146103b75780638f41b0f0146103d557600080fd5b80633ccfd60b1161016457806355f804b31161013e57806355f804b31461032c5780636352211e1461034c57806370a082311461036c578063715018a61461038c57600080fd5b80633ccfd60b146102d757806342842e0e146102ec5780634f6ccce71461030c57600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd146102975780632f745c59146102b757600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611b0a565b610566565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610591565b6040516101f39190611b86565b34801561022a57600080fd5b5061023e610239366004611b99565b610623565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611bce565b6106bd565b005b34801561028457600080fd5b506008545b6040519081526020016101f3565b3480156102a357600080fd5b506102766102b2366004611bf8565b6107d3565b3480156102c357600080fd5b506102896102d2366004611bce565b610804565b3480156102e357600080fd5b5061027661089a565b3480156102f857600080fd5b50610276610307366004611bf8565b61090c565b34801561031857600080fd5b50610289610327366004611b99565b610927565b34801561033857600080fd5b50610276610347366004611cc0565b6109ba565b34801561035857600080fd5b5061023e610367366004611b99565b610a0c565b34801561037857600080fd5b50610289610387366004611d09565b610a83565b34801561039857600080fd5b50610276610b0a565b3480156103ad57600080fd5b50610289600c5481565b3480156103c357600080fd5b50600a546001600160a01b031661023e565b3480156103e157600080fd5b506102896115b381565b3480156103f757600080fd5b50610276610406366004611cc0565b610b93565b34801561041757600080fd5b50610211610be5565b34801561042c57600080fd5b5061027661043b366004611d34565b610bf4565b34801561044c57600080fd5b5061027661045b366004611d67565b610cb9565b34801561046c57600080fd5b5061027661047b366004611d82565b610d0b565b34801561048c57600080fd5b5061021161049b366004611b99565b610d43565b3480156104ac57600080fd5b50610289601481565b3480156104c157600080fd5b50610211610dd3565b3480156104d657600080fd5b506101e76104e5366004611dfe565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610276610521366004611b99565b610de2565b34801561053257600080fd5b50610276610541366004611d09565b610f85565b34801561055257600080fd5b50610276610561366004611b99565b611085565b60006001600160e01b0319821663780e9d6360e01b148061058b575061058b826110c9565b92915050565b6060600080546105a090611e28565b80601f01602080910402602001604051908101604052809291908181526020018280546105cc90611e28565b80156106195780601f106105ee57610100808354040283529160200191610619565b820191906000526020600020905b8154815290600101906020018083116105fc57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106a15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106c882610a0c565b9050806001600160a01b0316836001600160a01b031614156107365760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610698565b336001600160a01b0382161480610752575061075281336104e5565b6107c45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610698565b6107ce8383611119565b505050565b6107dd3382611187565b6107f95760405162461bcd60e51b815260040161069890611e63565b6107ce83838361127e565b600061080f83610a83565b82106108715760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610698565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314806108bd5750600b546001600160a01b031633145b6108d95760405162461bcd60e51b815260040161069890611eb4565b6040514790339082156108fc029083906000818181858888f19350505050158015610908573d6000803e3d6000fd5b5050565b6107ce83838360405180602001604052806000815250610d0b565b600061093260085490565b82106109955760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610698565b600882815481106109a8576109a8611ee9565b90600052602060002001549050919050565b600a546001600160a01b03163314806109dd5750600b546001600160a01b031633145b6109f95760405162461bcd60e51b815260040161069890611eb4565b805161090890600e906020840190611a58565b6000818152600260205260408120546001600160a01b03168061058b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610698565b60006001600160a01b038216610aee5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610698565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610b2d5750600b546001600160a01b031633145b610b495760405162461bcd60e51b815260040161069890611eb4565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610bb65750600b546001600160a01b031633145b610bd25760405162461bcd60e51b815260040161069890611eb4565b805161090890600d906020840190611a58565b6060600180546105a090611e28565b6001600160a01b038216331415610c4d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610698565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331480610cdc5750600b546001600160a01b031633145b610cf85760405162461bcd60e51b815260040161069890611eb4565b600f805460ff1916911515919091179055565b610d153383611187565b610d315760405162461bcd60e51b815260040161069890611e63565b610d3d84848484611429565b50505050565b6000818152600260205260409020546060906001600160a01b0316610da15760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b6044820152606401610698565b600e610dac8361145c565b604051602001610dbd929190611f1b565b6040516020818303038152906040529050919050565b6060600d80546105a090611e28565b600f5460ff16610e2d5760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b6044820152606401610698565b6014811115610e7e5760405162461bcd60e51b815260206004820152601c60248201527f43616e206f6e6c79206d696e7420757020746f203520746f6b656e73000000006044820152606401610698565b6115b3610e8a60105490565b10610ed75760405162461bcd60e51b815260206004820152601d60248201527f507572636861736520776f756c6420657863656564204d48435f4d41580000006044820152606401610698565b3481600c54610ee69190611fd8565b1115610f345760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610698565b60005b81811015610908576000610f4a60105490565b90506115b3610f5860105490565b1015610f7257610f68601061155a565b610f723382611577565b5080610f7d81611ff7565b915050610f37565b600a546001600160a01b0316331480610fa85750600b546001600160a01b031633145b610fc45760405162461bcd60e51b815260040161069890611eb4565b6001600160a01b0381166110295760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610698565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314806110a85750600b546001600160a01b031633145b6110c45760405162461bcd60e51b815260040161069890611eb4565b600c55565b60006001600160e01b031982166380ac58cd60e01b14806110fa57506001600160e01b03198216635b5e139f60e01b145b8061058b57506301ffc9a760e01b6001600160e01b031983161461058b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061114e82610a0c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112005760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610698565b600061120b83610a0c565b9050806001600160a01b0316846001600160a01b031614806112465750836001600160a01b031661123b84610623565b6001600160a01b0316145b8061127657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661129182610a0c565b6001600160a01b0316146112f95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610698565b6001600160a01b03821661135b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610698565b611366838383611591565b611371600082611119565b6001600160a01b038316600090815260036020526040812080546001929061139a908490612012565b90915550506001600160a01b03821660009081526003602052604081208054600192906113c8908490612029565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61143484848461127e565b61144084848484611649565b610d3d5760405162461bcd60e51b815260040161069890612041565b6060816114805750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114aa578061149481611ff7565b91506114a39050600a836120a9565b9150611484565b60008167ffffffffffffffff8111156114c5576114c5611c34565b6040519080825280601f01601f1916602001820160405280156114ef576020820181803683370190505b5090505b841561127657611504600183612012565b9150611511600a866120bd565b61151c906030612029565b60f81b81838151811061153157611531611ee9565b60200101906001600160f81b031916908160001a905350611553600a866120a9565b94506114f3565b600181600001600082825461156f9190612029565b909155505050565b610908828260405180602001604052806000815250611747565b6001600160a01b0383166115ec576115e781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61160f565b816001600160a01b0316836001600160a01b03161461160f5761160f838261177a565b6001600160a01b038216611626576107ce81611817565b826001600160a01b0316826001600160a01b0316146107ce576107ce82826118c6565b60006001600160a01b0384163b1561173c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061168d9033908990889088906004016120d1565b6020604051808303816000875af19250505080156116c8575060408051601f3d908101601f191682019092526116c59181019061210e565b60015b611722573d8080156116f6576040519150601f19603f3d011682016040523d82523d6000602084013e6116fb565b606091505b50805161171a5760405162461bcd60e51b815260040161069890612041565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611276565b506001949350505050565b611751838361190a565b61175e6000848484611649565b6107ce5760405162461bcd60e51b815260040161069890612041565b6000600161178784610a83565b6117919190612012565b6000838152600760205260409020549091508082146117e4576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061182990600190612012565b6000838152600960205260408120546008805493945090928490811061185157611851611ee9565b90600052602060002001549050806008838154811061187257611872611ee9565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806118aa576118aa61212b565b6001900381819060005260206000200160009055905550505050565b60006118d183610a83565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166119605760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610698565b6000818152600260205260409020546001600160a01b0316156119c55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610698565b6119d160008383611591565b6001600160a01b03821660009081526003602052604081208054600192906119fa908490612029565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611a6490611e28565b90600052602060002090601f016020900481019282611a865760008555611acc565b82601f10611a9f57805160ff1916838001178555611acc565b82800160010185558215611acc579182015b82811115611acc578251825591602001919060010190611ab1565b50611ad8929150611adc565b5090565b5b80821115611ad85760008155600101611add565b6001600160e01b031981168114611b0757600080fd5b50565b600060208284031215611b1c57600080fd5b8135611b2781611af1565b9392505050565b60005b83811015611b49578181015183820152602001611b31565b83811115610d3d5750506000910152565b60008151808452611b72816020860160208601611b2e565b601f01601f19169290920160200192915050565b602081526000611b276020830184611b5a565b600060208284031215611bab57600080fd5b5035919050565b80356001600160a01b0381168114611bc957600080fd5b919050565b60008060408385031215611be157600080fd5b611bea83611bb2565b946020939093013593505050565b600080600060608486031215611c0d57600080fd5b611c1684611bb2565b9250611c2460208501611bb2565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c6557611c65611c34565b604051601f8501601f19908116603f01168101908282118183101715611c8d57611c8d611c34565b81604052809350858152868686011115611ca657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611cd257600080fd5b813567ffffffffffffffff811115611ce957600080fd5b8201601f81018413611cfa57600080fd5b61127684823560208401611c4a565b600060208284031215611d1b57600080fd5b611b2782611bb2565b80358015158114611bc957600080fd5b60008060408385031215611d4757600080fd5b611d5083611bb2565b9150611d5e60208401611d24565b90509250929050565b600060208284031215611d7957600080fd5b611b2782611d24565b60008060008060808587031215611d9857600080fd5b611da185611bb2565b9350611daf60208601611bb2565b925060408501359150606085013567ffffffffffffffff811115611dd257600080fd5b8501601f81018713611de357600080fd5b611df287823560208401611c4a565b91505092959194509250565b60008060408385031215611e1157600080fd5b611e1a83611bb2565b9150611d5e60208401611bb2565b600181811c90821680611e3c57607f821691505b60208210811415611e5d57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60008151611f11818560208601611b2e565b9290920192915050565b600080845481600182811c915080831680611f3757607f831692505b6020808410821415611f5757634e487b7160e01b86526022600452602486fd5b818015611f6b5760018114611f7c57611fa9565b60ff19861689528489019650611fa9565b60008b81526020902060005b86811015611fa15781548b820152908501908301611f88565b505084890196505b505050505050611fb98185611eff565b95945050505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611ff257611ff2611fc2565b500290565b600060001982141561200b5761200b611fc2565b5060010190565b60008282101561202457612024611fc2565b500390565b6000821982111561203c5761203c611fc2565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826120b8576120b8612093565b500490565b6000826120cc576120cc612093565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061210490830184611b5a565b9695505050505050565b60006020828403121561212057600080fd5b8151611b2781611af1565b634e487b7160e01b600052603160045260246000fdfea264697066735822122025d177a0f1fb2643da64ff7f1d209d29097ae1834106dd30d4a8b8da800a829864736f6c634300080a0033

Deployed Bytecode Sourcemap

46971:2248:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36765:300;;;;;;;;;;-1:-1:-1;36765:300:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;36765:300:0;;;;;;;;22885:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24467:308::-;;;;;;;;;;-1:-1:-1;24467:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;24467:308:0;1550:203:1;23990:411:0;;;;;;;;;;-1:-1:-1;23990:411:0;;;;;:::i;:::-;;:::i;:::-;;37568:113;;;;;;;;;;-1:-1:-1;37656:10:0;:17;37568:113;;;2341:25:1;;;2329:2;2314:18;37568:113:0;2195:177:1;25526:376:0;;;;;;;;;;-1:-1:-1;25526:376:0;;;;;:::i;:::-;;:::i;37149:343::-;;;;;;;;;;-1:-1:-1;37149:343:0;;;;;:::i;:::-;;:::i;49069:147::-;;;;;;;;;;;;;:::i;25973:185::-;;;;;;;;;;-1:-1:-1;25973:185:0;;;;;:::i;:::-;;:::i;37758:320::-;;;;;;;;;;-1:-1:-1;37758:320:0;;;;;:::i;:::-;;:::i;47697:96::-;;;;;;;;;;-1:-1:-1;47697:96:0;;;;;:::i;:::-;;:::i;22492:326::-;;;;;;;;;;-1:-1:-1;22492:326:0;;;;;:::i;:::-;;:::i;22135:295::-;;;;;;;;;;-1:-1:-1;22135:295:0;;;;;:::i;:::-;;:::i;46353:148::-;;;;;;;;;;;;;:::i;47203:45::-;;;;;;;;;;;;;;;;45637:87;;;;;;;;;;-1:-1:-1;45710:6:0;;-1:-1:-1;;;;;45710:6:0;45637:87;;47108:38;;;;;;;;;;;;47142:4;47108:38;;47590:99;;;;;;;;;;-1:-1:-1;47590:99:0;;;;;:::i;:::-;;:::i;23054:104::-;;;;;;;;;;;;;:::i;24847:327::-;;;;;;;;;;-1:-1:-1;24847:327:0;;;;;:::i;:::-;;:::i;47490:92::-;;;;;;;;;;-1:-1:-1;47490:92:0;;;;;:::i;:::-;;:::i;26229:365::-;;;;;;;;;;-1:-1:-1;26229:365:0;;;;;:::i;:::-;;:::i;48785:276::-;;;;;;;;;;-1:-1:-1;48785:276:0;;;;;:::i;:::-;;:::i;47153:43::-;;;;;;;;;;;;47194:2;47153:43;;48680:97;;;;;;;;;;;;;:::i;25245:214::-;;;;;;;;;;-1:-1:-1;25245:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;25416:25:0;;;25387:4;25416:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25245:214;47905:767;;;;;;:::i;:::-;;:::i;46656:281::-;;;;;;;;;;-1:-1:-1;46656:281:0;;;;;:::i;:::-;;:::i;47801:96::-;;;;;;;;;;-1:-1:-1;47801:96:0;;;;;:::i;:::-;;:::i;36765:300::-;36912:4;-1:-1:-1;;;;;;36954:50:0;;-1:-1:-1;;;36954:50:0;;:103;;;37021:36;37045:11;37021:23;:36::i;:::-;36934:123;36765:300;-1:-1:-1;;36765:300:0:o;22885:100::-;22939:13;22972:5;22965:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22885:100;:::o;24467:308::-;24588:7;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;24613:110;;;;-1:-1:-1;;;24613:110:0;;6259:2:1;24613:110:0;;;6241:21:1;6298:2;6278:18;;;6271:30;6337:34;6317:18;;;6310:62;-1:-1:-1;;;6388:18:1;;;6381:42;6440:19;;24613:110:0;;;;;;;;;-1:-1:-1;24743:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24743:24:0;;24467:308::o;23990:411::-;24071:13;24087:23;24102:7;24087:14;:23::i;:::-;24071:39;;24135:5;-1:-1:-1;;;;;24129:11:0;:2;-1:-1:-1;;;;;24129:11:0;;;24121:57;;;;-1:-1:-1;;;24121:57:0;;6672:2:1;24121:57:0;;;6654:21:1;6711:2;6691:18;;;6684:30;6750:34;6730:18;;;6723:62;-1:-1:-1;;;6801:18:1;;;6794:31;6842:19;;24121:57:0;6470:397:1;24121:57:0;16975:10;-1:-1:-1;;;;;24213:21:0;;;;:62;;-1:-1:-1;24238:37:0;24255:5;16975:10;25245:214;:::i;24238:37::-;24191:168;;;;-1:-1:-1;;;24191:168:0;;7074:2:1;24191:168:0;;;7056:21:1;7113:2;7093:18;;;7086:30;7152:34;7132:18;;;7125:62;7223:26;7203:18;;;7196:54;7267:19;;24191:168:0;6872:420:1;24191:168:0;24372:21;24381:2;24385:7;24372:8;:21::i;:::-;24060:341;23990:411;;:::o;25526:376::-;25735:41;16975:10;25768:7;25735:18;:41::i;:::-;25713:140;;;;-1:-1:-1;;;25713:140:0;;;;;;;:::i;:::-;25866:28;25876:4;25882:2;25886:7;25866:9;:28::i;37149:343::-;37291:7;37346:23;37363:5;37346:16;:23::i;:::-;37338:5;:31;37316:124;;;;-1:-1:-1;;;37316:124:0;;7917:2:1;37316:124:0;;;7899:21:1;7956:2;7936:18;;;7929:30;7995:34;7975:18;;;7968:62;-1:-1:-1;;;8046:18:1;;;8039:41;8097:19;;37316:124:0;7715:407:1;37316:124:0;-1:-1:-1;;;;;;37458:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37149:343::o;49069:147::-;45710:6;;-1:-1:-1;;;;;45710:6:0;16975:10;45871:23;;:51;;-1:-1:-1;45898:8:0;;-1:-1:-1;;;;;45898:8:0;16975:10;45898:24;45871:51;45849:133;;;;-1:-1:-1;;;45849:133:0;;;;;;;:::i;:::-;49171:37:::1;::::0;49137:21:::1;::::0;49179:10:::1;::::0;49171:37;::::1;;;::::0;49137:21;;49119:15:::1;49171:37:::0;49119:15;49171:37;49137:21;49179:10;49171:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;49108:108;49069:147::o:0;25973:185::-;26111:39;26128:4;26134:2;26138:7;26111:39;;;;;;;;;;;;:16;:39::i;37758:320::-;37878:7;37933:30;37656:10;:17;;37568:113;37933:30;37925:5;:38;37903:132;;;;-1:-1:-1;;;37903:132:0;;8690:2:1;37903:132:0;;;8672:21:1;8729:2;8709:18;;;8702:30;8768:34;8748:18;;;8741:62;-1:-1:-1;;;8819:18:1;;;8812:42;8871:19;;37903:132:0;8488:408:1;37903:132:0;38053:10;38064:5;38053:17;;;;;;;;:::i;:::-;;;;;;;;;38046:24;;37758:320;;;:::o;47697:96::-;45710:6;;-1:-1:-1;;;;;45710:6:0;16975:10;45871:23;;:51;;-1:-1:-1;45898:8:0;;-1:-1:-1;;;;;45898:8:0;16975:10;45898:24;45871:51;45849:133;;;;-1:-1:-1;;;45849:133:0;;;;;;;:::i;:::-;47766:19;;::::1;::::0;:13:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;22492:326::-:0;22609:7;22650:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22650:16:0;22699:19;22677:110;;;;-1:-1:-1;;;22677:110:0;;9235:2:1;22677:110:0;;;9217:21:1;9274:2;9254:18;;;9247:30;9313:34;9293:18;;;9286:62;-1:-1:-1;;;9364:18:1;;;9357:39;9413:19;;22677:110:0;9033:405:1;22135:295:0;22252:7;-1:-1:-1;;;;;22299:19:0;;22277:111;;;;-1:-1:-1;;;22277:111:0;;9645:2:1;22277:111:0;;;9627:21:1;9684:2;9664:18;;;9657:30;9723:34;9703:18;;;9696:62;-1:-1:-1;;;9774:18:1;;;9767:40;9824:19;;22277:111:0;9443:406:1;22277:111:0;-1:-1:-1;;;;;;22406:16:0;;;;;:9;:16;;;;;;;22135:295::o;46353:148::-;45710:6;;-1:-1:-1;;;;;45710:6:0;16975:10;45871:23;;:51;;-1:-1:-1;45898:8:0;;-1:-1:-1;;;;;45898:8:0;16975:10;45898:24;45871:51;45849:133;;;;-1:-1:-1;;;45849:133:0;;;;;;;:::i;:::-;46444:6:::1;::::0;46423:40:::1;::::0;46460:1:::1;::::0;-1:-1:-1;;;;;46444:6:0::1;::::0;46423:40:::1;::::0;46460:1;;46423:40:::1;46474:6;:19:::0;;-1:-1:-1;;;;;;46474:19:0::1;::::0;;46353:148::o;47590:99::-;45710:6;;-1:-1:-1;;;;;45710:6:0;16975:10;45871:23;;:51;;-1:-1:-1;45898:8:0;;-1:-1:-1;;;;;45898:8:0;16975:10;45898:24;45871:51;45849:133;;;;-1:-1:-1;;;45849:133:0;;;;;;;:::i;:::-;47663:18;;::::1;::::0;:12:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;23054:104::-:0;23110:13;23143:7;23136:14;;;;;:::i;24847:327::-;-1:-1:-1;;;;;24982:24:0;;16975:10;24982:24;;24974:62;;;;-1:-1:-1;;;24974:62:0;;10056:2:1;24974:62:0;;;10038:21:1;10095:2;10075:18;;;10068:30;10134:27;10114:18;;;10107:55;10179:18;;24974:62:0;9854:349:1;24974:62:0;16975:10;25049:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25049:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25049:53:0;;;;;;;;;;25118:48;;540:41:1;;;25049:42:0;;16975:10;25118:48;;513:18:1;25118:48:0;;;;;;;24847:327;;:::o;47490:92::-;45710:6;;-1:-1:-1;;;;;45710:6:0;16975:10;45871:23;;:51;;-1:-1:-1;45898:8:0;;-1:-1:-1;;;;;45898:8:0;16975:10;45898:24;45871:51;45849:133;;;;-1:-1:-1;;;45849:133:0;;;;;;;:::i;:::-;47554:9:::1;:20:::0;;-1:-1:-1;;47554:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47490:92::o;26229:365::-;26418:41;16975:10;26451:7;26418:18;:41::i;:::-;26396:140;;;;-1:-1:-1;;;26396:140:0;;;;;;;:::i;:::-;26547:39;26561:4;26567:2;26571:7;26580:5;26547:13;:39::i;:::-;26229:365;;;;:::o;48785:276::-;28206:4;28230:16;;;:7;:16;;;;;;48894:13;;-1:-1:-1;;;;;28230:16:0;48925:49;;;;-1:-1:-1;;;48925:49:0;;10410:2:1;48925:49:0;;;10392:21:1;10449:2;10429:18;;;10422:30;-1:-1:-1;;;10468:18:1;;;10461:50;10528:18;;48925:49:0;10208:344:1;48925:49:0;49018:13;49033:18;:7;:16;:18::i;:::-;49001:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48987:66;;48785:276;;;:::o;48680:97::-;48724:13;48757:12;48750:19;;;;;:::i;47905:767::-;47983:9;;;;47975:44;;;;-1:-1:-1;;;47975:44:0;;12254:2:1;47975:44:0;;;12236:21:1;12293:2;12273:18;;;12266:30;-1:-1:-1;;;12312:18:1;;;12305:52;12374:18;;47975:44:0;12052:346:1;47975:44:0;47194:2;48052:14;:32;;48030:110;;;;-1:-1:-1;;;48030:110:0;;12605:2:1;48030:110:0;;;12587:21:1;12644:2;12624:18;;;12617:30;12683;12663:18;;;12656:58;12731:18;;48030:110:0;12403:352:1;48030:110:0;47142:4;48173:20;:10;44066:14;;43974:114;48173:20;:30;48151:109;;;;-1:-1:-1;;;48151:109:0;;12962:2:1;48151:109:0;;;12944:21:1;13001:2;12981:18;;;12974:30;13040:31;13020:18;;;13013:59;13089:18;;48151:109:0;12760:353:1;48151:109:0;48319:9;48301:14;48293:5;;:22;;;;:::i;:::-;:35;;48271:113;;;;-1:-1:-1;;;48271:113:0;;13625:2:1;48271:113:0;;;13607:21:1;13664:2;13644:18;;;13637:30;13703;13683:18;;;13676:58;13751:18;;48271:113:0;13423:352:1;48271:113:0;48402:9;48397:268;48421:14;48417:1;:18;48397:268;;;48457:15;48475:20;:10;44066:14;;43974:114;48475:20;48457:38;;47142:4;48516:20;:10;44066:14;;43974:114;48516:20;:30;48512:142;;;48567:22;:10;:20;:22::i;:::-;48608:30;48618:10;48630:7;48608:9;:30::i;:::-;-1:-1:-1;48437:3:0;;;;:::i;:::-;;;;48397:268;;46656:281;45710:6;;-1:-1:-1;;;;;45710:6:0;16975:10;45871:23;;:51;;-1:-1:-1;45898:8:0;;-1:-1:-1;;;;;45898:8:0;16975:10;45898:24;45871:51;45849:133;;;;-1:-1:-1;;;45849:133:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46759:22:0;::::1;46737:110;;;::::0;-1:-1:-1;;;46737:110:0;;14122:2:1;46737:110:0::1;::::0;::::1;14104:21:1::0;14161:2;14141:18;;;14134:30;14200:34;14180:18;;;14173:62;-1:-1:-1;;;14251:18:1;;;14244:36;14297:19;;46737:110:0::1;13920:402:1::0;46737:110:0::1;46884:6;::::0;46863:38:::1;::::0;-1:-1:-1;;;;;46863:38:0;;::::1;::::0;46884:6:::1;::::0;46863:38:::1;::::0;46884:6:::1;::::0;46863:38:::1;46912:6;:17:::0;;-1:-1:-1;;;;;;46912:17:0::1;-1:-1:-1::0;;;;;46912:17:0;;;::::1;::::0;;;::::1;::::0;;46656:281::o;47801:96::-;45710:6;;-1:-1:-1;;;;;45710:6:0;16975:10;45871:23;;:51;;-1:-1:-1;45898:8:0;;-1:-1:-1;;;;;45898:8:0;16975:10;45898:24;45871:51;45849:133;;;;-1:-1:-1;;;45849:133:0;;;;;;;:::i;:::-;47872:5:::1;:17:::0;47801:96::o;21716:355::-;21863:4;-1:-1:-1;;;;;;21905:40:0;;-1:-1:-1;;;21905:40:0;;:105;;-1:-1:-1;;;;;;;21962:48:0;;-1:-1:-1;;;21962:48:0;21905:105;:158;;;-1:-1:-1;;;;;;;;;;20326:40:0;;;22027:36;20167:207;32264:174;32339:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32339:29:0;-1:-1:-1;;;;;32339:29:0;;;;;;;;:24;;32393:23;32339:24;32393:14;:23::i;:::-;-1:-1:-1;;;;;32384:46:0;;;;;;;;;;;32264:174;;:::o;28435:452::-;28564:4;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;28586:110;;;;-1:-1:-1;;;28586:110:0;;14529:2:1;28586:110:0;;;14511:21:1;14568:2;14548:18;;;14541:30;14607:34;14587:18;;;14580:62;-1:-1:-1;;;14658:18:1;;;14651:42;14710:19;;28586:110:0;14327:408:1;28586:110:0;28707:13;28723:23;28738:7;28723:14;:23::i;:::-;28707:39;;28776:5;-1:-1:-1;;;;;28765:16:0;:7;-1:-1:-1;;;;;28765:16:0;;:64;;;;28822:7;-1:-1:-1;;;;;28798:31:0;:20;28810:7;28798:11;:20::i;:::-;-1:-1:-1;;;;;28798:31:0;;28765:64;:113;;;-1:-1:-1;;;;;;25416:25:0;;;25387:4;25416:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28846:32;28757:122;28435:452;-1:-1:-1;;;;28435:452:0:o;31531:615::-;31704:4;-1:-1:-1;;;;;31677:31:0;:23;31692:7;31677:14;:23::i;:::-;-1:-1:-1;;;;;31677:31:0;;31655:122;;;;-1:-1:-1;;;31655:122:0;;14942:2:1;31655:122:0;;;14924:21:1;14981:2;14961:18;;;14954:30;15020:34;15000:18;;;14993:62;-1:-1:-1;;;15071:18:1;;;15064:39;15120:19;;31655:122:0;14740:405:1;31655:122:0;-1:-1:-1;;;;;31796:16:0;;31788:65;;;;-1:-1:-1;;;31788:65:0;;15352:2:1;31788:65:0;;;15334:21:1;15391:2;15371:18;;;15364:30;15430:34;15410:18;;;15403:62;-1:-1:-1;;;15481:18:1;;;15474:34;15525:19;;31788:65:0;15150:400:1;31788:65:0;31866:39;31887:4;31893:2;31897:7;31866:20;:39::i;:::-;31970:29;31987:1;31991:7;31970:8;:29::i;:::-;-1:-1:-1;;;;;32012:15:0;;;;;;:9;:15;;;;;:20;;32031:1;;32012:15;:20;;32031:1;;32012:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32043:13:0;;;;;;:9;:13;;;;;:18;;32060:1;;32043:13;:18;;32060:1;;32043:18;:::i;:::-;;;;-1:-1:-1;;32072:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32072:21:0;-1:-1:-1;;;;;32072:21:0;;;;;;;;;32111:27;;32072:16;;32111:27;;;;;;;31531:615;;;:::o;27476:352::-;27633:28;27643:4;27649:2;27653:7;27633:9;:28::i;:::-;27694:48;27717:4;27723:2;27727:7;27736:5;27694:22;:48::i;:::-;27672:148;;;;-1:-1:-1;;;27672:148:0;;;;;;;:::i;17567:723::-;17623:13;17844:10;17840:53;;-1:-1:-1;;17871:10:0;;;;;;;;;;;;-1:-1:-1;;;17871:10:0;;;;;17567:723::o;17840:53::-;17918:5;17903:12;17959:78;17966:9;;17959:78;;17992:8;;;;:::i;:::-;;-1:-1:-1;18015:10:0;;-1:-1:-1;18023:2:0;18015:10;;:::i;:::-;;;17959:78;;;18047:19;18079:6;18069:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18069:17:0;;18047:39;;18097:154;18104:10;;18097:154;;18131:11;18141:1;18131:11;;:::i;:::-;;-1:-1:-1;18200:10:0;18208:2;18200:5;:10;:::i;:::-;18187:24;;:2;:24;:::i;:::-;18174:39;;18157:6;18164;18157:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18157:56:0;;;;;;;;-1:-1:-1;18228:11:0;18237:2;18228:11;;:::i;:::-;;;18097:154;;44096:117;44193:1;44175:7;:14;;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;;44096:117:0:o;29229:110::-;29305:26;29315:2;29319:7;29305:26;;;;;;;;;;;;:9;:26::i;38691:589::-;-1:-1:-1;;;;;38897:18:0;;38893:187;;38932:40;38964:7;40107:10;:17;;40080:24;;;;:15;:24;;;;;:44;;;40135:24;;;;;;;;;;;;40003:164;38932:40;38893:187;;;39002:2;-1:-1:-1;;;;;38994:10:0;:4;-1:-1:-1;;;;;38994:10:0;;38990:90;;39021:47;39054:4;39060:7;39021:32;:47::i;:::-;-1:-1:-1;;;;;39094:16:0;;39090:183;;39127:45;39164:7;39127:36;:45::i;39090:183::-;39200:4;-1:-1:-1;;;;;39194:10:0;:2;-1:-1:-1;;;;;39194:10:0;;39190:83;;39221:40;39249:2;39253:7;39221:27;:40::i;33003:1053::-;33158:4;-1:-1:-1;;;;;33179:13:0;;8674:20;8722:8;33175:874;;33232:175;;-1:-1:-1;;;33232:175:0;;-1:-1:-1;;;;;33232:36:0;;;;;:175;;16975:10;;33326:4;;33353:7;;33383:5;;33232:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33232:175:0;;;;;;;;-1:-1:-1;;33232:175:0;;;;;;;;;;;;:::i;:::-;;;33211:783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33594:13:0;;33590:389;;33637:108;;-1:-1:-1;;;33637:108:0;;;;;;;:::i;33590:389::-;33929:6;33923:13;33914:6;33910:2;33906:15;33899:38;33211:783;-1:-1:-1;;;;;;33471:55:0;-1:-1:-1;;;33471:55:0;;-1:-1:-1;33464:62:0;;33175:874;-1:-1:-1;34033:4:0;33003:1053;;;;;;:::o;29566:321::-;29696:18;29702:2;29706:7;29696:5;:18::i;:::-;29747:54;29778:1;29782:2;29786:7;29795:5;29747:22;:54::i;:::-;29725:154;;;;-1:-1:-1;;;29725:154:0;;;;;;;:::i;40794:1002::-;41074:22;41124:1;41099:22;41116:4;41099:16;:22::i;:::-;:26;;;;:::i;:::-;41136:18;41157:26;;;:17;:26;;;;;;41074:51;;-1:-1:-1;41290:28:0;;;41286:328;;-1:-1:-1;;;;;41357:18:0;;41335:19;41357:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41408:30;;;;;;:44;;;41525:30;;:17;:30;;;;;:43;;;41286:328;-1:-1:-1;41710:26:0;;;;:17;:26;;;;;;;;41703:33;;;-1:-1:-1;;;;;41754:18:0;;;;;:12;:18;;;;;:34;;;;;;;41747:41;40794:1002::o;42091:1079::-;42369:10;:17;42344:22;;42369:21;;42389:1;;42369:21;:::i;:::-;42401:18;42422:24;;;:15;:24;;;;;;42795:10;:26;;42344:46;;-1:-1:-1;42422:24:0;;42344:46;;42795:26;;;;;;:::i;:::-;;;;;;;;;42773:48;;42859:11;42834:10;42845;42834:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42939:28;;;:15;:28;;;;;;;:41;;;43111:24;;;;;43104:31;43146:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42162:1008;;;42091:1079;:::o;39581:221::-;39666:14;39683:20;39700:2;39683:16;:20::i;:::-;-1:-1:-1;;;;;39714:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39759:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39581:221:0:o;30223:382::-;-1:-1:-1;;;;;30303:16:0;;30295:61;;;;-1:-1:-1;;;30295:61:0;;17704:2:1;30295:61:0;;;17686:21:1;;;17723:18;;;17716:30;17782:34;17762:18;;;17755:62;17834:18;;30295:61:0;17502:356:1;30295:61:0;28206:4;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;:30;30367:58;;;;-1:-1:-1;;;30367:58:0;;18065:2:1;30367:58:0;;;18047:21:1;18104:2;18084:18;;;18077:30;18143;18123:18;;;18116:58;18191:18;;30367:58:0;17863:352:1;30367:58:0;30438:45;30467:1;30471:2;30475:7;30438:20;:45::i;:::-;-1:-1:-1;;;;;30496:13:0;;;;;;:9;:13;;;;;:18;;30513:1;;30496:13;:18;;30513:1;;30496:18;:::i;:::-;;;;-1:-1:-1;;30525:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30525:21:0;-1:-1:-1;;;;;30525:21:0;;;;;;;;30564:33;;30525:16;;;30564:33;;30525:16;;30564:33;30223:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;68:71;14:131;:::o;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;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1855:70;1758:173;;;:::o;1936:254::-;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2377:328::-;2454:6;2462;2470;2523:2;2511:9;2502:7;2498:23;2494:32;2491:52;;;2539:1;2536;2529:12;2491:52;2562:29;2581:9;2562:29;:::i;:::-;2552:39;;2610:38;2644:2;2633:9;2629:18;2610:38;:::i;:::-;2600:48;;2695:2;2684:9;2680:18;2667:32;2657:42;;2377:328;;;;;:::o;2710:127::-;2771:10;2766:3;2762:20;2759:1;2752:31;2802:4;2799:1;2792:15;2826:4;2823:1;2816:15;2842:632;2907:5;2937:18;2978:2;2970:6;2967:14;2964:40;;;2984:18;;:::i;:::-;3059:2;3053:9;3027:2;3113:15;;-1:-1:-1;;3109:24:1;;;3135:2;3105:33;3101:42;3089:55;;;3159:18;;;3179:22;;;3156:46;3153:72;;;3205:18;;:::i;:::-;3245:10;3241:2;3234:22;3274:6;3265:15;;3304:6;3296;3289:22;3344:3;3335:6;3330:3;3326:16;3323:25;3320:45;;;3361:1;3358;3351:12;3320:45;3411:6;3406:3;3399:4;3391:6;3387:17;3374:44;3466:1;3459:4;3450:6;3442;3438:19;3434:30;3427:41;;;;2842:632;;;;;:::o;3479:451::-;3548:6;3601:2;3589:9;3580:7;3576:23;3572:32;3569:52;;;3617:1;3614;3607:12;3569:52;3657:9;3644:23;3690:18;3682:6;3679:30;3676:50;;;3722:1;3719;3712:12;3676:50;3745:22;;3798:4;3790:13;;3786:27;-1:-1:-1;3776:55:1;;3827:1;3824;3817:12;3776:55;3850:74;3916:7;3911:2;3898:16;3893:2;3889;3885:11;3850:74;:::i;3935:186::-;3994:6;4047:2;4035:9;4026:7;4022:23;4018:32;4015:52;;;4063:1;4060;4053:12;4015:52;4086:29;4105:9;4086:29;:::i;4126:160::-;4191:20;;4247:13;;4240:21;4230:32;;4220:60;;4276:1;4273;4266:12;4291:254;4356:6;4364;4417:2;4405:9;4396:7;4392:23;4388:32;4385:52;;;4433:1;4430;4423:12;4385:52;4456:29;4475:9;4456:29;:::i;:::-;4446:39;;4504:35;4535:2;4524:9;4520:18;4504:35;:::i;:::-;4494:45;;4291:254;;;;;:::o;4550:180::-;4606:6;4659:2;4647:9;4638:7;4634:23;4630:32;4627:52;;;4675:1;4672;4665:12;4627:52;4698:26;4714:9;4698:26;:::i;4735:667::-;4830:6;4838;4846;4854;4907:3;4895:9;4886:7;4882:23;4878:33;4875:53;;;4924:1;4921;4914:12;4875:53;4947:29;4966:9;4947:29;:::i;:::-;4937:39;;4995:38;5029:2;5018:9;5014:18;4995:38;:::i;:::-;4985:48;;5080:2;5069:9;5065:18;5052:32;5042:42;;5135:2;5124:9;5120:18;5107:32;5162:18;5154:6;5151:30;5148:50;;;5194:1;5191;5184:12;5148:50;5217:22;;5270:4;5262:13;;5258:27;-1:-1:-1;5248:55:1;;5299:1;5296;5289:12;5248:55;5322:74;5388:7;5383:2;5370:16;5365:2;5361;5357:11;5322:74;:::i;:::-;5312:84;;;4735:667;;;;;;;:::o;5407:260::-;5475:6;5483;5536:2;5524:9;5515:7;5511:23;5507:32;5504:52;;;5552:1;5549;5542:12;5504:52;5575:29;5594:9;5575:29;:::i;:::-;5565:39;;5623:38;5657:2;5646:9;5642:18;5623:38;:::i;5672:380::-;5751:1;5747:12;;;;5794;;;5815:61;;5869:4;5861:6;5857:17;5847:27;;5815:61;5922:2;5914:6;5911:14;5891:18;5888:38;5885:161;;;5968:10;5963:3;5959:20;5956:1;5949:31;6003:4;6000:1;5993:15;6031:4;6028:1;6021:15;5885:161;;5672:380;;;:::o;7297:413::-;7499:2;7481:21;;;7538:2;7518:18;;;7511:30;7577:34;7572:2;7557:18;;7550:62;-1:-1:-1;;;7643:2:1;7628:18;;7621:47;7700:3;7685:19;;7297:413::o;8127:356::-;8329:2;8311:21;;;8348:18;;;8341:30;8407:34;8402:2;8387:18;;8380:62;8474:2;8459:18;;8127:356::o;8901:127::-;8962:10;8957:3;8953:20;8950:1;8943:31;8993:4;8990:1;8983:15;9017:4;9014:1;9007:15;10683:185;10725:3;10763:5;10757:12;10778:52;10823:6;10818:3;10811:4;10804:5;10800:16;10778:52;:::i;:::-;10846:16;;;;;10683:185;-1:-1:-1;;10683:185:1:o;10873:1174::-;11049:3;11078:1;11111:6;11105:13;11141:3;11163:1;11191:9;11187:2;11183:18;11173:28;;11251:2;11240:9;11236:18;11273;11263:61;;11317:4;11309:6;11305:17;11295:27;;11263:61;11343:2;11391;11383:6;11380:14;11360:18;11357:38;11354:165;;;-1:-1:-1;;;11418:33:1;;11474:4;11471:1;11464:15;11504:4;11425:3;11492:17;11354:165;11535:18;11562:104;;;;11680:1;11675:320;;;;11528:467;;11562:104;-1:-1:-1;;11595:24:1;;11583:37;;11640:16;;;;-1:-1:-1;11562:104:1;;11675:320;10630:1;10623:14;;;10667:4;10654:18;;11770:1;11784:165;11798:6;11795:1;11792:13;11784:165;;;11876:14;;11863:11;;;11856:35;11919:16;;;;11813:10;;11784:165;;;11788:3;;11978:6;11973:3;11969:16;11962:23;;11528:467;;;;;;;12011:30;12037:3;12029:6;12011:30;:::i;:::-;12004:37;10873:1174;-1:-1:-1;;;;;10873:1174:1:o;13118:127::-;13179:10;13174:3;13170:20;13167:1;13160:31;13210:4;13207:1;13200:15;13234:4;13231:1;13224:15;13250:168;13290:7;13356:1;13352;13348:6;13344:14;13341:1;13338:21;13333:1;13326:9;13319:17;13315:45;13312:71;;;13363:18;;:::i;:::-;-1:-1:-1;13403:9:1;;13250:168::o;13780:135::-;13819:3;-1:-1:-1;;13840:17:1;;13837:43;;;13860:18;;:::i;:::-;-1:-1:-1;13907:1:1;13896:13;;13780:135::o;15555:125::-;15595:4;15623:1;15620;15617:8;15614:34;;;15628:18;;:::i;:::-;-1:-1:-1;15665:9:1;;15555:125::o;15685:128::-;15725:3;15756:1;15752:6;15749:1;15746:13;15743:39;;;15762:18;;:::i;:::-;-1:-1:-1;15798:9:1;;15685:128::o;15818:414::-;16020:2;16002:21;;;16059:2;16039:18;;;16032:30;16098:34;16093:2;16078:18;;16071:62;-1:-1:-1;;;16164:2:1;16149:18;;16142:48;16222:3;16207:19;;15818:414::o;16237:127::-;16298:10;16293:3;16289:20;16286:1;16279:31;16329:4;16326:1;16319:15;16353:4;16350:1;16343:15;16369:120;16409:1;16435;16425:35;;16440:18;;:::i;:::-;-1:-1:-1;16474:9:1;;16369:120::o;16494:112::-;16526:1;16552;16542:35;;16557:18;;:::i;:::-;-1:-1:-1;16591:9:1;;16494:112::o;16611:500::-;-1:-1:-1;;;;;16880:15:1;;;16862:34;;16932:15;;16927:2;16912:18;;16905:43;16979:2;16964:18;;16957:34;;;17027:3;17022:2;17007:18;;17000:31;;;16805:4;;17048:57;;17085:19;;17077:6;17048:57;:::i;:::-;17040:65;16611:500;-1:-1:-1;;;;;;16611:500:1:o;17116:249::-;17185:6;17238:2;17226:9;17217:7;17213:23;17209:32;17206:52;;;17254:1;17251;17244:12;17206:52;17286:9;17280:16;17305:30;17329:5;17305:30;:::i;17370:127::-;17431:10;17426:3;17422:20;17419:1;17412:31;17462:4;17459:1;17452:15;17486:4;17483:1;17476:15

Swarm Source

ipfs://25d177a0f1fb2643da64ff7f1d209d29097ae1834106dd30d4a8b8da800a8298
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.