ETH Price: $3,329.82 (+1.99%)
Gas: 4 Gwei

Token

King Solomon (KST)
 

Overview

Max Total Supply

1 KST

Holders

1

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
treythawk.eth
Balance
1 KST
0x63a6f6de59600f7a931782c5997da88c3caa2c46
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:
KingSolomon

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-29
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        _creator = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts\lib\Counters.sol

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

    address payable private _MainAddress;
    address payable private _DonationAddress;
    address payable private _TreasuryAddress;

    uint256 private _MainFundPercent = 55;  
    uint256 private _DonationFundPercent = 33;  
    uint256 private _TreasuryFundPercent = 12;  
    
    uint256 public KST_MAX = 10000;
    uint256 public PRESALE_PRICE = 0.087 ether;
    uint256 public PUBLIC_PRICE = 0.087 ether;
    uint256 private REVEAL_DELAY = 0 hours;
    uint256 private PRESALE_HOURS = 0 hours;
    uint256 public PURCHASE_LIMIT = 20;
    uint256 public PRESALE_MINT_LIMIT = KST_MAX;
    uint256 public PUBLIC_MINT_LIMIT = KST_MAX;
    
    mapping(address => bool) _mappingWhiteList;
    mapping(address => uint256) _mappingMintCount;

    uint256 private _activeDateTime = 1643259600; // (GMT): Thursday, January 27, 2022 5:00:00 AM
    uint256 private _revealDateTime;
    
    string private _tokenBaseURI = "";
    string private _revealURI = "";
    
    Counters.Counter private _publicKST;

    constructor() ERC721("King Solomon", "KST") {}

    function setPaymentAddress(address mainAddress, address donationAddress, address treasuryAddress ) external onlyOwner {
        _MainAddress = payable(mainAddress);
        _DonationAddress = payable(donationAddress);
        _TreasuryAddress = payable(treasuryAddress);
    }

    function setPaymentPercent(uint256 mainPercent, uint256 donationPercent, uint256 treasuryPercent ) external onlyOwner {
        _MainFundPercent = mainPercent;
        _DonationFundPercent = donationPercent;
        _TreasuryFundPercent = treasuryPercent;
    }

    function setActiveDateTime(uint256 activeDateTime, uint256 revealDateTime) external onlyOwner {
        _activeDateTime = activeDateTime;
        _revealDateTime = revealDateTime;
    }

    function setRevealDelay(uint256 revealDelay) external onlyOwner {
        REVEAL_DELAY = revealDelay;
    }

    function setPresaleHours (uint256 presaleHours) external onlyOwner {
        PRESALE_HOURS = presaleHours;
    }

    function setWhiteList(address[] memory whiteListAddress, bool bEnable) external onlyOwner {
        for (uint256 i = 0; i < whiteListAddress.length; i++) {
            _mappingWhiteList[whiteListAddress[i]] = bEnable;
        }
    }

    function setMintPrice(uint256 presaleMintPrice, uint256 publicMintPrice) external onlyOwner {
        PRESALE_PRICE = presaleMintPrice;
        PUBLIC_PRICE = publicMintPrice;
    }

    function setMaxLimit(uint256 maxLimit) external onlyOwner {
        KST_MAX = maxLimit;
    }

    function setPurchaseLimit(uint256 purchaseLimit, uint256 presaleMintLimit, uint256 publicMintLimit) external onlyOwner {
        PURCHASE_LIMIT = purchaseLimit;
        PRESALE_MINT_LIMIT = presaleMintLimit;
        PUBLIC_MINT_LIMIT = publicMintLimit;
    }

    function PRICE(address addr) public view returns (uint256) {
        require(block.timestamp > _activeDateTime - PRESALE_HOURS , "Mint is not activated");

        if (block.timestamp < _activeDateTime) {
            require(_mappingWhiteList[addr] == true , "Only Whitelist member can mint now");
            return PRESALE_PRICE;
        } else {
            return PUBLIC_PRICE;
        }
    }

    function setRevealURI(string memory revealURI) external onlyOwner {
        _revealURI = revealURI;
    }

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

    function airdrop(address to, uint256 numberOfTokens) external onlyOwner {
        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = _publicKST.current();

            if (_publicKST.current() < KST_MAX) {
                _publicKST.increment();
                _safeMint(to, tokenId);
            }
        }
    }

    function purchase(uint256 numberOfTokens) external payable {
        require(numberOfTokens <= PURCHASE_LIMIT,"Can only mint up to purchase limit");
        require(_publicKST.current() < KST_MAX,"Purchase would exceed KST_MAX");

        if (msg.sender != owner()) {
            _mappingMintCount[msg.sender] = _mappingMintCount[msg.sender] + numberOfTokens;

            require(PRICE(msg.sender) * numberOfTokens <= msg.value,"ETH amount is not sufficient");

            if (_mappingWhiteList[msg.sender] == false) {
                require(block.timestamp > _activeDateTime,"Contract is not active");
                require(_mappingMintCount[msg.sender] <= PUBLIC_MINT_LIMIT,"Overflow for PUBLIC_MINT_LIMIT");
            } else {
                if (block.timestamp < _activeDateTime) {
                    require(block.timestamp > _activeDateTime - PRESALE_HOURS,"Contract is not active for presale");
                    require(_mappingMintCount[msg.sender] <= PRESALE_MINT_LIMIT,"Overflow for PRESALE_MINT_LIMIT");
                } else {
                    require(_mappingMintCount[msg.sender] <= PUBLIC_MINT_LIMIT + PRESALE_MINT_LIMIT,"Overflow for PUBLIC_MINT_LIMIT + PRESALE_MINT_LIMIT");
                }
            }

            uint256 mainAmount = (msg.value * _MainFundPercent) / 100;
            uint256 donationAmount = (msg.value * _DonationFundPercent) / 100;
            uint256 treasuryAmount = (msg.value * _TreasuryFundPercent) / 100;
            _MainAddress.transfer(mainAmount);
            _DonationAddress.transfer(donationAmount);
            _TreasuryAddress.transfer(treasuryAmount);
        }

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

            if (_publicKST.current() < KST_MAX) {
                _publicKST.increment();
                _safeMint(msg.sender, tokenId);
            }
        }
    }

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

        if (_revealDateTime < block.timestamp) {
            return string(abi.encodePacked(_tokenBaseURI, tokenId.toString()));
        }

        return _revealURI;
    }

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

        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"KST_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"activeDateTime","type":"uint256"},{"internalType":"uint256","name":"revealDateTime","type":"uint256"}],"name":"setActiveDateTime","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxLimit","type":"uint256"}],"name":"setMaxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"presaleMintPrice","type":"uint256"},{"internalType":"uint256","name":"publicMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"mainAddress","type":"address"},{"internalType":"address","name":"donationAddress","type":"address"},{"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"setPaymentAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mainPercent","type":"uint256"},{"internalType":"uint256","name":"donationPercent","type":"uint256"},{"internalType":"uint256","name":"treasuryPercent","type":"uint256"}],"name":"setPaymentPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"presaleHours","type":"uint256"}],"name":"setPresaleHours","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"purchaseLimit","type":"uint256"},{"internalType":"uint256","name":"presaleMintLimit","type":"uint256"},{"internalType":"uint256","name":"publicMintLimit","type":"uint256"}],"name":"setPurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"revealDelay","type":"uint256"}],"name":"setRevealDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"revealURI","type":"string"}],"name":"setRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"whiteListAddress","type":"address[]"},{"internalType":"bool","name":"bEnable","type":"bool"}],"name":"setWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6037600f556021601055600c60115561271060128190556701351609ff7580006013819055601490815560006015819055601681905560179190915560188290556019919091556361f226d0601c5560a0604081905260808290526200006991601e919062000177565b506040805160208101918290526000908190526200008a91601f9162000177565b503480156200009857600080fd5b50604080518082018252600c81526b25b4b7339029b7b637b6b7b760a11b60208083019182528351808501909452600384526212d4d560ea1b908401528151919291620000e89160009162000177565b508051620000fe90600190602084019062000177565b5050506000620001136200017360201b60201c565b600a80546001600160a01b0383166001600160a01b03199182168117909255600b805490911682179055604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200025a565b3390565b82805462000185906200021d565b90600052602060002090601f016020900481019282620001a95760008555620001f4565b82601f10620001c457805160ff1916838001178555620001f4565b82800160010185558215620001f4579182015b82811115620001f4578251825591602001919060010190620001d7565b506200020292915062000206565b5090565b5b8082111562000202576000815560010162000207565b600181811c908216806200023257607f821691505b602082108114156200025457634e487b7160e01b600052602260045260246000fd5b50919050565b612c69806200026a6000396000f3fe60806040526004361061023b5760003560e01c80638da5cb5b1161012e578063bf8bcee4116100ab578063e43f696e1161006f578063e43f696e1461067f578063e985e9c51461069f578063efef39a1146106e8578063f2fde38b146106fb578063f5ebec801461071b57600080fd5b8063bf8bcee4146105e9578063c17730e014610609578063c87b56dd14610629578063d3434c0414610649578063d75e61101461066957600080fd5b8063b44302a3116100f2578063b44302a314610553578063b887534314610573578063b88d4fde14610593578063bc7e2424146105b3578063bceae77b146105d357600080fd5b80638da5cb5b146104c057806395d89b41146104de578063a22cb465146104f3578063a68c25d814610513578063a811a37b1461053357600080fd5b806342842e0e116101bc5780636352211e116101805780636352211e146104355780636fed7da71461045557806370a082311461046b578063715018a61461048b5780638ba4cc3c146104a057600080fd5b806342842e0e146103a95780634f6ccce7146103c957806355f804b3146103e9578063611f3f101461040957806362dc6e211461041f57600080fd5b80630b2df33d116102035780630b2df33d1461031157806318160ddd1461033f57806323b872dd146103545780632f745c59146103745780633ccfd60b1461039457600080fd5b806301ffc9a7146102405780630442bfa81461027557806306fdde0314610297578063081812fc146102b9578063095ea7b3146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004612782565b610731565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061029561029036600461281e565b61075c565b005b3480156102a357600080fd5b506102ac6107af565b60405161026c9190612998565b3480156102c557600080fd5b506102d96102d4366004612805565b610841565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b5061029561030c366004612692565b6108d6565b34801561031d57600080fd5b5061033161032c366004612518565b6109ec565b60405190815260200161026c565b34801561034b57600080fd5b50600854610331565b34801561036057600080fd5b5061029561036f3660046125b0565b610adb565b34801561038057600080fd5b5061033161038f366004612692565b610b0c565b3480156103a057600080fd5b50610295610ba2565b3480156103b557600080fd5b506102956103c43660046125b0565b610c14565b3480156103d557600080fd5b506103316103e4366004612805565b610c2f565b3480156103f557600080fd5b506102956104043660046127bc565b610cc2565b34801561041557600080fd5b5061033160145481565b34801561042b57600080fd5b5061033160135481565b34801561044157600080fd5b506102d9610450366004612805565b610d14565b34801561046157600080fd5b5061033160125481565b34801561047757600080fd5b50610331610486366004612518565b610d8b565b34801561049757600080fd5b50610295610e12565b3480156104ac57600080fd5b506102956104bb366004612692565b610e9b565b3480156104cc57600080fd5b50600a546001600160a01b03166102d9565b3480156104ea57600080fd5b506102ac610f2b565b3480156104ff57600080fd5b5061029561050e366004612668565b610f3a565b34801561051f57600080fd5b5061029561052e366004612805565b610fff565b34801561053f57600080fd5b5061029561054e3660046127bc565b611043565b34801561055f57600080fd5b5061029561056e366004612805565b611095565b34801561057f57600080fd5b5061029561058e36600461281e565b6110d9565b34801561059f57600080fd5b506102956105ae3660046125ec565b611123565b3480156105bf57600080fd5b506102956105ce366004612840565b61115b565b3480156105df57600080fd5b5061033160195481565b3480156105f557600080fd5b50610295610604366004612805565b6111a8565b34801561061557600080fd5b50610295610624366004612840565b6111ec565b34801561063557600080fd5b506102ac610644366004612805565b611239565b34801561065557600080fd5b5061029561066436600461256d565b611365565b34801561067557600080fd5b5061033160175481565b34801561068b57600080fd5b5061029561069a3660046126bc565b6113e3565b3480156106ab57600080fd5b506102606106ba36600461253a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102956106f6366004612805565b611489565b34801561070757600080fd5b50610295610716366004612518565b611962565b34801561072757600080fd5b5061033160185481565b60006001600160e01b0319821663780e9d6360e01b1480610756575061075682611a62565b92915050565b600a546001600160a01b031633148061077f5750600b546001600160a01b031633145b6107a45760405162461bcd60e51b815260040161079b906129fd565b60405180910390fd5b601391909155601455565b6060600080546107be90612b42565b80601f01602080910402602001604051908101604052809291908181526020018280546107ea90612b42565b80156108375780601f1061080c57610100808354040283529160200191610837565b820191906000526020600020905b81548152906001019060200180831161081a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108ba5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161079b565b506000908152600460205260409020546001600160a01b031690565b60006108e182610d14565b9050806001600160a01b0316836001600160a01b0316141561094f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161079b565b336001600160a01b038216148061096b575061096b81336106ba565b6109dd5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161079b565b6109e78383611ab2565b505050565b6000601654601c546109fe9190612aff565b4211610a445760405162461bcd60e51b8152602060048201526015602482015274135a5b9d081a5cc81b9bdd081858dd1a5d985d1959605a1b604482015260640161079b565b601c54421015610ace576001600160a01b0382166000908152601a602052604090205460ff161515600114610ac65760405162461bcd60e51b815260206004820152602260248201527f4f6e6c792057686974656c697374206d656d6265722063616e206d696e74206e6044820152616f7760f01b606482015260840161079b565b505060135490565b505060145490565b919050565b610ae53382611b20565b610b015760405162461bcd60e51b815260040161079b90612a32565b6109e7838383611c17565b6000610b1783610d8b565b8210610b795760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161079b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331480610bc55750600b546001600160a01b031633145b610be15760405162461bcd60e51b815260040161079b906129fd565b6040514790339082156108fc029083906000818181858888f19350505050158015610c10573d6000803e3d6000fd5b5050565b6109e783838360405180602001604052806000815250611123565b6000610c3a60085490565b8210610c9d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161079b565b60088281548110610cb057610cb0612bee565b90600052602060002001549050919050565b600a546001600160a01b0316331480610ce55750600b546001600160a01b031633145b610d015760405162461bcd60e51b815260040161079b906129fd565b8051610c1090601e906020840190612400565b6000818152600260205260408120546001600160a01b0316806107565760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161079b565b60006001600160a01b038216610df65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161079b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610e355750600b546001600160a01b031633145b610e515760405162461bcd60e51b815260040161079b906129fd565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610ebe5750600b546001600160a01b031633145b610eda5760405162461bcd60e51b815260040161079b906129fd565b60005b818110156109e7576000610ef060205490565b9050601254610efe60205490565b1015610f1857610f0e6020611dc2565b610f188482611ddf565b5080610f2381612b7d565b915050610edd565b6060600180546107be90612b42565b6001600160a01b038216331415610f935760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161079b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314806110225750600b546001600160a01b031633145b61103e5760405162461bcd60e51b815260040161079b906129fd565b601555565b600a546001600160a01b03163314806110665750600b546001600160a01b031633145b6110825760405162461bcd60e51b815260040161079b906129fd565b8051610c1090601f906020840190612400565b600a546001600160a01b03163314806110b85750600b546001600160a01b031633145b6110d45760405162461bcd60e51b815260040161079b906129fd565b601655565b600a546001600160a01b03163314806110fc5750600b546001600160a01b031633145b6111185760405162461bcd60e51b815260040161079b906129fd565b601c91909155601d55565b61112d3383611b20565b6111495760405162461bcd60e51b815260040161079b90612a32565b61115584848484611df9565b50505050565b600a546001600160a01b031633148061117e5750600b546001600160a01b031633145b61119a5760405162461bcd60e51b815260040161079b906129fd565b601792909255601855601955565b600a546001600160a01b03163314806111cb5750600b546001600160a01b031633145b6111e75760405162461bcd60e51b815260040161079b906129fd565b601255565b600a546001600160a01b031633148061120f5750600b546001600160a01b031633145b61122b5760405162461bcd60e51b815260040161079b906129fd565b600f92909255601055601155565b6000818152600260205260409020546060906001600160a01b03166112975760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604482015260640161079b565b42601d5410156112d357601e6112ac83611e2c565b6040516020016112bd9291906128b4565b6040516020818303038152906040529050919050565b601f80546112e090612b42565b80601f016020809104026020016040519081016040528092919081815260200182805461130c90612b42565b80156113595780601f1061132e57610100808354040283529160200191611359565b820191906000526020600020905b81548152906001019060200180831161133c57829003601f168201915b50505050509050919050565b600a546001600160a01b03163314806113885750600b546001600160a01b031633145b6113a45760405162461bcd60e51b815260040161079b906129fd565b600c80546001600160a01b039485166001600160a01b031991821617909155600d805493851693821693909317909255600e8054919093169116179055565b600a546001600160a01b03163314806114065750600b546001600160a01b031633145b6114225760405162461bcd60e51b815260040161079b906129fd565b60005b82518110156109e75781601a600085848151811061144557611445612bee565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061148181612b7d565b915050611425565b6017548111156114e65760405162461bcd60e51b815260206004820152602260248201527f43616e206f6e6c79206d696e7420757020746f207075726368617365206c696d6044820152611a5d60f21b606482015260840161079b565b601254602054106115395760405162461bcd60e51b815260206004820152601d60248201527f507572636861736520776f756c6420657863656564204b53545f4d4158000000604482015260640161079b565b600a546001600160a01b0316331461191157336000908152601b6020526040902054611566908290612ab4565b336000818152601b602052604090209190915534908290611586906109ec565b6115909190612ae0565b11156115de5760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604482015260640161079b565b336000908152601a602052604090205460ff166116a557601c54421161163f5760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b604482015260640161079b565b601954336000908152601b602052604090205411156116a05760405162461bcd60e51b815260206004820152601e60248201527f4f766572666c6f7720666f72205055424c49435f4d494e545f4c494d49540000604482015260640161079b565b611803565b601c5442101561177957601654601c546116bf9190612aff565b42116117185760405162461bcd60e51b815260206004820152602260248201527f436f6e7472616374206973206e6f742061637469766520666f722070726573616044820152616c6560f01b606482015260840161079b565b601854336000908152601b602052604090205411156116a05760405162461bcd60e51b815260206004820152601f60248201527f4f766572666c6f7720666f722050524553414c455f4d494e545f4c494d495400604482015260640161079b565b6018546019546117899190612ab4565b336000908152601b602052604090205411156118035760405162461bcd60e51b815260206004820152603360248201527f4f766572666c6f7720666f72205055424c49435f4d494e545f4c494d4954202b6044820152720814149154d0531157d352539517d312535255606a1b606482015260840161079b565b60006064600f54346118159190612ae0565b61181f9190612acc565b905060006064601054346118339190612ae0565b61183d9190612acc565b905060006064601154346118519190612ae0565b61185b9190612acc565b600c546040519192506001600160a01b03169084156108fc029085906000818181858888f19350505050158015611896573d6000803e3d6000fd5b50600d546040516001600160a01b039091169083156108fc029084906000818181858888f193505050501580156118d1573d6000803e3d6000fd5b50600e546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561190c573d6000803e3d6000fd5b505050505b60005b81811015610c1057600061192760205490565b905060125461193560205490565b101561194f576119456020611dc2565b61194f3382611ddf565b508061195a81612b7d565b915050611914565b600a546001600160a01b03163314806119855750600b546001600160a01b031633145b6119a15760405162461bcd60e51b815260040161079b906129fd565b6001600160a01b038116611a065760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079b565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b1480611a9357506001600160e01b03198216635b5e139f60e01b145b8061075657506301ffc9a760e01b6001600160e01b0319831614610756565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ae782610d14565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b995760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161079b565b6000611ba483610d14565b9050806001600160a01b0316846001600160a01b03161480611bdf5750836001600160a01b0316611bd484610841565b6001600160a01b0316145b80611c0f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c2a82610d14565b6001600160a01b031614611c925760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161079b565b6001600160a01b038216611cf45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161079b565b611cff838383611f2a565b611d0a600082611ab2565b6001600160a01b0383166000908152600360205260408120805460019290611d33908490612aff565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d61908490612ab4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001816000016000828254611dd79190612ab4565b909155505050565b610c10828260405180602001604052806000815250611fe2565b611e04848484611c17565b611e1084848484612015565b6111555760405162461bcd60e51b815260040161079b906129ab565b606081611e505750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e7a5780611e6481612b7d565b9150611e739050600a83612acc565b9150611e54565b60008167ffffffffffffffff811115611e9557611e95612c04565b6040519080825280601f01601f191660200182016040528015611ebf576020820181803683370190505b5090505b8415611c0f57611ed4600183612aff565b9150611ee1600a86612b98565b611eec906030612ab4565b60f81b818381518110611f0157611f01612bee565b60200101906001600160f81b031916908160001a905350611f23600a86612acc565b9450611ec3565b6001600160a01b038316611f8557611f8081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611fa8565b816001600160a01b0316836001600160a01b031614611fa857611fa88382612122565b6001600160a01b038216611fbf576109e7816121bf565b826001600160a01b0316826001600160a01b0316146109e7576109e7828261226e565b611fec83836122b2565b611ff96000848484612015565b6109e75760405162461bcd60e51b815260040161079b906129ab565b60006001600160a01b0384163b1561211757604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061205990339089908890889060040161295b565b602060405180830381600087803b15801561207357600080fd5b505af19250505080156120a3575060408051601f3d908101601f191682019092526120a09181019061279f565b60015b6120fd573d8080156120d1576040519150601f19603f3d011682016040523d82523d6000602084013e6120d6565b606091505b5080516120f55760405162461bcd60e51b815260040161079b906129ab565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c0f565b506001949350505050565b6000600161212f84610d8b565b6121399190612aff565b60008381526007602052604090205490915080821461218c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906121d190600190612aff565b600083815260096020526040812054600880549394509092849081106121f9576121f9612bee565b90600052602060002001549050806008838154811061221a5761221a612bee565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061225257612252612bd8565b6001900381819060005260206000200160009055905550505050565b600061227983610d8b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166123085760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161079b565b6000818152600260205260409020546001600160a01b03161561236d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161079b565b61237960008383611f2a565b6001600160a01b03821660009081526003602052604081208054600192906123a2908490612ab4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461240c90612b42565b90600052602060002090601f01602090048101928261242e5760008555612474565b82601f1061244757805160ff1916838001178555612474565b82800160010185558215612474579182015b82811115612474578251825591602001919060010190612459565b50612480929150612484565b5090565b5b808211156124805760008155600101612485565b600067ffffffffffffffff8311156124b3576124b3612c04565b6124c6601f8401601f1916602001612a83565b90508281528383830111156124da57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114610ad657600080fd5b80358015158114610ad657600080fd5b60006020828403121561252a57600080fd5b612533826124f1565b9392505050565b6000806040838503121561254d57600080fd5b612556836124f1565b9150612564602084016124f1565b90509250929050565b60008060006060848603121561258257600080fd5b61258b846124f1565b9250612599602085016124f1565b91506125a7604085016124f1565b90509250925092565b6000806000606084860312156125c557600080fd5b6125ce846124f1565b92506125dc602085016124f1565b9150604084013590509250925092565b6000806000806080858703121561260257600080fd5b61260b856124f1565b9350612619602086016124f1565b925060408501359150606085013567ffffffffffffffff81111561263c57600080fd5b8501601f8101871361264d57600080fd5b61265c87823560208401612499565b91505092959194509250565b6000806040838503121561267b57600080fd5b612684836124f1565b915061256460208401612508565b600080604083850312156126a557600080fd5b6126ae836124f1565b946020939093013593505050565b600080604083850312156126cf57600080fd5b823567ffffffffffffffff808211156126e757600080fd5b818501915085601f8301126126fb57600080fd5b813560208282111561270f5761270f612c04565b8160051b9250612720818401612a83565b8281528181019085830185870184018b101561273b57600080fd5b600096505b8487101561276557612751816124f1565b835260019690960195918301918301612740565b5096506127759050878201612508565b9450505050509250929050565b60006020828403121561279457600080fd5b813561253381612c1a565b6000602082840312156127b157600080fd5b815161253381612c1a565b6000602082840312156127ce57600080fd5b813567ffffffffffffffff8111156127e557600080fd5b8201601f810184136127f657600080fd5b611c0f84823560208401612499565b60006020828403121561281757600080fd5b5035919050565b6000806040838503121561283157600080fd5b50508035926020909101359150565b60008060006060848603121561285557600080fd5b505081359360208301359350604090920135919050565b60008151808452612884816020860160208601612b16565b601f01601f19169290920160200192915050565b600081516128aa818560208601612b16565b9290920192915050565b600080845481600182811c9150808316806128d057607f831692505b60208084108214156128f057634e487b7160e01b86526022600452602486fd5b818015612904576001811461291557612942565b60ff19861689528489019650612942565b60008b81526020902060005b8681101561293a5781548b820152908501908301612921565b505084890196505b5050505050506129528185612898565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061298e9083018461286c565b9695505050505050565b602081526000612533602083018461286c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612aac57612aac612c04565b604052919050565b60008219821115612ac757612ac7612bac565b500190565b600082612adb57612adb612bc2565b500490565b6000816000190483118215151615612afa57612afa612bac565b500290565b600082821015612b1157612b11612bac565b500390565b60005b83811015612b31578181015183820152602001612b19565b838111156111555750506000910152565b600181811c90821680612b5657607f821691505b60208210811415612b7757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b9157612b91612bac565b5060010190565b600082612ba757612ba7612bc2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612c3057600080fd5b5056fea26469706673582212202b319d9e580c466c3896f140170415f992d63bf771ad14c23f0c731fa05b605464736f6c63430008070033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80638da5cb5b1161012e578063bf8bcee4116100ab578063e43f696e1161006f578063e43f696e1461067f578063e985e9c51461069f578063efef39a1146106e8578063f2fde38b146106fb578063f5ebec801461071b57600080fd5b8063bf8bcee4146105e9578063c17730e014610609578063c87b56dd14610629578063d3434c0414610649578063d75e61101461066957600080fd5b8063b44302a3116100f2578063b44302a314610553578063b887534314610573578063b88d4fde14610593578063bc7e2424146105b3578063bceae77b146105d357600080fd5b80638da5cb5b146104c057806395d89b41146104de578063a22cb465146104f3578063a68c25d814610513578063a811a37b1461053357600080fd5b806342842e0e116101bc5780636352211e116101805780636352211e146104355780636fed7da71461045557806370a082311461046b578063715018a61461048b5780638ba4cc3c146104a057600080fd5b806342842e0e146103a95780634f6ccce7146103c957806355f804b3146103e9578063611f3f101461040957806362dc6e211461041f57600080fd5b80630b2df33d116102035780630b2df33d1461031157806318160ddd1461033f57806323b872dd146103545780632f745c59146103745780633ccfd60b1461039457600080fd5b806301ffc9a7146102405780630442bfa81461027557806306fdde0314610297578063081812fc146102b9578063095ea7b3146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004612782565b610731565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061029561029036600461281e565b61075c565b005b3480156102a357600080fd5b506102ac6107af565b60405161026c9190612998565b3480156102c557600080fd5b506102d96102d4366004612805565b610841565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b5061029561030c366004612692565b6108d6565b34801561031d57600080fd5b5061033161032c366004612518565b6109ec565b60405190815260200161026c565b34801561034b57600080fd5b50600854610331565b34801561036057600080fd5b5061029561036f3660046125b0565b610adb565b34801561038057600080fd5b5061033161038f366004612692565b610b0c565b3480156103a057600080fd5b50610295610ba2565b3480156103b557600080fd5b506102956103c43660046125b0565b610c14565b3480156103d557600080fd5b506103316103e4366004612805565b610c2f565b3480156103f557600080fd5b506102956104043660046127bc565b610cc2565b34801561041557600080fd5b5061033160145481565b34801561042b57600080fd5b5061033160135481565b34801561044157600080fd5b506102d9610450366004612805565b610d14565b34801561046157600080fd5b5061033160125481565b34801561047757600080fd5b50610331610486366004612518565b610d8b565b34801561049757600080fd5b50610295610e12565b3480156104ac57600080fd5b506102956104bb366004612692565b610e9b565b3480156104cc57600080fd5b50600a546001600160a01b03166102d9565b3480156104ea57600080fd5b506102ac610f2b565b3480156104ff57600080fd5b5061029561050e366004612668565b610f3a565b34801561051f57600080fd5b5061029561052e366004612805565b610fff565b34801561053f57600080fd5b5061029561054e3660046127bc565b611043565b34801561055f57600080fd5b5061029561056e366004612805565b611095565b34801561057f57600080fd5b5061029561058e36600461281e565b6110d9565b34801561059f57600080fd5b506102956105ae3660046125ec565b611123565b3480156105bf57600080fd5b506102956105ce366004612840565b61115b565b3480156105df57600080fd5b5061033160195481565b3480156105f557600080fd5b50610295610604366004612805565b6111a8565b34801561061557600080fd5b50610295610624366004612840565b6111ec565b34801561063557600080fd5b506102ac610644366004612805565b611239565b34801561065557600080fd5b5061029561066436600461256d565b611365565b34801561067557600080fd5b5061033160175481565b34801561068b57600080fd5b5061029561069a3660046126bc565b6113e3565b3480156106ab57600080fd5b506102606106ba36600461253a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102956106f6366004612805565b611489565b34801561070757600080fd5b50610295610716366004612518565b611962565b34801561072757600080fd5b5061033160185481565b60006001600160e01b0319821663780e9d6360e01b1480610756575061075682611a62565b92915050565b600a546001600160a01b031633148061077f5750600b546001600160a01b031633145b6107a45760405162461bcd60e51b815260040161079b906129fd565b60405180910390fd5b601391909155601455565b6060600080546107be90612b42565b80601f01602080910402602001604051908101604052809291908181526020018280546107ea90612b42565b80156108375780601f1061080c57610100808354040283529160200191610837565b820191906000526020600020905b81548152906001019060200180831161081a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108ba5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161079b565b506000908152600460205260409020546001600160a01b031690565b60006108e182610d14565b9050806001600160a01b0316836001600160a01b0316141561094f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161079b565b336001600160a01b038216148061096b575061096b81336106ba565b6109dd5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161079b565b6109e78383611ab2565b505050565b6000601654601c546109fe9190612aff565b4211610a445760405162461bcd60e51b8152602060048201526015602482015274135a5b9d081a5cc81b9bdd081858dd1a5d985d1959605a1b604482015260640161079b565b601c54421015610ace576001600160a01b0382166000908152601a602052604090205460ff161515600114610ac65760405162461bcd60e51b815260206004820152602260248201527f4f6e6c792057686974656c697374206d656d6265722063616e206d696e74206e6044820152616f7760f01b606482015260840161079b565b505060135490565b505060145490565b919050565b610ae53382611b20565b610b015760405162461bcd60e51b815260040161079b90612a32565b6109e7838383611c17565b6000610b1783610d8b565b8210610b795760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161079b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331480610bc55750600b546001600160a01b031633145b610be15760405162461bcd60e51b815260040161079b906129fd565b6040514790339082156108fc029083906000818181858888f19350505050158015610c10573d6000803e3d6000fd5b5050565b6109e783838360405180602001604052806000815250611123565b6000610c3a60085490565b8210610c9d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161079b565b60088281548110610cb057610cb0612bee565b90600052602060002001549050919050565b600a546001600160a01b0316331480610ce55750600b546001600160a01b031633145b610d015760405162461bcd60e51b815260040161079b906129fd565b8051610c1090601e906020840190612400565b6000818152600260205260408120546001600160a01b0316806107565760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161079b565b60006001600160a01b038216610df65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161079b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331480610e355750600b546001600160a01b031633145b610e515760405162461bcd60e51b815260040161079b906129fd565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b0316331480610ebe5750600b546001600160a01b031633145b610eda5760405162461bcd60e51b815260040161079b906129fd565b60005b818110156109e7576000610ef060205490565b9050601254610efe60205490565b1015610f1857610f0e6020611dc2565b610f188482611ddf565b5080610f2381612b7d565b915050610edd565b6060600180546107be90612b42565b6001600160a01b038216331415610f935760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161079b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314806110225750600b546001600160a01b031633145b61103e5760405162461bcd60e51b815260040161079b906129fd565b601555565b600a546001600160a01b03163314806110665750600b546001600160a01b031633145b6110825760405162461bcd60e51b815260040161079b906129fd565b8051610c1090601f906020840190612400565b600a546001600160a01b03163314806110b85750600b546001600160a01b031633145b6110d45760405162461bcd60e51b815260040161079b906129fd565b601655565b600a546001600160a01b03163314806110fc5750600b546001600160a01b031633145b6111185760405162461bcd60e51b815260040161079b906129fd565b601c91909155601d55565b61112d3383611b20565b6111495760405162461bcd60e51b815260040161079b90612a32565b61115584848484611df9565b50505050565b600a546001600160a01b031633148061117e5750600b546001600160a01b031633145b61119a5760405162461bcd60e51b815260040161079b906129fd565b601792909255601855601955565b600a546001600160a01b03163314806111cb5750600b546001600160a01b031633145b6111e75760405162461bcd60e51b815260040161079b906129fd565b601255565b600a546001600160a01b031633148061120f5750600b546001600160a01b031633145b61122b5760405162461bcd60e51b815260040161079b906129fd565b600f92909255601055601155565b6000818152600260205260409020546060906001600160a01b03166112975760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604482015260640161079b565b42601d5410156112d357601e6112ac83611e2c565b6040516020016112bd9291906128b4565b6040516020818303038152906040529050919050565b601f80546112e090612b42565b80601f016020809104026020016040519081016040528092919081815260200182805461130c90612b42565b80156113595780601f1061132e57610100808354040283529160200191611359565b820191906000526020600020905b81548152906001019060200180831161133c57829003601f168201915b50505050509050919050565b600a546001600160a01b03163314806113885750600b546001600160a01b031633145b6113a45760405162461bcd60e51b815260040161079b906129fd565b600c80546001600160a01b039485166001600160a01b031991821617909155600d805493851693821693909317909255600e8054919093169116179055565b600a546001600160a01b03163314806114065750600b546001600160a01b031633145b6114225760405162461bcd60e51b815260040161079b906129fd565b60005b82518110156109e75781601a600085848151811061144557611445612bee565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061148181612b7d565b915050611425565b6017548111156114e65760405162461bcd60e51b815260206004820152602260248201527f43616e206f6e6c79206d696e7420757020746f207075726368617365206c696d6044820152611a5d60f21b606482015260840161079b565b601254602054106115395760405162461bcd60e51b815260206004820152601d60248201527f507572636861736520776f756c6420657863656564204b53545f4d4158000000604482015260640161079b565b600a546001600160a01b0316331461191157336000908152601b6020526040902054611566908290612ab4565b336000818152601b602052604090209190915534908290611586906109ec565b6115909190612ae0565b11156115de5760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e7400000000604482015260640161079b565b336000908152601a602052604090205460ff166116a557601c54421161163f5760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b604482015260640161079b565b601954336000908152601b602052604090205411156116a05760405162461bcd60e51b815260206004820152601e60248201527f4f766572666c6f7720666f72205055424c49435f4d494e545f4c494d49540000604482015260640161079b565b611803565b601c5442101561177957601654601c546116bf9190612aff565b42116117185760405162461bcd60e51b815260206004820152602260248201527f436f6e7472616374206973206e6f742061637469766520666f722070726573616044820152616c6560f01b606482015260840161079b565b601854336000908152601b602052604090205411156116a05760405162461bcd60e51b815260206004820152601f60248201527f4f766572666c6f7720666f722050524553414c455f4d494e545f4c494d495400604482015260640161079b565b6018546019546117899190612ab4565b336000908152601b602052604090205411156118035760405162461bcd60e51b815260206004820152603360248201527f4f766572666c6f7720666f72205055424c49435f4d494e545f4c494d4954202b6044820152720814149154d0531157d352539517d312535255606a1b606482015260840161079b565b60006064600f54346118159190612ae0565b61181f9190612acc565b905060006064601054346118339190612ae0565b61183d9190612acc565b905060006064601154346118519190612ae0565b61185b9190612acc565b600c546040519192506001600160a01b03169084156108fc029085906000818181858888f19350505050158015611896573d6000803e3d6000fd5b50600d546040516001600160a01b039091169083156108fc029084906000818181858888f193505050501580156118d1573d6000803e3d6000fd5b50600e546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561190c573d6000803e3d6000fd5b505050505b60005b81811015610c1057600061192760205490565b905060125461193560205490565b101561194f576119456020611dc2565b61194f3382611ddf565b508061195a81612b7d565b915050611914565b600a546001600160a01b03163314806119855750600b546001600160a01b031633145b6119a15760405162461bcd60e51b815260040161079b906129fd565b6001600160a01b038116611a065760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161079b565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b1480611a9357506001600160e01b03198216635b5e139f60e01b145b8061075657506301ffc9a760e01b6001600160e01b0319831614610756565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ae782610d14565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611b995760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161079b565b6000611ba483610d14565b9050806001600160a01b0316846001600160a01b03161480611bdf5750836001600160a01b0316611bd484610841565b6001600160a01b0316145b80611c0f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c2a82610d14565b6001600160a01b031614611c925760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161079b565b6001600160a01b038216611cf45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161079b565b611cff838383611f2a565b611d0a600082611ab2565b6001600160a01b0383166000908152600360205260408120805460019290611d33908490612aff565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d61908490612ab4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001816000016000828254611dd79190612ab4565b909155505050565b610c10828260405180602001604052806000815250611fe2565b611e04848484611c17565b611e1084848484612015565b6111555760405162461bcd60e51b815260040161079b906129ab565b606081611e505750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e7a5780611e6481612b7d565b9150611e739050600a83612acc565b9150611e54565b60008167ffffffffffffffff811115611e9557611e95612c04565b6040519080825280601f01601f191660200182016040528015611ebf576020820181803683370190505b5090505b8415611c0f57611ed4600183612aff565b9150611ee1600a86612b98565b611eec906030612ab4565b60f81b818381518110611f0157611f01612bee565b60200101906001600160f81b031916908160001a905350611f23600a86612acc565b9450611ec3565b6001600160a01b038316611f8557611f8081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611fa8565b816001600160a01b0316836001600160a01b031614611fa857611fa88382612122565b6001600160a01b038216611fbf576109e7816121bf565b826001600160a01b0316826001600160a01b0316146109e7576109e7828261226e565b611fec83836122b2565b611ff96000848484612015565b6109e75760405162461bcd60e51b815260040161079b906129ab565b60006001600160a01b0384163b1561211757604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061205990339089908890889060040161295b565b602060405180830381600087803b15801561207357600080fd5b505af19250505080156120a3575060408051601f3d908101601f191682019092526120a09181019061279f565b60015b6120fd573d8080156120d1576040519150601f19603f3d011682016040523d82523d6000602084013e6120d6565b606091505b5080516120f55760405162461bcd60e51b815260040161079b906129ab565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c0f565b506001949350505050565b6000600161212f84610d8b565b6121399190612aff565b60008381526007602052604090205490915080821461218c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906121d190600190612aff565b600083815260096020526040812054600880549394509092849081106121f9576121f9612bee565b90600052602060002001549050806008838154811061221a5761221a612bee565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061225257612252612bd8565b6001900381819060005260206000200160009055905550505050565b600061227983610d8b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166123085760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161079b565b6000818152600260205260409020546001600160a01b03161561236d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161079b565b61237960008383611f2a565b6001600160a01b03821660009081526003602052604081208054600192906123a2908490612ab4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461240c90612b42565b90600052602060002090601f01602090048101928261242e5760008555612474565b82601f1061244757805160ff1916838001178555612474565b82800160010185558215612474579182015b82811115612474578251825591602001919060010190612459565b50612480929150612484565b5090565b5b808211156124805760008155600101612485565b600067ffffffffffffffff8311156124b3576124b3612c04565b6124c6601f8401601f1916602001612a83565b90508281528383830111156124da57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114610ad657600080fd5b80358015158114610ad657600080fd5b60006020828403121561252a57600080fd5b612533826124f1565b9392505050565b6000806040838503121561254d57600080fd5b612556836124f1565b9150612564602084016124f1565b90509250929050565b60008060006060848603121561258257600080fd5b61258b846124f1565b9250612599602085016124f1565b91506125a7604085016124f1565b90509250925092565b6000806000606084860312156125c557600080fd5b6125ce846124f1565b92506125dc602085016124f1565b9150604084013590509250925092565b6000806000806080858703121561260257600080fd5b61260b856124f1565b9350612619602086016124f1565b925060408501359150606085013567ffffffffffffffff81111561263c57600080fd5b8501601f8101871361264d57600080fd5b61265c87823560208401612499565b91505092959194509250565b6000806040838503121561267b57600080fd5b612684836124f1565b915061256460208401612508565b600080604083850312156126a557600080fd5b6126ae836124f1565b946020939093013593505050565b600080604083850312156126cf57600080fd5b823567ffffffffffffffff808211156126e757600080fd5b818501915085601f8301126126fb57600080fd5b813560208282111561270f5761270f612c04565b8160051b9250612720818401612a83565b8281528181019085830185870184018b101561273b57600080fd5b600096505b8487101561276557612751816124f1565b835260019690960195918301918301612740565b5096506127759050878201612508565b9450505050509250929050565b60006020828403121561279457600080fd5b813561253381612c1a565b6000602082840312156127b157600080fd5b815161253381612c1a565b6000602082840312156127ce57600080fd5b813567ffffffffffffffff8111156127e557600080fd5b8201601f810184136127f657600080fd5b611c0f84823560208401612499565b60006020828403121561281757600080fd5b5035919050565b6000806040838503121561283157600080fd5b50508035926020909101359150565b60008060006060848603121561285557600080fd5b505081359360208301359350604090920135919050565b60008151808452612884816020860160208601612b16565b601f01601f19169290920160200192915050565b600081516128aa818560208601612b16565b9290920192915050565b600080845481600182811c9150808316806128d057607f831692505b60208084108214156128f057634e487b7160e01b86526022600452602486fd5b818015612904576001811461291557612942565b60ff19861689528489019650612942565b60008b81526020902060005b8681101561293a5781548b820152908501908301612921565b505084890196505b5050505050506129528185612898565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061298e9083018461286c565b9695505050505050565b602081526000612533602083018461286c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612aac57612aac612c04565b604052919050565b60008219821115612ac757612ac7612bac565b500190565b600082612adb57612adb612bc2565b500490565b6000816000190483118215151615612afa57612afa612bac565b500290565b600082821015612b1157612b11612bac565b500390565b60005b83811015612b31578181015183820152602001612b19565b838111156111555750506000910152565b600181811c90821680612b5657607f821691505b60208210811415612b7757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b9157612b91612bac565b5060010190565b600082612ba757612ba7612bc2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612c3057600080fd5b5056fea26469706673582212202b319d9e580c466c3896f140170415f992d63bf771ad14c23f0c731fa05b605464736f6c63430008070033

