ETH Price: $3,319.83 (+1.85%)
Gas: 2 Gwei

Doragon Ryujin NFTs (RYUJIN)
 

Overview

TokenID

64

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 600 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-17
*/

pragma solidity 0.8.15;

// SPDX-License-Identifier: MIT

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File: @openzeppelin/contracts/access/Ownable.sol

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

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

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

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

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

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

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

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

interface IERC20 {
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);

    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function decimals() external view returns (uint8);
}
    
contract DoragonRyujin is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string baseURI;
  string public baseExtension = "";
  uint256 public cost = 0.05 ether;
  uint256 public maxSupply = 203;
  uint256 public maxMintAmount = 5;
  uint256 public whitelistMintAmount = 1;
  bool public paused = true;
  bool public revealed = false;
  string public notRevealedUri;
  bool public whitelistEnforced = false;
  mapping (address => bool) public isWhitelisted;
  mapping (address => uint256) public whitelistedMintAmount;

  constructor() ERC721("Doragon Ryujin NFTs", "RYUJIN"){
    setBaseURI("");
    setNotRevealedURI("");
  }

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

  // private mint for marketing only.
  function privateMint(uint256 _mintAmount, address destination) public onlyOwner {
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "cannot mint 0");
    require(supply + _mintAmount <= maxSupply, "Cannot mint above max supply");
    require(supply + _mintAmount <= 10000, "Cannot mint above 10000");

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

  // public
  function mint(uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!paused, "NFT: Minting is paused");
    require(_mintAmount <= maxMintAmount, "NFT: Minting too many");

    if(whitelistEnforced){
        require(isWhitelisted[msg.sender], "NFT: Must be whitelisted in order to mint during this phase");
        require(whitelistedMintAmount[msg.sender] + _mintAmount <= whitelistMintAmount, "NFT: Requesting too many whitelist NFTs to be minted");
        whitelistedMintAmount[msg.sender] += _mintAmount;
    }

    require(_mintAmount > 0, "NFT: cannot mint 0");
    require(supply + _mintAmount <= maxSupply, "NFT: Cannot mint above max supply");

    uint256 totalCost = cost * _mintAmount;
    require(msg.value >= totalCost, "NFT: Must send enough ETH to cover mint fee");
    (bool os, ) = payable(address(owner())).call{value: address(this).balance}("");
    require(os);
    
    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
  }
  
  function startWhitelist() external onlyOwner {
      whitelistEnforced = true;
  }
  
  function startPublicSale() external onlyOwner {
      whitelistEnforced = false;
  }
  
  function whitelistAddresses(address[] calldata wallets, bool whitelistEnabled) external onlyOwner {
      for (uint256 i = 0; i < wallets.length; i++){
          isWhitelisted[wallets[i]] = whitelistEnabled;
      }
  }

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

  function tokenURI(uint256 tokenId) public view virtual override returns (string memory){
    require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setCost(uint256 _newCostInWei) public onlyOwner {
    cost = _newCostInWei;
  }

  function setWhiteListMintAmount(uint256 _newAmount) public onlyOwner {
    require(_newAmount <= 3, "Cannot set higher than 3");
    whitelistMintAmount = _newAmount;
  }

  function setMaxMintAmount(uint256 _newAmount) public onlyOwner {
    require(_newAmount >= 1, "Cannot set lower than 1");
    maxMintAmount = _newAmount;
  }

  function setMaxSupply(uint256 _newMaxSupply) public onlyOwner {
    require(_newMaxSupply <= 10000, "Cannot set higher than 10000");
    maxSupply = _newMaxSupply;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

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

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

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
  // recover any stuck ETH (if someone sends ETH directly to the contract only)

  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(os);
  }
}

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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"privateMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCostInWei","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setWhiteListMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"},{"internalType":"bool","name":"whitelistEnabled","type":"bool"}],"name":"whitelistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistEnforced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60a060405260006080908152600c906200001a9082620002de565b5066b1a2bc2ec50000600d5560cb600e556005600f55600160108190556011805461ffff191690911790556013805460ff191690553480156200005c57600080fd5b506040518060400160405280601381526020017f446f7261676f6e205279756a696e204e4654730000000000000000000000000081525060405180604001604052806006815260200165292caaa524a760d11b8152508160009081620000c39190620002de565b506001620000d28282620002de565b505050620000ef620000e96200012960201b60201c565b6200012d565b60408051602081019091526000815262000109906200017f565b6040805160208101909152600081526200012390620001e0565b620003aa565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001ce5760405162461bcd60e51b815260206004820181905260248201526000805160206200347f83398151915260448201526064015b60405180910390fd5b600b620001dc8282620002de565b5050565b600a546001600160a01b031633146200022b5760405162461bcd60e51b815260206004820181905260248201526000805160206200347f8339815191526044820152606401620001c5565b6012620001dc8282620002de565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200026457607f821691505b6020821081036200028557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002d957600081815260208120601f850160051c81016020861015620002b45750805b601f850160051c820191505b81811015620002d557828155600101620002c0565b5050505b505050565b81516001600160401b03811115620002fa57620002fa62000239565b62000312816200030b84546200024f565b846200028b565b602080601f8311600181146200034a5760008415620003315750858301515b600019600386901b1c1916600185901b178555620002d5565b600085815260208120601f198616915b828110156200037b578886015182559484019460019091019084016200035a565b50858210156200039a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6130c580620003ba6000396000f3fe6080604052600436106102fd5760003560e01c806362e7707e1161018f578063a475b5dd116100e1578063cfb89aba1161008a578063e985e9c511610064578063e985e9c514610817578063f2c4ce1e14610860578063f2fde38b1461088057600080fd5b8063cfb89aba146107cb578063d5abeb01146107e1578063da3ef23f146107f757600080fd5b8063bef870ca116100bb578063bef870ca14610776578063c668286214610796578063c87b56dd146107ab57600080fd5b8063a475b5dd14610714578063b88d4fde14610729578063beb73b311461074957600080fd5b80637f19c4121161014357806395d89b411161011d57806395d89b41146106cc578063a0712d68146106e1578063a22cb465146106f457600080fd5b80637f19c4121461067f57806389f91ece146106945780638da5cb5b146106ae57600080fd5b80636f8b44b0116101745780636f8b44b01461062a57806370a082311461064a578063715018a61461066a57600080fd5b806362e7707e146105ea5780636352211e1461060a57600080fd5b806323b872dd1161025357806344a0d68a116101fc578063555503b1116101d6578063555503b11461059057806355f804b3146105b05780635c975abb146105d057600080fd5b806344a0d68a146105315780634f6ccce714610551578063518302271461057157600080fd5b80633ccfd60b1161022d5780633ccfd60b146104dc57806342842e0e146104e4578063438b63001461050457600080fd5b806323b872dd1461046c5780632f745c591461048c5780633af32abf146104ac57600080fd5b8063088a4ed0116102b557806313faede61161028f57806313faede61461041d57806318160ddd14610441578063239c70ae1461045657600080fd5b8063088a4ed0146103c8578063095ea7b3146103e85780630c1c972a1461040857600080fd5b806306fdde03116102e657806306fdde0314610359578063081812fc1461037b578063081c8c44146103b357600080fd5b806301ffc9a71461030257806302329a2914610337575b600080fd5b34801561030e57600080fd5b5061032261031d366004612945565b6108a0565b60405190151581526020015b60405180910390f35b34801561034357600080fd5b50610357610352366004612977565b6108cb565b005b34801561036557600080fd5b5061036e61092b565b60405161032e91906129ea565b34801561038757600080fd5b5061039b6103963660046129fd565b6109bd565b6040516001600160a01b03909116815260200161032e565b3480156103bf57600080fd5b5061036e610a52565b3480156103d457600080fd5b506103576103e33660046129fd565b610ae0565b3480156103f457600080fd5b50610357610403366004612a2d565b610b7e565b34801561041457600080fd5b50610357610c93565b34801561042957600080fd5b50610433600d5481565b60405190815260200161032e565b34801561044d57600080fd5b50600854610433565b34801561046257600080fd5b50610433600f5481565b34801561047857600080fd5b50610357610487366004612a57565b610ce7565b34801561049857600080fd5b506104336104a7366004612a2d565b610d62565b3480156104b857600080fd5b506103226104c7366004612a93565b60146020526000908152604090205460ff1681565b610357610e0a565b3480156104f057600080fd5b506103576104ff366004612a57565b610eaa565b34801561051057600080fd5b5061052461051f366004612a93565b610ec5565b60405161032e9190612aae565b34801561053d57600080fd5b5061035761054c3660046129fd565b610f67565b34801561055d57600080fd5b5061043361056c3660046129fd565b610fb4565b34801561057d57600080fd5b5060115461032290610100900460ff1681565b34801561059c57600080fd5b506103576105ab3660046129fd565b611058565b3480156105bc57600080fd5b506103576105cb366004612b7e565b6110f6565b3480156105dc57600080fd5b506011546103229060ff1681565b3480156105f657600080fd5b50610357610605366004612bc7565b61114e565b34801561061657600080fd5b5061039b6106253660046129fd565b61120d565b34801561063657600080fd5b506103576106453660046129fd565b611284565b34801561065657600080fd5b50610433610665366004612a93565b611323565b34801561067657600080fd5b506103576113aa565b34801561068b57600080fd5b506103576113fe565b3480156106a057600080fd5b506013546103229060ff1681565b3480156106ba57600080fd5b50600a546001600160a01b031661039b565b3480156106d857600080fd5b5061036e611455565b6103576106ef3660046129fd565b611464565b34801561070057600080fd5b5061035761070f366004612c4b565b611842565b34801561072057600080fd5b50610357611906565b34801561073557600080fd5b50610357610744366004612c7e565b61195f565b34801561075557600080fd5b50610433610764366004612a93565b60156020526000908152604090205481565b34801561078257600080fd5b50610357610791366004612cfa565b6119db565b3480156107a257600080fd5b5061036e611b60565b3480156107b757600080fd5b5061036e6107c63660046129fd565b611b6d565b3480156107d757600080fd5b5061043360105481565b3480156107ed57600080fd5b50610433600e5481565b34801561080357600080fd5b50610357610812366004612b7e565b611cff565b34801561082357600080fd5b50610322610832366004612d1d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561086c57600080fd5b5061035761087b366004612b7e565b611d53565b34801561088c57600080fd5b5061035761089b366004612a93565b611da7565b60006001600160e01b0319821663780e9d6360e01b14806108c557506108c582611e5d565b92915050565b600a546001600160a01b031633146109185760405162461bcd60e51b8152602060048201819052602482015260008051602061307083398151915260448201526064015b60405180910390fd5b6011805460ff1916911515919091179055565b60606000805461093a90612d47565b80601f016020809104026020016040519081016040528092919081815260200182805461096690612d47565b80156109b35780601f10610988576101008083540402835291602001916109b3565b820191906000526020600020905b81548152906001019060200180831161099657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a365760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161090f565b506000908152600460205260409020546001600160a01b031690565b60128054610a5f90612d47565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8b90612d47565b8015610ad85780601f10610aad57610100808354040283529160200191610ad8565b820191906000526020600020905b815481529060010190602001808311610abb57829003601f168201915b505050505081565b600a546001600160a01b03163314610b285760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b6001811015610b795760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420736574206c6f776572207468616e2031000000000000000000604482015260640161090f565b600f55565b6000610b898261120d565b9050806001600160a01b0316836001600160a01b031603610bf65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161090f565b336001600160a01b0382161480610c125750610c128133610832565b610c845760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161090f565b610c8e8383611ead565b505050565b600a546001600160a01b03163314610cdb5760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b6013805460ff19169055565b610cf13382611f1b565b610d575760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606482015260840161090f565b610c8e838383612012565b6000610d6d83611323565b8210610de15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161090f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e525760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b604051600090339047908381818185875af1925050503d8060008114610e94576040519150601f19603f3d011682016040523d82523d6000602084013e610e99565b606091505b5050905080610ea757600080fd5b50565b610c8e8383836040518060200160405280600081525061195f565b60606000610ed283611323565b905060008167ffffffffffffffff811115610eef57610eef612af2565b604051908082528060200260200182016040528015610f18578160200160208202803683370190505b50905060005b82811015610f5f57610f308582610d62565b828281518110610f4257610f42612d81565b602090810291909101015280610f5781612dad565b915050610f1e565b509392505050565b600a546001600160a01b03163314610faf5760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b600d55565b6000610fbf60085490565b82106110335760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161090f565b6008828154811061104657611046612d81565b90600052602060002001549050919050565b600a546001600160a01b031633146110a05760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b60038111156110f15760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742073657420686967686572207468616e20330000000000000000604482015260640161090f565b601055565b600a546001600160a01b0316331461113e5760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b600b61114a8282612e14565b5050565b600a546001600160a01b031633146111965760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b60005b828110156112075781601460008686858181106111b8576111b8612d81565b90506020020160208101906111cd9190612a93565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806111ff81612dad565b915050611199565b50505050565b6000818152600260205260408120546001600160a01b0316806108c55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161090f565b600a546001600160a01b031633146112cc5760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b61271081111561131e5760405162461bcd60e51b815260206004820152601c60248201527f43616e6e6f742073657420686967686572207468616e20313030303000000000604482015260640161090f565b600e55565b60006001600160a01b03821661138e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161090f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113f25760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b6113fc60006121bd565b565b600a546001600160a01b031633146114465760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b6013805460ff19166001179055565b60606001805461093a90612d47565b600061146f60085490565b60115490915060ff16156114c55760405162461bcd60e51b815260206004820152601660248201527f4e46543a204d696e74696e672069732070617573656400000000000000000000604482015260640161090f565b600f548211156115175760405162461bcd60e51b815260206004820152601560248201527f4e46543a204d696e74696e6720746f6f206d616e790000000000000000000000604482015260640161090f565b60135460ff161561165e573360009081526014602052604090205460ff166115a75760405162461bcd60e51b815260206004820152603b60248201527f4e46543a204d7573742062652077686974656c697374656420696e206f72646560448201527f7220746f206d696e7420647572696e6720746869732070686173650000000000606482015260840161090f565b601054336000908152601560205260409020546115c5908490612ed4565b11156116395760405162461bcd60e51b815260206004820152603460248201527f4e46543a2052657175657374696e6720746f6f206d616e792077686974656c6960448201527f7374204e46547320746f206265206d696e746564000000000000000000000000606482015260840161090f565b3360009081526015602052604081208054849290611658908490612ed4565b90915550505b600082116116ae5760405162461bcd60e51b815260206004820152601260248201527f4e46543a2063616e6e6f74206d696e7420300000000000000000000000000000604482015260640161090f565b600e546116bb8383612ed4565b11156117135760405162461bcd60e51b815260206004820152602160248201527f4e46543a2043616e6e6f74206d696e742061626f7665206d617820737570706c6044820152607960f81b606482015260840161090f565b600082600d546117239190612eec565b90508034101561179b5760405162461bcd60e51b815260206004820152602b60248201527f4e46543a204d7573742073656e6420656e6f7567682045544820746f20636f7660448201527f6572206d696e7420666565000000000000000000000000000000000000000000606482015260840161090f565b60006117af600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146117f9576040519150601f19603f3d011682016040523d82523d6000602084013e6117fe565b606091505b505090508061180c57600080fd5b60015b84811161183b57611829336118248387612ed4565b61220f565b8061183381612dad565b91505061180f565b5050505050565b336001600160a01b0383160361189a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161090f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461194e5760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b6011805461ff001916610100179055565b6119693383611f1b565b6119cf5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606482015260840161090f565b61120784848484612229565b600a546001600160a01b03163314611a235760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b6000611a2e60085490565b905060008311611a805760405162461bcd60e51b815260206004820152600d60248201527f63616e6e6f74206d696e74203000000000000000000000000000000000000000604482015260640161090f565b600e54611a8d8483612ed4565b1115611adb5760405162461bcd60e51b815260206004820152601c60248201527f43616e6e6f74206d696e742061626f7665206d617820737570706c7900000000604482015260640161090f565b612710611ae88483612ed4565b1115611b365760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74206d696e742061626f7665203130303030000000000000000000604482015260640161090f565b60015b83811161120757611b4e836118248385612ed4565b80611b5881612dad565b915050611b39565b600c8054610a5f90612d47565b6000818152600260205260409020546060906001600160a01b0316611bfa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161090f565b601154610100900460ff161515600003611ca05760128054611c1b90612d47565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4790612d47565b8015611c945780601f10611c6957610100808354040283529160200191611c94565b820191906000526020600020905b815481529060010190602001808311611c7757829003601f168201915b50505050509050919050565b6000611caa6122a7565b90506000815111611cca5760405180602001604052806000815250611cf8565b80611cd4846122b6565b600c604051602001611ce893929190612f0b565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314611d475760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b600c61114a8282612e14565b600a546001600160a01b03163314611d9b5760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b601261114a8282612e14565b600a546001600160a01b03163314611def5760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b6001600160a01b038116611e545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161090f565b610ea7816121bd565b60006001600160e01b031982166380ac58cd60e01b1480611e8e57506001600160e01b03198216635b5e139f60e01b145b806108c557506301ffc9a760e01b6001600160e01b03198316146108c5565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ee28261120d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611f945760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161090f565b6000611f9f8361120d565b9050806001600160a01b0316846001600160a01b03161480611fda5750836001600160a01b0316611fcf846109bd565b6001600160a01b0316145b8061200a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166120258261120d565b6001600160a01b03161461208d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161090f565b6001600160a01b0382166120ef5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161090f565b6120fa8383836123cf565b612105600082611ead565b6001600160a01b038316600090815260036020526040812080546001929061212e908490612fab565b90915550506001600160a01b038216600090815260036020526040812080546001929061215c908490612ed4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61114a828260405180602001604052806000815250612487565b612234848484612012565b61224084848484612505565b6112075760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161090f565b6060600b805461093a90612d47565b6060816000036122dd5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561230757806122f181612dad565b91506123009050600a83612fd8565b91506122e1565b60008167ffffffffffffffff81111561232257612322612af2565b6040519080825280601f01601f19166020018201604052801561234c576020820181803683370190505b5090505b841561200a57612361600183612fab565b915061236e600a86612fec565b612379906030612ed4565b60f81b81838151811061238e5761238e612d81565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506123c8600a86612fd8565b9450612350565b6001600160a01b03831661242a5761242581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61244d565b816001600160a01b0316836001600160a01b03161461244d5761244d8382612651565b6001600160a01b03821661246457610c8e816126ee565b826001600160a01b0316826001600160a01b031614610c8e57610c8e828261279d565b61249183836127e1565b61249e6000848484612505565b610c8e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161090f565b60006001600160a01b0384163b1561264657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612549903390899088908890600401613000565b6020604051808303816000875af1925050508015612584575060408051601f3d908101601f191682019092526125819181019061303c565b60015b61262c573d8080156125b2576040519150601f19603f3d011682016040523d82523d6000602084013e6125b7565b606091505b5080516000036126245760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161090f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061200a565b506001949350505050565b6000600161265e84611323565b6126689190612fab565b6000838152600760205260409020549091508082146126bb576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061270090600190612fab565b6000838152600960205260408120546008805493945090928490811061272857612728612d81565b90600052602060002001549050806008838154811061274957612749612d81565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061278157612781613059565b6001900381819060005260206000200160009055905550505050565b60006127a883611323565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166128375760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161090f565b6000818152600260205260409020546001600160a01b03161561289c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161090f565b6128a8600083836123cf565b6001600160a01b03821660009081526003602052604081208054600192906128d1908490612ed4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610ea757600080fd5b60006020828403121561295757600080fd5b8135611cf88161292f565b8035801515811461297257600080fd5b919050565b60006020828403121561298957600080fd5b611cf882612962565b60005b838110156129ad578181015183820152602001612995565b838111156112075750506000910152565b600081518084526129d6816020860160208601612992565b601f01601f19169290920160200192915050565b602081526000611cf860208301846129be565b600060208284031215612a0f57600080fd5b5035919050565b80356001600160a01b038116811461297257600080fd5b60008060408385031215612a4057600080fd5b612a4983612a16565b946020939093013593505050565b600080600060608486031215612a6c57600080fd5b612a7584612a16565b9250612a8360208501612a16565b9150604084013590509250925092565b600060208284031215612aa557600080fd5b611cf882612a16565b6020808252825182820181905260009190848201906040850190845b81811015612ae657835183529284019291840191600101612aca565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612b2357612b23612af2565b604051601f8501601f19908116603f01168101908282118183101715612b4b57612b4b612af2565b81604052809350858152868686011115612b6457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612b9057600080fd5b813567ffffffffffffffff811115612ba757600080fd5b8201601f81018413612bb857600080fd5b61200a84823560208401612b08565b600080600060408486031215612bdc57600080fd5b833567ffffffffffffffff80821115612bf457600080fd5b818601915086601f830112612c0857600080fd5b813581811115612c1757600080fd5b8760208260051b8501011115612c2c57600080fd5b602092830195509350612c429186019050612962565b90509250925092565b60008060408385031215612c5e57600080fd5b612c6783612a16565b9150612c7560208401612962565b90509250929050565b60008060008060808587031215612c9457600080fd5b612c9d85612a16565b9350612cab60208601612a16565b925060408501359150606085013567ffffffffffffffff811115612cce57600080fd5b8501601f81018713612cdf57600080fd5b612cee87823560208401612b08565b91505092959194509250565b60008060408385031215612d0d57600080fd5b82359150612c7560208401612a16565b60008060408385031215612d3057600080fd5b612d3983612a16565b9150612c7560208401612a16565b600181811c90821680612d5b57607f821691505b602082108103612d7b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201612dbf57612dbf612d97565b5060010190565b601f821115610c8e57600081815260208120601f850160051c81016020861015612ded5750805b601f850160051c820191505b81811015612e0c57828155600101612df9565b505050505050565b815167ffffffffffffffff811115612e2e57612e2e612af2565b612e4281612e3c8454612d47565b84612dc6565b602080601f831160018114612e775760008415612e5f5750858301515b600019600386901b1c1916600185901b178555612e0c565b600085815260208120601f198616915b82811015612ea657888601518255948401946001909101908401612e87565b5085821015612ec45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008219821115612ee757612ee7612d97565b500190565b6000816000190483118215151615612f0657612f06612d97565b500290565b600084516020612f1e8285838a01612992565b855191840191612f318184848a01612992565b8554920191600090612f4281612d47565b60018281168015612f5a5760018114612f6f57612f9b565b60ff1984168752821515830287019450612f9b565b896000528560002060005b84811015612f9357815489820152908301908701612f7a565b505082870194505b50929a9950505050505050505050565b600082821015612fbd57612fbd612d97565b500390565b634e487b7160e01b600052601260045260246000fd5b600082612fe757612fe7612fc2565b500490565b600082612ffb57612ffb612fc2565b500690565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261303260808301846129be565b9695505050505050565b60006020828403121561304e57600080fd5b8151611cf88161292f565b634e487b7160e01b600052603160045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220b3f7001ef9ed82a14a0b23966c6e16f02aa1400079258214c987fea183888e9464736f6c634300080f00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102fd5760003560e01c806362e7707e1161018f578063a475b5dd116100e1578063cfb89aba1161008a578063e985e9c511610064578063e985e9c514610817578063f2c4ce1e14610860578063f2fde38b1461088057600080fd5b8063cfb89aba146107cb578063d5abeb01146107e1578063da3ef23f146107f757600080fd5b8063bef870ca116100bb578063bef870ca14610776578063c668286214610796578063c87b56dd146107ab57600080fd5b8063a475b5dd14610714578063b88d4fde14610729578063beb73b311461074957600080fd5b80637f19c4121161014357806395d89b411161011d57806395d89b41146106cc578063a0712d68146106e1578063a22cb465146106f457600080fd5b80637f19c4121461067f57806389f91ece146106945780638da5cb5b146106ae57600080fd5b80636f8b44b0116101745780636f8b44b01461062a57806370a082311461064a578063715018a61461066a57600080fd5b806362e7707e146105ea5780636352211e1461060a57600080fd5b806323b872dd1161025357806344a0d68a116101fc578063555503b1116101d6578063555503b11461059057806355f804b3146105b05780635c975abb146105d057600080fd5b806344a0d68a146105315780634f6ccce714610551578063518302271461057157600080fd5b80633ccfd60b1161022d5780633ccfd60b146104dc57806342842e0e146104e4578063438b63001461050457600080fd5b806323b872dd1461046c5780632f745c591461048c5780633af32abf146104ac57600080fd5b8063088a4ed0116102b557806313faede61161028f57806313faede61461041d57806318160ddd14610441578063239c70ae1461045657600080fd5b8063088a4ed0146103c8578063095ea7b3146103e85780630c1c972a1461040857600080fd5b806306fdde03116102e657806306fdde0314610359578063081812fc1461037b578063081c8c44146103b357600080fd5b806301ffc9a71461030257806302329a2914610337575b600080fd5b34801561030e57600080fd5b5061032261031d366004612945565b6108a0565b60405190151581526020015b60405180910390f35b34801561034357600080fd5b50610357610352366004612977565b6108cb565b005b34801561036557600080fd5b5061036e61092b565b60405161032e91906129ea565b34801561038757600080fd5b5061039b6103963660046129fd565b6109bd565b6040516001600160a01b03909116815260200161032e565b3480156103bf57600080fd5b5061036e610a52565b3480156103d457600080fd5b506103576103e33660046129fd565b610ae0565b3480156103f457600080fd5b50610357610403366004612a2d565b610b7e565b34801561041457600080fd5b50610357610c93565b34801561042957600080fd5b50610433600d5481565b60405190815260200161032e565b34801561044d57600080fd5b50600854610433565b34801561046257600080fd5b50610433600f5481565b34801561047857600080fd5b50610357610487366004612a57565b610ce7565b34801561049857600080fd5b506104336104a7366004612a2d565b610d62565b3480156104b857600080fd5b506103226104c7366004612a93565b60146020526000908152604090205460ff1681565b610357610e0a565b3480156104f057600080fd5b506103576104ff366004612a57565b610eaa565b34801561051057600080fd5b5061052461051f366004612a93565b610ec5565b60405161032e9190612aae565b34801561053d57600080fd5b5061035761054c3660046129fd565b610f67565b34801561055d57600080fd5b5061043361056c3660046129fd565b610fb4565b34801561057d57600080fd5b5060115461032290610100900460ff1681565b34801561059c57600080fd5b506103576105ab3660046129fd565b611058565b3480156105bc57600080fd5b506103576105cb366004612b7e565b6110f6565b3480156105dc57600080fd5b506011546103229060ff1681565b3480156105f657600080fd5b50610357610605366004612bc7565b61114e565b34801561061657600080fd5b5061039b6106253660046129fd565b61120d565b34801561063657600080fd5b506103576106453660046129fd565b611284565b34801561065657600080fd5b50610433610665366004612a93565b611323565b34801561067657600080fd5b506103576113aa565b34801561068b57600080fd5b506103576113fe565b3480156106a057600080fd5b506013546103229060ff1681565b3480156106ba57600080fd5b50600a546001600160a01b031661039b565b3480156106d857600080fd5b5061036e611455565b6103576106ef3660046129fd565b611464565b34801561070057600080fd5b5061035761070f366004612c4b565b611842565b34801561072057600080fd5b50610357611906565b34801561073557600080fd5b50610357610744366004612c7e565b61195f565b34801561075557600080fd5b50610433610764366004612a93565b60156020526000908152604090205481565b34801561078257600080fd5b50610357610791366004612cfa565b6119db565b3480156107a257600080fd5b5061036e611b60565b3480156107b757600080fd5b5061036e6107c63660046129fd565b611b6d565b3480156107d757600080fd5b5061043360105481565b3480156107ed57600080fd5b50610433600e5481565b34801561080357600080fd5b50610357610812366004612b7e565b611cff565b34801561082357600080fd5b50610322610832366004612d1d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561086c57600080fd5b5061035761087b366004612b7e565b611d53565b34801561088c57600080fd5b5061035761089b366004612a93565b611da7565b60006001600160e01b0319821663780e9d6360e01b14806108c557506108c582611e5d565b92915050565b600a546001600160a01b031633146109185760405162461bcd60e51b8152602060048201819052602482015260008051602061307083398151915260448201526064015b60405180910390fd5b6011805460ff1916911515919091179055565b60606000805461093a90612d47565b80601f016020809104026020016040519081016040528092919081815260200182805461096690612d47565b80156109b35780601f10610988576101008083540402835291602001916109b3565b820191906000526020600020905b81548152906001019060200180831161099657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a365760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161090f565b506000908152600460205260409020546001600160a01b031690565b60128054610a5f90612d47565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8b90612d47565b8015610ad85780601f10610aad57610100808354040283529160200191610ad8565b820191906000526020600020905b815481529060010190602001808311610abb57829003601f168201915b505050505081565b600a546001600160a01b03163314610b285760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b6001811015610b795760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420736574206c6f776572207468616e2031000000000000000000604482015260640161090f565b600f55565b6000610b898261120d565b9050806001600160a01b0316836001600160a01b031603610bf65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161090f565b336001600160a01b0382161480610c125750610c128133610832565b610c845760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161090f565b610c8e8383611ead565b505050565b600a546001600160a01b03163314610cdb5760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b6013805460ff19169055565b610cf13382611f1b565b610d575760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606482015260840161090f565b610c8e838383612012565b6000610d6d83611323565b8210610de15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161090f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e525760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b604051600090339047908381818185875af1925050503d8060008114610e94576040519150601f19603f3d011682016040523d82523d6000602084013e610e99565b606091505b5050905080610ea757600080fd5b50565b610c8e8383836040518060200160405280600081525061195f565b60606000610ed283611323565b905060008167ffffffffffffffff811115610eef57610eef612af2565b604051908082528060200260200182016040528015610f18578160200160208202803683370190505b50905060005b82811015610f5f57610f308582610d62565b828281518110610f4257610f42612d81565b602090810291909101015280610f5781612dad565b915050610f1e565b509392505050565b600a546001600160a01b03163314610faf5760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b600d55565b6000610fbf60085490565b82106110335760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161090f565b6008828154811061104657611046612d81565b90600052602060002001549050919050565b600a546001600160a01b031633146110a05760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b60038111156110f15760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742073657420686967686572207468616e20330000000000000000604482015260640161090f565b601055565b600a546001600160a01b0316331461113e5760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b600b61114a8282612e14565b5050565b600a546001600160a01b031633146111965760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b60005b828110156112075781601460008686858181106111b8576111b8612d81565b90506020020160208101906111cd9190612a93565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806111ff81612dad565b915050611199565b50505050565b6000818152600260205260408120546001600160a01b0316806108c55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161090f565b600a546001600160a01b031633146112cc5760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b61271081111561131e5760405162461bcd60e51b815260206004820152601c60248201527f43616e6e6f742073657420686967686572207468616e20313030303000000000604482015260640161090f565b600e55565b60006001600160a01b03821661138e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161090f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113f25760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b6113fc60006121bd565b565b600a546001600160a01b031633146114465760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b6013805460ff19166001179055565b60606001805461093a90612d47565b600061146f60085490565b60115490915060ff16156114c55760405162461bcd60e51b815260206004820152601660248201527f4e46543a204d696e74696e672069732070617573656400000000000000000000604482015260640161090f565b600f548211156115175760405162461bcd60e51b815260206004820152601560248201527f4e46543a204d696e74696e6720746f6f206d616e790000000000000000000000604482015260640161090f565b60135460ff161561165e573360009081526014602052604090205460ff166115a75760405162461bcd60e51b815260206004820152603b60248201527f4e46543a204d7573742062652077686974656c697374656420696e206f72646560448201527f7220746f206d696e7420647572696e6720746869732070686173650000000000606482015260840161090f565b601054336000908152601560205260409020546115c5908490612ed4565b11156116395760405162461bcd60e51b815260206004820152603460248201527f4e46543a2052657175657374696e6720746f6f206d616e792077686974656c6960448201527f7374204e46547320746f206265206d696e746564000000000000000000000000606482015260840161090f565b3360009081526015602052604081208054849290611658908490612ed4565b90915550505b600082116116ae5760405162461bcd60e51b815260206004820152601260248201527f4e46543a2063616e6e6f74206d696e7420300000000000000000000000000000604482015260640161090f565b600e546116bb8383612ed4565b11156117135760405162461bcd60e51b815260206004820152602160248201527f4e46543a2043616e6e6f74206d696e742061626f7665206d617820737570706c6044820152607960f81b606482015260840161090f565b600082600d546117239190612eec565b90508034101561179b5760405162461bcd60e51b815260206004820152602b60248201527f4e46543a204d7573742073656e6420656e6f7567682045544820746f20636f7660448201527f6572206d696e7420666565000000000000000000000000000000000000000000606482015260840161090f565b60006117af600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146117f9576040519150601f19603f3d011682016040523d82523d6000602084013e6117fe565b606091505b505090508061180c57600080fd5b60015b84811161183b57611829336118248387612ed4565b61220f565b8061183381612dad565b91505061180f565b5050505050565b336001600160a01b0383160361189a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161090f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461194e5760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b6011805461ff001916610100179055565b6119693383611f1b565b6119cf5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6044820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606482015260840161090f565b61120784848484612229565b600a546001600160a01b03163314611a235760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b6000611a2e60085490565b905060008311611a805760405162461bcd60e51b815260206004820152600d60248201527f63616e6e6f74206d696e74203000000000000000000000000000000000000000604482015260640161090f565b600e54611a8d8483612ed4565b1115611adb5760405162461bcd60e51b815260206004820152601c60248201527f43616e6e6f74206d696e742061626f7665206d617820737570706c7900000000604482015260640161090f565b612710611ae88483612ed4565b1115611b365760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74206d696e742061626f7665203130303030000000000000000000604482015260640161090f565b60015b83811161120757611b4e836118248385612ed4565b80611b5881612dad565b915050611b39565b600c8054610a5f90612d47565b6000818152600260205260409020546060906001600160a01b0316611bfa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161090f565b601154610100900460ff161515600003611ca05760128054611c1b90612d47565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4790612d47565b8015611c945780601f10611c6957610100808354040283529160200191611c94565b820191906000526020600020905b815481529060010190602001808311611c7757829003601f168201915b50505050509050919050565b6000611caa6122a7565b90506000815111611cca5760405180602001604052806000815250611cf8565b80611cd4846122b6565b600c604051602001611ce893929190612f0b565b6040516020818303038152906040525b9392505050565b600a546001600160a01b03163314611d475760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b600c61114a8282612e14565b600a546001600160a01b03163314611d9b5760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b601261114a8282612e14565b600a546001600160a01b03163314611def5760405162461bcd60e51b81526020600482018190526024820152600080516020613070833981519152604482015260640161090f565b6001600160a01b038116611e545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161090f565b610ea7816121bd565b60006001600160e01b031982166380ac58cd60e01b1480611e8e57506001600160e01b03198216635b5e139f60e01b145b806108c557506301ffc9a760e01b6001600160e01b03198316146108c5565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ee28261120d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611f945760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161090f565b6000611f9f8361120d565b9050806001600160a01b0316846001600160a01b03161480611fda5750836001600160a01b0316611fcf846109bd565b6001600160a01b0316145b8061200a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166120258261120d565b6001600160a01b03161461208d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161090f565b6001600160a01b0382166120ef5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161090f565b6120fa8383836123cf565b612105600082611ead565b6001600160a01b038316600090815260036020526040812080546001929061212e908490612fab565b90915550506001600160a01b038216600090815260036020526040812080546001929061215c908490612ed4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61114a828260405180602001604052806000815250612487565b612234848484612012565b61224084848484612505565b6112075760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161090f565b6060600b805461093a90612d47565b6060816000036122dd5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561230757806122f181612dad565b91506123009050600a83612fd8565b91506122e1565b60008167ffffffffffffffff81111561232257612322612af2565b6040519080825280601f01601f19166020018201604052801561234c576020820181803683370190505b5090505b841561200a57612361600183612fab565b915061236e600a86612fec565b612379906030612ed4565b60f81b81838151811061238e5761238e612d81565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506123c8600a86612fd8565b9450612350565b6001600160a01b03831661242a5761242581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61244d565b816001600160a01b0316836001600160a01b03161461244d5761244d8382612651565b6001600160a01b03821661246457610c8e816126ee565b826001600160a01b0316826001600160a01b031614610c8e57610c8e828261279d565b61249183836127e1565b61249e6000848484612505565b610c8e5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161090f565b60006001600160a01b0384163b1561264657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612549903390899088908890600401613000565b6020604051808303816000875af1925050508015612584575060408051601f3d908101601f191682019092526125819181019061303c565b60015b61262c573d8080156125b2576040519150601f19603f3d011682016040523d82523d6000602084013e6125b7565b606091505b5080516000036126245760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840161090f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061200a565b506001949350505050565b6000600161265e84611323565b6126689190612fab565b6000838152600760205260409020549091508082146126bb576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061270090600190612fab565b6000838152600960205260408120546008805493945090928490811061272857612728612d81565b90600052602060002001549050806008838154811061274957612749612d81565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061278157612781613059565b6001900381819060005260206000200160009055905550505050565b60006127a883611323565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166128375760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161090f565b6000818152600260205260409020546001600160a01b03161561289c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161090f565b6128a8600083836123cf565b6001600160a01b03821660009081526003602052604081208054600192906128d1908490612ed4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610ea757600080fd5b60006020828403121561295757600080fd5b8135611cf88161292f565b8035801515811461297257600080fd5b919050565b60006020828403121561298957600080fd5b611cf882612962565b60005b838110156129ad578181015183820152602001612995565b838111156112075750506000910152565b600081518084526129d6816020860160208601612992565b601f01601f19169290920160200192915050565b602081526000611cf860208301846129be565b600060208284031215612a0f57600080fd5b5035919050565b80356001600160a01b038116811461297257600080fd5b60008060408385031215612a4057600080fd5b612a4983612a16565b946020939093013593505050565b600080600060608486031215612a6c57600080fd5b612a7584612a16565b9250612a8360208501612a16565b9150604084013590509250925092565b600060208284031215612aa557600080fd5b611cf882612a16565b6020808252825182820181905260009190848201906040850190845b81811015612ae657835183529284019291840191600101612aca565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612b2357612b23612af2565b604051601f8501601f19908116603f01168101908282118183101715612b4b57612b4b612af2565b81604052809350858152868686011115612b6457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612b9057600080fd5b813567ffffffffffffffff811115612ba757600080fd5b8201601f81018413612bb857600080fd5b61200a84823560208401612b08565b600080600060408486031215612bdc57600080fd5b833567ffffffffffffffff80821115612bf457600080fd5b818601915086601f830112612c0857600080fd5b813581811115612c1757600080fd5b8760208260051b8501011115612c2c57600080fd5b602092830195509350612c429186019050612962565b90509250925092565b60008060408385031215612c5e57600080fd5b612c6783612a16565b9150612c7560208401612962565b90509250929050565b60008060008060808587031215612c9457600080fd5b612c9d85612a16565b9350612cab60208601612a16565b925060408501359150606085013567ffffffffffffffff811115612cce57600080fd5b8501601f81018713612cdf57600080fd5b612cee87823560208401612b08565b91505092959194509250565b60008060408385031215612d0d57600080fd5b82359150612c7560208401612a16565b60008060408385031215612d3057600080fd5b612d3983612a16565b9150612c7560208401612a16565b600181811c90821680612d5b57607f821691505b602082108103612d7b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201612dbf57612dbf612d97565b5060010190565b601f821115610c8e57600081815260208120601f850160051c81016020861015612ded5750805b601f850160051c820191505b81811015612e0c57828155600101612df9565b505050505050565b815167ffffffffffffffff811115612e2e57612e2e612af2565b612e4281612e3c8454612d47565b84612dc6565b602080601f831160018114612e775760008415612e5f5750858301515b600019600386901b1c1916600185901b178555612e0c565b600085815260208120601f198616915b82811015612ea657888601518255948401946001909101908401612e87565b5085821015612ec45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008219821115612ee757612ee7612d97565b500190565b6000816000190483118215151615612f0657612f06612d97565b500290565b600084516020612f1e8285838a01612992565b855191840191612f318184848a01612992565b8554920191600090612f4281612d47565b60018281168015612f5a5760018114612f6f57612f9b565b60ff1984168752821515830287019450612f9b565b896000528560002060005b84811015612f9357815489820152908301908701612f7a565b505082870194505b50929a9950505050505050505050565b600082821015612fbd57612fbd612d97565b500390565b634e487b7160e01b600052601260045260246000fd5b600082612fe757612fe7612fc2565b500490565b600082612ffb57612ffb612fc2565b500690565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261303260808301846129be565b9695505050505050565b60006020828403121561304e57600080fd5b8151611cf88161292f565b634e487b7160e01b600052603160045260246000fdfe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220b3f7001ef9ed82a14a0b23966c6e16f02aa1400079258214c987fea183888e9464736f6c634300080f0033

