ETH Price: $2,478.88 (-7.75%)

Token

Crazy Joker (CJ)
 

Overview

Max Total Supply

28 CJ

Holders

17

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CJ
0x2d772184c56a5c294a125f754c44b696195b475f
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:
CrazyJoker

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol

// 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: @openzeppelin/contracts/token/ERC721/IERC721.sol

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;


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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol

pragma solidity ^0.8.0;


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

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

pragma solidity ^0.8.0;


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;


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

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

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

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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// File: @openzeppelin/contracts/utils/math/SafeCast.sol

pragma solidity ^0.8.0;

/**
 * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
 * checks.
 *
 * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
 * easily result in undesired exploitation or bugs, since developers usually
 * assume that overflows raise errors. `SafeCast` restores this intuition by
 * reverting the transaction when such an operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 *
 * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing
 * all math on `uint256` and `int256` and then downcasting.
 */
library SafeCast {
    /**
     * @dev Returns the downcasted uint224 from uint256, reverting on
     * overflow (when the input is greater than largest uint224).
     *
     * Counterpart to Solidity's `uint224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toUint224(uint256 value) internal pure returns (uint224) {
        require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits");
        return uint224(value);
    }

    /**
     * @dev Returns the downcasted uint128 from uint256, reverting on
     * overflow (when the input is greater than largest uint128).
     *
     * Counterpart to Solidity's `uint128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toUint128(uint256 value) internal pure returns (uint128) {
        require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits");
        return uint128(value);
    }

    /**
     * @dev Returns the downcasted uint96 from uint256, reverting on
     * overflow (when the input is greater than largest uint96).
     *
     * Counterpart to Solidity's `uint96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toUint96(uint256 value) internal pure returns (uint96) {
        require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits");
        return uint96(value);
    }

    /**
     * @dev Returns the downcasted uint64 from uint256, reverting on
     * overflow (when the input is greater than largest uint64).
     *
     * Counterpart to Solidity's `uint64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toUint64(uint256 value) internal pure returns (uint64) {
        require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits");
        return uint64(value);
    }

    /**
     * @dev Returns the downcasted uint32 from uint256, reverting on
     * overflow (when the input is greater than largest uint32).
     *
     * Counterpart to Solidity's `uint32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toUint32(uint256 value) internal pure returns (uint32) {
        require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits");
        return uint32(value);
    }

    /**
     * @dev Returns the downcasted uint16 from uint256, reverting on
     * overflow (when the input is greater than largest uint16).
     *
     * Counterpart to Solidity's `uint16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toUint16(uint256 value) internal pure returns (uint16) {
        require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits");
        return uint16(value);
    }

    /**
     * @dev Returns the downcasted uint8 from uint256, reverting on
     * overflow (when the input is greater than largest uint8).
     *
     * Counterpart to Solidity's `uint8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     */
    function toUint8(uint256 value) internal pure returns (uint8) {
        require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits");
        return uint8(value);
    }

    /**
     * @dev Converts a signed int256 into an unsigned uint256.
     *
     * Requirements:
     *
     * - input must be greater than or equal to 0.
     */
    function toUint256(int256 value) internal pure returns (uint256) {
        require(value >= 0, "SafeCast: value must be positive");
        return uint256(value);
    }

    /**
     * @dev Returns the downcasted int128 from int256, reverting on
     * overflow (when the input is less than smallest int128 or
     * greater than largest int128).
     *
     * Counterpart to Solidity's `int128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     *
     * _Available since v3.1._
     */
    function toInt128(int256 value) internal pure returns (int128) {
        require(value >= type(int128).min && value <= type(int128).max, "SafeCast: value doesn't fit in 128 bits");
        return int128(value);
    }

    /**
     * @dev Returns the downcasted int64 from int256, reverting on
     * overflow (when the input is less than smallest int64 or
     * greater than largest int64).
     *
     * Counterpart to Solidity's `int64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     *
     * _Available since v3.1._
     */
    function toInt64(int256 value) internal pure returns (int64) {
        require(value >= type(int64).min && value <= type(int64).max, "SafeCast: value doesn't fit in 64 bits");
        return int64(value);
    }

    /**
     * @dev Returns the downcasted int32 from int256, reverting on
     * overflow (when the input is less than smallest int32 or
     * greater than largest int32).
     *
     * Counterpart to Solidity's `int32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     *
     * _Available since v3.1._
     */
    function toInt32(int256 value) internal pure returns (int32) {
        require(value >= type(int32).min && value <= type(int32).max, "SafeCast: value doesn't fit in 32 bits");
        return int32(value);
    }

    /**
     * @dev Returns the downcasted int16 from int256, reverting on
     * overflow (when the input is less than smallest int16 or
     * greater than largest int16).
     *
     * Counterpart to Solidity's `int16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     *
     * _Available since v3.1._
     */
    function toInt16(int256 value) internal pure returns (int16) {
        require(value >= type(int16).min && value <= type(int16).max, "SafeCast: value doesn't fit in 16 bits");
        return int16(value);
    }

    /**
     * @dev Returns the downcasted int8 from int256, reverting on
     * overflow (when the input is less than smallest int8 or
     * greater than largest int8).
     *
     * Counterpart to Solidity's `int8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     *
     * _Available since v3.1._
     */
    function toInt8(int256 value) internal pure returns (int8) {
        require(value >= type(int8).min && value <= type(int8).max, "SafeCast: value doesn't fit in 8 bits");
        return int8(value);
    }

    /**
     * @dev Converts an unsigned uint256 into a signed int256.
     *
     * Requirements:
     *
     * - input must be less than or equal to maxInt256.
     */
    function toInt256(uint256 value) internal pure returns (int256) {
        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
        require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256");
        return int256(value);
    }
}

// File: contracts/CrazyJoker.sol

pragma solidity ^0.8.7;






//
//  _________                                  ____.       __                 
//  \_   ___ \____________  ___________.__.   |    | ____ |  | __ ___________ 
//  /    \  \/\_  __ \__  \ \___   <   |  |   |    |/  _ \|  |/ // __ \_  __ \
//  \     \____|  | \// __ \_/    / \___  /\__|    (  <_> )    <\  ___/|  | \/
//   \______  /|__|  (____  /_____ \/ ____\________|\____/|__|_ \\___  >__|   
//          \/            \/      \/\/                         \/    \/       
//