Deployed Bytecode Sourcemap

46971:6478:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39256:300;;;;;;;;;;-1:-1:-1;39256:300:0;;;;;:::i;:::-;;:::i;:::-;;;8338:14:1;;8331:22;8313:41;;8301:2;8286:18;39256:300:0;;;;;;;;49434:184;;;;;;;;;;-1:-1:-1;49434:184:0;;;;;:::i;:::-;;:::i;:::-;;22885:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24467:308::-;;;;;;;;;;-1:-1:-1;24467:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7636:32:1;;;7618:51;;7606:2;7591:18;24467:308:0;7472:203:1;23990:411:0;;;;;;;;;;-1:-1:-1;23990:411:0;;;;;:::i;:::-;;:::i;49999:406::-;;;;;;;;;;-1:-1:-1;49999:406:0;;;;;:::i;:::-;;:::i;:::-;;;19639:25:1;;;19627:2;19612:18;49999:406:0;19493:177:1;40059:113:0;;;;;;;;;;-1:-1:-1;40147:10:0;:17;40059:113;;25526:376;;;;;;;;;;-1:-1:-1;25526:376:0;;;;;:::i;:::-;;:::i;39640:343::-;;;;;;;;;;-1:-1:-1;39640:343:0;;;;;:::i;:::-;;:::i;53299:147::-;;;;;;;;;;;;;:::i;25973:185::-;;;;;;;;;;-1:-1:-1;25973:185:0;;;;;:::i;:::-;;:::i;40249:320::-;;;;;;;;;;-1:-1:-1;40249:320:0;;;;;:::i;:::-;;:::i;50528:104::-;;;;;;;;;;-1:-1:-1;50528:104:0;;;;;:::i;:::-;;:::i;47481:41::-;;;;;;;;;;;;;;;;47432:42;;;;;;;;;;;;;;;;22492:326;;;;;;;;;;-1:-1:-1;22492:326:0;;;;;:::i;:::-;;:::i;47395:30::-;;;;;;;;;;;;;;;;22135:295;;;;;;;;;;-1:-1:-1;22135:295:0;;;;;:::i;:::-;;:::i;37735:148::-;;;;;;;;;;;;;:::i;50640:350::-;;;;;;;;;;-1:-1:-1;50640:350:0;;;;;:::i;:::-;;:::i;37019:87::-;;;;;;;;;;-1:-1:-1;37092:6:0;;-1:-1:-1;;;;;37092:6:0;37019:87;;23054:104;;;;;;;;;;;;;:::i;24847:327::-;;;;;;;;;;-1:-1:-1;24847:327:0;;;;;:::i;:::-;;:::i;48950:109::-;;;;;;;;;;-1:-1:-1;48950:109:0;;;;;:::i;:::-;;:::i;50413:107::-;;;;;;;;;;-1:-1:-1;50413:107:0;;;;;:::i;:::-;;:::i;49067:114::-;;;;;;;;;;-1:-1:-1;49067:114:0;;;;;:::i;:::-;;:::i;48754:188::-;;;;;;;;;;-1:-1:-1;48754:188:0;;;;;:::i;:::-;;:::i;26229:365::-;;;;;;;;;;-1:-1:-1;26229:365:0;;;;;:::i;:::-;;:::i;49729:262::-;;;;;;;;;;-1:-1:-1;49729:262:0;;;;;:::i;:::-;;:::i;47711:42::-;;;;;;;;;;;;;;;;49626:95;;;;;;;;;;-1:-1:-1;49626:95:0;;;;;:::i;:::-;;:::i;48481:265::-;;;;;;;;;;-1:-1:-1;48481:265:0;;;;;:::i;:::-;;:::i;52956:335::-;;;;;;;;;;-1:-1:-1;52956:335:0;;;;;:::i;:::-;;:::i;48193:280::-;;;;;;;;;;-1:-1:-1;48193:280:0;;;;;:::i;:::-;;:::i;47620:34::-;;;;;;;;;;;;;;;;49189:237;;;;;;;;;;-1:-1:-1;49189:237:0;;;;;:::i;:::-;;:::i;25245:214::-;;;;;;;;;;-1:-1:-1;25245:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;25416:25:0;;;25387:4;25416:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25245:214;50998:1950;;;;;;:::i;:::-;;:::i;38038:281::-;;;;;;;;;;-1:-1:-1;38038:281:0;;;;;:::i;:::-;;:::i;47661:43::-;;;;;;;;;;;;;;;;39256:300;39403:4;-1:-1:-1;;;;;;39445:50:0;;-1:-1:-1;;;39445:50:0;;:103;;;39512:36;39536:11;39512:23;:36::i;:::-;39425:123;39256:300;-1:-1:-1;;39256:300:0:o;49434:184::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;;;;;;;;;49537:13:::1;:32:::0;;;;49580:12:::1;:30:::0;49434:184::o;22885:100::-;22939:13;22972:5;22965:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22885:100;:::o;24467:308::-;24588:7;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;24613:110;;;;-1:-1:-1;;;24613:110:0;;15291:2:1;24613:110:0;;;15273:21:1;15330:2;15310:18;;;15303:30;15369:34;15349:18;;;15342:62;-1:-1:-1;;;15420:18:1;;;15413:42;15472:19;;24613:110:0;15089:408:1;24613:110:0;-1:-1:-1;24743:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24743:24:0;;24467:308::o;23990:411::-;24071:13;24087:23;24102:7;24087:14;:23::i;:::-;24071:39;;24135:5;-1:-1:-1;;;;;24129:11:0;:2;-1:-1:-1;;;;;24129:11:0;;;24121:57;;;;-1:-1:-1;;;24121:57:0;;16878:2:1;24121:57:0;;;16860:21:1;16917:2;16897:18;;;16890:30;16956:34;16936:18;;;16929:62;-1:-1:-1;;;17007:18:1;;;17000:31;17048:19;;24121:57:0;16676:397:1;24121:57:0;16975:10;-1:-1:-1;;;;;24213:21:0;;;;:62;;-1:-1:-1;24238:37:0;24255:5;16975:10;25245:214;:::i;24238:37::-;24191:168;;;;-1:-1:-1;;;24191:168:0;;12974:2:1;24191:168:0;;;12956:21:1;13013:2;12993:18;;;12986:30;13052:34;13032:18;;;13025:62;13123:26;13103:18;;;13096:54;13167:19;;24191:168:0;12772:420:1;24191:168:0;24372:21;24381:2;24385:7;24372:8;:21::i;:::-;24060:341;23990:411;;:::o;49999:406::-;50049:7;50113:13;;50095:15;;:31;;;;:::i;:::-;50077:15;:49;50069:84;;;;-1:-1:-1;;;50069:84:0;;10746:2:1;50069:84:0;;;10728:21:1;10785:2;10765:18;;;10758:30;-1:-1:-1;;;10804:18:1;;;10797:51;10865:18;;50069:84:0;10544:345:1;50069:84:0;50188:15;;50170;:33;50166:232;;;-1:-1:-1;;;;;50228:23:0;;;;;;:17;:23;;;;;;;;:31;;:23;:31;50220:79;;;;-1:-1:-1;;;50220:79:0;;18514:2:1;50220:79:0;;;18496:21:1;18553:2;18533:18;;;18526:30;18592:34;18572:18;;;18565:62;-1:-1:-1;;;18643:18:1;;;18636:32;18685:19;;50220:79:0;18312:398:1;50220:79:0;-1:-1:-1;;50321:13:0;;;49999:406::o;50166:232::-;-1:-1:-1;;50374:12:0;;;49999:406::o;50166:232::-;49999:406;;;:::o;25526:376::-;25735:41;16975:10;25768:7;25735:18;:41::i;:::-;25713:140;;;;-1:-1:-1;;;25713:140:0;;;;;;;:::i;:::-;25866:28;25876:4;25882:2;25886:7;25866:9;:28::i;39640:343::-;39782:7;39837:23;39854:5;39837:16;:23::i;:::-;39829:5;:31;39807:124;;;;-1:-1:-1;;;39807:124:0;;9151:2:1;39807:124:0;;;9133:21:1;9190:2;9170:18;;;9163:30;9229:34;9209:18;;;9202:62;-1:-1:-1;;;9280:18:1;;;9273:41;9331:19;;39807:124:0;8949:407:1;39807:124:0;-1:-1:-1;;;;;;39949:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39640:343::o;53299:147::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;53401:37:::1;::::0;53367:21:::1;::::0;53409:10:::1;::::0;53401:37;::::1;;;::::0;53367:21;;53349:15:::1;53401:37:::0;53349:15;53401:37;53367:21;53409:10;53401:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;53338:108;53299:147::o:0;25973:185::-;26111:39;26128:4;26134:2;26138:7;26111:39;;;;;;;;;;;;:16;:39::i;40249:320::-;40369:7;40424:30;40147:10;:17;;40059:113;40424:30;40416:5;:38;40394:132;;;;-1:-1:-1;;;40394:132:0;;18101:2:1;40394:132:0;;;18083:21:1;18140:2;18120:18;;;18113:30;18179:34;18159:18;;;18152:62;-1:-1:-1;;;18230:18:1;;;18223:42;18282:19;;40394:132:0;17899:408:1;40394:132:0;40544:10;40555:5;40544:17;;;;;;;;:::i;:::-;;;;;;;;;40537:24;;40249:320;;;:::o;50528:104::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;50601:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;22492:326::-:0;22609:7;22650:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22650:16:0;22699:19;22677:110;;;;-1:-1:-1;;;22677:110:0;;13810:2:1;22677:110:0;;;13792:21:1;13849:2;13829:18;;;13822:30;13888:34;13868:18;;;13861:62;-1:-1:-1;;;13939:18:1;;;13932:39;13988:19;;22677:110:0;13608:405:1;22135:295:0;22252:7;-1:-1:-1;;;;;22299:19:0;;22277:111;;;;-1:-1:-1;;;22277:111:0;;13399:2:1;22277:111:0;;;13381:21:1;13438:2;13418:18;;;13411:30;13477:34;13457:18;;;13450:62;-1:-1:-1;;;13528:18:1;;;13521:40;13578:19;;22277:111:0;13197:406:1;22277:111:0;-1:-1:-1;;;;;;22406:16:0;;;;;:9;:16;;;;;;;22135:295::o;37735:148::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;37826:6:::1;::::0;37805:40:::1;::::0;37842:1:::1;::::0;-1:-1:-1;;;;;37826:6:0::1;::::0;37805:40:::1;::::0;37842:1;;37805:40:::1;37856:6;:19:::0;;-1:-1:-1;;;;;;37856:19:0::1;::::0;;37735:148::o;50640:350::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;50728:9:::1;50723:260;50747:14;50743:1;:18;50723:260;;;50783:15;50801:20;:10;46557:14:::0;;46465:114;50801:20:::1;50783:38;;50865:7;;50842:20;:10;46557:14:::0;;46465:114;50842:20:::1;:30;50838:134;;;50893:22;:10;:20;:22::i;:::-;50934;50944:2;50948:7;50934:9;:22::i;:::-;-1:-1:-1::0;50763:3:0;::::1;::::0;::::1;:::i;:::-;;;;50723:260;;23054:104:::0;23110:13;23143:7;23136:14;;;;;:::i;24847:327::-;-1:-1:-1;;;;;24982:24:0;;16975:10;24982:24;;24974:62;;;;-1:-1:-1;;;24974:62:0;;11501:2:1;24974:62:0;;;11483:21:1;11540:2;11520:18;;;11513:30;11579:27;11559:18;;;11552:55;11624:18;;24974:62:0;11299:349:1;24974:62:0;16975:10;25049:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25049:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25049:53:0;;;;;;;;;;25118:48;;8313:41:1;;;25049:42:0;;16975:10;25118:48;;8286:18:1;25118:48:0;;;;;;;24847:327;;:::o;48950:109::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;49025:12:::1;:26:::0;48950:109::o;50413:107::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;50490:22;;::::1;::::0;:10:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;49067:114::-:0;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;49145:13:::1;:28:::0;49067:114::o;48754:188::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48859:15:::1;:32:::0;;;;48902:15:::1;:32:::0;48754:188::o;26229:365::-;26418:41;16975:10;26451:7;26418:18;:41::i;:::-;26396:140;;;;-1:-1:-1;;;26396:140:0;;;;;;;:::i;:::-;26547:39;26561:4;26567:2;26571:7;26580:5;26547:13;:39::i;:::-;26229:365;;;;:::o;49729:262::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;49859:14:::1;:30:::0;;;;49900:18:::1;:37:::0;49948:17:::1;:35:::0;49729:262::o;49626:95::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;49695:7:::1;:18:::0;49626:95::o;48481:265::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48610:16:::1;:30:::0;;;;48651:20:::1;:38:::0;48700:20:::1;:38:::0;48481:265::o;52956:335::-;28206:4;28230:16;;;:7;:16;;;;;;53029:13;;-1:-1:-1;;;;;28230:16:0;53060:49;;;;-1:-1:-1;;;53060:49:0;;11855:2:1;53060:49:0;;;11837:21:1;11894:2;11874:18;;;11867:30;-1:-1:-1;;;11913:18:1;;;11906:50;11973:18;;53060:49:0;11653:344:1;53060:49:0;53144:15;53126;;:33;53122:132;;;53207:13;53222:18;:7;:16;:18::i;:::-;53190:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53176:66;;52956:335;;;:::o;53122:132::-;53273:10;53266:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52956:335;;;:::o;48193:280::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;48322:12:::1;:35:::0;;-1:-1:-1;;;;;48322:35:0;;::::1;-1:-1:-1::0;;;;;;48322:35:0;;::::1;;::::0;;;48368:16:::1;:43:::0;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;48422:16:::1;:43:::0;;;;;::::1;::::0;::::1;;::::0;;48193:280::o;49189:237::-;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;49295:9:::1;49290:129;49314:16;:23;49310:1;:27;49290:129;;;49400:7;49359:17;:38;49377:16;49394:1;49377:19;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;49359:38:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;49359:38:0;:48;;-1:-1:-1;;49359:48:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49339:3;::::1;::::0;::::1;:::i;:::-;;;;49290:129;;50998:1950:::0;51094:14;;51076;:32;;51068:78;;;;-1:-1:-1;;;51068:78:0;;16475:2:1;51068:78:0;;;16457:21:1;16514:2;16494:18;;;16487:30;16553:34;16533:18;;;16526:62;-1:-1:-1;;;16604:18:1;;;16597:32;16646:19;;51068:78:0;16273:398:1;51068:78:0;51188:7;;51165:10;46557:14;51165:30;51157:71;;;;-1:-1:-1;;;51157:71:0;;19337:2:1;51157:71:0;;;19319:21:1;19376:2;19356:18;;;19349:30;19415:31;19395:18;;;19388:59;19464:18;;51157:71:0;19135:353:1;51157:71:0;37092:6;;-1:-1:-1;;;;;37092:6:0;51245:10;:21;51241:1420;;51333:10;51315:29;;;;:17;:29;;;;;;:46;;51347:14;;51315:46;:::i;:::-;51301:10;51283:29;;;;:17;:29;;;;;:78;;;;51424:9;;51406:14;;51386:17;;:5;:17::i;:::-;:34;;;;:::i;:::-;:47;;51378:87;;;;-1:-1:-1;;;51378:87:0;;12204:2:1;51378:87:0;;;12186:21:1;12243:2;12223:18;;;12216:30;12282;12262:18;;;12255:58;12330:18;;51378:87:0;12002:352:1;51378:87:0;51504:10;51486:29;;;;:17;:29;;;;;;;;51482:774;;51571:15;;51553;:33;51545:67;;;;-1:-1:-1;;;51545:67:0;;14940:2:1;51545:67:0;;;14922:21:1;14979:2;14959:18;;;14952:30;-1:-1:-1;;;14998:18:1;;;14991:52;15060:18;;51545:67:0;14738:346:1;51545:67:0;51672:17;;51657:10;51639:29;;;;:17;:29;;;;;;:50;;51631:92;;;;-1:-1:-1;;;51631:92:0;;14220:2:1;51631:92:0;;;14202:21:1;14259:2;14239:18;;;14232:30;14298:32;14278:18;;;14271:60;14348:18;;51631:92:0;14018:354:1;51631:92:0;51482:774;;;51786:15;;51768;:33;51764:477;;;51870:13;;51852:15;;:31;;;;:::i;:::-;51834:15;:49;51826:95;;;;-1:-1:-1;;;51826:95:0;;17698:2:1;51826:95:0;;;17680:21:1;17737:2;17717:18;;;17710:30;17776:34;17756:18;;;17749:62;-1:-1:-1;;;17827:18:1;;;17820:32;17869:19;;51826:95:0;17496:398:1;51826:95:0;51985:18;;51970:10;51952:29;;;;:17;:29;;;;;;:51;;51944:94;;;;-1:-1:-1;;;51944:94:0;;8791:2:1;51944:94:0;;;8773:21:1;8830:2;8810:18;;;8803:30;8869:33;8849:18;;;8842:61;8920:18;;51944:94:0;8589:355:1;51764:477:0;52148:18;;52128:17;;:38;;;;:::i;:::-;52113:10;52095:29;;;;:17;:29;;;;;;:71;;52087:134;;;;-1:-1:-1;;;52087:134:0;;18917:2:1;52087:134:0;;;18899:21:1;18956:2;18936:18;;;18929:30;18995:34;18975:18;;;18968:62;-1:-1:-1;;;19046:18:1;;;19039:49;19105:19;;52087:134:0;18715:415:1;52087:134:0;52272:18;52326:3;52306:16;;52294:9;:28;;;;:::i;:::-;52293:36;;;;:::i;:::-;52272:57;;52344:22;52406:3;52382:20;;52370:9;:32;;;;:::i;:::-;52369:40;;;;:::i;:::-;52344:65;;52424:22;52486:3;52462:20;;52450:9;:32;;;;:::i;:::-;52449:40;;;;:::i;:::-;52504:12;;:33;;52424:65;;-1:-1:-1;;;;;;52504:12:0;;:33;;;;;52526:10;;52504:12;:33;:12;:33;52526:10;52504:12;:33;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52552:16:0;;:41;;-1:-1:-1;;;;;52552:16:0;;;;:41;;;;;52578:14;;52552:16;:41;:16;:41;52578:14;52552:16;:41;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52608:16:0;;:41;;-1:-1:-1;;;;;52608:16:0;;;;:41;;;;;52634:14;;52608:16;:41;:16;:41;52634:14;52608:16;:41;;;;;;;;;;;;;;;;;;;;;51268:1393;;;51241:1420;52678:9;52673:268;52697:14;52693:1;:18;52673:268;;;52733:15;52751:20;:10;46557:14;;46465:114;52751:20;52733:38;;52815:7;;52792:20;:10;46557:14;;46465:114;52792:20;:30;52788:142;;;52843:22;:10;:20;:22::i;:::-;52884:30;52894:10;52906:7;52884:9;:30::i;:::-;-1:-1:-1;52713:3:0;;;;:::i;:::-;;;;52673:268;;38038:281;37092:6;;-1:-1:-1;;;;;37092:6:0;16975:10;37253:23;;:51;;-1:-1:-1;37280:8:0;;-1:-1:-1;;;;;37280:8:0;16975:10;37280:24;37253:51;37231:133;;;;-1:-1:-1;;;37231:133:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38141:22:0;::::1;38119:110;;;::::0;-1:-1:-1;;;38119:110:0;;9982:2:1;38119:110:0::1;::::0;::::1;9964:21:1::0;10021:2;10001:18;;;9994:30;10060:34;10040:18;;;10033:62;-1:-1:-1;;;10111:18:1;;;10104:36;10157:19;;38119:110:0::1;9780:402:1::0;38119:110:0::1;38266:6;::::0;38245:38:::1;::::0;-1:-1:-1;;;;;38245:38:0;;::::1;::::0;38266:6:::1;::::0;38245:38:::1;::::0;38266:6:::1;::::0;38245:38:::1;38294:6;:17:::0;;-1:-1:-1;;;;;;38294:17:0::1;-1:-1:-1::0;;;;;38294:17:0;;;::::1;::::0;;;::::1;::::0;;38038:281::o;21716:355::-;21863:4;-1:-1:-1;;;;;;21905:40:0;;-1:-1:-1;;;21905:40:0;;:105;;-1:-1:-1;;;;;;;21962:48:0;;-1:-1:-1;;;21962:48:0;21905:105;:158;;;-1:-1:-1;;;;;;;;;;20326:40:0;;;22027:36;20167:207;32264:174;32339:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32339:29:0;-1:-1:-1;;;;;32339:29:0;;;;;;;;:24;;32393:23;32339:24;32393:14;:23::i;:::-;-1:-1:-1;;;;;32384:46:0;;;;;;;;;;;32264:174;;:::o;28435:452::-;28564:4;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;28586:110;;;;-1:-1:-1;;;28586:110:0;;12561:2:1;28586:110:0;;;12543:21:1;12600:2;12580:18;;;12573:30;12639:34;12619:18;;;12612:62;-1:-1:-1;;;12690:18:1;;;12683:42;12742:19;;28586:110:0;12359:408:1;28586:110:0;28707:13;28723:23;28738:7;28723:14;:23::i;:::-;28707:39;;28776:5;-1:-1:-1;;;;;28765:16:0;:7;-1:-1:-1;;;;;28765:16:0;;:64;;;;28822:7;-1:-1:-1;;;;;28798:31:0;:20;28810:7;28798:11;:20::i;:::-;-1:-1:-1;;;;;28798:31:0;;28765:64;:113;;;-1:-1:-1;;;;;;25416:25:0;;;25387:4;25416:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28846:32;28757:122;28435:452;-1:-1:-1;;;;28435:452:0:o;31531:615::-;31704:4;-1:-1:-1;;;;;31677:31:0;:23;31692:7;31677:14;:23::i;:::-;-1:-1:-1;;;;;31677:31:0;;31655:122;;;;-1:-1:-1;;;31655:122:0;;16065:2:1;31655:122:0;;;16047:21:1;16104:2;16084:18;;;16077:30;16143:34;16123:18;;;16116:62;-1:-1:-1;;;16194:18:1;;;16187:39;16243:19;;31655:122:0;15863:405:1;31655:122:0;-1:-1:-1;;;;;31796:16:0;;31788:65;;;;-1:-1:-1;;;31788:65:0;;11096:2:1;31788:65:0;;;11078:21:1;11135:2;11115:18;;;11108:30;11174:34;11154:18;;;11147:62;-1:-1:-1;;;11225:18:1;;;11218:34;11269:19;;31788:65:0;10894:400:1;31788:65:0;31866:39;31887:4;31893:2;31897:7;31866:20;:39::i;:::-;31970:29;31987:1;31991:7;31970:8;:29::i;:::-;-1:-1:-1;;;;;32012:15:0;;;;;;:9;:15;;;;;:20;;32031:1;;32012:15;:20;;32031:1;;32012:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32043:13:0;;;;;;:9;:13;;;;;:18;;32060:1;;32043:13;:18;;32060:1;;32043:18;:::i;:::-;;;;-1:-1:-1;;32072:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32072:21:0;-1:-1:-1;;;;;32072:21:0;;;;;;;;;32111:27;;32072:16;;32111:27;;;;;;;31531:615;;;:::o;46587:117::-;46684:1;46666:7;:14;;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;;46587:117:0:o;29229:110::-;29305:26;29315:2;29319:7;29305:26;;;;;;;;;;;;:9;:26::i;27476:352::-;27633:28;27643:4;27649:2;27653:7;27633:9;:28::i;:::-;27694:48;27717:4;27723:2;27727:7;27736:5;27694:22;:48::i;:::-;27672:148;;;;-1:-1:-1;;;27672:148:0;;;;;;;:::i;17567:723::-;17623:13;17844:10;17840:53;;-1:-1:-1;;17871:10:0;;;;;;;;;;;;-1:-1:-1;;;17871:10:0;;;;;17567:723::o;17840:53::-;17918:5;17903:12;17959:78;17966:9;;17959:78;;17992:8;;;;:::i;:::-;;-1:-1:-1;18015:10:0;;-1:-1:-1;18023:2:0;18015:10;;:::i;:::-;;;17959:78;;;18047:19;18079:6;18069:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18069:17:0;;18047:39;;18097:154;18104:10;;18097:154;;18131:11;18141:1;18131:11;;:::i;:::-;;-1:-1:-1;18200:10:0;18208:2;18200:5;:10;:::i;:::-;18187:24;;:2;:24;:::i;:::-;18174:39;;18157:6;18164;18157:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18157:56:0;;;;;;;;-1:-1:-1;18228:11:0;18237:2;18228:11;;:::i;:::-;;;18097:154;;41182:589;-1:-1:-1;;;;;41388:18:0;;41384:187;;41423:40;41455:7;42598:10;:17;;42571:24;;;;:15;:24;;;;;:44;;;42626:24;;;;;;;;;;;;42494:164;41423:40;41384:187;;;41493:2;-1:-1:-1;;;;;41485:10:0;:4;-1:-1:-1;;;;;41485:10:0;;41481:90;;41512:47;41545:4;41551:7;41512:32;:47::i;:::-;-1:-1:-1;;;;;41585:16:0;;41581:183;;41618:45;41655:7;41618:36;:45::i;41581:183::-;41691:4;-1:-1:-1;;;;;41685:10:0;:2;-1:-1:-1;;;;;41685:10:0;;41681:83;;41712:40;41740:2;41744:7;41712:27;:40::i;29566:321::-;29696:18;29702:2;29706:7;29696:5;:18::i;:::-;29747:54;29778:1;29782:2;29786:7;29795:5;29747:22;:54::i;:::-;29725:154;;;;-1:-1:-1;;;29725:154:0;;;;;;;:::i;33003:1053::-;33158:4;-1:-1:-1;;;;;33179:13:0;;8674:20;8722:8;33175:874;;33232:175;;-1:-1:-1;;;33232:175:0;;-1:-1:-1;;;;;33232:36:0;;;;;:175;;16975:10;;33326:4;;33353:7;;33383:5;;33232:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33232:175:0;;;;;;;;-1:-1:-1;;33232:175:0;;;;;;;;;;;;:::i;:::-;;;33211:783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33594:13:0;;33590:389;;33637:108;;-1:-1:-1;;;33637:108:0;;;;;;;:::i;33590:389::-;33929:6;33923:13;33914:6;33910:2;33906:15;33899:38;33211:783;-1:-1:-1;;;;;;33471:55:0;-1:-1:-1;;;33471:55:0;;-1:-1:-1;33464:62:0;;33175:874;-1:-1:-1;34033:4:0;33003:1053;;;;;;:::o;43285:1002::-;43565:22;43615:1;43590:22;43607:4;43590:16;:22::i;:::-;:26;;;;:::i;:::-;43627:18;43648:26;;;:17;:26;;;;;;43565:51;;-1:-1:-1;43781:28:0;;;43777:328;;-1:-1:-1;;;;;43848:18:0;;43826:19;43848:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43899:30;;;;;;:44;;;44016:30;;:17;:30;;;;;:43;;;43777:328;-1:-1:-1;44201:26:0;;;;:17;:26;;;;;;;;44194:33;;;-1:-1:-1;;;;;44245:18:0;;;;;:12;:18;;;;;:34;;;;;;;44238:41;43285:1002::o;44582:1079::-;44860:10;:17;44835:22;;44860:21;;44880:1;;44860:21;:::i;:::-;44892:18;44913:24;;;:15;:24;;;;;;45286:10;:26;;44835:46;;-1:-1:-1;44913:24:0;;44835:46;;45286:26;;;;;;:::i;:::-;;;;;;;;;45264:48;;45350:11;45325:10;45336;45325:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45430:28;;;:15;:28;;;;;;;:41;;;45602:24;;;;;45595:31;45637:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44653:1008;;;44582:1079;:::o;42072:221::-;42157:14;42174:20;42191:2;42174:16;:20::i;:::-;-1:-1:-1;;;;;42205:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42250:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42072:221:0:o;30223:382::-;-1:-1:-1;;;;;30303:16:0;;30295:61;;;;-1:-1:-1;;;30295:61:0;;14579:2:1;30295:61:0;;;14561:21:1;;;14598:18;;;14591:30;14657:34;14637:18;;;14630:62;14709:18;;30295:61:0;14377:356:1;30295:61:0;28206:4;28230:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28230:16:0;:30;30367:58;;;;-1:-1:-1;;;30367:58:0;;10389:2:1;30367:58:0;;;10371:21:1;10428:2;10408:18;;;10401:30;10467;10447:18;;;10440:58;10515:18;;30367:58:0;10187:352:1;30367:58:0;30438:45;30467:1;30471:2;30475:7;30438:20;:45::i;:::-;-1:-1:-1;;;;;30496:13:0;;;;;;:9;:13;;;;;:18;;30513:1;;30496:13;:18;;30513:1;;30496:18;:::i;:::-;;;;-1:-1:-1;;30525:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30525:21:0;-1:-1:-1;;;;;30525:21:0;;;;;;;;30564:33;;30525:16;;;30564:33;;30525:16;;30564:33;30223:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;603:160;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;:::-;909:39;768:186;-1:-1:-1;;;768:186:1:o;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:334::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1514:38;1548:2;1537:9;1533:18;1514:38;:::i;:::-;1504:48;;1224:334;;;;;:::o;1563:328::-;1640:6;1648;1656;1709:2;1697:9;1688:7;1684:23;1680:32;1677:52;;;1725:1;1722;1715:12;1677:52;1748:29;1767:9;1748:29;:::i;:::-;1738:39;;1796:38;1830:2;1819:9;1815:18;1796:38;:::i;:::-;1786:48;;1881:2;1870:9;1866:18;1853:32;1843:42;;1563:328;;;;;:::o;1896:666::-;1991:6;1999;2007;2015;2068:3;2056:9;2047:7;2043:23;2039:33;2036:53;;;2085:1;2082;2075:12;2036:53;2108:29;2127:9;2108:29;:::i;:::-;2098:39;;2156:38;2190:2;2179:9;2175:18;2156:38;:::i;:::-;2146:48;;2241:2;2230:9;2226:18;2213:32;2203:42;;2296:2;2285:9;2281:18;2268:32;2323:18;2315:6;2312:30;2309:50;;;2355:1;2352;2345:12;2309:50;2378:22;;2431:4;2423:13;;2419:27;-1:-1:-1;2409:55:1;;2460:1;2457;2450:12;2409:55;2483:73;2548:7;2543:2;2530:16;2525:2;2521;2517:11;2483:73;:::i;:::-;2473:83;;;1896:666;;;;;;;:::o;2567:254::-;2632:6;2640;2693:2;2681:9;2672:7;2668:23;2664:32;2661:52;;;2709:1;2706;2699:12;2661:52;2732:29;2751:9;2732:29;:::i;:::-;2722:39;;2780:35;2811:2;2800:9;2796:18;2780:35;:::i;2826:254::-;2894:6;2902;2955:2;2943:9;2934:7;2930:23;2926:32;2923:52;;;2971:1;2968;2961:12;2923:52;2994:29;3013:9;2994:29;:::i;:::-;2984:39;3070:2;3055:18;;;;3042:32;;-1:-1:-1;;;2826:254:1:o;3085:1033::-;3175:6;3183;3236:2;3224:9;3215:7;3211:23;3207:32;3204:52;;;3252:1;3249;3242:12;3204:52;3292:9;3279:23;3321:18;3362:2;3354:6;3351:14;3348:34;;;3378:1;3375;3368:12;3348:34;3416:6;3405:9;3401:22;3391:32;;3461:7;3454:4;3450:2;3446:13;3442:27;3432:55;;3483:1;3480;3473:12;3432:55;3519:2;3506:16;3541:4;3564:2;3560;3557:10;3554:36;;;3570:18;;:::i;:::-;3616:2;3613:1;3609:10;3599:20;;3639:28;3663:2;3659;3655:11;3639:28;:::i;:::-;3701:15;;;3732:12;;;;3764:11;;;3794;;;3790:20;;3787:33;-1:-1:-1;3784:53:1;;;3833:1;3830;3823:12;3784:53;3855:1;3846:10;;3865:169;3879:2;3876:1;3873:9;3865:169;;;3936:23;3955:3;3936:23;:::i;:::-;3924:36;;3897:1;3890:9;;;;;3980:12;;;;4012;;3865:169;;;-1:-1:-1;4053:5:1;-1:-1:-1;4077:35:1;;-1:-1:-1;4093:18:1;;;4077:35;:::i;:::-;4067:45;;;;;;3085:1033;;;;;:::o;4123:245::-;4181:6;4234:2;4222:9;4213:7;4209:23;4205:32;4202:52;;;4250:1;4247;4240:12;4202:52;4289:9;4276:23;4308:30;4332:5;4308:30;:::i;4373:249::-;4442:6;4495:2;4483:9;4474:7;4470:23;4466:32;4463:52;;;4511:1;4508;4501:12;4463:52;4543:9;4537:16;4562:30;4586:5;4562:30;:::i;4627:450::-;4696:6;4749:2;4737:9;4728:7;4724:23;4720:32;4717:52;;;4765:1;4762;4755:12;4717:52;4805:9;4792:23;4838:18;4830:6;4827:30;4824:50;;;4870:1;4867;4860:12;4824:50;4893:22;;4946:4;4938:13;;4934:27;-1:-1:-1;4924:55:1;;4975:1;4972;4965:12;4924:55;4998:73;5063:7;5058:2;5045:16;5040:2;5036;5032:11;4998:73;:::i;5082:180::-;5141:6;5194:2;5182:9;5173:7;5169:23;5165:32;5162:52;;;5210:1;5207;5200:12;5162:52;-1:-1:-1;5233:23:1;;5082:180;-1:-1:-1;5082:180:1:o;5267:248::-;5335:6;5343;5396:2;5384:9;5375:7;5371:23;5367:32;5364:52;;;5412:1;5409;5402:12;5364:52;-1:-1:-1;;5435:23:1;;;5505:2;5490:18;;;5477:32;;-1:-1:-1;5267:248:1:o;5520:316::-;5597:6;5605;5613;5666:2;5654:9;5645:7;5641:23;5637:32;5634:52;;;5682:1;5679;5672:12;5634:52;-1:-1:-1;;5705:23:1;;;5775:2;5760:18;;5747:32;;-1:-1:-1;5826:2:1;5811:18;;;5798:32;;5520:316;-1:-1:-1;5520:316:1:o;5841:257::-;5882:3;5920:5;5914:12;5947:6;5942:3;5935:19;5963:63;6019:6;6012:4;6007:3;6003:14;5996:4;5989:5;5985:16;5963:63;:::i;:::-;6080:2;6059:15;-1:-1:-1;;6055:29:1;6046:39;;;;6087:4;6042:50;;5841:257;-1:-1:-1;;5841:257:1:o;6103:185::-;6145:3;6183:5;6177:12;6198:52;6243:6;6238:3;6231:4;6224:5;6220:16;6198:52;:::i;:::-;6266:16;;;;;6103:185;-1:-1:-1;;6103:185:1:o;6293:1174::-;6469:3;6498:1;6531:6;6525:13;6561:3;6583:1;6611:9;6607:2;6603:18;6593:28;;6671:2;6660:9;6656:18;6693;6683:61;;6737:4;6729:6;6725:17;6715:27;;6683:61;6763:2;6811;6803:6;6800:14;6780:18;6777:38;6774:165;;;-1:-1:-1;;;6838:33:1;;6894:4;6891:1;6884:15;6924:4;6845:3;6912:17;6774:165;6955:18;6982:104;;;;7100:1;7095:320;;;;6948:467;;6982:104;-1:-1:-1;;7015:24:1;;7003:37;;7060:16;;;;-1:-1:-1;6982:104:1;;7095:320;20028:1;20021:14;;;20065:4;20052:18;;7190:1;7204:165;7218:6;7215:1;7212:13;7204:165;;;7296:14;;7283:11;;;7276:35;7339:16;;;;7233:10;;7204:165;;;7208:3;;7398:6;7393:3;7389:16;7382:23;;6948:467;;;;;;;7431:30;7457:3;7449:6;7431:30;:::i;:::-;7424:37;6293:1174;-1:-1:-1;;;;;6293:1174:1:o;7680:488::-;-1:-1:-1;;;;;7949:15:1;;;7931:34;;8001:15;;7996:2;7981:18;;7974:43;8048:2;8033:18;;8026:34;;;8096:3;8091:2;8076:18;;8069:31;;;7874:4;;8117:45;;8142:19;;8134:6;8117:45;:::i;:::-;8109:53;7680:488;-1:-1:-1;;;;;;7680:488:1:o;8365:219::-;8514:2;8503:9;8496:21;8477:4;8534:44;8574:2;8563:9;8559:18;8551:6;8534:44;:::i;9361:414::-;9563:2;9545:21;;;9602:2;9582:18;;;9575:30;9641:34;9636:2;9621:18;;9614:62;-1:-1:-1;;;9707:2:1;9692:18;;9685:48;9765:3;9750:19;;9361:414::o;15502:356::-;15704:2;15686:21;;;15723:18;;;15716:30;15782:34;15777:2;15762:18;;15755:62;15849:2;15834:18;;15502:356::o;17078:413::-;17280:2;17262:21;;;17319:2;17299:18;;;17292:30;17358:34;17353:2;17338:18;;17331:62;-1:-1:-1;;;17424:2:1;17409:18;;17402:47;17481:3;17466:19;;17078:413::o;19675:275::-;19746:2;19740:9;19811:2;19792:13;;-1:-1:-1;;19788:27:1;19776:40;;19846:18;19831:34;;19867:22;;;19828:62;19825:88;;;19893:18;;:::i;:::-;19929:2;19922:22;19675:275;;-1:-1:-1;19675:275:1:o;20081:128::-;20121:3;20152:1;20148:6;20145:1;20142:13;20139:39;;;20158:18;;:::i;:::-;-1:-1:-1;20194:9:1;;20081:128::o;20214:120::-;20254:1;20280;20270:35;;20285:18;;:::i;:::-;-1:-1:-1;20319:9:1;;20214:120::o;20339:168::-;20379:7;20445:1;20441;20437:6;20433:14;20430:1;20427:21;20422:1;20415:9;20408:17;20404:45;20401:71;;;20452:18;;:::i;:::-;-1:-1:-1;20492:9:1;;20339:168::o;20512:125::-;20552:4;20580:1;20577;20574:8;20571:34;;;20585:18;;:::i;:::-;-1:-1:-1;20622:9:1;;20512:125::o;20642:258::-;20714:1;20724:113;20738:6;20735:1;20732:13;20724:113;;;20814:11;;;20808:18;20795:11;;;20788:39;20760:2;20753:10;20724:113;;;20855:6;20852:1;20849:13;20846:48;;;-1:-1:-1;;20890:1:1;20872:16;;20865:27;20642:258::o;20905:380::-;20984:1;20980:12;;;;21027;;;21048:61;;21102:4;21094:6;21090:17;21080:27;;21048:61;21155:2;21147:6;21144:14;21124:18;21121:38;21118:161;;;21201:10;21196:3;21192:20;21189:1;21182:31;21236:4;21233:1;21226:15;21264:4;21261:1;21254:15;21118:161;;20905:380;;;:::o;21290:135::-;21329:3;-1:-1:-1;;21350:17:1;;21347:43;;;21370:18;;:::i;:::-;-1:-1:-1;21417:1:1;21406:13;;21290:135::o;21430:112::-;21462:1;21488;21478:35;;21493:18;;:::i;:::-;-1:-1:-1;21527:9:1;;21430:112::o;21547:127::-;21608:10;21603:3;21599:20;21596:1;21589:31;21639:4;21636:1;21629:15;21663:4;21660:1;21653:15;21679:127;21740:10;21735:3;21731:20;21728:1;21721:31;21771:4;21768:1;21761:15;21795:4;21792:1;21785:15;21811:127;21872:10;21867:3;21863:20;21860:1;21853:31;21903:4;21900:1;21893:15;21927:4;21924:1;21917:15;21943:127;22004:10;21999:3;21995:20;21992:1;21985:31;22035:4;22032:1;22025:15;22059:4;22056:1;22049:15;22075:127;22136:10;22131:3;22127:20;22124:1;22117:31;22167:4;22164:1;22157:15;22191:4;22188:1;22181:15;22207:131;-1:-1:-1;;;;;;22281:32:1;;22271:43;;22261:71;;22328:1;22325;22318:12;22261:71;22207:131;:::o

Swarm Source

ipfs://2b319d9e580c466c3896f140170415f992d63bf771ad14c23f0c731fa05b6054
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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