Deployed Bytecode Sourcemap

43364:4906:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34106:224;;;;;;;;;;-1:-1:-1;34106:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;34106:224:0;;;;;;;;47956:73;;;;;;;;;;-1:-1:-1;47956:73:0;;;;;:::i;:::-;;:::i;:::-;;22033:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23592:221::-;;;;;;;;;;-1:-1:-1;23592:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:55:1;;;2024:74;;2012:2;1997:18;23592:221:0;1878:226:1;43724:28:0;;;;;;;;;;;;;:::i;47254:160::-;;;;;;;;;;-1:-1:-1;47254:160:0;;;;;:::i;:::-;;:::i;23115:411::-;;;;;;;;;;-1:-1:-1;23115:411:0;;;;;:::i;:::-;;:::i;45779:86::-;;;;;;;;;;;;;:::i;43509:32::-;;;;;;;;;;;;;;;;;;;2715:25:1;;;2703:2;2688:18;43509:32:0;2569:177:1;34746:113:0;;;;;;;;;;-1:-1:-1;34834:10:0;:17;34746:113;;43581:32;;;;;;;;;;;;;;;;24482:339;;;;;;;;;;-1:-1:-1;24482:339:0;;;;;:::i;:::-;;:::i;34414:256::-;;;;;;;;;;-1:-1:-1;34414:256:0;;;;;:::i;:::-;;:::i;43799:46::-;;;;;;;;;;-1:-1:-1;43799:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;48119:148;;;:::i;24892:185::-;;;;;;;;;;-1:-1:-1;24892:185:0;;;;;:::i;:::-;;:::i;46102:329::-;;;;;;;;;;-1:-1:-1;46102:329:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46979:90::-;;;;;;;;;;-1:-1:-1;46979:90:0;;;;;:::i;:::-;;:::i;34936:233::-;;;;;;;;;;-1:-1:-1;34936:233:0;;;;;:::i;:::-;;:::i;43691:28::-;;;;;;;;;;-1:-1:-1;43691:28:0;;;;;;;;;;;47075:173;;;;;;;;;;-1:-1:-1;47075:173:0;;;;;:::i;:::-;;:::i;47724:98::-;;;;;;;;;;-1:-1:-1;47724:98:0;;;;;:::i;:::-;;:::i;43661:25::-;;;;;;;;;;-1:-1:-1;43661:25:0;;;;;;;;45873:223;;;;;;;;;;-1:-1:-1;45873:223:0;;;;;:::i;:::-;;:::i;21727:239::-;;;;;;;;;;-1:-1:-1;21727:239:0;;;;;:::i;:::-;;:::i;47420:170::-;;;;;;;;;;-1:-1:-1;47420:170:0;;;;;:::i;:::-;;:::i;21457:208::-;;;;;;;;;;-1:-1:-1;21457:208:0;;;;;:::i;:::-;;:::i;41872:94::-;;;;;;;;;;;;;:::i;45687:84::-;;;;;;;;;;;;;:::i;43757:37::-;;;;;;;;;;-1:-1:-1;43757:37:0;;;;;;;;41221:87;;;;;;;;;;-1:-1:-1;41294:6:0;;-1:-1:-1;;;;;41294:6:0;41221:87;;22202:104;;;;;;;;;;;;;:::i;44637:1042::-;;;;;;:::i;:::-;;:::i;23885:295::-;;;;;;;;;;-1:-1:-1;23885:295:0;;;;;:::i;:::-;;:::i;46906:65::-;;;;;;;;;;;;;:::i;25148:328::-;;;;;;;;;;-1:-1:-1;25148:328:0;;;;;:::i;:::-;;:::i;43850:57::-;;;;;;;;;;-1:-1:-1;43850:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;44190:428;;;;;;;;;;-1:-1:-1;44190:428:0;;;;;:::i;:::-;;:::i;43472:32::-;;;;;;;;;;;;;:::i;46437:447::-;;;;;;;;;;-1:-1:-1;46437:447:0;;;;;:::i;:::-;;:::i;43618:38::-;;;;;;;;;;;;;;;;43546:30;;;;;;;;;;;;;;;;47828:122;;;;;;;;;;-1:-1:-1;47828:122:0;;;;;:::i;:::-;;:::i;24251:164::-;;;;;;;;;;-1:-1:-1;24251:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24372:25:0;;;24348:4;24372:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24251:164;47598:120;;;;;;;;;;-1:-1:-1;47598:120:0;;;;;:::i;:::-;;:::i;42121:192::-;;;;;;;;;;-1:-1:-1;42121:192:0;;;;;:::i;:::-;;:::i;34106:224::-;34208:4;-1:-1:-1;;;;;;34232:50:0;;-1:-1:-1;;;34232:50:0;;:90;;;34286:36;34310:11;34286:23;:36::i;:::-;34225:97;34106:224;-1:-1:-1;;34106:224:0:o;47956:73::-;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;7488:2:1;41433:68:0;;;7470:21:1;;;7507:18;;;7500:30;-1:-1:-1;;;;;;;;;;;7546:18:1;;;7539:62;7618:18;;41433:68:0;;;;;;;;;48008:6:::1;:15:::0;;-1:-1:-1;;48008:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47956:73::o;22033:100::-;22087:13;22120:5;22113:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22033:100;:::o;23592:221::-;23668:7;27075:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27075:16:0;23688:73;;;;-1:-1:-1;;;23688:73:0;;8234:2:1;23688:73:0;;;8216:21:1;8273:2;8253:18;;;8246:30;8312:34;8292:18;;;8285:62;-1:-1:-1;;;8363:18:1;;;8356:42;8415:19;;23688:73:0;8032:408:1;23688:73:0;-1:-1:-1;23781:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23781:24:0;;23592:221::o;43724:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47254:160::-;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;7488:2:1;41433:68:0;;;7470:21:1;;;7507:18;;;7500:30;-1:-1:-1;;;;;;;;;;;7546:18:1;;;7539:62;7618:18;;41433:68:0;7286:356:1;41433:68:0;47346:1:::1;47332:10;:15;;47324:51;;;::::0;-1:-1:-1;;;47324:51:0;;8647:2:1;47324:51:0::1;::::0;::::1;8629:21:1::0;8686:2;8666:18;;;8659:30;8725:25;8705:18;;;8698:53;8768:18;;47324:51:0::1;8445:347:1::0;47324:51:0::1;47382:13;:26:::0;47254:160::o;23115:411::-;23196:13;23212:23;23227:7;23212:14;:23::i;:::-;23196:39;;23260:5;-1:-1:-1;;;;;23254:11:0;:2;-1:-1:-1;;;;;23254:11:0;;23246:57;;;;-1:-1:-1;;;23246:57:0;;8999:2:1;23246:57:0;;;8981:21:1;9038:2;9018:18;;;9011:30;9077:34;9057:18;;;9050:62;-1:-1:-1;;;9128:18:1;;;9121:31;9169:19;;23246:57:0;8797:397:1;23246:57:0;19667:10;-1:-1:-1;;;;;23338:21:0;;;;:62;;-1:-1:-1;23363:37:0;23380:5;19667:10;24251:164;:::i;23363:37::-;23316:168;;;;-1:-1:-1;;;23316:168:0;;9401:2:1;23316:168:0;;;9383:21:1;9440:2;9420:18;;;9413:30;9479:34;9459:18;;;9452:62;9550:26;9530:18;;;9523:54;9594:19;;23316:168:0;9199:420:1;23316:168:0;23497:21;23506:2;23510:7;23497:8;:21::i;:::-;23185:341;23115:411;;:::o;45779:86::-;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;7488:2:1;41433:68:0;;;7470:21:1;;;7507:18;;;7500:30;-1:-1:-1;;;;;;;;;;;7546:18:1;;;7539:62;7618:18;;41433:68:0;7286:356:1;41433:68:0;45834:17:::1;:25:::0;;-1:-1:-1;;45834:25:0::1;::::0;;45779:86::o;24482:339::-;24677:41;19667:10;24710:7;24677:18;:41::i;:::-;24669:103;;;;-1:-1:-1;;;24669:103:0;;9826:2:1;24669:103:0;;;9808:21:1;9865:2;9845:18;;;9838:30;9904:34;9884:18;;;9877:62;-1:-1:-1;;;9955:18:1;;;9948:47;10012:19;;24669:103:0;9624:413:1;24669:103:0;24785:28;24795:4;24801:2;24805:7;24785:9;:28::i;34414:256::-;34511:7;34547:23;34564:5;34547:16;:23::i;:::-;34539:5;:31;34531:87;;;;-1:-1:-1;;;34531:87:0;;10244:2:1;34531:87:0;;;10226:21:1;10283:2;10263:18;;;10256:30;10322:34;10302:18;;;10295:62;10393:13;10373:18;;;10366:41;10424:19;;34531:87:0;10042:407:1;34531:87:0;-1:-1:-1;;;;;;34636:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34414:256::o;48119:148::-;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;7488:2:1;41433:68:0;;;7470:21:1;;;7507:18;;;7500:30;-1:-1:-1;;;;;;;;;;;7546:18:1;;;7539:62;7618:18;;41433:68:0;7286:356:1;41433:68:0;48185:58:::1;::::0;48172:7:::1;::::0;48193:10:::1;::::0;48217:21:::1;::::0;48172:7;48185:58;48172:7;48185:58;48217:21;48193:10;48185:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48171:72;;;48258:2;48250:11;;;::::0;::::1;;48164:103;48119:148::o:0;24892:185::-;25030:39;25047:4;25053:2;25057:7;25030:39;;;;;;;;;;;;:16;:39::i;46102:329::-;46162:16;46186:23;46212:17;46222:6;46212:9;:17::i;:::-;46186:43;;46236:25;46278:15;46264:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46264:30:0;;46236:58;;46306:9;46301:103;46321:15;46317:1;:19;46301:103;;;46366:30;46386:6;46394:1;46366:19;:30::i;:::-;46352:8;46361:1;46352:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;46338:3;;;;:::i;:::-;;;;46301:103;;;-1:-1:-1;46417:8:0;46102:329;-1:-1:-1;;;46102:329:0:o;46979:90::-;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;7488:2:1;41433:68:0;;;7470:21:1;;;7507:18;;;7500:30;-1:-1:-1;;;;;;;;;;;7546:18:1;;;7539:62;7618:18;;41433:68:0;7286:356:1;41433:68:0;47043:4:::1;:20:::0;46979:90::o;34936:233::-;35011:7;35047:30;34834:10;:17;;34746:113;35047:30;35039:5;:38;35031:95;;;;-1:-1:-1;;;35031:95:0;;11270:2:1;35031:95:0;;;11252:21:1;11309:2;11289:18;;;11282:30;11348:34;11328:18;;;11321:62;11419:14;11399:18;;;11392:42;11451:19;;35031:95:0;11068:408:1;35031:95:0;35144:10;35155:5;35144:17;;;;;;;;:::i;:::-;;;;;;;;;35137:24;;34936:233;;;:::o;47075:173::-;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;7488:2:1;41433:68:0;;;7470:21:1;;;7507:18;;;7500:30;-1:-1:-1;;;;;;;;;;;7546:18:1;;;7539:62;7618:18;;41433:68:0;7286:356:1;41433:68:0;47173:1:::1;47159:10;:15;;47151:52;;;::::0;-1:-1:-1;;;47151:52:0;;11683:2:1;47151:52:0::1;::::0;::::1;11665:21:1::0;11722:2;11702:18;;;11695:30;11761:26;11741:18;;;11734:54;11805:18;;47151:52:0::1;11481:348:1::0;47151:52:0::1;47210:19;:32:::0;47075:173::o;47724:98::-;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;7488:2:1;41433:68:0;;;7470:21:1;;;7507:18;;;7500:30;-1:-1:-1;;;;;;;;;;;7546:18:1;;;7539:62;7618:18;;41433:68:0;7286:356:1;41433:68:0;47795:7:::1;:21;47805:11:::0;47795:7;:21:::1;:::i;:::-;;47724:98:::0;:::o;45873:223::-;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;7488:2:1;41433:68:0;;;7470:21:1;;;7507:18;;;7500:30;-1:-1:-1;;;;;;;;;;;7546:18:1;;;7539:62;7618:18;;41433:68:0;7286:356:1;41433:68:0;45985:9:::1;45980:111;46000:18:::0;;::::1;45980:111;;;46065:16;46037:13;:25;46051:7;;46059:1;46051:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;46037:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;46037:25:0;:44;;-1:-1:-1;;46037:44:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46020:3;::::1;::::0;::::1;:::i;:::-;;;;45980:111;;;;45873:223:::0;;;:::o;21727:239::-;21799:7;21835:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21835:16:0;;21862:73;;;;-1:-1:-1;;;21862:73:0;;14240:2:1;21862:73:0;;;14222:21:1;14279:2;14259:18;;;14252:30;14318:34;14298:18;;;14291:62;-1:-1:-1;;;14369:18:1;;;14362:39;14418:19;;21862:73:0;14038:405:1;47420:170:0;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;7488:2:1;41433:68:0;;;7470:21:1;;;7507:18;;;7500:30;-1:-1:-1;;;;;;;;;;;7546:18:1;;;7539:62;7618:18;;41433:68:0;7286:356:1;41433:68:0;47514:5:::1;47497:13;:22;;47489:63;;;::::0;-1:-1:-1;;;47489:63:0;;14650:2:1;47489:63:0::1;::::0;::::1;14632:21:1::0;14689:2;14669:18;;;14662:30;14728;14708:18;;;14701:58;14776:18;;47489:63:0::1;14448:352:1::0;47489:63:0::1;47559:9;:25:::0;47420:170::o;21457:208::-;21529:7;-1:-1:-1;;;;;21557:19:0;;21549:74;;;;-1:-1:-1;;;21549:74:0;;15007:2:1;21549:74:0;;;14989:21:1;15046:2;15026:18;;;15019:30;15085:34;15065:18;;;15058:62;-1:-1:-1;;;15136:18:1;;;15129:40;15186:19;;21549:74:0;14805:406:1;21549:74:0;-1:-1:-1;;;;;;21641:16:0;;;;;:9;:16;;;;;;;21457:208::o;41872:94::-;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;7488:2:1;41433:68:0;;;7470:21:1;;;7507:18;;;7500:30;-1:-1:-1;;;;;;;;;;;7546:18:1;;;7539:62;7618:18;;41433:68:0;7286:356:1;41433:68:0;41937:21:::1;41955:1;41937:9;:21::i;:::-;41872:94::o:0;45687:84::-;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;7488:2:1;41433:68:0;;;7470:21:1;;;7507:18;;;7500:30;-1:-1:-1;;;;;;;;;;;7546:18:1;;;7539:62;7618:18;;41433:68:0;7286:356:1;41433:68:0;45741:17:::1;:24:::0;;-1:-1:-1;;45741:24:0::1;45761:4;45741:24;::::0;;45687:84::o;22202:104::-;22258:13;22291:7;22284:14;;;;;:::i;44637:1042::-;44694:14;44711:13;34834:10;:17;;34746:113;44711:13;44740:6;;44694:30;;-1:-1:-1;44740:6:0;;44739:7;44731:42;;;;-1:-1:-1;;;44731:42:0;;15418:2:1;44731:42:0;;;15400:21:1;15457:2;15437:18;;;15430:30;15496:24;15476:18;;;15469:52;15538:18;;44731:42:0;15216:346:1;44731:42:0;44803:13;;44788:11;:28;;44780:62;;;;-1:-1:-1;;;44780:62:0;;15769:2:1;44780:62:0;;;15751:21:1;15808:2;15788:18;;;15781:30;15847:23;15827:18;;;15820:51;15888:18;;44780:62:0;15567:345:1;44780:62:0;44854:17;;;;44851:342;;;44905:10;44891:25;;;;:13;:25;;;;;;;;44883:97;;;;-1:-1:-1;;;44883:97:0;;16119:2:1;44883:97:0;;;16101:21:1;16158:2;16138:18;;;16131:30;16197:34;16177:18;;;16170:62;16268:29;16248:18;;;16241:57;16315:19;;44883:97:0;15917:423:1;44883:97:0;45050:19;;45021:10;44999:33;;;;:21;:33;;;;;;:47;;45035:11;;44999:47;:::i;:::-;:70;;44991:135;;;;-1:-1:-1;;;44991:135:0;;16680:2:1;44991:135:0;;;16662:21:1;16719:2;16699:18;;;16692:30;16758:34;16738:18;;;16731:62;16829:22;16809:18;;;16802:50;16869:19;;44991:135:0;16478:416:1;44991:135:0;45159:10;45137:33;;;;:21;:33;;;;;:48;;45174:11;;45137:33;:48;;45174:11;;45137:48;:::i;:::-;;;;-1:-1:-1;;44851:342:0;45223:1;45209:11;:15;45201:46;;;;-1:-1:-1;;;45201:46:0;;17101:2:1;45201:46:0;;;17083:21:1;17140:2;17120:18;;;17113:30;17179:20;17159:18;;;17152:48;17217:18;;45201:46:0;16899:342:1;45201:46:0;45286:9;;45262:20;45271:11;45262:6;:20;:::i;:::-;:33;;45254:79;;;;-1:-1:-1;;;45254:79:0;;17448:2:1;45254:79:0;;;17430:21:1;17487:2;17467:18;;;17460:30;17526:34;17506:18;;;17499:62;-1:-1:-1;;;17577:18:1;;;17570:31;17618:19;;45254:79:0;17246:397:1;45254:79:0;45342:17;45369:11;45362:4;;:18;;;;:::i;:::-;45342:38;;45408:9;45395;:22;;45387:78;;;;-1:-1:-1;;;45387:78:0;;18023:2:1;45387:78:0;;;18005:21:1;18062:2;18042:18;;;18035:30;18101:34;18081:18;;;18074:62;18172:13;18152:18;;;18145:41;18203:19;;45387:78:0;17821:407:1;45387:78:0;45473:7;45502;41294:6;;-1:-1:-1;;;;;41294:6:0;;41221:87;45502:7;-1:-1:-1;;;;;45486:30:0;45524:21;45486:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45472:78;;;45565:2;45557:11;;;;;;45598:1;45581:93;45606:11;45601:1;:16;45581:93;;45633:33;45643:10;45655;45664:1;45655:6;:10;:::i;:::-;45633:9;:33::i;:::-;45619:3;;;;:::i;:::-;;;;45581:93;;;;44687:992;;;44637:1042;:::o;23885:295::-;19667:10;-1:-1:-1;;;;;23988:24:0;;;23980:62;;;;-1:-1:-1;;;23980:62:0;;18435:2:1;23980:62:0;;;18417:21:1;18474:2;18454:18;;;18447:30;18513:27;18493:18;;;18486:55;18558:18;;23980:62:0;18233:349:1;23980:62:0;19667:10;24055:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24055:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24055:53:0;;;;;;;;;;24124:48;;540:41:1;;;24055:42:0;;19667:10;24124:48;;513:18:1;24124:48:0;;;;;;;23885:295;;:::o;46906:65::-;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;7488:2:1;41433:68:0;;;7470:21:1;;;7507:18;;;7500:30;-1:-1:-1;;;;;;;;;;;7546:18:1;;;7539:62;7618:18;;41433:68:0;7286:356:1;41433:68:0;46950:8:::1;:15:::0;;-1:-1:-1;;46950:15:0::1;;;::::0;;46906:65::o;25148:328::-;25323:41;19667:10;25356:7;25323:18;:41::i;:::-;25315:103;;;;-1:-1:-1;;;25315:103:0;;9826:2:1;25315:103:0;;;9808:21:1;9865:2;9845:18;;;9838:30;9904:34;9884:18;;;9877:62;-1:-1:-1;;;9955:18:1;;;9948:47;10012:19;;25315:103:0;9624:413:1;25315:103:0;25429:39;25443:4;25449:2;25453:7;25462:5;25429:13;:39::i;44190:428::-;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;7488:2:1;41433:68:0;;;7470:21:1;;;7507:18;;;7500:30;-1:-1:-1;;;;;;;;;;;7546:18:1;;;7539:62;7618:18;;41433:68:0;7286:356:1;41433:68:0;44277:14:::1;44294:13;34834:10:::0;:17;;34746:113;44294:13:::1;44277:30;;44336:1;44322:11;:15;44314:41;;;::::0;-1:-1:-1;;;44314:41:0;;18789:2:1;44314:41:0::1;::::0;::::1;18771:21:1::0;18828:2;18808:18;;;18801:30;18867:15;18847:18;;;18840:43;18900:18;;44314:41:0::1;18587:337:1::0;44314:41:0::1;44394:9;::::0;44370:20:::1;44379:11:::0;44370:6;:20:::1;:::i;:::-;:33;;44362:74;;;::::0;-1:-1:-1;;;44362:74:0;;19131:2:1;44362:74:0::1;::::0;::::1;19113:21:1::0;19170:2;19150:18;;;19143:30;19209;19189:18;;;19182:58;19257:18;;44362:74:0::1;18929:352:1::0;44362:74:0::1;44475:5;44451:20;44460:11:::0;44451:6;:20:::1;:::i;:::-;:29;;44443:65;;;::::0;-1:-1:-1;;;44443:65:0;;19488:2:1;44443:65:0::1;::::0;::::1;19470:21:1::0;19527:2;19507:18;;;19500:30;19566:25;19546:18;;;19539:53;19609:18;;44443:65:0::1;19286:347:1::0;44443:65:0::1;44534:1;44517:96;44542:11;44537:1;:16;44517:96;;44571:34;44581:11:::0;44594:10:::1;44603:1:::0;44594:6;:10:::1;:::i;44571:34::-;44555:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44517:96;;43472:32:::0;;;;;;;:::i;46437:447::-;27051:4;27075:16;;;:7;:16;;;;;;46510:13;;-1:-1:-1;;;;;27075:16:0;46531:76;;;;-1:-1:-1;;;46531:76:0;;19840:2:1;46531:76:0;;;19822:21:1;19879:2;19859:18;;;19852:30;19918:34;19898:18;;;19891:62;19989:17;19969:18;;;19962:45;20024:19;;46531:76:0;19638:411:1;46531:76:0;46623:8;;;;;;;:17;;46635:5;46623:17;46620:62;;46660:14;46653:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46437:447;;;:::o;46620:62::-;46690:28;46721:10;:8;:10::i;:::-;46690:41;;46776:1;46751:14;46745:28;:32;:133;;;;;;;;;;;;;;;;;46813:14;46829:18;:7;:16;:18::i;:::-;46849:13;46796:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46745:133;46738:140;46437:447;-1:-1:-1;;;46437:447:0:o;47828:122::-;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;7488:2:1;41433:68:0;;;7470:21:1;;;7507:18;;;7500:30;-1:-1:-1;;;;;;;;;;;7546:18:1;;;7539:62;7618:18;;41433:68:0;7286:356:1;41433:68:0;47911:13:::1;:33;47927:17:::0;47911:13;:33:::1;:::i;47598:120::-:0;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;7488:2:1;41433:68:0;;;7470:21:1;;;7507:18;;;7500:30;-1:-1:-1;;;;;;;;;;;7546:18:1;;;7539:62;7618:18;;41433:68:0;7286:356:1;41433:68:0;47680:14:::1;:32;47697:15:::0;47680:14;:32:::1;:::i;42121:192::-:0;41294:6;;-1:-1:-1;;;;;41294:6:0;19667:10;41441:23;41433:68;;;;-1:-1:-1;;;41433:68:0;;7488:2:1;41433:68:0;;;7470:21:1;;;7507:18;;;7500:30;-1:-1:-1;;;;;;;;;;;7546:18:1;;;7539:62;7618:18;;41433:68:0;7286:356:1;41433:68:0;-1:-1:-1;;;;;42210:22:0;::::1;42202:73;;;::::0;-1:-1:-1;;;42202:73:0;;21491:2:1;42202:73:0::1;::::0;::::1;21473:21:1::0;21530:2;21510:18;;;21503:30;21569:34;21549:18;;;21542:62;-1:-1:-1;;;21620:18:1;;;21613:36;21666:19;;42202:73:0::1;21289:402:1::0;42202:73:0::1;42286:19;42296:8;42286:9;:19::i;21088:305::-:0;21190:4;-1:-1:-1;;;;;;21227:40:0;;-1:-1:-1;;;21227:40:0;;:105;;-1:-1:-1;;;;;;;21284:48:0;;-1:-1:-1;;;21284:48:0;21227:105;:158;;;-1:-1:-1;;;;;;;;;;7204:40:0;;;21349:36;7095:157;30968:174;31043:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31043:29:0;-1:-1:-1;;;;;31043:29:0;;;;;;;;:24;;31097:23;31043:24;31097:14;:23::i;:::-;-1:-1:-1;;;;;31088:46:0;;;;;;;;;;;30968:174;;:::o;27280:348::-;27373:4;27075:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27075:16:0;27390:73;;;;-1:-1:-1;;;27390:73:0;;21898:2:1;27390:73:0;;;21880:21:1;21937:2;21917:18;;;21910:30;21976:34;21956:18;;;21949:62;-1:-1:-1;;;22027:18:1;;;22020:42;22079:19;;27390:73:0;21696:408:1;27390:73:0;27474:13;27490:23;27505:7;27490:14;:23::i;:::-;27474:39;;27543:5;-1:-1:-1;;;;;27532:16:0;:7;-1:-1:-1;;;;;27532:16:0;;:51;;;;27576:7;-1:-1:-1;;;;;27552:31:0;:20;27564:7;27552:11;:20::i;:::-;-1:-1:-1;;;;;27552:31:0;;27532:51;:87;;;-1:-1:-1;;;;;;24372:25:0;;;24348:4;24372:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27587:32;27524:96;27280:348;-1:-1:-1;;;;27280:348:0:o;30272:578::-;30431:4;-1:-1:-1;;;;;30404:31:0;:23;30419:7;30404:14;:23::i;:::-;-1:-1:-1;;;;;30404:31:0;;30396:85;;;;-1:-1:-1;;;30396:85:0;;22311:2:1;30396:85:0;;;22293:21:1;22350:2;22330:18;;;22323:30;22389:34;22369:18;;;22362:62;-1:-1:-1;;;22440:18:1;;;22433:39;22489:19;;30396:85:0;22109:405:1;30396:85:0;-1:-1:-1;;;;;30500:16:0;;30492:65;;;;-1:-1:-1;;;30492:65:0;;22721:2:1;30492:65:0;;;22703:21:1;22760:2;22740:18;;;22733:30;22799:34;22779:18;;;22772:62;-1:-1:-1;;;22850:18:1;;;22843:34;22894:19;;30492:65:0;22519:400:1;30492:65:0;30570:39;30591:4;30597:2;30601:7;30570:20;:39::i;:::-;30674:29;30691:1;30695:7;30674:8;:29::i;:::-;-1:-1:-1;;;;;30716:15:0;;;;;;:9;:15;;;;;:20;;30735:1;;30716:15;:20;;30735:1;;30716:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30747:13:0;;;;;;:9;:13;;;;;:18;;30764:1;;30747:13;:18;;30764:1;;30747:18;:::i;:::-;;;;-1:-1:-1;;30776:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30776:21:0;-1:-1:-1;;;;;30776:21:0;;;;;;;;;30815:27;;30776:16;;30815:27;;;;;;;30272:578;;;:::o;42321:173::-;42396:6;;;-1:-1:-1;;;;;42413:17:0;;;-1:-1:-1;;;;;;42413:17:0;;;;;;;42446:40;;42396:6;;;42413:17;42396:6;;42446:40;;42377:16;;42446:40;42366:128;42321:173;:::o;27970:110::-;28046:26;28056:2;28060:7;28046:26;;;;;;;;;;;;:9;:26::i;26358:315::-;26515:28;26525:4;26531:2;26535:7;26515:9;:28::i;:::-;26562:48;26585:4;26591:2;26595:7;26604:5;26562:22;:48::i;:::-;26554:111;;;;-1:-1:-1;;;26554:111:0;;23256:2:1;26554:111:0;;;23238:21:1;23295:2;23275:18;;;23268:30;23334:34;23314:18;;;23307:62;-1:-1:-1;;;23385:18:1;;;23378:48;23443:19;;26554:111:0;23054:414:1;44043:102:0;44103:13;44132:7;44125:14;;;;;:::i;7539:723::-;7595:13;7816:5;7825:1;7816:10;7812:53;;-1:-1:-1;;7843:10:0;;;;;;;;;;;;-1:-1:-1;;;7843:10:0;;;;;7539:723::o;7812:53::-;7890:5;7875:12;7931:78;7938:9;;7931:78;;7964:8;;;;:::i;:::-;;-1:-1:-1;7987:10:0;;-1:-1:-1;7995:2:0;7987:10;;:::i;:::-;;;7931:78;;;8019:19;8051:6;8041:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8041:17:0;;8019:39;;8069:154;8076:10;;8069:154;;8103:11;8113:1;8103:11;;:::i;:::-;;-1:-1:-1;8172:10:0;8180:2;8172:5;:10;:::i;:::-;8159:24;;:2;:24;:::i;:::-;8146:39;;8129:6;8136;8129:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;8200:11:0;8209:2;8200:11;;:::i;:::-;;;8069:154;;35782:589;-1:-1:-1;;;;;35988:18:0;;35984:187;;36023:40;36055:7;37198:10;:17;;37171:24;;;;:15;:24;;;;;:44;;;37226:24;;;;;;;;;;;;37094:164;36023:40;35984:187;;;36093:2;-1:-1:-1;;;;;36085:10:0;:4;-1:-1:-1;;;;;36085:10:0;;36081:90;;36112:47;36145:4;36151:7;36112:32;:47::i;:::-;-1:-1:-1;;;;;36185:16:0;;36181:183;;36218:45;36255:7;36218:36;:45::i;36181:183::-;36291:4;-1:-1:-1;;;;;36285:10:0;:2;-1:-1:-1;;;;;36285:10:0;;36281:83;;36312:40;36340:2;36344:7;36312:27;:40::i;28307:321::-;28437:18;28443:2;28447:7;28437:5;:18::i;:::-;28488:54;28519:1;28523:2;28527:7;28536:5;28488:22;:54::i;:::-;28466:154;;;;-1:-1:-1;;;28466:154:0;;23256:2:1;28466:154:0;;;23238:21:1;23295:2;23275:18;;;23268:30;23334:34;23314:18;;;23307:62;-1:-1:-1;;;23385:18:1;;;23378:48;23443:19;;28466:154:0;23054:414:1;31707:799:0;31862:4;-1:-1:-1;;;;;31883:13:0;;10356:20;10404:8;31879:620;;31919:72;;-1:-1:-1;;;31919:72:0;;-1:-1:-1;;;;;31919:36:0;;;;;:72;;19667:10;;31970:4;;31976:7;;31985:5;;31919:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31919:72:0;;;;;;;;-1:-1:-1;;31919:72:0;;;;;;;;;;;;:::i;:::-;;;31915:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32161:6;:13;32178:1;32161:18;32157:272;;32204:60;;-1:-1:-1;;;32204:60:0;;23256:2:1;32204:60:0;;;23238:21:1;23295:2;23275:18;;;23268:30;23334:34;23314:18;;;23307:62;-1:-1:-1;;;23385:18:1;;;23378:48;23443:19;;32204:60:0;23054:414:1;32157:272:0;32379:6;32373:13;32364:6;32360:2;32356:15;32349:38;31915:529;-1:-1:-1;;;;;;32042:51:0;-1:-1:-1;;;32042:51:0;;-1:-1:-1;32035:58:0;;31879:620;-1:-1:-1;32483:4:0;31707:799;;;;;;:::o;37885:988::-;38151:22;38201:1;38176:22;38193:4;38176:16;:22::i;:::-;:26;;;;:::i;:::-;38213:18;38234:26;;;:17;:26;;;;;;38151:51;;-1:-1:-1;38367:28:0;;;38363:328;;-1:-1:-1;;;;;38434:18:0;;38412:19;38434:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38485:30;;;;;;:44;;;38602:30;;:17;:30;;;;;:43;;;38363:328;-1:-1:-1;38787:26:0;;;;:17;:26;;;;;;;;38780:33;;;-1:-1:-1;;;;;38831:18:0;;;;;:12;:18;;;;;:34;;;;;;;38824:41;37885:988::o;39168:1079::-;39446:10;:17;39421:22;;39446:21;;39466:1;;39446:21;:::i;:::-;39478:18;39499:24;;;:15;:24;;;;;;39872:10;:26;;39421:46;;-1:-1:-1;39499:24:0;;39421:46;;39872:26;;;;;;:::i;:::-;;;;;;;;;39850:48;;39936:11;39911:10;39922;39911:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40016:28;;;:15;:28;;;;;;;:41;;;40188:24;;;;;40181:31;40223:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39239:1008;;;39168:1079;:::o;36672:221::-;36757:14;36774:20;36791:2;36774:16;:20::i;:::-;-1:-1:-1;;;;;36805:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;36850:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;36672:221:0:o;28964:382::-;-1:-1:-1;;;;;29044:16:0;;29036:61;;;;-1:-1:-1;;;29036:61:0;;24952:2:1;29036:61:0;;;24934:21:1;;;24971:18;;;24964:30;25030:34;25010:18;;;25003:62;25082:18;;29036:61:0;24750:356:1;29036:61:0;27051:4;27075:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27075:16:0;:30;29108:58;;;;-1:-1:-1;;;29108:58:0;;25313:2:1;29108:58:0;;;25295:21:1;25352:2;25332:18;;;25325:30;25391;25371:18;;;25364:58;25439:18;;29108:58:0;25111:352:1;29108:58:0;29179:45;29208:1;29212:2;29216:7;29179:20;:45::i;:::-;-1:-1:-1;;;;;29237:13:0;;;;;;:9;:13;;;;;:18;;29254:1;;29237:13;:18;;29254:1;;29237:18;:::i;:::-;;;;-1:-1:-1;;29266:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29266:21:0;-1:-1:-1;;;;;29266:21:0;;;;;;;;29305:33;;29266:16;;;29305:33;;29266:16;;29305:33;28964:382;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2109:196::-;2177:20;;-1:-1:-1;;;;;2226:54:1;;2216:65;;2206:93;;2295:1;2292;2285:12;2310:254;2378:6;2386;2439:2;2427:9;2418:7;2414:23;2410:32;2407:52;;;2455:1;2452;2445:12;2407:52;2478:29;2497:9;2478:29;:::i;:::-;2468:39;2554:2;2539:18;;;;2526:32;;-1:-1:-1;;;2310:254:1:o;2751:328::-;2828:6;2836;2844;2897:2;2885:9;2876:7;2872:23;2868:32;2865:52;;;2913:1;2910;2903:12;2865:52;2936:29;2955:9;2936:29;:::i;:::-;2926:39;;2984:38;3018:2;3007:9;3003:18;2984:38;:::i;:::-;2974:48;;3069:2;3058:9;3054:18;3041:32;3031:42;;2751:328;;;;;:::o;3084:186::-;3143:6;3196:2;3184:9;3175:7;3171:23;3167:32;3164:52;;;3212:1;3209;3202:12;3164:52;3235:29;3254:9;3235:29;:::i;3275:632::-;3446:2;3498:21;;;3568:13;;3471:18;;;3590:22;;;3417:4;;3446:2;3669:15;;;;3643:2;3628:18;;;3417:4;3712:169;3726:6;3723:1;3720:13;3712:169;;;3787:13;;3775:26;;3856:15;;;;3821:12;;;;3748:1;3741:9;3712:169;;;-1:-1:-1;3898:3:1;;3275:632;-1:-1:-1;;;;;;3275:632:1:o;3912:127::-;3973:10;3968:3;3964:20;3961:1;3954:31;4004:4;4001:1;3994:15;4028:4;4025:1;4018:15;4044:632;4109:5;4139:18;4180:2;4172:6;4169:14;4166:40;;;4186:18;;:::i;:::-;4261:2;4255:9;4229:2;4315:15;;-1:-1:-1;;4311:24:1;;;4337:2;4307:33;4303:42;4291:55;;;4361:18;;;4381:22;;;4358:46;4355:72;;;4407:18;;:::i;:::-;4447:10;4443:2;4436:22;4476:6;4467:15;;4506:6;4498;4491:22;4546:3;4537:6;4532:3;4528:16;4525:25;4522:45;;;4563:1;4560;4553:12;4522:45;4613:6;4608:3;4601:4;4593:6;4589:17;4576:44;4668:1;4661:4;4652:6;4644;4640:19;4636:30;4629:41;;;;4044:632;;;;;:::o;4681:451::-;4750:6;4803:2;4791:9;4782:7;4778:23;4774:32;4771:52;;;4819:1;4816;4809:12;4771:52;4859:9;4846:23;4892:18;4884:6;4881:30;4878:50;;;4924:1;4921;4914:12;4878:50;4947:22;;5000:4;4992:13;;4988:27;-1:-1:-1;4978:55:1;;5029:1;5026;5019:12;4978:55;5052:74;5118:7;5113:2;5100:16;5095:2;5091;5087:11;5052:74;:::i;5137:689::-;5229:6;5237;5245;5298:2;5286:9;5277:7;5273:23;5269:32;5266:52;;;5314:1;5311;5304:12;5266:52;5354:9;5341:23;5383:18;5424:2;5416:6;5413:14;5410:34;;;5440:1;5437;5430:12;5410:34;5478:6;5467:9;5463:22;5453:32;;5523:7;5516:4;5512:2;5508:13;5504:27;5494:55;;5545:1;5542;5535:12;5494:55;5585:2;5572:16;5611:2;5603:6;5600:14;5597:34;;;5627:1;5624;5617:12;5597:34;5682:7;5675:4;5665:6;5662:1;5658:14;5654:2;5650:23;5646:34;5643:47;5640:67;;;5703:1;5700;5693:12;5640:67;5734:4;5726:13;;;;-1:-1:-1;5758:6:1;-1:-1:-1;5783:37:1;;5799:20;;;-1:-1:-1;5783:37:1;:::i;:::-;5773:47;;5137:689;;;;;:::o;5831:254::-;5896:6;5904;5957:2;5945:9;5936:7;5932:23;5928:32;5925:52;;;5973:1;5970;5963:12;5925:52;5996:29;6015:9;5996:29;:::i;:::-;5986:39;;6044:35;6075:2;6064:9;6060:18;6044:35;:::i;:::-;6034:45;;5831:254;;;;;:::o;6090:667::-;6185:6;6193;6201;6209;6262:3;6250:9;6241:7;6237:23;6233:33;6230:53;;;6279:1;6276;6269:12;6230:53;6302:29;6321:9;6302:29;:::i;:::-;6292:39;;6350:38;6384:2;6373:9;6369:18;6350:38;:::i;:::-;6340:48;;6435:2;6424:9;6420:18;6407:32;6397:42;;6490:2;6479:9;6475:18;6462:32;6517:18;6509:6;6506:30;6503:50;;;6549:1;6546;6539:12;6503:50;6572:22;;6625:4;6617:13;;6613:27;-1:-1:-1;6603:55:1;;6654:1;6651;6644:12;6603:55;6677:74;6743:7;6738:2;6725:16;6720:2;6716;6712:11;6677:74;:::i;:::-;6667:84;;;6090:667;;;;;;;:::o;6762:254::-;6830:6;6838;6891:2;6879:9;6870:7;6866:23;6862:32;6859:52;;;6907:1;6904;6897:12;6859:52;6943:9;6930:23;6920:33;;6972:38;7006:2;6995:9;6991:18;6972:38;:::i;7021:260::-;7089:6;7097;7150:2;7138:9;7129:7;7125:23;7121:32;7118:52;;;7166:1;7163;7156:12;7118:52;7189:29;7208:9;7189:29;:::i;:::-;7179:39;;7237:38;7271:2;7260:9;7256:18;7237:38;:::i;7647:380::-;7726:1;7722:12;;;;7769;;;7790:61;;7844:4;7836:6;7832:17;7822:27;;7790:61;7897:2;7889:6;7886:14;7866:18;7863:38;7860:161;;7943:10;7938:3;7934:20;7931:1;7924:31;7978:4;7975:1;7968:15;8006:4;8003:1;7996:15;7860:161;;7647:380;;;:::o;10664:127::-;10725:10;10720:3;10716:20;10713:1;10706:31;10756:4;10753:1;10746:15;10780:4;10777:1;10770:15;10796:127;10857:10;10852:3;10848:20;10845:1;10838:31;10888:4;10885:1;10878:15;10912:4;10909:1;10902:15;10928:135;10967:3;10988:17;;;10985:43;;11008:18;;:::i;:::-;-1:-1:-1;11055:1:1;11044:13;;10928:135::o;11960:545::-;12062:2;12057:3;12054:11;12051:448;;;12098:1;12123:5;12119:2;12112:17;12168:4;12164:2;12154:19;12238:2;12226:10;12222:19;12219:1;12215:27;12209:4;12205:38;12274:4;12262:10;12259:20;12256:47;;;-1:-1:-1;12297:4:1;12256:47;12352:2;12347:3;12343:12;12340:1;12336:20;12330:4;12326:31;12316:41;;12407:82;12425:2;12418:5;12415:13;12407:82;;;12470:17;;;12451:1;12440:13;12407:82;;;12411:3;;;11960:545;;;:::o;12681:1352::-;12807:3;12801:10;12834:18;12826:6;12823:30;12820:56;;;12856:18;;:::i;:::-;12885:97;12975:6;12935:38;12967:4;12961:11;12935:38;:::i;:::-;12929:4;12885:97;:::i;:::-;13037:4;;13101:2;13090:14;;13118:1;13113:663;;;;13820:1;13837:6;13834:89;;;-1:-1:-1;13889:19:1;;;13883:26;13834:89;-1:-1:-1;;12638:1:1;12634:11;;;12630:24;12626:29;12616:40;12662:1;12658:11;;;12613:57;13936:81;;13083:944;;13113:663;11907:1;11900:14;;;11944:4;11931:18;;-1:-1:-1;;13149:20:1;;;13267:236;13281:7;13278:1;13275:14;13267:236;;;13370:19;;;13364:26;13349:42;;13462:27;;;;13430:1;13418:14;;;;13297:19;;13267:236;;;13271:3;13531:6;13522:7;13519:19;13516:201;;;13592:19;;;13586:26;-1:-1:-1;;13675:1:1;13671:14;;;13687:3;13667:24;13663:37;13659:42;13644:58;13629:74;;13516:201;-1:-1:-1;;;;;13763:1:1;13747:14;;;13743:22;13730:36;;-1:-1:-1;12681:1352:1:o;16345:128::-;16385:3;16416:1;16412:6;16409:1;16406:13;16403:39;;;16422:18;;:::i;:::-;-1:-1:-1;16458:9:1;;16345:128::o;17648:168::-;17688:7;17754:1;17750;17746:6;17742:14;17739:1;17736:21;17731:1;17724:9;17717:17;17713:45;17710:71;;;17761:18;;:::i;:::-;-1:-1:-1;17801:9:1;;17648:168::o;20054:1230::-;20278:3;20316:6;20310:13;20342:4;20355:51;20399:6;20394:3;20389:2;20381:6;20377:15;20355:51;:::i;:::-;20469:13;;20428:16;;;;20491:55;20469:13;20428:16;20513:15;;;20491:55;:::i;:::-;20635:13;;20568:20;;;20608:1;;20673:36;20635:13;20673:36;:::i;:::-;20728:1;20745:18;;;20772:141;;;;20927:1;20922:337;;;;20738:521;;20772:141;-1:-1:-1;;20807:24:1;;20793:39;;20884:16;;20877:24;20863:39;;20852:51;;;-1:-1:-1;20772:141:1;;20922:337;20953:6;20950:1;20943:17;21001:2;20998:1;20988:16;21026:1;21040:169;21054:8;21051:1;21048:15;21040:169;;;21136:14;;21121:13;;;21114:37;21179:16;;;;21071:10;;21040:169;;;21044:3;;21240:8;21233:5;21229:20;21222:27;;20738:521;-1:-1:-1;21275:3:1;;20054:1230;-1:-1:-1;;;;;;;;;;20054:1230:1:o;22924:125::-;22964:4;22992:1;22989;22986:8;22983:34;;;22997:18;;:::i;:::-;-1:-1:-1;23034:9:1;;22924:125::o;23473:127::-;23534:10;23529:3;23525:20;23522:1;23515:31;23565:4;23562:1;23555:15;23589:4;23586:1;23579:15;23605:120;23645:1;23671;23661:35;;23676:18;;:::i;:::-;-1:-1:-1;23710:9:1;;23605:120::o;23730:112::-;23762:1;23788;23778:35;;23793:18;;:::i;:::-;-1:-1:-1;23827:9:1;;23730:112::o;23847:512::-;24041:4;-1:-1:-1;;;;;24151:2:1;24143:6;24139:15;24128:9;24121:34;24203:2;24195:6;24191:15;24186:2;24175:9;24171:18;24164:43;;24243:6;24238:2;24227:9;24223:18;24216:34;24286:3;24281:2;24270:9;24266:18;24259:31;24307:46;24348:3;24337:9;24333:19;24325:6;24307:46;:::i;:::-;24299:54;23847:512;-1:-1:-1;;;;;;23847:512:1:o;24364:249::-;24433:6;24486:2;24474:9;24465:7;24461:23;24457:32;24454:52;;;24502:1;24499;24492:12;24454:52;24534:9;24528:16;24553:30;24577:5;24553:30;:::i;24618:127::-;24679:10;24674:3;24670:20;24667:1;24660:31;24710:4;24707:1;24700:15;24734:4;24731:1;24724:15

Swarm Source

ipfs://b3f7001ef9ed82a14a0b23966c6e16f02aa1400079258214c987fea183888e94
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

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