contract CrazyJoker is ERC721Enumerable, Ownable {
    using ECDSA for bytes32;
    using SafeCast for uint256;
    
    event BaseURIChanged(string newBaseURI);
    event TokenPriceChanged(uint256 newTokenPrice);
    event PresaleInfoChanged(address whitelistSigner, uint32 startTime, uint32 endTime);
    event SaleInfoChanged(uint32 startTime, uint32 maxCountPerTx);
    event PresaleMint(address minter, uint256 count);
    event SaleMint(address minter, uint256 count);

    uint256 public maxTokenSupply;
    uint256 public mintPrice = 70000000000000000; // 0.070 ETH
    uint256 public nextTokenId = 0;

    struct PresaleInfo {
        address whitelistSigner;
        uint32 startTime;
        uint32 endTime;
    }
    struct SaleInfo {
        uint32 startTime;
        uint32 maxCountPerTx;
    }
    PresaleInfo public presaleInfo;
    SaleInfo public saleInfo;

    bytes32 public DOMAIN_SEPARATOR;
    bytes32 public constant PRESALE_TYPEHASH = keccak256("Presale(address buyer,uint256 maxCount)");

    mapping(address => uint256) public presaleBoughtCounts;
    string public baseURI;

    constructor(string memory name, string memory symbol, uint256 maxSupply) ERC721(name, symbol) {
        maxTokenSupply = maxSupply;

        uint256 chainId;
        assembly {
            chainId := chainid()
        }
        DOMAIN_SEPARATOR = keccak256(
            abi.encode(
                keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
                keccak256(bytes("Crazy Joker")),
                keccak256(bytes("1")),
                chainId,
                address(this)
            )
        );
    }

    function configPresale(
        address whitelistSigner,
        uint256 startTime,
        uint256 endTime
    ) external onlyOwner {
        uint32 _startTime = startTime.toUint32();
        uint32 _endTime = endTime.toUint32();

        require(whitelistSigner != address(0), "Crazy Joker: Zero address");
        require(_startTime > 0 && _endTime > _startTime, "Crazy Joker: Invalid time range");

        presaleInfo = PresaleInfo({whitelistSigner: whitelistSigner, startTime: _startTime, endTime: _endTime});

        emit PresaleInfoChanged(whitelistSigner, _startTime, _endTime);
    }

    function configSale(
        uint256 startTime,
        uint256 maxCountPerTx
    ) external onlyOwner {
        uint32 _startTime = startTime.toUint32();
        uint32 _maxCountPerTx = maxCountPerTx.toUint32();

        require(_maxCountPerTx > 0, "Crazy Joker: Zero amount");
        require(_startTime > 0, "Crazy Joker: Invalid time range");

        saleInfo = SaleInfo({startTime: _startTime, maxCountPerTx: _maxCountPerTx});

        emit SaleInfoChanged(_startTime, _maxCountPerTx);
    }

    function setMintPrice(uint256 newPrice) public onlyOwner {
        mintPrice = newPrice;
        emit TokenPriceChanged(mintPrice);
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        Address.sendValue(payable(owner()), balance);
    }

    /*
    * Mint reserved NFTs for giveaways, devs, etc.
    */
    function reserveTokens(address recipient, uint256 count) external onlyOwner {
        require(recipient != address(0), "Crazy Joker: Zero address");
        require(nextTokenId + count <= maxTokenSupply, "Crazy Joker: Max supply exceeded");

        uint256 _nextTokenId = nextTokenId;
        for (uint256 ind = 0; ind < count; ind++) {
            _safeMint(recipient, _nextTokenId + ind);
        }
        nextTokenId += count;
    }

    function mintPresaleJokers(
        uint256 count,
        uint256 maxCount,
        bytes calldata signature
    ) external payable {
        uint256 _nextTokenId = nextTokenId;

        PresaleInfo memory _presaleInfo = presaleInfo;
        require(_presaleInfo.whitelistSigner != address(0), "Crazy Joker: Presale not configured");

        require(mintPrice > 0, "Crazy Joker: Token price not set");
        require(count > 0, "Crazy Joker: Invalid count");
        require(block.timestamp >= _presaleInfo.startTime, "Crazy Joker: Presale not started");
        require(block.timestamp < _presaleInfo.endTime, "Crazy Joker: Presale has ended");

        require(_nextTokenId + count <= maxTokenSupply, "Crazy Joker: Max supply exceeded");
        require(mintPrice * count <= msg.value, "Crazy Joker: Incorrect Ether value");

        bytes32 digest = keccak256(
            abi.encodePacked("\x19\x01", DOMAIN_SEPARATOR, keccak256(abi.encode(PRESALE_TYPEHASH, msg.sender, maxCount)))
        );
        address recoveredAddress = digest.recover(signature);
        require(
            recoveredAddress != address(0) && recoveredAddress == _presaleInfo.whitelistSigner,
            "Crazy Joker: Invalid signature"
        );

        require(presaleBoughtCounts[msg.sender] + count <= maxCount, "Crazy Joker: Presale max count exceeded");
        presaleBoughtCounts[msg.sender] += count;

        for (uint256 ind = 0; ind < count; ind++) {
            _safeMint(msg.sender, _nextTokenId + ind);
        }
        nextTokenId += count;

        emit PresaleMint(msg.sender, count);
    }

    function mintJokers(uint256 count) external payable {
        uint256 _nextTokenId = nextTokenId;

        SaleInfo memory _saleInfo = saleInfo;
        require(_saleInfo.startTime > 0, "Crazy Joker: Sale not configured");
        require(mintPrice > 0, "Crazy Joker: Token price not set");
        require(count > 0, "Crazy Joker: Invalid count");
        require(block.timestamp >= _saleInfo.startTime, "Crazy Joker: Sale not started");
        require(count <= _saleInfo.maxCountPerTx, "Crazy Joker: Max count per tx exceeded");
        require(_nextTokenId + count <= maxTokenSupply, "Crazy Joker: Max supply exceeded");
        require(mintPrice * count <= msg.value, "Crazy Joker: Incorrect Ether value");

        for (uint256 ind = 0; ind < count; ind++) {
            _safeMint(msg.sender, _nextTokenId + ind);
        }
        nextTokenId += count;

        emit SaleMint(msg.sender, count);
    }

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

    function setBaseURI(string memory newBaseURI) public onlyOwner {
        baseURI = newBaseURI;
        emit BaseURIChanged(baseURI);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newBaseURI","type":"string"}],"name":"BaseURIChanged","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":false,"internalType":"address","name":"whitelistSigner","type":"address"},{"indexed":false,"internalType":"uint32","name":"startTime","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"endTime","type":"uint32"}],"name":"PresaleInfoChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"count","type":"uint256"}],"name":"PresaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint32","name":"startTime","type":"uint32"},{"indexed":false,"internalType":"uint32","name":"maxCountPerTx","type":"uint32"}],"name":"SaleInfoChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"count","type":"uint256"}],"name":"SaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newTokenPrice","type":"uint256"}],"name":"TokenPriceChanged","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":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"whitelistSigner","type":"address"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"}],"name":"configPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"maxCountPerTx","type":"uint256"}],"name":"configSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mintJokers","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"uint256","name":"maxCount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintPresaleJokers","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"","type":"address"}],"name":"presaleBoughtCounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleInfo","outputs":[{"internalType":"address","name":"whitelistSigner","type":"address"},{"internalType":"uint32","name":"startTime","type":"uint32"},{"internalType":"uint32","name":"endTime","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"reserveTokens","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":[],"name":"saleInfo","outputs":[{"internalType":"uint32","name":"startTime","type":"uint32"},{"internalType":"uint32","name":"maxCountPerTx","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266f8b0a10e470000600c556000600d553480156200002157600080fd5b50604051620036f3380380620036f3833981016040819052620000449162000322565b8251839083906200005d906000906020850190620001c5565b50805162000073906001906020840190620001c5565b505050620000906200008a6200016f60201b60201c565b62000173565b600b9081556040805180820182529182526a21b930bd3c902537b5b2b960a91b6020928301528051808201825260018152603160f81b9083015280517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818401527ff6e5692070fa3c089abab921dcd490152029e0ef8f9ee7d572a8f6db80ea36de818301527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a0808301919091528251808303909101815260c0909101909152805191012060105550620003e89050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001d39062000395565b90600052602060002090601f016020900481019282620001f7576000855562000242565b82601f106200021257805160ff191683800117855562000242565b8280016001018555821562000242579182015b828111156200024257825182559160200191906001019062000225565b506200025092915062000254565b5090565b5b8082111562000250576000815560010162000255565b600082601f8301126200027d57600080fd5b81516001600160401b03808211156200029a576200029a620003d2565b604051601f8301601f19908116603f01168101908282118183101715620002c557620002c5620003d2565b81604052838152602092508683858801011115620002e257600080fd5b600091505b83821015620003065785820183015181830184015290820190620002e7565b83821115620003185760008385830101525b9695505050505050565b6000806000606084860312156200033857600080fd5b83516001600160401b03808211156200035057600080fd5b6200035e878388016200026b565b945060208601519150808211156200037557600080fd5b5062000384868287016200026b565b925050604084015190509250925092565b600181811c90821680620003aa57607f821691505b60208210811415620003cc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6132fb80620003f86000396000f3fe60806040526004361061020f5760003560e01c806370a0823111610118578063a22cb465116100a0578063d4ae75221161006f578063d4ae75221461062c578063e985e9c514610660578063f2fde38b146106a9578063f4a0a528146106c9578063f64a68a2146106e957600080fd5b8063a22cb465146105ac578063b88d4fde146105cc578063c87b56dd146105ec578063c89545221461060c57600080fd5b806378cf19e9116100e757806378cf19e91461050057806387ebf553146105205780638da5cb5b146105335780638e3695b81461055157806395d89b411461059757600080fd5b806370a0823114610488578063715018a6146104a8578063725c8ee7146104bd57806375794a3c146104ea57600080fd5b80633ccfd60b1161019b57806355f804b31161016a57806355f804b31461040a5780636352211e1461042a57806363d7530b1461044a5780636817c76c1461045d5780636c0360eb1461047357600080fd5b80633ccfd60b1461039f57806342842e0e146103b45780634f6ccce7146103d457806350f7c204146103f457600080fd5b806318160ddd116101e257806318160ddd146102c557806323b872dd146102e45780632edf0869146103045780632f745c59146103695780633644e5151461038957600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004612d53565b610709565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e610734565b6040516102409190612f29565b34801561027757600080fd5b5061028b610286366004612dd6565b6107c6565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004612cf6565b610860565b005b3480156102d157600080fd5b506008545b604051908152602001610240565b3480156102f057600080fd5b506102c36102ff366004612c02565b610976565b34801561031057600080fd5b50600e5461033d906001600160a01b0381169063ffffffff600160a01b8204811691600160c01b90041683565b604080516001600160a01b03909416845263ffffffff9283166020850152911690820152606001610240565b34801561037557600080fd5b506102d6610384366004612cf6565b6109a7565b34801561039557600080fd5b506102d660105481565b3480156103ab57600080fd5b506102c3610a3d565b3480156103c057600080fd5b506102c36103cf366004612c02565b610a86565b3480156103e057600080fd5b506102d66103ef366004612dd6565b610aa1565b34801561040057600080fd5b506102d6600b5481565b34801561041657600080fd5b506102c3610425366004612d8d565b610b34565b34801561043657600080fd5b5061028b610445366004612dd6565b610bad565b6102c3610458366004612e11565b610c24565b34801561046957600080fd5b506102d6600c5481565b34801561047f57600080fd5b5061025e6110e5565b34801561049457600080fd5b506102d66104a3366004612bb4565b611173565b3480156104b457600080fd5b506102c36111fa565b3480156104c957600080fd5b506102d66104d8366004612bb4565b60116020526000908152604090205481565b3480156104f657600080fd5b506102d6600d5481565b34801561050c57600080fd5b506102c361051b366004612cf6565b611230565b6102c361052e366004612dd6565b611326565b34801561053f57600080fd5b50600a546001600160a01b031661028b565b34801561055d57600080fd5b50600f5461057a9063ffffffff8082169164010000000090041682565b6040805163ffffffff938416815292909116602083015201610240565b3480156105a357600080fd5b5061025e6115d7565b3480156105b857600080fd5b506102c36105c7366004612cba565b6115e6565b3480156105d857600080fd5b506102c36105e7366004612c3e565b6116ab565b3480156105f857600080fd5b5061025e610607366004612dd6565b6116e3565b34801561061857600080fd5b506102c3610627366004612def565b6117be565b34801561063857600080fd5b506102d67f46d572d4aba7cc8ab12e37a6c279cfd599f9f5b73872e95b4bff2a237dd40f0e81565b34801561066c57600080fd5b5061023461067b366004612bcf565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106b557600080fd5b506102c36106c4366004612bb4565b611926565b3480156106d557600080fd5b506102c36106e4366004612dd6565b6119be565b3480156106f557600080fd5b506102c3610704366004612d20565b611a1d565b60006001600160e01b0319821663780e9d6360e01b148061072e575061072e82611bbf565b92915050565b606060008054610743906131c1565b80601f016020809104026020016040519081016040528092919081815260200182805461076f906131c1565b80156107bc5780601f10610791576101008083540402835291602001916107bc565b820191906000526020600020905b81548152906001019060200180831161079f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108445760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061086b82610bad565b9050806001600160a01b0316836001600160a01b031614156108d95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161083b565b336001600160a01b03821614806108f557506108f5813361067b565b6109675760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161083b565b6109718383611c0f565b505050565b6109803382611c7d565b61099c5760405162461bcd60e51b815260040161083b906130e2565b610971838383611d74565b60006109b283611173565b8210610a145760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161083b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a675760405162461bcd60e51b815260040161083b906130ad565b47610a83610a7d600a546001600160a01b031690565b82611f1f565b50565b610971838383604051806020016040528060008152506116ab565b6000610aac60085490565b8210610b0f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161083b565b60088281548110610b2257610b22613283565b90600052602060002001549050919050565b600a546001600160a01b03163314610b5e5760405162461bcd60e51b815260040161083b906130ad565b8051610b71906012906020840190612a92565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf66012604051610ba29190612f3c565b60405180910390a150565b6000818152600260205260408120546001600160a01b03168061072e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161083b565b600d5460408051606081018252600e546001600160a01b03811680835263ffffffff600160a01b830481166020850152600160c01b9092049091169282019290925290610cbf5760405162461bcd60e51b815260206004820152602360248201527f4372617a79204a6f6b65723a2050726573616c65206e6f7420636f6e666967756044820152621c995960ea1b606482015260840161083b565b6000600c5411610d115760405162461bcd60e51b815260206004820181905260248201527f4372617a79204a6f6b65723a20546f6b656e207072696365206e6f7420736574604482015260640161083b565b60008611610d615760405162461bcd60e51b815260206004820152601a60248201527f4372617a79204a6f6b65723a20496e76616c696420636f756e74000000000000604482015260640161083b565b806020015163ffffffff16421015610dbb5760405162461bcd60e51b815260206004820181905260248201527f4372617a79204a6f6b65723a2050726573616c65206e6f742073746172746564604482015260640161083b565b806040015163ffffffff164210610e145760405162461bcd60e51b815260206004820152601e60248201527f4372617a79204a6f6b65723a2050726573616c652068617320656e6465640000604482015260640161083b565b600b54610e218784613133565b1115610e3f5760405162461bcd60e51b815260040161083b90613036565b3486600c54610e4e919061315f565b1115610e6c5760405162461bcd60e51b815260040161083b9061306b565b601054604080517f46d572d4aba7cc8ab12e37a6c279cfd599f9f5b73872e95b4bff2a237dd40f0e60208201523391810191909152606081018790526000919060800160405160208183030381529060405280519060200120604051602001610eec92919061190160f01b81526002810192909252602282015260420190565b6040516020818303038152906040528051906020012090506000610f4886868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525086939250506120389050565b90506001600160a01b03811615801590610f6e575082516001600160a01b038281169116145b610fba5760405162461bcd60e51b815260206004820152601e60248201527f4372617a79204a6f6b65723a20496e76616c6964207369676e61747572650000604482015260640161083b565b336000908152601160205260409020548790610fd7908a90613133565b11156110355760405162461bcd60e51b815260206004820152602760248201527f4372617a79204a6f6b65723a2050726573616c65206d617820636f756e7420656044820152661e18d95959195960ca1b606482015260840161083b565b33600090815260116020526040812080548a9290611054908490613133565b90915550600090505b8881101561108a57611078336110738388613133565b61205c565b80611082816131fc565b91505061105d565b5087600d600082825461109d9190613133565b909155505060408051338152602081018a90527ff5df7d07fef0d8ac7581015ebd1a3b7b7760da84b12f0c8174ae0dcd639cb6a3910160405180910390a15050505050505050565b601280546110f2906131c1565b80601f016020809104026020016040519081016040528092919081815260200182805461111e906131c1565b801561116b5780601f106111405761010080835404028352916020019161116b565b820191906000526020600020905b81548152906001019060200180831161114e57829003601f168201915b505050505081565b60006001600160a01b0382166111de5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161083b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112245760405162461bcd60e51b815260040161083b906130ad565b61122e600061207a565b565b600a546001600160a01b0316331461125a5760405162461bcd60e51b815260040161083b906130ad565b6001600160a01b0382166112ac5760405162461bcd60e51b81526020600482015260196024820152784372617a79204a6f6b65723a205a65726f206164647265737360381b604482015260640161083b565b600b5481600d546112bd9190613133565b11156112db5760405162461bcd60e51b815260040161083b90613036565b600d5460005b82811015611309576112f7846110738385613133565b80611301816131fc565b9150506112e1565b5081600d600082825461131c9190613133565b9091555050505050565b600d5460408051808201909152600f5463ffffffff80821680845264010000000090920416602083015261139c5760405162461bcd60e51b815260206004820181905260248201527f4372617a79204a6f6b65723a2053616c65206e6f7420636f6e66696775726564604482015260640161083b565b6000600c54116113ee5760405162461bcd60e51b815260206004820181905260248201527f4372617a79204a6f6b65723a20546f6b656e207072696365206e6f7420736574604482015260640161083b565b6000831161143e5760405162461bcd60e51b815260206004820152601a60248201527f4372617a79204a6f6b65723a20496e76616c696420636f756e74000000000000604482015260640161083b565b805163ffffffff164210156114955760405162461bcd60e51b815260206004820152601d60248201527f4372617a79204a6f6b65723a2053616c65206e6f742073746172746564000000604482015260640161083b565b806020015163ffffffff168311156114fe5760405162461bcd60e51b815260206004820152602660248201527f4372617a79204a6f6b65723a204d617820636f756e742070657220747820657860448201526518d95959195960d21b606482015260840161083b565b600b5461150b8484613133565b11156115295760405162461bcd60e51b815260040161083b90613036565b3483600c54611538919061315f565b11156115565760405162461bcd60e51b815260040161083b9061306b565b60005b838110156115815761156f336110738386613133565b80611579816131fc565b915050611559565b5082600d60008282546115949190613133565b909155505060408051338152602081018590527f35b6d348af664cd334c7ec2746e1ab49907efa953fa3f622552cd0b19a828b3f910160405180910390a1505050565b606060018054610743906131c1565b6001600160a01b03821633141561163f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161083b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116b53383611c7d565b6116d15760405162461bcd60e51b815260040161083b906130e2565b6116dd848484846120cc565b50505050565b6000818152600260205260409020546060906001600160a01b03166117625760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161083b565b600061176c6120ff565b9050600081511161178c57604051806020016040528060008152506117b7565b806117968461210e565b6040516020016117a7929190612ebd565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117e85760405162461bcd60e51b815260040161083b906130ad565b60006117f38361220c565b905060006118008361220c565b905060008163ffffffff16116118585760405162461bcd60e51b815260206004820152601860248201527f4372617a79204a6f6b65723a205a65726f20616d6f756e740000000000000000604482015260640161083b565b60008263ffffffff16116118ae5760405162461bcd60e51b815260206004820152601f60248201527f4372617a79204a6f6b65723a20496e76616c69642074696d652072616e676500604482015260640161083b565b60408051808201825263ffffffff8481168083529084166020928301819052600f805467ffffffffffffffff1916831764010000000083021790558351918252918101919091527f568535a88cdb94cb4908f71cea004aa60c6028b1713229614f1b04c1945507e9910160405180910390a150505050565b600a546001600160a01b031633146119505760405162461bcd60e51b815260040161083b906130ad565b6001600160a01b0381166119b55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161083b565b610a838161207a565b600a546001600160a01b031633146119e85760405162461bcd60e51b815260040161083b906130ad565b600c8190556040518181527fac21bacd333b316c6640fca5086322638b0a7aa4367179afd5dfcbe0a5427bc790602001610ba2565b600a546001600160a01b03163314611a475760405162461bcd60e51b815260040161083b906130ad565b6000611a528361220c565b90506000611a5f8361220c565b90506001600160a01b038516611ab35760405162461bcd60e51b81526020600482015260196024820152784372617a79204a6f6b65723a205a65726f206164647265737360381b604482015260640161083b565b60008263ffffffff16118015611ad457508163ffffffff168163ffffffff16115b611b205760405162461bcd60e51b815260206004820152601f60248201527f4372617a79204a6f6b65723a20496e76616c69642074696d652072616e676500604482015260640161083b565b60408051606080820183526001600160a01b03881680835263ffffffff8681166020808601829052918716948601859052600e80546001600160c01b0319168417600160a01b83021763ffffffff60c01b1916600160c01b8702179055855192835290820152928301919091527f06c9a5bfafafa85cd72f92ab0229b56f12f9ddd400a5958a689762566b03bf3c910160405180910390a15050505050565b60006001600160e01b031982166380ac58cd60e01b1480611bf057506001600160e01b03198216635b5e139f60e01b145b8061072e57506301ffc9a760e01b6001600160e01b031983161461072e565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c4482610bad565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611cf65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161083b565b6000611d0183610bad565b9050806001600160a01b0316846001600160a01b03161480611d3c5750836001600160a01b0316611d31846107c6565b6001600160a01b0316145b80611d6c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d8782610bad565b6001600160a01b031614611def5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161083b565b6001600160a01b038216611e515760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161083b565b611e5c838383612275565b611e67600082611c0f565b6001600160a01b0383166000908152600360205260408120805460019290611e9090849061317e565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ebe908490613133565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b80471015611f6f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161083b565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611fbc576040519150601f19603f3d011682016040523d82523d6000602084013e611fc1565b606091505b50509050806109715760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161083b565b6000806000612047858561232d565b915091506120548161239d565b509392505050565b612076828260405180602001604052806000815250612558565b5050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6120d7848484611d74565b6120e38484848461258b565b6116dd5760405162461bcd60e51b815260040161083b90612fe4565b606060128054610743906131c1565b6060816121325750506040805180820190915260018152600360fc1b602082015290565b8160005b811561215c5780612146816131fc565b91506121559050600a8361314b565b9150612136565b60008167ffffffffffffffff81111561217757612177613299565b6040519080825280601f01601f1916602001820160405280156121a1576020820181803683370190505b5090505b8415611d6c576121b660018361317e565b91506121c3600a86613217565b6121ce906030613133565b60f81b8183815181106121e3576121e3613283565b60200101906001600160f81b031916908160001a905350612205600a8661314b565b94506121a5565b600063ffffffff8211156122715760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201526532206269747360d01b606482015260840161083b565b5090565b6001600160a01b0383166122d0576122cb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6122f3565b816001600160a01b0316836001600160a01b0316146122f3576122f38382612698565b6001600160a01b03821661230a5761097181612735565b826001600160a01b0316826001600160a01b0316146109715761097182826127e4565b6000808251604114156123645760208301516040840151606085015160001a61235887828585612828565b94509450505050612396565b82516040141561238e5760208301516040840151612383868383612915565b935093505050612396565b506000905060025b9250929050565b60008160048111156123b1576123b1613257565b14156123ba5750565b60018160048111156123ce576123ce613257565b141561241c5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161083b565b600281600481111561243057612430613257565b141561247e5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161083b565b600381600481111561249257612492613257565b14156124eb5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161083b565b60048160048111156124ff576124ff613257565b1415610a835760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161083b565b6125628383612944565b61256f600084848461258b565b6109715760405162461bcd60e51b815260040161083b90612fe4565b60006001600160a01b0384163b1561268d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906125cf903390899088908890600401612eec565b602060405180830381600087803b1580156125e957600080fd5b505af1925050508015612619575060408051601f3d908101601f1916820190925261261691810190612d70565b60015b612673573d808015612647576040519150601f19603f3d011682016040523d82523d6000602084013e61264c565b606091505b50805161266b5760405162461bcd60e51b815260040161083b90612fe4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d6c565b506001949350505050565b600060016126a584611173565b6126af919061317e565b600083815260076020526040902054909150808214612702576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906127479060019061317e565b6000838152600960205260408120546008805493945090928490811061276f5761276f613283565b90600052602060002001549050806008838154811061279057612790613283565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806127c8576127c861326d565b6001900381819060005260206000200160009055905550505050565b60006127ef83611173565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561285f575060009050600361290c565b8460ff16601b1415801561287757508460ff16601c14155b15612888575060009050600461290c565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156128dc573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166129055760006001925092505061290c565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b0161293687828885612828565b935093505050935093915050565b6001600160a01b03821661299a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161083b565b6000818152600260205260409020546001600160a01b0316156129ff5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161083b565b612a0b60008383612275565b6001600160a01b0382166000908152600360205260408120805460019290612a34908490613133565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612a9e906131c1565b90600052602060002090601f016020900481019282612ac05760008555612b06565b82601f10612ad957805160ff1916838001178555612b06565b82800160010185558215612b06579182015b82811115612b06578251825591602001919060010190612aeb565b506122719291505b808211156122715760008155600101612b0e565b600067ffffffffffffffff80841115612b3d57612b3d613299565b604051601f8501601f19908116603f01168101908282118183101715612b6557612b65613299565b81604052809350858152868686011115612b7e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612baf57600080fd5b919050565b600060208284031215612bc657600080fd5b6117b782612b98565b60008060408385031215612be257600080fd5b612beb83612b98565b9150612bf960208401612b98565b90509250929050565b600080600060608486031215612c1757600080fd5b612c2084612b98565b9250612c2e60208501612b98565b9150604084013590509250925092565b60008060008060808587031215612c5457600080fd5b612c5d85612b98565b9350612c6b60208601612b98565b925060408501359150606085013567ffffffffffffffff811115612c8e57600080fd5b8501601f81018713612c9f57600080fd5b612cae87823560208401612b22565b91505092959194509250565b60008060408385031215612ccd57600080fd5b612cd683612b98565b915060208301358015158114612ceb57600080fd5b809150509250929050565b60008060408385031215612d0957600080fd5b612d1283612b98565b946020939093013593505050565b600080600060608486031215612d3557600080fd5b612d3e84612b98565b95602085013595506040909401359392505050565b600060208284031215612d6557600080fd5b81356117b7816132af565b600060208284031215612d8257600080fd5b81516117b7816132af565b600060208284031215612d9f57600080fd5b813567ffffffffffffffff811115612db657600080fd5b8201601f81018413612dc757600080fd5b611d6c84823560208401612b22565b600060208284031215612de857600080fd5b5035919050565b60008060408385031215612e0257600080fd5b50508035926020909101359150565b60008060008060608587031215612e2757600080fd5b8435935060208501359250604085013567ffffffffffffffff80821115612e4d57600080fd5b818701915087601f830112612e6157600080fd5b813581811115612e7057600080fd5b886020828501011115612e8257600080fd5b95989497505060200194505050565b60008151808452612ea9816020860160208601613195565b601f01601f19169290920160200192915050565b60008351612ecf818460208801613195565b835190830190612ee3818360208801613195565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f1f90830184612e91565b9695505050505050565b6020815260006117b76020830184612e91565b600060208083526000845481600182811c915080831680612f5e57607f831692505b858310811415612f7c57634e487b7160e01b85526022600452602485fd5b878601838152602001818015612f995760018114612faa57612fd5565b60ff19861682528782019650612fd5565b60008b81526020902060005b86811015612fcf57815484820152908501908901612fb6565b83019750505b50949998505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4372617a79204a6f6b65723a204d617820737570706c79206578636565646564604082015260600190565b60208082526022908201527f4372617a79204a6f6b65723a20496e636f72726563742045746865722076616c604082015261756560f01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156131465761314661322b565b500190565b60008261315a5761315a613241565b500490565b60008160001904831182151516156131795761317961322b565b500290565b6000828210156131905761319061322b565b500390565b60005b838110156131b0578181015183820152602001613198565b838111156116dd5750506000910152565b600181811c908216806131d557607f821691505b602082108114156131f657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132105761321061322b565b5060010190565b60008261322657613226613241565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a8357600080fdfea2646970667358221220b8cdd22426878859c5f2e7f666dbf78f2f2021149227037bfc47c2fca3b97ad764736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000b4372617a79204a6f6b65720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002434a000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806370a0823111610118578063a22cb465116100a0578063d4ae75221161006f578063d4ae75221461062c578063e985e9c514610660578063f2fde38b146106a9578063f4a0a528146106c9578063f64a68a2146106e957600080fd5b8063a22cb465146105ac578063b88d4fde146105cc578063c87b56dd146105ec578063c89545221461060c57600080fd5b806378cf19e9116100e757806378cf19e91461050057806387ebf553146105205780638da5cb5b146105335780638e3695b81461055157806395d89b411461059757600080fd5b806370a0823114610488578063715018a6146104a8578063725c8ee7146104bd57806375794a3c146104ea57600080fd5b80633ccfd60b1161019b57806355f804b31161016a57806355f804b31461040a5780636352211e1461042a57806363d7530b1461044a5780636817c76c1461045d5780636c0360eb1461047357600080fd5b80633ccfd60b1461039f57806342842e0e146103b45780634f6ccce7146103d457806350f7c204146103f457600080fd5b806318160ddd116101e257806318160ddd146102c557806323b872dd146102e45780632edf0869146103045780632f745c59146103695780633644e5151461038957600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004612d53565b610709565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e610734565b6040516102409190612f29565b34801561027757600080fd5b5061028b610286366004612dd6565b6107c6565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004612cf6565b610860565b005b3480156102d157600080fd5b506008545b604051908152602001610240565b3480156102f057600080fd5b506102c36102ff366004612c02565b610976565b34801561031057600080fd5b50600e5461033d906001600160a01b0381169063ffffffff600160a01b8204811691600160c01b90041683565b604080516001600160a01b03909416845263ffffffff9283166020850152911690820152606001610240565b34801561037557600080fd5b506102d6610384366004612cf6565b6109a7565b34801561039557600080fd5b506102d660105481565b3480156103ab57600080fd5b506102c3610a3d565b3480156103c057600080fd5b506102c36103cf366004612c02565b610a86565b3480156103e057600080fd5b506102d66103ef366004612dd6565b610aa1565b34801561040057600080fd5b506102d6600b5481565b34801561041657600080fd5b506102c3610425366004612d8d565b610b34565b34801561043657600080fd5b5061028b610445366004612dd6565b610bad565b6102c3610458366004612e11565b610c24565b34801561046957600080fd5b506102d6600c5481565b34801561047f57600080fd5b5061025e6110e5565b34801561049457600080fd5b506102d66104a3366004612bb4565b611173565b3480156104b457600080fd5b506102c36111fa565b3480156104c957600080fd5b506102d66104d8366004612bb4565b60116020526000908152604090205481565b3480156104f657600080fd5b506102d6600d5481565b34801561050c57600080fd5b506102c361051b366004612cf6565b611230565b6102c361052e366004612dd6565b611326565b34801561053f57600080fd5b50600a546001600160a01b031661028b565b34801561055d57600080fd5b50600f5461057a9063ffffffff8082169164010000000090041682565b6040805163ffffffff938416815292909116602083015201610240565b3480156105a357600080fd5b5061025e6115d7565b3480156105b857600080fd5b506102c36105c7366004612cba565b6115e6565b3480156105d857600080fd5b506102c36105e7366004612c3e565b6116ab565b3480156105f857600080fd5b5061025e610607366004612dd6565b6116e3565b34801561061857600080fd5b506102c3610627366004612def565b6117be565b34801561063857600080fd5b506102d67f46d572d4aba7cc8ab12e37a6c279cfd599f9f5b73872e95b4bff2a237dd40f0e81565b34801561066c57600080fd5b5061023461067b366004612bcf565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106b557600080fd5b506102c36106c4366004612bb4565b611926565b3480156106d557600080fd5b506102c36106e4366004612dd6565b6119be565b3480156106f557600080fd5b506102c3610704366004612d20565b611a1d565b60006001600160e01b0319821663780e9d6360e01b148061072e575061072e82611bbf565b92915050565b606060008054610743906131c1565b80601f016020809104026020016040519081016040528092919081815260200182805461076f906131c1565b80156107bc5780601f10610791576101008083540402835291602001916107bc565b820191906000526020600020905b81548152906001019060200180831161079f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108445760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061086b82610bad565b9050806001600160a01b0316836001600160a01b031614156108d95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161083b565b336001600160a01b03821614806108f557506108f5813361067b565b6109675760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161083b565b6109718383611c0f565b505050565b6109803382611c7d565b61099c5760405162461bcd60e51b815260040161083b906130e2565b610971838383611d74565b60006109b283611173565b8210610a145760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161083b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610a675760405162461bcd60e51b815260040161083b906130ad565b47610a83610a7d600a546001600160a01b031690565b82611f1f565b50565b610971838383604051806020016040528060008152506116ab565b6000610aac60085490565b8210610b0f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161083b565b60088281548110610b2257610b22613283565b90600052602060002001549050919050565b600a546001600160a01b03163314610b5e5760405162461bcd60e51b815260040161083b906130ad565b8051610b71906012906020840190612a92565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf66012604051610ba29190612f3c565b60405180910390a150565b6000818152600260205260408120546001600160a01b03168061072e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161083b565b600d5460408051606081018252600e546001600160a01b03811680835263ffffffff600160a01b830481166020850152600160c01b9092049091169282019290925290610cbf5760405162461bcd60e51b815260206004820152602360248201527f4372617a79204a6f6b65723a2050726573616c65206e6f7420636f6e666967756044820152621c995960ea1b606482015260840161083b565b6000600c5411610d115760405162461bcd60e51b815260206004820181905260248201527f4372617a79204a6f6b65723a20546f6b656e207072696365206e6f7420736574604482015260640161083b565b60008611610d615760405162461bcd60e51b815260206004820152601a60248201527f4372617a79204a6f6b65723a20496e76616c696420636f756e74000000000000604482015260640161083b565b806020015163ffffffff16421015610dbb5760405162461bcd60e51b815260206004820181905260248201527f4372617a79204a6f6b65723a2050726573616c65206e6f742073746172746564604482015260640161083b565b806040015163ffffffff164210610e145760405162461bcd60e51b815260206004820152601e60248201527f4372617a79204a6f6b65723a2050726573616c652068617320656e6465640000604482015260640161083b565b600b54610e218784613133565b1115610e3f5760405162461bcd60e51b815260040161083b90613036565b3486600c54610e4e919061315f565b1115610e6c5760405162461bcd60e51b815260040161083b9061306b565b601054604080517f46d572d4aba7cc8ab12e37a6c279cfd599f9f5b73872e95b4bff2a237dd40f0e60208201523391810191909152606081018790526000919060800160405160208183030381529060405280519060200120604051602001610eec92919061190160f01b81526002810192909252602282015260420190565b6040516020818303038152906040528051906020012090506000610f4886868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525086939250506120389050565b90506001600160a01b03811615801590610f6e575082516001600160a01b038281169116145b610fba5760405162461bcd60e51b815260206004820152601e60248201527f4372617a79204a6f6b65723a20496e76616c6964207369676e61747572650000604482015260640161083b565b336000908152601160205260409020548790610fd7908a90613133565b11156110355760405162461bcd60e51b815260206004820152602760248201527f4372617a79204a6f6b65723a2050726573616c65206d617820636f756e7420656044820152661e18d95959195960ca1b606482015260840161083b565b33600090815260116020526040812080548a9290611054908490613133565b90915550600090505b8881101561108a57611078336110738388613133565b61205c565b80611082816131fc565b91505061105d565b5087600d600082825461109d9190613133565b909155505060408051338152602081018a90527ff5df7d07fef0d8ac7581015ebd1a3b7b7760da84b12f0c8174ae0dcd639cb6a3910160405180910390a15050505050505050565b601280546110f2906131c1565b80601f016020809104026020016040519081016040528092919081815260200182805461111e906131c1565b801561116b5780601f106111405761010080835404028352916020019161116b565b820191906000526020600020905b81548152906001019060200180831161114e57829003601f168201915b505050505081565b60006001600160a01b0382166111de5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161083b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146112245760405162461bcd60e51b815260040161083b906130ad565b61122e600061207a565b565b600a546001600160a01b0316331461125a5760405162461bcd60e51b815260040161083b906130ad565b6001600160a01b0382166112ac5760405162461bcd60e51b81526020600482015260196024820152784372617a79204a6f6b65723a205a65726f206164647265737360381b604482015260640161083b565b600b5481600d546112bd9190613133565b11156112db5760405162461bcd60e51b815260040161083b90613036565b600d5460005b82811015611309576112f7846110738385613133565b80611301816131fc565b9150506112e1565b5081600d600082825461131c9190613133565b9091555050505050565b600d5460408051808201909152600f5463ffffffff80821680845264010000000090920416602083015261139c5760405162461bcd60e51b815260206004820181905260248201527f4372617a79204a6f6b65723a2053616c65206e6f7420636f6e66696775726564604482015260640161083b565b6000600c54116113ee5760405162461bcd60e51b815260206004820181905260248201527f4372617a79204a6f6b65723a20546f6b656e207072696365206e6f7420736574604482015260640161083b565b6000831161143e5760405162461bcd60e51b815260206004820152601a60248201527f4372617a79204a6f6b65723a20496e76616c696420636f756e74000000000000604482015260640161083b565b805163ffffffff164210156114955760405162461bcd60e51b815260206004820152601d60248201527f4372617a79204a6f6b65723a2053616c65206e6f742073746172746564000000604482015260640161083b565b806020015163ffffffff168311156114fe5760405162461bcd60e51b815260206004820152602660248201527f4372617a79204a6f6b65723a204d617820636f756e742070657220747820657860448201526518d95959195960d21b606482015260840161083b565b600b5461150b8484613133565b11156115295760405162461bcd60e51b815260040161083b90613036565b3483600c54611538919061315f565b11156115565760405162461bcd60e51b815260040161083b9061306b565b60005b838110156115815761156f336110738386613133565b80611579816131fc565b915050611559565b5082600d60008282546115949190613133565b909155505060408051338152602081018590527f35b6d348af664cd334c7ec2746e1ab49907efa953fa3f622552cd0b19a828b3f910160405180910390a1505050565b606060018054610743906131c1565b6001600160a01b03821633141561163f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161083b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116b53383611c7d565b6116d15760405162461bcd60e51b815260040161083b906130e2565b6116dd848484846120cc565b50505050565b6000818152600260205260409020546060906001600160a01b03166117625760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161083b565b600061176c6120ff565b9050600081511161178c57604051806020016040528060008152506117b7565b806117968461210e565b6040516020016117a7929190612ebd565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117e85760405162461bcd60e51b815260040161083b906130ad565b60006117f38361220c565b905060006118008361220c565b905060008163ffffffff16116118585760405162461bcd60e51b815260206004820152601860248201527f4372617a79204a6f6b65723a205a65726f20616d6f756e740000000000000000604482015260640161083b565b60008263ffffffff16116118ae5760405162461bcd60e51b815260206004820152601f60248201527f4372617a79204a6f6b65723a20496e76616c69642074696d652072616e676500604482015260640161083b565b60408051808201825263ffffffff8481168083529084166020928301819052600f805467ffffffffffffffff1916831764010000000083021790558351918252918101919091527f568535a88cdb94cb4908f71cea004aa60c6028b1713229614f1b04c1945507e9910160405180910390a150505050565b600a546001600160a01b031633146119505760405162461bcd60e51b815260040161083b906130ad565b6001600160a01b0381166119b55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161083b565b610a838161207a565b600a546001600160a01b031633146119e85760405162461bcd60e51b815260040161083b906130ad565b600c8190556040518181527fac21bacd333b316c6640fca5086322638b0a7aa4367179afd5dfcbe0a5427bc790602001610ba2565b600a546001600160a01b03163314611a475760405162461bcd60e51b815260040161083b906130ad565b6000611a528361220c565b90506000611a5f8361220c565b90506001600160a01b038516611ab35760405162461bcd60e51b81526020600482015260196024820152784372617a79204a6f6b65723a205a65726f206164647265737360381b604482015260640161083b565b60008263ffffffff16118015611ad457508163ffffffff168163ffffffff16115b611b205760405162461bcd60e51b815260206004820152601f60248201527f4372617a79204a6f6b65723a20496e76616c69642074696d652072616e676500604482015260640161083b565b60408051606080820183526001600160a01b03881680835263ffffffff8681166020808601829052918716948601859052600e80546001600160c01b0319168417600160a01b83021763ffffffff60c01b1916600160c01b8702179055855192835290820152928301919091527f06c9a5bfafafa85cd72f92ab0229b56f12f9ddd400a5958a689762566b03bf3c910160405180910390a15050505050565b60006001600160e01b031982166380ac58cd60e01b1480611bf057506001600160e01b03198216635b5e139f60e01b145b8061072e57506301ffc9a760e01b6001600160e01b031983161461072e565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c4482610bad565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611cf65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161083b565b6000611d0183610bad565b9050806001600160a01b0316846001600160a01b03161480611d3c5750836001600160a01b0316611d31846107c6565b6001600160a01b0316145b80611d6c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d8782610bad565b6001600160a01b031614611def5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161083b565b6001600160a01b038216611e515760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161083b565b611e5c838383612275565b611e67600082611c0f565b6001600160a01b0383166000908152600360205260408120805460019290611e9090849061317e565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ebe908490613133565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b80471015611f6f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161083b565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611fbc576040519150601f19603f3d011682016040523d82523d6000602084013e611fc1565b606091505b50509050806109715760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161083b565b6000806000612047858561232d565b915091506120548161239d565b509392505050565b612076828260405180602001604052806000815250612558565b5050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6120d7848484611d74565b6120e38484848461258b565b6116dd5760405162461bcd60e51b815260040161083b90612fe4565b606060128054610743906131c1565b6060816121325750506040805180820190915260018152600360fc1b602082015290565b8160005b811561215c5780612146816131fc565b91506121559050600a8361314b565b9150612136565b60008167ffffffffffffffff81111561217757612177613299565b6040519080825280601f01601f1916602001820160405280156121a1576020820181803683370190505b5090505b8415611d6c576121b660018361317e565b91506121c3600a86613217565b6121ce906030613133565b60f81b8183815181106121e3576121e3613283565b60200101906001600160f81b031916908160001a905350612205600a8661314b565b94506121a5565b600063ffffffff8211156122715760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201526532206269747360d01b606482015260840161083b565b5090565b6001600160a01b0383166122d0576122cb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6122f3565b816001600160a01b0316836001600160a01b0316146122f3576122f38382612698565b6001600160a01b03821661230a5761097181612735565b826001600160a01b0316826001600160a01b0316146109715761097182826127e4565b6000808251604114156123645760208301516040840151606085015160001a61235887828585612828565b94509450505050612396565b82516040141561238e5760208301516040840151612383868383612915565b935093505050612396565b506000905060025b9250929050565b60008160048111156123b1576123b1613257565b14156123ba5750565b60018160048111156123ce576123ce613257565b141561241c5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161083b565b600281600481111561243057612430613257565b141561247e5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161083b565b600381600481111561249257612492613257565b14156124eb5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161083b565b60048160048111156124ff576124ff613257565b1415610a835760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161083b565b6125628383612944565b61256f600084848461258b565b6109715760405162461bcd60e51b815260040161083b90612fe4565b60006001600160a01b0384163b1561268d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906125cf903390899088908890600401612eec565b602060405180830381600087803b1580156125e957600080fd5b505af1925050508015612619575060408051601f3d908101601f1916820190925261261691810190612d70565b60015b612673573d808015612647576040519150601f19603f3d011682016040523d82523d6000602084013e61264c565b606091505b50805161266b5760405162461bcd60e51b815260040161083b90612fe4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d6c565b506001949350505050565b600060016126a584611173565b6126af919061317e565b600083815260076020526040902054909150808214612702576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906127479060019061317e565b6000838152600960205260408120546008805493945090928490811061276f5761276f613283565b90600052602060002001549050806008838154811061279057612790613283565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806127c8576127c861326d565b6001900381819060005260206000200160009055905550505050565b60006127ef83611173565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561285f575060009050600361290c565b8460ff16601b1415801561287757508460ff16601c14155b15612888575060009050600461290c565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156128dc573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166129055760006001925092505061290c565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b0161293687828885612828565b935093505050935093915050565b6001600160a01b03821661299a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161083b565b6000818152600260205260409020546001600160a01b0316156129ff5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161083b565b612a0b60008383612275565b6001600160a01b0382166000908152600360205260408120805460019290612a34908490613133565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612a9e906131c1565b90600052602060002090601f016020900481019282612ac05760008555612b06565b82601f10612ad957805160ff1916838001178555612b06565b82800160010185558215612b06579182015b82811115612b06578251825591602001919060010190612aeb565b506122719291505b808211156122715760008155600101612b0e565b600067ffffffffffffffff80841115612b3d57612b3d613299565b604051601f8501601f19908116603f01168101908282118183101715612b6557612b65613299565b81604052809350858152868686011115612b7e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612baf57600080fd5b919050565b600060208284031215612bc657600080fd5b6117b782612b98565b60008060408385031215612be257600080fd5b612beb83612b98565b9150612bf960208401612b98565b90509250929050565b600080600060608486031215612c1757600080fd5b612c2084612b98565b9250612c2e60208501612b98565b9150604084013590509250925092565b60008060008060808587031215612c5457600080fd5b612c5d85612b98565b9350612c6b60208601612b98565b925060408501359150606085013567ffffffffffffffff811115612c8e57600080fd5b8501601f81018713612c9f57600080fd5b612cae87823560208401612b22565b91505092959194509250565b60008060408385031215612ccd57600080fd5b612cd683612b98565b915060208301358015158114612ceb57600080fd5b809150509250929050565b60008060408385031215612d0957600080fd5b612d1283612b98565b946020939093013593505050565b600080600060608486031215612d3557600080fd5b612d3e84612b98565b95602085013595506040909401359392505050565b600060208284031215612d6557600080fd5b81356117b7816132af565b600060208284031215612d8257600080fd5b81516117b7816132af565b600060208284031215612d9f57600080fd5b813567ffffffffffffffff811115612db657600080fd5b8201601f81018413612dc757600080fd5b611d6c84823560208401612b22565b600060208284031215612de857600080fd5b5035919050565b60008060408385031215612e0257600080fd5b50508035926020909101359150565b60008060008060608587031215612e2757600080fd5b8435935060208501359250604085013567ffffffffffffffff80821115612e4d57600080fd5b818701915087601f830112612e6157600080fd5b813581811115612e7057600080fd5b886020828501011115612e8257600080fd5b95989497505060200194505050565b60008151808452612ea9816020860160208601613195565b601f01601f19169290920160200192915050565b60008351612ecf818460208801613195565b835190830190612ee3818360208801613195565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612f1f90830184612e91565b9695505050505050565b6020815260006117b76020830184612e91565b600060208083526000845481600182811c915080831680612f5e57607f831692505b858310811415612f7c57634e487b7160e01b85526022600452602485fd5b878601838152602001818015612f995760018114612faa57612fd5565b60ff19861682528782019650612fd5565b60008b81526020902060005b86811015612fcf57815484820152908501908901612fb6565b83019750505b50949998505050505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4372617a79204a6f6b65723a204d617820737570706c79206578636565646564604082015260600190565b60208082526022908201527f4372617a79204a6f6b65723a20496e636f72726563742045746865722076616c604082015261756560f01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156131465761314661322b565b500190565b60008261315a5761315a613241565b500490565b60008160001904831182151516156131795761317961322b565b500290565b6000828210156131905761319061322b565b500390565b60005b838110156131b0578181015183820152602001613198565b838111156116dd5750506000910152565b600181811c908216806131d557607f821691505b602082108114156131f657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132105761321061322b565b5060010190565b60008261322657613226613241565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a8357600080fdfea2646970667358221220b8cdd22426878859c5f2e7f666dbf78f2f2021149227037bfc47c2fca3b97ad764736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000b4372617a79204a6f6b65720000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002434a000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Crazy Joker
Arg [1] : symbol (string): CJ
Arg [2] : maxSupply (uint256): 10000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 4372617a79204a6f6b6572000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 434a000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

60686:6523:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34670:224;;;;;;;;;;-1:-1:-1;34670:224:0;;;;;:::i;:::-;;:::i;:::-;;;8237:14:1;;8230:22;8212:41;;8200:2;8185:18;34670:224:0;;;;;;;;21579:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23138:221::-;;;;;;;;;;-1:-1:-1;23138:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6863:32:1;;;6845:51;;6833:2;6818:18;23138:221:0;6699:203:1;22661:411:0;;;;;;;;;;-1:-1:-1;22661:411:0;;;;;:::i;:::-;;:::i;:::-;;35310:113;;;;;;;;;;-1:-1:-1;35398:10:0;:17;35310:113;;;8410:25:1;;;8398:2;8383:18;35310:113:0;8264:177:1;24028:339:0;;;;;;;;;;-1:-1:-1;24028:339:0;;;;;:::i;:::-;;:::i;61523:30::-;;;;;;;;;;-1:-1:-1;61523:30:0;;;;-1:-1:-1;;;;;61523:30:0;;;;-1:-1:-1;;;61523:30:0;;;;;-1:-1:-1;;;61523:30:0;;;;;;;;;-1:-1:-1;;;;;7895:32:1;;;7877:51;;7947:10;7993:15;;;7988:2;7973:18;;7966:43;8045:15;;8025:18;;;8018:43;7865:2;7850:18;61523:30:0;7679:388:1;34978:256:0;;;;;;;;;;-1:-1:-1;34978:256:0;;;;;:::i;:::-;;:::i;61593:31::-;;;;;;;;;;;;;;;;63700:147;;;;;;;;;;;;;:::i;24438:185::-;;;;;;;;;;-1:-1:-1;24438:185:0;;;;;:::i;:::-;;:::i;35500:233::-;;;;;;;;;;-1:-1:-1;35500:233:0;;;;;:::i;:::-;;:::i;61177:29::-;;;;;;;;;;;;;;;;67065:141;;;;;;;;;;-1:-1:-1;67065:141:0;;;;;:::i;:::-;;:::i;21273:239::-;;;;;;;;;;-1:-1:-1;21273:239:0;;;;;:::i;:::-;;:::i;64377:1630::-;;;;;;:::i;:::-;;:::i;61213:44::-;;;;;;;;;;;;;;;;61796:21;;;;;;;;;;;;;:::i;21003:208::-;;;;;;;;;;-1:-1:-1;21003:208:0;;;;;:::i;:::-;;:::i;42463:94::-;;;;;;;;;;;;;:::i;61735:54::-;;;;;;;;;;-1:-1:-1;61735:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;61277:30;;;;;;;;;;;;;;;;63923:446;;;;;;;;;;-1:-1:-1;63923:446:0;;;;;:::i;:::-;;:::i;66015:926::-;;;;;;:::i;:::-;;:::i;41812:87::-;;;;;;;;;;-1:-1:-1;41885:6:0;;-1:-1:-1;;;;;41885:6:0;41812:87;;61560:24;;;;;;;;;;-1:-1:-1;61560:24:0;;;;;;;;;;;;;;;;;;;26457:10:1;26494:15;;;26476:34;;26546:15;;;;26541:2;26526:18;;26519:43;26420:18;61560:24:0;26277:291:1;21748:104:0;;;;;;;;;;;;;:::i;23431:295::-;;;;;;;;;;-1:-1:-1;23431:295:0;;;;;:::i;:::-;;:::i;24694:328::-;;;;;;;;;;-1:-1:-1;24694:328:0;;;;;:::i;:::-;;:::i;21923:334::-;;;;;;;;;;-1:-1:-1;21923:334:0;;;;;:::i;:::-;;:::i;63034:510::-;;;;;;;;;;-1:-1:-1;63034:510:0;;;;;:::i;:::-;;:::i;61631:95::-;;;;;;;;;;;;61674:52;61631:95;;23797:164;;;;;;;;;;-1:-1:-1;23797:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23918:25:0;;;23894:4;23918:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23797:164;42712:192;;;;;;;;;;-1:-1:-1;42712:192:0;;;;;:::i;:::-;;:::i;63552:140::-;;;;;;;;;;-1:-1:-1;63552:140:0;;;;;:::i;:::-;;:::i;62418:608::-;;;;;;;;;;-1:-1:-1;62418:608:0;;;;;:::i;:::-;;:::i;34670:224::-;34772:4;-1:-1:-1;;;;;;34796:50:0;;-1:-1:-1;;;34796:50:0;;:90;;;34850:36;34874:11;34850:23;:36::i;:::-;34789:97;34670:224;-1:-1:-1;;34670:224:0:o;21579:100::-;21633:13;21666:5;21659:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21579:100;:::o;23138:221::-;23214:7;26621:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26621:16:0;23234:73;;;;-1:-1:-1;;;23234:73:0;;21569:2:1;23234:73:0;;;21551:21:1;21608:2;21588:18;;;21581:30;21647:34;21627:18;;;21620:62;-1:-1:-1;;;21698:18:1;;;21691:42;21750:19;;23234:73:0;;;;;;;;;-1:-1:-1;23327:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23327:24:0;;23138:221::o;22661:411::-;22742:13;22758:23;22773:7;22758:14;:23::i;:::-;22742:39;;22806:5;-1:-1:-1;;;;;22800:11:0;:2;-1:-1:-1;;;;;22800:11:0;;;22792:57;;;;-1:-1:-1;;;22792:57:0;;23530:2:1;22792:57:0;;;23512:21:1;23569:2;23549:18;;;23542:30;23608:34;23588:18;;;23581:62;-1:-1:-1;;;23659:18:1;;;23652:31;23700:19;;22792:57:0;23328:397:1;22792:57:0;16160:10;-1:-1:-1;;;;;22884:21:0;;;;:62;;-1:-1:-1;22909:37:0;22926:5;16160:10;23797:164;:::i;22909:37::-;22862:168;;;;-1:-1:-1;;;22862:168:0;;18748:2:1;22862:168:0;;;18730:21:1;18787:2;18767:18;;;18760:30;18826:34;18806:18;;;18799:62;18897:26;18877:18;;;18870:54;18941:19;;22862:168:0;18546:420:1;22862:168:0;23043:21;23052:2;23056:7;23043:8;:21::i;:::-;22731:341;22661:411;;:::o;24028:339::-;24223:41;16160:10;24256:7;24223:18;:41::i;:::-;24215:103;;;;-1:-1:-1;;;24215:103:0;;;;;;;:::i;:::-;24331:28;24341:4;24347:2;24351:7;24331:9;:28::i;34978:256::-;35075:7;35111:23;35128:5;35111:16;:23::i;:::-;35103:5;:31;35095:87;;;;-1:-1:-1;;;35095:87:0;;12241:2:1;35095:87:0;;;12223:21:1;12280:2;12260:18;;;12253:30;12319:34;12299:18;;;12292:62;-1:-1:-1;;;12370:18:1;;;12363:41;12421:19;;35095:87:0;12039:407:1;35095:87:0;-1:-1:-1;;;;;;35200:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34978:256::o;63700:147::-;41885:6;;-1:-1:-1;;;;;41885:6:0;16160:10;42032:23;42024:68;;;;-1:-1:-1;;;42024:68:0;;;;;;;:::i;:::-;63763:21:::1;63795:44;63821:7;41885:6:::0;;-1:-1:-1;;;;;41885:6:0;;41812:87;63821:7:::1;63831;63795:17;:44::i;:::-;63737:110;63700:147::o:0;24438:185::-;24576:39;24593:4;24599:2;24603:7;24576:39;;;;;;;;;;;;:16;:39::i;35500:233::-;35575:7;35611:30;35398:10;:17;;35310:113;35611:30;35603:5;:38;35595:95;;;;-1:-1:-1;;;35595:95:0;;25164:2:1;35595:95:0;;;25146:21:1;25203:2;25183:18;;;25176:30;25242:34;25222:18;;;25215:62;-1:-1:-1;;;25293:18:1;;;25286:42;25345:19;;35595:95:0;24962:408:1;35595:95:0;35708:10;35719:5;35708:17;;;;;;;;:::i;:::-;;;;;;;;;35701:24;;35500:233;;;:::o;67065:141::-;41885:6;;-1:-1:-1;;;;;41885:6:0;16160:10;42032:23;42024:68;;;;-1:-1:-1;;;42024:68:0;;;;;;;:::i;:::-;67139:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;67175:23;67190:7;67175:23;;;;;;:::i;:::-;;;;;;;;67065:141:::0;:::o;21273:239::-;21345:7;21381:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21381:16:0;21416:19;21408:73;;;;-1:-1:-1;;;21408:73:0;;19992:2:1;21408:73:0;;;19974:21:1;20031:2;20011:18;;;20004:30;20070:34;20050:18;;;20043:62;-1:-1:-1;;;20121:18:1;;;20114:39;20170:19;;21408:73:0;19790:405:1;64377:1630:0;64548:11;;64572:45;;;;;;;;64606:11;64572:45;-1:-1:-1;;;;;64572:45:0;;;;;;-1:-1:-1;;;64572:45:0;;;;;;;;-1:-1:-1;;;64572:45:0;;;;;;;;;;;;;;64628:90;;;;-1:-1:-1;;;64628:90:0;;14909:2:1;64628:90:0;;;14891:21:1;14948:2;14928:18;;;14921:30;14987:34;14967:18;;;14960:62;-1:-1:-1;;;15038:18:1;;;15031:33;15081:19;;64628:90:0;14707:399:1;64628:90:0;64751:1;64739:9;;:13;64731:58;;;;-1:-1:-1;;;64731:58:0;;16072:2:1;64731:58:0;;;16054:21:1;;;16091:18;;;16084:30;16150:34;16130:18;;;16123:62;16202:18;;64731:58:0;15870:356:1;64731:58:0;64816:1;64808:5;:9;64800:48;;;;-1:-1:-1;;;64800:48:0;;11526:2:1;64800:48:0;;;11508:21:1;11565:2;11545:18;;;11538:30;11604:28;11584:18;;;11577:56;11650:18;;64800:48:0;11324:350:1;64800:48:0;64886:12;:22;;;64867:41;;:15;:41;;64859:86;;;;-1:-1:-1;;;64859:86:0;;25936:2:1;64859:86:0;;;25918:21:1;;;25955:18;;;25948:30;26014:34;25994:18;;;25987:62;26066:18;;64859:86:0;25734:356:1;64859:86:0;64982:12;:20;;;64964:38;;:15;:38;64956:81;;;;-1:-1:-1;;;64956:81:0;;25577:2:1;64956:81:0;;;25559:21:1;25616:2;25596:18;;;25589:30;25655:32;25635:18;;;25628:60;25705:18;;64956:81:0;25375:354:1;64956:81:0;65082:14;;65058:20;65073:5;65058:12;:20;:::i;:::-;:38;;65050:83;;;;-1:-1:-1;;;65050:83:0;;;;;;;:::i;:::-;65173:9;65164:5;65152:9;;:17;;;;:::i;:::-;:30;;65144:77;;;;-1:-1:-1;;;65144:77:0;;;;;;;:::i;:::-;65304:16;;65332:50;;;61674:52;65332:50;;;8648:25:1;65361:10:0;8689:18:1;;;8682:60;;;;8758:18;;;8751:34;;;65234:14:0;;65304:16;8621:18:1;;65332:50:0;;;;;;;;;;;;65322:61;;;;;;65275:109;;;;;;;;-1:-1:-1;;;6350:27:1;;6402:1;6393:11;;6386:27;;;;6438:2;6429:12;;6422:28;6475:2;6466:12;;6092:392;65275:109:0;;;;;;;;;;;;;65251:144;;;;;;65234:161;;65406:24;65433:25;65448:9;;65433:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65433:6:0;;:25;-1:-1:-1;;65433:14:0;:25;-1:-1:-1;65433:25:0:i;:::-;65406:52;-1:-1:-1;;;;;;65491:30:0;;;;;;:82;;-1:-1:-1;65545:28:0;;-1:-1:-1;;;;;65525:48:0;;;;;;65491:82;65469:162;;;;-1:-1:-1;;;65469:162:0;;14550:2:1;65469:162:0;;;14532:21:1;14589:2;14569:18;;;14562:30;14628:32;14608:18;;;14601:60;14678:18;;65469:162:0;14348:354:1;65469:162:0;65672:10;65652:31;;;;:19;:31;;;;;;65695:8;;65652:39;;65686:5;;65652:39;:::i;:::-;:51;;65644:103;;;;-1:-1:-1;;;65644:103:0;;19173:2:1;65644:103:0;;;19155:21:1;19212:2;19192:18;;;19185:30;19251:34;19231:18;;;19224:62;-1:-1:-1;;;19302:18:1;;;19295:37;19349:19;;65644:103:0;18971:403:1;65644:103:0;65778:10;65758:31;;;;:19;:31;;;;;:40;;65793:5;;65758:31;:40;;65793:5;;65758:40;:::i;:::-;;;;-1:-1:-1;65816:11:0;;-1:-1:-1;65811:110:0;65839:5;65833:3;:11;65811:110;;;65868:41;65878:10;65890:18;65905:3;65890:12;:18;:::i;:::-;65868:9;:41::i;:::-;65846:5;;;;:::i;:::-;;;;65811:110;;;;65946:5;65931:11;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;;65969:30:0;;;65981:10;7574:51:1;;7656:2;7641:18;;7634:34;;;65969:30:0;;7547:18:1;65969:30:0;;;;;;;64514:1493;;;;64377:1630;;;;:::o;61796:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21003:208::-;21075:7;-1:-1:-1;;;;;21103:19:0;;21095:74;;;;-1:-1:-1;;;21095:74:0;;19581:2:1;21095:74:0;;;19563:21:1;19620:2;19600:18;;;19593:30;19659:34;19639:18;;;19632:62;-1:-1:-1;;;19710:18:1;;;19703:40;19760:19;;21095:74:0;19379:406:1;21095:74:0;-1:-1:-1;;;;;;21187:16:0;;;;;:9;:16;;;;;;;21003:208::o;42463:94::-;41885:6;;-1:-1:-1;;;;;41885:6:0;16160:10;42032:23;42024:68;;;;-1:-1:-1;;;42024:68:0;;;;;;;:::i;:::-;42528:21:::1;42546:1;42528:9;:21::i;:::-;42463:94::o:0;63923:446::-;41885:6;;-1:-1:-1;;;;;41885:6:0;16160:10;42032:23;42024:68;;;;-1:-1:-1;;;42024:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;64018:23:0;::::1;64010:61;;;::::0;-1:-1:-1;;;64010:61:0;;13072:2:1;64010:61:0::1;::::0;::::1;13054:21:1::0;13111:2;13091:18;;;13084:30;-1:-1:-1;;;13130:18:1;;;13123:55;13195:18;;64010:61:0::1;12870:349:1::0;64010:61:0::1;64113:14;;64104:5;64090:11;;:19;;;;:::i;:::-;:37;;64082:82;;;;-1:-1:-1::0;;;64082:82:0::1;;;;;;;:::i;:::-;64200:11;::::0;64177:20:::1;64222:109;64250:5;64244:3;:11;64222:109;;;64279:40;64289:9:::0;64300:18:::1;64315:3:::0;64300:12;:18:::1;:::i;64279:40::-;64257:5:::0;::::1;::::0;::::1;:::i;:::-;;;;64222:109;;;;64356:5;64341:11;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;63923:446:0:o;66015:926::-;66101:11;;66125:36;;;;;;;;;66153:8;66125:36;;;;;;;;;;;;;;;;;66172:68;;;;-1:-1:-1;;;66172:68:0;;22343:2:1;66172:68:0;;;22325:21:1;;;22362:18;;;22355:30;22421:34;22401:18;;;22394:62;22473:18;;66172:68:0;22141:356:1;66172:68:0;66271:1;66259:9;;:13;66251:58;;;;-1:-1:-1;;;66251:58:0;;16072:2:1;66251:58:0;;;16054:21:1;;;16091:18;;;16084:30;16150:34;16130:18;;;16123:62;16202:18;;66251:58:0;15870:356:1;66251:58:0;66336:1;66328:5;:9;66320:48;;;;-1:-1:-1;;;66320:48:0;;11526:2:1;66320:48:0;;;11508:21:1;11565:2;11545:18;;;11538:30;11604:28;11584:18;;;11577:56;11650:18;;66320:48:0;11324:350:1;66320:48:0;66406:19;;66387:38;;:15;:38;;66379:80;;;;-1:-1:-1;;;66379:80:0;;11168:2:1;66379:80:0;;;11150:21:1;11207:2;11187:18;;;11180:30;11246:31;11226:18;;;11219:59;11295:18;;66379:80:0;10966:353:1;66379:80:0;66487:9;:23;;;66478:32;;:5;:32;;66470:83;;;;-1:-1:-1;;;66470:83:0;;23932:2:1;66470:83:0;;;23914:21:1;23971:2;23951:18;;;23944:30;24010:34;23990:18;;;23983:62;-1:-1:-1;;;24061:18:1;;;24054:36;24107:19;;66470:83:0;23730:402:1;66470:83:0;66596:14;;66572:20;66587:5;66572:12;:20;:::i;:::-;:38;;66564:83;;;;-1:-1:-1;;;66564:83:0;;;;;;;:::i;:::-;66687:9;66678:5;66666:9;;:17;;;;:::i;:::-;:30;;66658:77;;;;-1:-1:-1;;;66658:77:0;;;;;;;:::i;:::-;66753:11;66748:110;66776:5;66770:3;:11;66748:110;;;66805:41;66815:10;66827:18;66842:3;66827:12;:18;:::i;66805:41::-;66783:5;;;;:::i;:::-;;;;66748:110;;;;66883:5;66868:11;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;;66906:27:0;;;66915:10;7574:51:1;;7656:2;7641:18;;7634:34;;;66906:27:0;;7547:18:1;66906:27:0;;;;;;;66067:874;;66015:926;:::o;21748:104::-;21804:13;21837:7;21830:14;;;;;:::i;23431:295::-;-1:-1:-1;;;;;23534:24:0;;16160:10;23534:24;;23526:62;;;;-1:-1:-1;;;23526:62:0;;15718:2:1;23526:62:0;;;15700:21:1;15757:2;15737:18;;;15730:30;15796:27;15776:18;;;15769:55;15841:18;;23526:62:0;15516:349:1;23526:62:0;16160:10;23601:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23601:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23601:53:0;;;;;;;;;;23670:48;;8212:41:1;;;23601:42:0;;16160:10;23670:48;;8185:18:1;23670:48:0;;;;;;;23431:295;;:::o;24694:328::-;24869:41;16160:10;24902:7;24869:18;:41::i;:::-;24861:103;;;;-1:-1:-1;;;24861:103:0;;;;;;;:::i;:::-;24975:39;24989:4;24995:2;24999:7;25008:5;24975:13;:39::i;:::-;24694:328;;;;:::o;21923:334::-;26597:4;26621:16;;;:7;:16;;;;;;21996:13;;-1:-1:-1;;;;;26621:16:0;22022:76;;;;-1:-1:-1;;;22022:76:0;;23114:2:1;22022:76:0;;;23096:21:1;23153:2;23133:18;;;23126:30;23192:34;23172:18;;;23165:62;-1:-1:-1;;;23243:18:1;;;23236:45;23298:19;;22022:76:0;22912:411:1;22022:76:0;22111:21;22135:10;:8;:10::i;:::-;22111:34;;22187:1;22169:7;22163:21;:25;:86;;;;;;;;;;;;;;;;;22215:7;22224:18;:7;:16;:18::i;:::-;22198:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22163:86;22156:93;21923:334;-1:-1:-1;;;21923:334:0:o;63034:510::-;41885:6;;-1:-1:-1;;;;;41885:6:0;16160:10;42032:23;42024:68;;;;-1:-1:-1;;;42024:68:0;;;;;;;:::i;:::-;63151:17:::1;63171:20;:9;:18;:20::i;:::-;63151:40;;63202:21;63226:24;:13;:22;:24::i;:::-;63202:48;;63288:1;63271:14;:18;;;63263:55;;;::::0;-1:-1:-1;;;63263:55:0;;17263:2:1;63263:55:0::1;::::0;::::1;17245:21:1::0;17302:2;17282:18;;;17275:30;17341:26;17321:18;;;17314:54;17385:18;;63263:55:0::1;17061:348:1::0;63263:55:0::1;63350:1;63337:10;:14;;;63329:58;;;::::0;-1:-1:-1;;;63329:58:0;;13426:2:1;63329:58:0::1;::::0;::::1;13408:21:1::0;13465:2;13445:18;;;13438:30;13504:33;13484:18;;;13477:61;13555:18;;63329:58:0::1;13224:355:1::0;63329:58:0::1;63411:64;::::0;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;::::1;;::::0;;::::1;::::0;;;63400:8:::1;:75:::0;;-1:-1:-1;;63400:75:0;;;;;::::1;;::::0;;63493:43;;26476:34:1;;;26526:18;;;26519:43;;;;63493::0::1;::::0;26420:18:1;63493:43:0::1;;;;;;;63140:404;;63034:510:::0;;:::o;42712:192::-;41885:6;;-1:-1:-1;;;;;41885:6:0;16160:10;42032:23;42024:68;;;;-1:-1:-1;;;42024:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42801:22:0;::::1;42793:73;;;::::0;-1:-1:-1;;;42793:73:0;;13786:2:1;42793:73:0::1;::::0;::::1;13768:21:1::0;13825:2;13805:18;;;13798:30;13864:34;13844:18;;;13837:62;-1:-1:-1;;;13915:18:1;;;13908:36;13961:19;;42793:73:0::1;13584:402:1::0;42793:73:0::1;42877:19;42887:8;42877:9;:19::i;63552:140::-:0;41885:6;;-1:-1:-1;;;;;41885:6:0;16160:10;42032:23;42024:68;;;;-1:-1:-1;;;42024:68:0;;;;;;;:::i;:::-;63620:9:::1;:20:::0;;;63656:28:::1;::::0;8410:25:1;;;63656:28:0::1;::::0;8398:2:1;8383:18;63656:28:0::1;8264:177:1::0;62418:608:0;41885:6;;-1:-1:-1;;;;;41885:6:0;16160:10;42032:23;42024:68;;;;-1:-1:-1;;;42024:68:0;;;;;;;:::i;:::-;62566:17:::1;62586:20;:9;:18;:20::i;:::-;62566:40;;62617:15;62635:18;:7;:16;:18::i;:::-;62617:36:::0;-1:-1:-1;;;;;;62674:29:0;::::1;62666:67;;;::::0;-1:-1:-1;;;62666:67:0;;13072:2:1;62666:67:0::1;::::0;::::1;13054:21:1::0;13111:2;13091:18;;;13084:30;-1:-1:-1;;;13130:18:1;;;13123:55;13195:18;;62666:67:0::1;12870:349:1::0;62666:67:0::1;62765:1;62752:10;:14;;;:39;;;;;62781:10;62770:21;;:8;:21;;;62752:39;62744:83;;;::::0;-1:-1:-1;;;62744:83:0;;13426:2:1;62744:83:0::1;::::0;::::1;13408:21:1::0;13465:2;13445:18;;;13438:30;13504:33;13484:18;;;13477:61;13555:18;;62744:83:0::1;13224:355:1::0;62744:83:0::1;62854:89;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;;;62854:89:0;::::1;::::0;;;::::1;::::0;;::::1;;::::0;;::::1;::::0;;;;;::::1;::::0;;;;;;62840:11:::1;:103:::0;;-1:-1:-1;;;;;;62840:103:0;;;-1:-1:-1;;;62840:103:0;::::1;;-1:-1:-1::0;;;;62840:103:0::1;-1:-1:-1::0;;;62840:103:0;::::1;;::::0;;62961:57;;7877:51:1;;;7973:18;;;7966:43;8025:18;;;8018:43;;;;62961:57:0::1;::::0;7850:18:1;62961:57:0::1;;;;;;;62555:471;;62418:608:::0;;;:::o;20634:305::-;20736:4;-1:-1:-1;;;;;;20773:40:0;;-1:-1:-1;;;20773:40:0;;:105;;-1:-1:-1;;;;;;;20830:48:0;;-1:-1:-1;;;20830:48:0;20773:105;:158;;;-1:-1:-1;;;;;;;;;;19263:40:0;;;20895:36;19154:157;30514:174;30589:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30589:29:0;-1:-1:-1;;;;;30589:29:0;;;;;;;;:24;;30643:23;30589:24;30643:14;:23::i;:::-;-1:-1:-1;;;;;30634:46:0;;;;;;;;;;;30514:174;;:::o;26826:348::-;26919:4;26621:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26621:16:0;26936:73;;;;-1:-1:-1;;;26936:73:0;;18335:2:1;26936:73:0;;;18317:21:1;18374:2;18354:18;;;18347:30;18413:34;18393:18;;;18386:62;-1:-1:-1;;;18464:18:1;;;18457:42;18516:19;;26936:73:0;18133:408:1;26936:73:0;27020:13;27036:23;27051:7;27036:14;:23::i;:::-;27020:39;;27089:5;-1:-1:-1;;;;;27078:16:0;:7;-1:-1:-1;;;;;27078:16:0;;:51;;;;27122:7;-1:-1:-1;;;;;27098:31:0;:20;27110:7;27098:11;:20::i;:::-;-1:-1:-1;;;;;27098:31:0;;27078:51;:87;;;-1:-1:-1;;;;;;23918:25:0;;;23894:4;23918:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27133:32;27070:96;26826:348;-1:-1:-1;;;;26826:348:0:o;29818:578::-;29977:4;-1:-1:-1;;;;;29950:31:0;:23;29965:7;29950:14;:23::i;:::-;-1:-1:-1;;;;;29950:31:0;;29942:85;;;;-1:-1:-1;;;29942:85:0;;22704:2:1;29942:85:0;;;22686:21:1;22743:2;22723:18;;;22716:30;22782:34;22762:18;;;22755:62;-1:-1:-1;;;22833:18:1;;;22826:39;22882:19;;29942:85:0;22502:405:1;29942:85:0;-1:-1:-1;;;;;30046:16:0;;30038:65;;;;-1:-1:-1;;;30038:65:0;;15313:2:1;30038:65:0;;;15295:21:1;15352:2;15332:18;;;15325:30;15391:34;15371:18;;;15364:62;-1:-1:-1;;;15442:18:1;;;15435:34;15486:19;;30038:65:0;15111:400:1;30038:65:0;30116:39;30137:4;30143:2;30147:7;30116:20;:39::i;:::-;30220:29;30237:1;30241:7;30220:8;:29::i;:::-;-1:-1:-1;;;;;30262:15:0;;;;;;:9;:15;;;;;:20;;30281:1;;30262:15;:20;;30281:1;;30262:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30293:13:0;;;;;;:9;:13;;;;;:18;;30310:1;;30293:13;:18;;30310:1;;30293:18;:::i;:::-;;;;-1:-1:-1;;30322:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30322:21:0;-1:-1:-1;;;;;30322:21:0;;;;;;;;;30361:27;;30322:16;;30361:27;;;;;;;29818:578;;;:::o;9448:317::-;9563:6;9538:21;:31;;9530:73;;;;-1:-1:-1;;;9530:73:0;;17977:2:1;9530:73:0;;;17959:21:1;18016:2;17996:18;;;17989:30;18055:31;18035:18;;;18028:59;18104:18;;9530:73:0;17775:353:1;9530:73:0;9617:12;9635:9;-1:-1:-1;;;;;9635:14:0;9657:6;9635:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9616:52;;;9687:7;9679:78;;;;-1:-1:-1;;;9679:78:0;;16433:2:1;9679:78:0;;;16415:21:1;16472:2;16452:18;;;16445:30;16511:34;16491:18;;;16484:62;16582:28;16562:18;;;16555:56;16628:19;;9679:78:0;16231:422:1;47423:231:0;47501:7;47522:17;47541:18;47563:27;47574:4;47580:9;47563:10;:27::i;:::-;47521:69;;;;47601:18;47613:5;47601:11;:18::i;:::-;-1:-1:-1;47637:9:0;47423:231;-1:-1:-1;;;47423:231:0:o;27516:110::-;27592:26;27602:2;27606:7;27592:26;;;;;;;;;;;;:9;:26::i;:::-;27516:110;;:::o;42912:173::-;42987:6;;;-1:-1:-1;;;;;43004:17:0;;;-1:-1:-1;;;;;;43004:17:0;;;;;;;43037:40;;42987:6;;;43004:17;42987:6;;43037:40;;42968:16;;43037:40;42957:128;42912:173;:::o;25904:315::-;26061:28;26071:4;26077:2;26081:7;26061:9;:28::i;:::-;26108:48;26131:4;26137:2;26141:7;26150:5;26108:22;:48::i;:::-;26100:111;;;;-1:-1:-1;;;26100:111:0;;;;;;;:::i;66949:108::-;67009:13;67042:7;67035:14;;;;;:::i;16601:723::-;16657:13;16878:10;16874:53;;-1:-1:-1;;16905:10:0;;;;;;;;;;;;-1:-1:-1;;;16905:10:0;;;;;16601:723::o;16874:53::-;16952:5;16937:12;16993:78;17000:9;;16993:78;;17026:8;;;;:::i;:::-;;-1:-1:-1;17049:10:0;;-1:-1:-1;17057:2:0;17049:10;;:::i;:::-;;;16993:78;;;17081:19;17113:6;17103:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17103:17:0;;17081:39;;17131:154;17138:10;;17131:154;;17165:11;17175:1;17165:11;;:::i;:::-;;-1:-1:-1;17234:10:0;17242:2;17234:5;:10;:::i;:::-;17221:24;;:2;:24;:::i;:::-;17208:39;;17191:6;17198;17191:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17191:56:0;;;;;;;;-1:-1:-1;17262:11:0;17271:2;17262:11;;:::i;:::-;;;17131:154;;55195:190;55251:6;55287:16;55278:25;;;55270:76;;;;-1:-1:-1;;;55270:76:0;;24757:2:1;55270:76:0;;;24739:21:1;24796:2;24776:18;;;24769:30;24835:34;24815:18;;;24808:62;-1:-1:-1;;;24886:18:1;;;24879:36;24932:19;;55270:76:0;24555:402:1;55270:76:0;-1:-1:-1;55371:5:0;55195:190::o;36346:589::-;-1:-1:-1;;;;;36552:18:0;;36548:187;;36587:40;36619:7;37762:10;:17;;37735:24;;;;:15;:24;;;;;:44;;;37790:24;;;;;;;;;;;;37658:164;36587:40;36548:187;;;36657:2;-1:-1:-1;;;;;36649:10:0;:4;-1:-1:-1;;;;;36649:10:0;;36645:90;;36676:47;36709:4;36715:7;36676:32;:47::i;:::-;-1:-1:-1;;;;;36749:16:0;;36745:183;;36782:45;36819:7;36782:36;:45::i;36745:183::-;36855:4;-1:-1:-1;;;;;36849:10:0;:2;-1:-1:-1;;;;;36849:10:0;;36845:83;;36876:40;36904:2;36908:7;36876:27;:40::i;45313:1308::-;45394:7;45403:12;45628:9;:16;45648:2;45628:22;45624:990;;;45924:4;45909:20;;45903:27;45974:4;45959:20;;45953:27;46032:4;46017:20;;46011:27;45667:9;46003:36;46075:25;46086:4;46003:36;45903:27;45953;46075:10;:25::i;:::-;46068:32;;;;;;;;;45624:990;46122:9;:16;46142:2;46122:22;46118:496;;;46397:4;46382:20;;46376:27;46448:4;46433:20;;46427:27;46490:23;46501:4;46376:27;46427;46490:10;:23::i;:::-;46483:30;;;;;;;;46118:496;-1:-1:-1;46562:1:0;;-1:-1:-1;46566:35:0;46118:496;45313:1308;;;;;:::o;43584:643::-;43662:20;43653:5;:29;;;;;;;;:::i;:::-;;43649:571;;;43584:643;:::o;43649:571::-;43760:29;43751:5;:38;;;;;;;;:::i;:::-;;43747:473;;;43806:34;;-1:-1:-1;;;43806:34:0;;10815:2:1;43806:34:0;;;10797:21:1;10854:2;10834:18;;;10827:30;10893:26;10873:18;;;10866:54;10937:18;;43806:34:0;10613:348:1;43747:473:0;43871:35;43862:5;:44;;;;;;;;:::i;:::-;;43858:362;;;43923:41;;-1:-1:-1;;;43923:41:0;;11881:2:1;43923:41:0;;;11863:21:1;11920:2;11900:18;;;11893:30;11959:33;11939:18;;;11932:61;12010:18;;43923:41:0;11679:355:1;43858:362:0;43995:30;43986:5;:39;;;;;;;;:::i;:::-;;43982:238;;;44042:44;;-1:-1:-1;;;44042:44:0;;16860:2:1;44042:44:0;;;16842:21:1;16899:2;16879:18;;;16872:30;16938:34;16918:18;;;16911:62;-1:-1:-1;;;16989:18:1;;;16982:32;17031:19;;44042:44:0;16658:398:1;43982:238:0;44117:30;44108:5;:39;;;;;;;;:::i;:::-;;44104:116;;;44164:44;;-1:-1:-1;;;44164:44:0;;20805:2:1;44164:44:0;;;20787:21:1;20844:2;20824:18;;;20817:30;20883:34;20863:18;;;20856:62;-1:-1:-1;;;20934:18:1;;;20927:32;20976:19;;44164:44:0;20603:398:1;27853:321:0;27983:18;27989:2;27993:7;27983:5;:18::i;:::-;28034:54;28065:1;28069:2;28073:7;28082:5;28034:22;:54::i;:::-;28012:154;;;;-1:-1:-1;;;28012:154:0;;;;;;;:::i;31253:799::-;31408:4;-1:-1:-1;;;;;31429:13:0;;8449:20;8497:8;31425:620;;31465:72;;-1:-1:-1;;;31465:72:0;;-1:-1:-1;;;;;31465:36:0;;;;;:72;;16160:10;;31516:4;;31522:7;;31531:5;;31465:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31465:72:0;;;;;;;;-1:-1:-1;;31465:72:0;;;;;;;;;;;;:::i;:::-;;;31461:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31707:13:0;;31703:272;;31750:60;;-1:-1:-1;;;31750:60:0;;;;;;;:::i;31703:272::-;31925:6;31919:13;31910:6;31906:2;31902:15;31895:38;31461:529;-1:-1:-1;;;;;;31588:51:0;-1:-1:-1;;;31588:51:0;;-1:-1:-1;31581:58:0;;31425:620;-1:-1:-1;32029:4:0;31253:799;;;;;;:::o;38449:988::-;38715:22;38765:1;38740:22;38757:4;38740:16;:22::i;:::-;:26;;;;:::i;:::-;38777:18;38798:26;;;:17;:26;;;;;;38715:51;;-1:-1:-1;38931:28:0;;;38927:328;;-1:-1:-1;;;;;38998:18:0;;38976:19;38998:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39049:30;;;;;;:44;;;39166:30;;:17;:30;;;;;:43;;;38927:328;-1:-1:-1;39351:26:0;;;;:17;:26;;;;;;;;39344:33;;;-1:-1:-1;;;;;39395:18:0;;;;;:12;:18;;;;;:34;;;;;;;39388:41;38449:988::o;39732:1079::-;40010:10;:17;39985:22;;40010:21;;40030:1;;40010:21;:::i;:::-;40042:18;40063:24;;;:15;:24;;;;;;40436:10;:26;;39985:46;;-1:-1:-1;40063:24:0;;39985:46;;40436:26;;;;;;:::i;:::-;;;;;;;;;40414:48;;40500:11;40475:10;40486;40475:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40580:28;;;:15;:28;;;;;;;:41;;;40752:24;;;;;40745:31;40787:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39803:1008;;;39732:1079;:::o;37236:221::-;37321:14;37338:20;37355:2;37338:16;:20::i;:::-;-1:-1:-1;;;;;37369:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37414:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37236:221:0:o;48922:1632::-;49053:7;;49987:66;49974:79;;49970:163;;;-1:-1:-1;50086:1:0;;-1:-1:-1;50090:30:0;50070:51;;49970:163;50147:1;:7;;50152:2;50147:7;;:18;;;;;50158:1;:7;;50163:2;50158:7;;50147:18;50143:102;;;-1:-1:-1;50198:1:0;;-1:-1:-1;50202:30:0;50182:51;;50143:102;50359:24;;;50342:14;50359:24;;;;;;;;;9023:25:1;;;9096:4;9084:17;;9064:18;;;9057:45;;;;9118:18;;;9111:34;;;9161:18;;;9154:34;;;50359:24:0;;8995:19:1;;50359:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50359:24:0;;-1:-1:-1;;50359:24:0;;;-1:-1:-1;;;;;;;50398:20:0;;50394:103;;50451:1;50455:29;50435:50;;;;;;;50394:103;50517:6;-1:-1:-1;50525:20:0;;-1:-1:-1;48922:1632:0;;;;;;;;:::o;47917:391::-;48031:7;;-1:-1:-1;;;;;48132:75:0;;48234:3;48230:12;;;48244:2;48226:21;48275:25;48286:4;48226:21;48295:1;48132:75;48275:10;:25::i;:::-;48268:32;;;;;;47917:391;;;;;;:::o;28510:382::-;-1:-1:-1;;;;;28590:16:0;;28582:61;;;;-1:-1:-1;;;28582:61:0;;21208:2:1;28582:61:0;;;21190:21:1;;;21227:18;;;21220:30;21286:34;21266:18;;;21259:62;21338:18;;28582:61:0;21006:356:1;28582:61:0;26597:4;26621:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26621:16:0;:30;28654:58;;;;-1:-1:-1;;;28654:58:0;;14193:2:1;28654:58:0;;;14175:21:1;14232:2;14212:18;;;14205:30;14271;14251:18;;;14244:58;14319:18;;28654:58:0;13991:352:1;28654:58:0;28725:45;28754:1;28758:2;28762:7;28725:20;:45::i;:::-;-1:-1:-1;;;;;28783:13:0;;;;;;:9;:13;;;;;:18;;28800:1;;28783:13;:18;;28800:1;;28783:18;:::i;:::-;;;;-1:-1:-1;;28812:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28812:21:0;-1:-1:-1;;;;;28812:21:0;;;;;;;;28851:33;;28812:16;;;28851:33;;28812:16;;28851:33;28510:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:322::-;2976:6;2984;2992;3045:2;3033:9;3024:7;3020:23;3016:32;3013:52;;;3061:1;3058;3051:12;3013:52;3084:29;3103:9;3084:29;:::i;:::-;3074:39;3160:2;3145:18;;3132:32;;-1:-1:-1;3211:2:1;3196:18;;;3183:32;;2899:322;-1:-1:-1;;;2899:322:1:o;3226:245::-;3284:6;3337:2;3325:9;3316:7;3312:23;3308:32;3305:52;;;3353:1;3350;3343:12;3305:52;3392:9;3379:23;3411:30;3435:5;3411:30;:::i;3476:249::-;3545:6;3598:2;3586:9;3577:7;3573:23;3569:32;3566:52;;;3614:1;3611;3604:12;3566:52;3646:9;3640:16;3665:30;3689:5;3665:30;:::i;3730:450::-;3799:6;3852:2;3840:9;3831:7;3827:23;3823:32;3820:52;;;3868:1;3865;3858:12;3820:52;3908:9;3895:23;3941:18;3933:6;3930:30;3927:50;;;3973:1;3970;3963:12;3927:50;3996:22;;4049:4;4041:13;;4037:27;-1:-1:-1;4027:55:1;;4078:1;4075;4068:12;4027:55;4101:73;4166:7;4161:2;4148:16;4143:2;4139;4135:11;4101:73;:::i;4185:180::-;4244:6;4297:2;4285:9;4276:7;4272:23;4268:32;4265:52;;;4313:1;4310;4303:12;4265:52;-1:-1:-1;4336:23:1;;4185:180;-1:-1:-1;4185:180:1:o;4370:248::-;4438:6;4446;4499:2;4487:9;4478:7;4474:23;4470:32;4467:52;;;4515:1;4512;4505:12;4467:52;-1:-1:-1;;4538:23:1;;;4608:2;4593:18;;;4580:32;;-1:-1:-1;4370:248:1:o;4623:727::-;4711:6;4719;4727;4735;4788:2;4776:9;4767:7;4763:23;4759:32;4756:52;;;4804:1;4801;4794:12;4756:52;4840:9;4827:23;4817:33;;4897:2;4886:9;4882:18;4869:32;4859:42;;4952:2;4941:9;4937:18;4924:32;4975:18;5016:2;5008:6;5005:14;5002:34;;;5032:1;5029;5022:12;5002:34;5070:6;5059:9;5055:22;5045:32;;5115:7;5108:4;5104:2;5100:13;5096:27;5086:55;;5137:1;5134;5127:12;5086:55;5177:2;5164:16;5203:2;5195:6;5192:14;5189:34;;;5219:1;5216;5209:12;5189:34;5264:7;5259:2;5250:6;5246:2;5242:15;5238:24;5235:37;5232:57;;;5285:1;5282;5275:12;5232:57;4623:727;;;;-1:-1:-1;;5316:2:1;5308:11;;-1:-1:-1;;;4623:727:1:o;5355:257::-;5396:3;5434:5;5428:12;5461:6;5456:3;5449:19;5477:63;5533:6;5526:4;5521:3;5517:14;5510:4;5503:5;5499:16;5477:63;:::i;:::-;5594:2;5573:15;-1:-1:-1;;5569:29:1;5560:39;;;;5601:4;5556:50;;5355:257;-1:-1:-1;;5355:257:1:o;5617:470::-;5796:3;5834:6;5828:13;5850:53;5896:6;5891:3;5884:4;5876:6;5872:17;5850:53;:::i;:::-;5966:13;;5925:16;;;;5988:57;5966:13;5925:16;6022:4;6010:17;;5988:57;:::i;:::-;6061:20;;5617:470;-1:-1:-1;;;;5617:470:1:o;6907:488::-;-1:-1:-1;;;;;7176:15:1;;;7158:34;;7228:15;;7223:2;7208:18;;7201:43;7275:2;7260:18;;7253:34;;;7323:3;7318:2;7303:18;;7296:31;;;7101:4;;7344:45;;7369:19;;7361:6;7344:45;:::i;:::-;7336:53;6907:488;-1:-1:-1;;;;;;6907:488:1:o;9199:219::-;9348:2;9337:9;9330:21;9311:4;9368:44;9408:2;9397:9;9393:18;9385:6;9368:44;:::i;9423:1185::-;9532:4;9561:2;9590;9579:9;9572:21;9613:1;9646:6;9640:13;9676:3;9698:1;9726:9;9722:2;9718:18;9708:28;;9786:2;9775:9;9771:18;9808;9798:61;;9852:4;9844:6;9840:17;9830:27;;9798:61;9905:2;9897:6;9894:14;9874:18;9871:38;9868:165;;;-1:-1:-1;;;9932:33:1;;9988:4;9985:1;9978:15;10018:4;9939:3;10006:17;9868:165;10088:18;;;26785:19;;;26837:4;26828:14;10131:18;10158:100;;;;10272:1;10267:315;;;;10124:458;;10158:100;-1:-1:-1;;10191:24:1;;10179:37;;10236:12;;;;-1:-1:-1;10158:100:1;;10267:315;26646:1;26639:14;;;26683:4;26670:18;;10362:1;10376:165;10390:6;10387:1;10384:13;10376:165;;;10468:14;;10455:11;;;10448:35;10511:16;;;;10405:10;;10376:165;;;10561:11;;;-1:-1:-1;;10124:458:1;-1:-1:-1;10599:3:1;;9423:1185;-1:-1:-1;;;;;;;;;9423:1185:1:o;12451:414::-;12653:2;12635:21;;;12692:2;12672:18;;;12665:30;12731:34;12726:2;12711:18;;12704:62;-1:-1:-1;;;12797:2:1;12782:18;;12775:48;12855:3;12840:19;;12451:414::o;17414:356::-;17616:2;17598:21;;;17635:18;;;17628:30;17694:34;17689:2;17674:18;;17667:62;17761:2;17746:18;;17414:356::o;20200:398::-;20402:2;20384:21;;;20441:2;20421:18;;;20414:30;20480:34;20475:2;20460:18;;20453:62;-1:-1:-1;;;20546:2:1;20531:18;;20524:32;20588:3;20573:19;;20200:398::o;21780:356::-;21982:2;21964:21;;;22001:18;;;21994:30;22060:34;22055:2;22040:18;;22033:62;22127:2;22112:18;;21780:356::o;24137:413::-;24339:2;24321:21;;;24378:2;24358:18;;;24351:30;24417:34;24412:2;24397:18;;24390:62;-1:-1:-1;;;24483:2:1;24468:18;;24461:47;24540:3;24525:19;;24137:413::o;26853:128::-;26893:3;26924:1;26920:6;26917:1;26914:13;26911:39;;;26930:18;;:::i;:::-;-1:-1:-1;26966:9:1;;26853:128::o;26986:120::-;27026:1;27052;27042:35;;27057:18;;:::i;:::-;-1:-1:-1;27091:9:1;;26986:120::o;27111:168::-;27151:7;27217:1;27213;27209:6;27205:14;27202:1;27199:21;27194:1;27187:9;27180:17;27176:45;27173:71;;;27224:18;;:::i;:::-;-1:-1:-1;27264:9:1;;27111:168::o;27284:125::-;27324:4;27352:1;27349;27346:8;27343:34;;;27357:18;;:::i;:::-;-1:-1:-1;27394:9:1;;27284:125::o;27414:258::-;27486:1;27496:113;27510:6;27507:1;27504:13;27496:113;;;27586:11;;;27580:18;27567:11;;;27560:39;27532:2;27525:10;27496:113;;;27627:6;27624:1;27621:13;27618:48;;;-1:-1:-1;;27662:1:1;27644:16;;27637:27;27414:258::o;27677:380::-;27756:1;27752:12;;;;27799;;;27820:61;;27874:4;27866:6;27862:17;27852:27;;27820:61;27927:2;27919:6;27916:14;27896:18;27893:38;27890:161;;;27973:10;27968:3;27964:20;27961:1;27954:31;28008:4;28005:1;27998:15;28036:4;28033:1;28026:15;27890:161;;27677:380;;;:::o;28062:135::-;28101:3;-1:-1:-1;;28122:17:1;;28119:43;;;28142:18;;:::i;:::-;-1:-1:-1;28189:1:1;28178:13;;28062:135::o;28202:112::-;28234:1;28260;28250:35;;28265:18;;:::i;:::-;-1:-1:-1;28299:9:1;;28202:112::o;28319:127::-;28380:10;28375:3;28371:20;28368:1;28361:31;28411:4;28408:1;28401:15;28435:4;28432:1;28425:15;28451:127;28512:10;28507:3;28503:20;28500:1;28493:31;28543:4;28540:1;28533:15;28567:4;28564:1;28557:15;28583:127;28644:10;28639:3;28635:20;28632:1;28625:31;28675:4;28672:1;28665:15;28699:4;28696:1;28689:15;28715:127;28776:10;28771:3;28767:20;28764:1;28757:31;28807:4;28804:1;28797:15;28831:4;28828:1;28821:15;28847:127;28908:10;28903:3;28899:20;28896:1;28889:31;28939:4;28936:1;28929:15;28963:4;28960:1;28953:15;28979:127;29040:10;29035:3;29031:20;29028:1;29021:31;29071:4;29068:1;29061:15;29095:4;29092:1;29085:15;29111:131;-1:-1:-1;;;;;;29185:32:1;;29175:43;;29165:71;;29232:1;29229;29222:12

Swarm Source

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