ETH Price: $3,045.64 (+4.47%)

Token

GAMENFT1024 (1024)
 

Overview

Max Total Supply

1,019 1024

Holders

252

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
4 1024
0x2fd43a4faa3f982fed12a037a96903af0801b35d
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:
_1024NFTGame

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-08-06
*/

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


// OpenZeppelin Contracts v4.4.1 (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/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (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/IERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (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);

    /**
     * @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/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.7.0) (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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

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


// OpenZeppelin Contracts v4.4.1 (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/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: contracts/NFT_1024.sol


pragma solidity ^0.8.7;





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

  enum Step {
        Before,
        WhitelistSale,
        PublicSale,
        SoldOut
    }

  string baseURI;
  Step public sellingStep;
  bytes32 public merkleRoot;
  string public baseExtension = ".json";
  uint256 public cost = 0 ether;
  uint256 public costMerge = 0.042 ether;
  uint256 public remainedMintAmount = 1032;
  uint256 public maxMintAmount = 4;
  uint256 public maxTokenId = 0;
  uint256 public claimNum = 0;
  uint256 public saleStartTime=1659817260;
  bool public paused = false;
  uint256 public JackpotBalance = 0;


  mapping(address => uint) public amountNFTsperWalletWhitelistSale;
  mapping(uint256 => uint256) tokenTypes;

  constructor(
    bytes32 _merkleRoot,
    string memory _initBaseURI
  ) ERC721("GAMENFT1024", "1024") {
    merkleRoot = _merkleRoot;
    setBaseURI(_initBaseURI);
    mintSpecials(8,8);
  }

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

  // public
  function mint(uint256 _mintAmount) public payable callerIsUser {
    require(sellingStep == Step.PublicSale, "Public sale is not activated");
    require(remainedMintAmount >= _mintAmount, "Exceed mint amount");
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);

    if (msg.sender != owner()) {
      require(msg.value >= cost * _mintAmount);
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, maxTokenId + i);
      tokenTypes[maxTokenId + i] = 1;
    }
    maxTokenId += _mintAmount;
    remainedMintAmount -= _mintAmount;
  }

  //whitelist mint
  function WhiteListmint(uint256 _mintAmount, bytes32[] calldata _proof) public payable callerIsUser {
    require(currentTime() >= saleStartTime, "Whitelist Sale has not started yet");
    require(sellingStep == Step.WhitelistSale, "Whitelist sale is not activated");
    require(remainedMintAmount >= _mintAmount, "Exceed mint amount");
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(MerkleProof.verify(_proof, merkleRoot, leaf(msg.sender)), "Not whitelisted");
    require(amountNFTsperWalletWhitelistSale[msg.sender] + _mintAmount <= 4, "You can only get 10 NFT on the Whitelist Sale");

    if (msg.sender != owner()) {
      require(msg.value >= cost * _mintAmount);
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, maxTokenId + i);
      tokenTypes[maxTokenId + i] = 1;
    }
    amountNFTsperWalletWhitelistSale[msg.sender] += _mintAmount;
    maxTokenId += _mintAmount;
    remainedMintAmount -= _mintAmount;
  }


  // merge nfts
  function merge(uint256 tokenId1, uint256 tokenId2) public payable callerIsUser {
    require(tokenTypes[tokenId1] == tokenTypes[tokenId2], "Can not merge with different images");
    require(ownerOf(tokenId1) == msg.sender, "Not owner");
    require(ownerOf(tokenId2) == msg.sender, "Not owner");
    require(tokenTypes[tokenId2] != 0, "Not minted");
    require(!paused);

    if (msg.sender != owner()) {
      require(msg.value >= costMerge);
    }
    
    tokenTypes[tokenId2] = 2 * tokenTypes[tokenId2];

    _burn(tokenId1);
    tokenTypes[tokenId1] = 0;

    
  }

  //mint specials
  function mintSpecials(uint256 _mintAmount, uint256 _typenumber) public onlyOwner {
    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, maxTokenId + i);
      tokenTypes[maxTokenId + i] = _typenumber;
    }
    maxTokenId += _mintAmount;
    remainedMintAmount -= _mintAmount;
  }


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

  function setStep(uint _step) external onlyOwner {
      sellingStep = Step(_step);
    }
  

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    string memory currentBaseURI = _baseURI();
    
    uint256 tokenType = tokenTypes[tokenId];
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenType.toString(), baseExtension))
        : "";

  }


  //return token type
    function GetTokenType(uint256 tokenId)
        public
        view
        virtual
        returns (uint256)
    {
        require(
        _exists(tokenId),
        "ERC721Metadata: URI query for nonexistent token"
        );
        return tokenTypes[tokenId];
    }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

   function setCostMerge(uint256 _newCost) public onlyOwner {
    costMerge = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }
  
  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

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

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }

//Whitelist
  function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
      merkleRoot = _merkleRoot;
  }

  function isWhiteListed(address _account, bytes32[] calldata _proof) internal view returns(bool) {
      return _verify(leaf(_account), _proof);
  }

  function leaf(address _account) internal pure returns(bytes32) {
      return keccak256(abi.encodePacked(_account));
  }

  function _verify(bytes32 _leaf, bytes32[] memory _proof) internal view returns(bool) {
      return MerkleProof.verify(_proof, merkleRoot, _leaf);
  }

  modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

  function currentTime() internal view returns(uint256) {
        return block.timestamp;
    }

  function GetTokensOfType(uint256 tokenType)
        public
        view
        virtual
        returns (uint256[] memory)
    {
        uint256 tokenCount = 0;
        for (uint256 i = 1; i <= maxTokenId; i++) {
            if (tokenTypes[i] == tokenType) {
                tokenCount++;
            }
        }
        uint256[] memory tokenIds = new uint256[](tokenCount);
        uint256 j = 0;
        for (uint256 i = 1; i <= maxTokenId; i++) {
            if (tokenTypes[i] == tokenType) {
                tokenIds[j] = i;
                j++;
            }
        }
        return tokenIds;
    }

  function ReleaseJackpot() public payable {

    require(claimNum < 1, "Jackpot Already Claimed!");
    //get all tokens of type 1024
    uint256[] memory tokens = GetTokensOfType(1024);

    //require that there is at least one token of type 1024
    require(tokens.length > 0, "No Tokens of Type 1024");

    //get owner of each token
    address[] memory owners = new address[](tokens.length);
    for (uint256 i = 0; i < tokens.length; i++) {
      owners[i] = ownerOf(tokens[i]);
    }
    //save owner[0] to variable
    address ownerWinner = owners[0];

    //require ownerWinner to be same as message sender
    require(ownerWinner == msg.sender, "Not the winner");

    getBalanceForwithdraw();

    //if owners array is not empty
    if (owners.length > 0) {
      (bool hs, ) = payable(ownerWinner).call{value: JackpotBalance}("");
      require(hs);
      claimNum +=1;
    }
  
  }

  //function to caluclate the balance for the jackpot of 66% and the rest
  function getBalanceForwithdraw() internal returns (uint256) {
    uint256 balance = address(this).balance;
    
    JackpotBalance = JackpotBalance  +  (balance * 66 / 100);

    //get other balance
    uint256 otherBalance = balance - JackpotBalance;

    return otherBalance;

  }


  function withdraw() public payable onlyOwner {

    uint256 wbalance = getBalanceForwithdraw();
    require(wbalance > 0, "No Balance to Withdraw");
    
    (bool os, ) = payable(owner()).call{value: wbalance}("");
    require(os);
    
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"GetTokenType","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenType","type":"uint256"}],"name":"GetTokensOfType","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"JackpotBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ReleaseJackpot","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"WhiteListmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountNFTsperWalletWhitelistSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costMerge","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId1","type":"uint256"},{"internalType":"uint256","name":"tokenId2","type":"uint256"}],"name":"merge","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"uint256","name":"_typenumber","type":"uint256"}],"name":"mintSpecials","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remainedMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellingStep","outputs":[{"internalType":"enum _1024NFTGame.Step","name":"","type":"uint8"}],"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCostMerge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_step","type":"uint256"}],"name":"setStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600e91906200093f565b506000600f819055669536c7089100006010556104086011556004601255601381905560148190556362eecd2c6015556016805460ff191690556017553480156200007257600080fd5b5060405162003d9038038062003d908339810160408190526200009591620009e5565b604080518082018252600b81526a11d053515391950c4c0c8d60aa1b6020808301918252835180850190945260048452630c4c0c8d60e21b908401528151919291620000e4916000916200093f565b508051620000fa9060019060208401906200093f565b50505062000117620001116200013c60201b60201c565b62000140565b600d829055620001278162000192565b62000134600880620001b5565b505062000c4e565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200019c62000259565b8051620001b190600b9060208401906200093f565b5050565b620001bf62000259565b60015b8281116200022057620001e53382601354620001df919062000b33565b620002bb565b816019600083601354620001fa919062000b33565b815260208101919091526040016000205580620002178162000bd8565b915050620001c2565b50816013600082825462000235919062000b33565b92505081905550816011600082825462000250919062000b4e565b90915550505050565b600a546001600160a01b03163314620002b95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b565b620001b1828260405180602001604052806000815250620002dd60201b60201c565b620002e9838362000355565b620002f86000848484620004ab565b620003505760405162461bcd60e51b8152602060048201526032602482015260008051602062003d7083398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620002b0565b505050565b6001600160a01b038216620003ad5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620002b0565b6000818152600260205260409020546001600160a01b031615620004145760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620002b0565b620004226000838362000614565b6001600160a01b03821660009081526003602052604081208054600192906200044d90849062000b33565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620004cc846001600160a01b0316620006f060201b62001c211760201c565b156200060857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200050690339089908890889060040162000add565b602060405180830381600087803b1580156200052157600080fd5b505af192505050801562000554575060408051601f3d908101601f19168201909252620005519181019062000aaa565b60015b620005ed573d80801562000585576040519150601f19603f3d011682016040523d82523d6000602084013e6200058a565b606091505b508051620005e55760405162461bcd60e51b8152602060048201526032602482015260008051602062003d7083398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620002b0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506200060c565b5060015b949350505050565b6200062c8383836200035060201b62000a8c1760201c565b6001600160a01b0383166200068a576200068481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b620006b0565b816001600160a01b0316836001600160a01b031614620006b057620006b08382620006ff565b6001600160a01b038216620006ca576200035081620007ac565b826001600160a01b0316826001600160a01b031614620003505762000350828262000866565b6001600160a01b03163b151590565b600060016200071984620008b760201b62000ea31760201c565b62000725919062000b4e565b60008381526007602052604090205490915080821462000779576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090620007c09060019062000b4e565b60008381526009602052604081205460088054939450909284908110620007eb57620007eb62000c22565b9060005260206000200154905080600883815481106200080f576200080f62000c22565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806200084a576200084a62000c0c565b6001900381819060005260206000200160009055905550505050565b60006200087e83620008b760201b62000ea31760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b038216620009235760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401620002b0565b506001600160a01b031660009081526003602052604090205490565b8280546200094d9062000b9b565b90600052602060002090601f016020900481019282620009715760008555620009bc565b82601f106200098c57805160ff1916838001178555620009bc565b82800160010185558215620009bc579182015b82811115620009bc5782518255916020019190600101906200099f565b50620009ca929150620009ce565b5090565b5b80821115620009ca5760008155600101620009cf565b60008060408385031215620009f957600080fd5b825160208401519092506001600160401b038082111562000a1957600080fd5b818501915085601f83011262000a2e57600080fd5b81518181111562000a435762000a4362000c38565b604051601f8201601f19908116603f0116810190838211818310171562000a6e5762000a6e62000c38565b8160405282815288602084870101111562000a8857600080fd5b62000a9b83602083016020880162000b68565b80955050505050509250929050565b60006020828403121562000abd57600080fd5b81516001600160e01b03198116811462000ad657600080fd5b9392505050565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000b1c8160a085016020870162000b68565b601f01601f19169190910160a00195945050505050565b6000821982111562000b495762000b4962000bf6565b500190565b60008282101562000b635762000b6362000bf6565b500390565b60005b8381101562000b8557818101518382015260200162000b6b565b8381111562000b95576000848401525b50505050565b600181811c9082168062000bb057607f821691505b6020821081141562000bd257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000bef5762000bef62000bf6565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6131128062000c5e6000396000f3fe6080604052600436106102ae5760003560e01c80636352211e11610175578063b88d4fde116100dc578063d6d1c6cb11610095578063e985e9c51161006f578063e985e9c5146107ce578063f2fde38b14610817578063f8dcbddb14610837578063fa58b7d51461085757600080fd5b8063d6d1c6cb14610790578063da3ef23f14610798578063e35f5349146107b857600080fd5b8063b88d4fde146106ee578063c66828621461070e578063c6f4940914610723578063c87b56dd14610736578063cbccefb214610756578063d1c2babb1461077d57600080fd5b806391ba317a1161012e57806391ba317a1461064357806395d89b411461065957806399d138001461066e578063a0712d681461069b578063a19ccd42146106ae578063a22cb465146106ce57600080fd5b80636352211e1461059057806370a08231146105b0578063715018a6146105d05780637cb64759146105e55780637f00c7a6146106055780638da5cb5b1461062557600080fd5b80632f745c59116102195780634f6ccce7116101d25780634f6ccce7146104ea57806350a969fc1461050a5780635448c8d61461052057806355f804b31461053657806355f934e0146105565780635c975abb1461057657600080fd5b80632f745c591461043f5780633ccfd60b1461045f57806342842e0e14610467578063438b63001461048757806344a0d68a146104b4578063466de398146104d457600080fd5b806318160ddd1161026b57806318160ddd146103a85780631cbaee2d146103bd578063239c70ae146103d357806323b872dd146103e957806325166ce7146104095780632eb4a7ab1461042957600080fd5b806301ffc9a7146102b357806302329a29146102e857806306fdde031461030a578063081812fc1461032c578063095ea7b31461036457806313faede614610384575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612b54565b610877565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b50610308610303366004612b20565b6108a2565b005b34801561031657600080fd5b5061031f6108bd565b6040516102df9190612e11565b34801561033857600080fd5b5061034c610347366004612b3b565b61094f565b6040516001600160a01b0390911681526020016102df565b34801561037057600080fd5b5061030861037f366004612af6565b610976565b34801561039057600080fd5b5061039a600f5481565b6040519081526020016102df565b3480156103b457600080fd5b5060085461039a565b3480156103c957600080fd5b5061039a60155481565b3480156103df57600080fd5b5061039a60125481565b3480156103f557600080fd5b50610308610404366004612a14565b610a91565b34801561041557600080fd5b50610308610424366004612b3b565b610ac2565b34801561043557600080fd5b5061039a600d5481565b34801561044b57600080fd5b5061039a61045a366004612af6565b610acf565b610308610b65565b34801561047357600080fd5b50610308610482366004612a14565b610c37565b34801561049357600080fd5b506104a76104a23660046129c6565b610c52565b6040516102df9190612da5565b3480156104c057600080fd5b506103086104cf366004612b3b565b610cf4565b3480156104e057600080fd5b5061039a60175481565b3480156104f657600080fd5b5061039a610505366004612b3b565b610d01565b34801561051657600080fd5b5061039a60145481565b34801561052c57600080fd5b5061039a60105481565b34801561054257600080fd5b50610308610551366004612b8e565b610d94565b34801561056257600080fd5b50610308610571366004612c56565b610daf565b34801561058257600080fd5b506016546102d39060ff1681565b34801561059c57600080fd5b5061034c6105ab366004612b3b565b610e43565b3480156105bc57600080fd5b5061039a6105cb3660046129c6565b610ea3565b3480156105dc57600080fd5b50610308610f29565b3480156105f157600080fd5b50610308610600366004612b3b565b610f3d565b34801561061157600080fd5b50610308610620366004612b3b565b610f4a565b34801561063157600080fd5b50600a546001600160a01b031661034c565b34801561064f57600080fd5b5061039a60135481565b34801561066557600080fd5b5061031f610f57565b34801561067a57600080fd5b5061039a6106893660046129c6565b60186020526000908152604090205481565b6103086106a9366004612b3b565b610f66565b3480156106ba57600080fd5b5061039a6106c9366004612b3b565b611101565b3480156106da57600080fd5b506103086106e9366004612acc565b611148565b3480156106fa57600080fd5b50610308610709366004612a50565b611153565b34801561071a57600080fd5b5061031f61118b565b610308610731366004612bd7565b611219565b34801561074257600080fd5b5061031f610751366004612b3b565b611571565b34801561076257600080fd5b50600c546107709060ff1681565b6040516102df9190612de9565b61030861078b366004612c56565b611616565b6103086117f9565b3480156107a457600080fd5b506103086107b3366004612b8e565b611a55565b3480156107c457600080fd5b5061039a60115481565b3480156107da57600080fd5b506102d36107e93660046129e1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561082357600080fd5b506103086108323660046129c6565b611a70565b34801561084357600080fd5b50610308610852366004612b3b565b611ae9565b34801561086357600080fd5b506104a7610872366004612b3b565b611b27565b60006001600160e01b0319821663780e9d6360e01b148061089c575061089c82611c30565b92915050565b6108aa611c80565b6016805460ff1916911515919091179055565b6060600080546108cc90612fd8565b80601f01602080910402602001604051908101604052809291908181526020018280546108f890612fd8565b80156109455780601f1061091a57610100808354040283529160200191610945565b820191906000526020600020905b81548152906001019060200180831161092857829003601f168201915b5050505050905090565b600061095a82611cda565b506000908152600460205260409020546001600160a01b031690565b600061098182610e43565b9050806001600160a01b0316836001600160a01b031614156109f45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610a105750610a1081336107e9565b610a825760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016109eb565b610a8c8383611d39565b505050565b610a9b3382611da7565b610ab75760405162461bcd60e51b81526004016109eb90612efc565b610a8c838383611e25565b610aca611c80565b601055565b6000610ada83610ea3565b8210610b3c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109eb565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b6d611c80565b6000610b77611fcc565b905060008111610bc25760405162461bcd60e51b81526020600482015260166024820152754e6f2042616c616e636520746f20576974686472617760501b60448201526064016109eb565b6000610bd6600a546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d8060008114610c20576040519150601f19603f3d011682016040523d82523d6000602084013e610c25565b606091505b5050905080610c3357600080fd5b5050565b610a8c83838360405180602001604052806000815250611153565b60606000610c5f83610ea3565b905060008167ffffffffffffffff811115610c7c57610c7c6130b0565b604051908082528060200260200182016040528015610ca5578160200160208202803683370190505b50905060005b82811015610cec57610cbd8582610acf565b828281518110610ccf57610ccf61309a565b602090810291909101015280610ce481613013565b915050610cab565b509392505050565b610cfc611c80565b600f55565b6000610d0c60085490565b8210610d6f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109eb565b60088281548110610d8257610d8261309a565b90600052602060002001549050919050565b610d9c611c80565b8051610c3390600b90602084019061288b565b610db7611c80565b60015b828111610e0e57610dd83382601354610dd39190612f4a565b61200c565b816019600083601354610deb9190612f4a565b815260208101919091526040016000205580610e0681613013565b915050610dba565b508160136000828254610e219190612f4a565b925050819055508160116000828254610e3a9190612f95565b90915550505050565b6000818152600260205260408120546001600160a01b03168061089c5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016109eb565b60006001600160a01b038216610f0d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016109eb565b506001600160a01b031660009081526003602052604090205490565b610f31611c80565b610f3b6000612026565b565b610f45611c80565b600d55565b610f52611c80565b601255565b6060600180546108cc90612fd8565b323314610f855760405162461bcd60e51b81526004016109eb90612e76565b6002600c5460ff166003811115610f9e57610f9e61306e565b14610feb5760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632073616c65206973206e6f74206163746976617465640000000060448201526064016109eb565b8060115410156110325760405162461bcd60e51b8152602060048201526012602482015271115e18d95959081b5a5b9d08185b5bdd5b9d60721b60448201526064016109eb565b6000811161103f57600080fd5b60125481111561104e57600080fd5b600a546001600160a01b0316331461107a5780600f5461106e9190612f76565b34101561107a57600080fd5b60015b8181116110cd576110963382601354610dd39190612f4a565b600160196000836013546110aa9190612f4a565b8152602081019190915260400160002055806110c581613013565b91505061107d565b5080601360008282546110e09190612f4a565b9250508190555080601160008282546110f99190612f95565b909155505050565b6000818152600260205260408120546001600160a01b03166111355760405162461bcd60e51b81526004016109eb90612ead565b5060009081526019602052604090205490565b610c33338383612078565b61115d3383611da7565b6111795760405162461bcd60e51b81526004016109eb90612efc565b61118584848484612147565b50505050565b600e805461119890612fd8565b80601f01602080910402602001604051908101604052809291908181526020018280546111c490612fd8565b80156112115780601f106111e657610100808354040283529160200191611211565b820191906000526020600020905b8154815290600101906020018083116111f457829003601f168201915b505050505081565b3233146112385760405162461bcd60e51b81526004016109eb90612e76565b6015544210156112955760405162461bcd60e51b815260206004820152602260248201527f57686974656c6973742053616c6520686173206e6f7420737461727465642079604482015261195d60f21b60648201526084016109eb565b6001600c5460ff1660038111156112ae576112ae61306e565b146112fb5760405162461bcd60e51b815260206004820152601f60248201527f57686974656c6973742073616c65206973206e6f74206163746976617465640060448201526064016109eb565b8260115410156113425760405162461bcd60e51b8152602060048201526012602482015271115e18d95959081b5a5b9d08185b5bdd5b9d60721b60448201526064016109eb565b6000831161134f57600080fd5b60125483111561135e57600080fd5b6113d682828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d54604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120909250905061217a565b6114145760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b60448201526064016109eb565b33600090815260186020526040902054600490611432908590612f4a565b11156114965760405162461bcd60e51b815260206004820152602d60248201527f596f752063616e206f6e6c7920676574203130204e4654206f6e20746865205760448201526c686974656c6973742053616c6560981b60648201526084016109eb565b600a546001600160a01b031633146114c25782600f546114b69190612f76565b3410156114c257600080fd5b60015b838111611515576114de3382601354610dd39190612f4a565b600160196000836013546114f29190612f4a565b81526020810191909152604001600020558061150d81613013565b9150506114c5565b503360009081526018602052604081208054859290611535908490612f4a565b92505081905550826013600082825461154e9190612f4a565b9250508190555082601160008282546115679190612f95565b9091555050505050565b6000818152600260205260409020546060906001600160a01b03166115a85760405162461bcd60e51b81526004016109eb90612ead565b60006115b2612190565b6000848152601960205260409020548151919250906115e0576040518060200160405280600081525061160e565b816115ea8261219f565b600e6040516020016115fe93929190612ca4565b6040516020818303038152906040525b949350505050565b3233146116355760405162461bcd60e51b81526004016109eb90612e76565b60008181526019602052604080822054848352912054146116a45760405162461bcd60e51b815260206004820152602360248201527f43616e206e6f74206d65726765207769746820646966666572656e7420696d6160448201526267657360e81b60648201526084016109eb565b336116ae83610e43565b6001600160a01b0316146116f05760405162461bcd60e51b81526020600482015260096024820152682737ba1037bbb732b960b91b60448201526064016109eb565b336116fa82610e43565b6001600160a01b03161461173c5760405162461bcd60e51b81526020600482015260096024820152682737ba1037bbb732b960b91b60448201526064016109eb565b6000818152601960205260409020546117845760405162461bcd60e51b815260206004820152600a602482015269139bdd081b5a5b9d195960b21b60448201526064016109eb565b60165460ff161561179457600080fd5b600a546001600160a01b031633146117b5576010543410156117b557600080fd5b6000818152601960205260409020546117cf906002612f76565b6000828152601960205260409020556117e78261229d565b50600090815260196020526040812055565b60016014541061184b5760405162461bcd60e51b815260206004820152601860248201527f4a61636b706f7420416c726561647920436c61696d656421000000000000000060448201526064016109eb565b6000611858610400611b27565b905060008151116118a45760405162461bcd60e51b8152602060048201526016602482015275139bc8151bdad95b9cc81bd988151e5c19480c4c0c8d60521b60448201526064016109eb565b6000815167ffffffffffffffff8111156118c0576118c06130b0565b6040519080825280602002602001820160405280156118e9578160200160208202803683370190505b50905060005b82518110156119565761191a83828151811061190d5761190d61309a565b6020026020010151610e43565b82828151811061192c5761192c61309a565b6001600160a01b03909216602092830291909101909101528061194e81613013565b9150506118ef565b5060008160008151811061196c5761196c61309a565b60200260200101519050336001600160a01b0316816001600160a01b0316146119c85760405162461bcd60e51b815260206004820152600e60248201526d2737ba103a3432903bb4b73732b960911b60448201526064016109eb565b6119d0611fcc565b50815115610a8c576017546040516000916001600160a01b038416918381818185875af1925050503d8060008114611a24576040519150601f19603f3d011682016040523d82523d6000602084013e611a29565b606091505b5050905080611a3757600080fd5b600160146000828254611a4a9190612f4a565b909155505050505050565b611a5d611c80565b8051610c3390600e90602084019061288b565b611a78611c80565b6001600160a01b038116611add5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109eb565b611ae681612026565b50565b611af1611c80565b806003811115611b0357611b0361306e565b600c805460ff19166001836003811115611b1f57611b1f61306e565b021790555050565b6060600060015b6013548111611b6d57600081815260196020526040902054841415611b5b5781611b5781613013565b9250505b80611b6581613013565b915050611b2e565b5060008167ffffffffffffffff811115611b8957611b896130b0565b604051908082528060200260200182016040528015611bb2578160200160208202803683370190505b509050600060015b6013548111611c1757600081815260196020526040902054861415611c055780838381518110611bec57611bec61309a565b602090810291909101015281611c0181613013565b9250505b80611c0f81613013565b915050611bba565b5090949350505050565b6001600160a01b03163b151590565b60006001600160e01b031982166380ac58cd60e01b1480611c6157506001600160e01b03198216635b5e139f60e01b145b8061089c57506301ffc9a760e01b6001600160e01b031983161461089c565b600a546001600160a01b03163314610f3b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109eb565b6000818152600260205260409020546001600160a01b0316611ae65760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016109eb565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d6e82610e43565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611db383610e43565b9050806001600160a01b0316846001600160a01b03161480611dfa57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061160e5750836001600160a01b0316611e138461094f565b6001600160a01b031614949350505050565b826001600160a01b0316611e3882610e43565b6001600160a01b031614611e9c5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016109eb565b6001600160a01b038216611efe5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109eb565b611f09838383612344565b611f14600082611d39565b6001600160a01b0383166000908152600360205260408120805460019290611f3d908490612f95565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f6b908490612f4a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000476064611fdc826042612f76565b611fe69190612f62565b601754611ff39190612f4a565b60178190556000906120059083612f95565b9392505050565b610c338282604051806020016040528060008152506123fc565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156120da5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109eb565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612152848484611e25565b61215e8484848461242f565b6111855760405162461bcd60e51b81526004016109eb90612e24565b600082612187858461253c565b14949350505050565b6060600b80546108cc90612fd8565b6060816121c35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121ed57806121d781613013565b91506121e69050600a83612f62565b91506121c7565b60008167ffffffffffffffff811115612208576122086130b0565b6040519080825280601f01601f191660200182016040528015612232576020820181803683370190505b5090505b841561160e57612247600183612f95565b9150612254600a8661302e565b61225f906030612f4a565b60f81b8183815181106122745761227461309a565b60200101906001600160f81b031916908160001a905350612296600a86612f62565b9450612236565b60006122a882610e43565b90506122b681600084612344565b6122c1600083611d39565b6001600160a01b03811660009081526003602052604081208054600192906122ea908490612f95565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b03831661239f5761239a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6123c2565b816001600160a01b0316836001600160a01b0316146123c2576123c28382612581565b6001600160a01b0382166123d957610a8c8161261e565b826001600160a01b0316826001600160a01b031614610a8c57610a8c82826126cd565b6124068383612711565b612413600084848461242f565b610a8c5760405162461bcd60e51b81526004016109eb90612e24565b60006001600160a01b0384163b1561253157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612473903390899088908890600401612d68565b602060405180830381600087803b15801561248d57600080fd5b505af19250505080156124bd575060408051601f3d908101601f191682019092526124ba91810190612b71565b60015b612517573d8080156124eb576040519150601f19603f3d011682016040523d82523d6000602084013e6124f0565b606091505b50805161250f5760405162461bcd60e51b81526004016109eb90612e24565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061160e565b506001949350505050565b600081815b8451811015610cec5761256d828683815181106125605761256061309a565b602002602001015161285f565b91508061257981613013565b915050612541565b6000600161258e84610ea3565b6125989190612f95565b6000838152600760205260409020549091508082146125eb576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061263090600190612f95565b600083815260096020526040812054600880549394509092849081106126585761265861309a565b9060005260206000200154905080600883815481106126795761267961309a565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806126b1576126b1613084565b6001900381819060005260206000200160009055905550505050565b60006126d883610ea3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166127675760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109eb565b6000818152600260205260409020546001600160a01b0316156127cc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109eb565b6127d860008383612344565b6001600160a01b0382166000908152600360205260408120805460019290612801908490612f4a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081831061287b576000828152602084905260409020612005565b5060009182526020526040902090565b82805461289790612fd8565b90600052602060002090601f0160209004810192826128b957600085556128ff565b82601f106128d257805160ff19168380011785556128ff565b828001600101855582156128ff579182015b828111156128ff5782518255916020019190600101906128e4565b5061290b92915061290f565b5090565b5b8082111561290b5760008155600101612910565b600067ffffffffffffffff8084111561293f5761293f6130b0565b604051601f8501601f19908116603f01168101908282118183101715612967576129676130b0565b8160405280935085815286868601111561298057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146129b157600080fd5b919050565b803580151581146129b157600080fd5b6000602082840312156129d857600080fd5b6120058261299a565b600080604083850312156129f457600080fd5b6129fd8361299a565b9150612a0b6020840161299a565b90509250929050565b600080600060608486031215612a2957600080fd5b612a328461299a565b9250612a406020850161299a565b9150604084013590509250925092565b60008060008060808587031215612a6657600080fd5b612a6f8561299a565b9350612a7d6020860161299a565b925060408501359150606085013567ffffffffffffffff811115612aa057600080fd5b8501601f81018713612ab157600080fd5b612ac087823560208401612924565b91505092959194509250565b60008060408385031215612adf57600080fd5b612ae88361299a565b9150612a0b602084016129b6565b60008060408385031215612b0957600080fd5b612b128361299a565b946020939093013593505050565b600060208284031215612b3257600080fd5b612005826129b6565b600060208284031215612b4d57600080fd5b5035919050565b600060208284031215612b6657600080fd5b8135612005816130c6565b600060208284031215612b8357600080fd5b8151612005816130c6565b600060208284031215612ba057600080fd5b813567ffffffffffffffff811115612bb757600080fd5b8201601f81018413612bc857600080fd5b61160e84823560208401612924565b600080600060408486031215612bec57600080fd5b83359250602084013567ffffffffffffffff80821115612c0b57600080fd5b818601915086601f830112612c1f57600080fd5b813581811115612c2e57600080fd5b8760208260051b8501011115612c4357600080fd5b6020830194508093505050509250925092565b60008060408385031215612c6957600080fd5b50508035926020909101359150565b60008151808452612c90816020860160208601612fac565b601f01601f19169290920160200192915050565b600084516020612cb78285838a01612fac565b855191840191612cca8184848a01612fac565b8554920191600090600181811c9080831680612ce757607f831692505b858310811415612d0557634e487b7160e01b85526022600452602485fd5b808015612d195760018114612d2a57612d57565b60ff19851688528388019550612d57565b60008b81526020902060005b85811015612d4f5781548a820152908401908801612d36565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d9b90830184612c78565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ddd57835183529284019291840191600101612dc1565b50909695505050505050565b6020810160048310612e0b57634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006120056020830184612c78565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b60008219821115612f5d57612f5d613042565b500190565b600082612f7157612f71613058565b500490565b6000816000190483118215151615612f9057612f90613042565b500290565b600082821015612fa757612fa7613042565b500390565b60005b83811015612fc7578181015183820152602001612faf565b838111156111855750506000910152565b600181811c90821680612fec57607f821691505b6020821081141561300d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561302757613027613042565b5060010190565b60008261303d5761303d613058565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611ae657600080fdfea26469706673582212202ffe6cbb83e83f635d39293d8cf4fb4b4b434cebb00a0c7c21a28cd6c25da6c464736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e2045524337323152656e1e3c85b8a9d94eff12851d85f0dfbed691d35f140ac6d17a3fd77ee066542200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d62736a6335574c45554552515268457a5867424473313769613833356e61564d4136786a7168484771474a682f00000000000000000000

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c80636352211e11610175578063b88d4fde116100dc578063d6d1c6cb11610095578063e985e9c51161006f578063e985e9c5146107ce578063f2fde38b14610817578063f8dcbddb14610837578063fa58b7d51461085757600080fd5b8063d6d1c6cb14610790578063da3ef23f14610798578063e35f5349146107b857600080fd5b8063b88d4fde146106ee578063c66828621461070e578063c6f4940914610723578063c87b56dd14610736578063cbccefb214610756578063d1c2babb1461077d57600080fd5b806391ba317a1161012e57806391ba317a1461064357806395d89b411461065957806399d138001461066e578063a0712d681461069b578063a19ccd42146106ae578063a22cb465146106ce57600080fd5b80636352211e1461059057806370a08231146105b0578063715018a6146105d05780637cb64759146105e55780637f00c7a6146106055780638da5cb5b1461062557600080fd5b80632f745c59116102195780634f6ccce7116101d25780634f6ccce7146104ea57806350a969fc1461050a5780635448c8d61461052057806355f804b31461053657806355f934e0146105565780635c975abb1461057657600080fd5b80632f745c591461043f5780633ccfd60b1461045f57806342842e0e14610467578063438b63001461048757806344a0d68a146104b4578063466de398146104d457600080fd5b806318160ddd1161026b57806318160ddd146103a85780631cbaee2d146103bd578063239c70ae146103d357806323b872dd146103e957806325166ce7146104095780632eb4a7ab1461042957600080fd5b806301ffc9a7146102b357806302329a29146102e857806306fdde031461030a578063081812fc1461032c578063095ea7b31461036457806313faede614610384575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612b54565b610877565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b50610308610303366004612b20565b6108a2565b005b34801561031657600080fd5b5061031f6108bd565b6040516102df9190612e11565b34801561033857600080fd5b5061034c610347366004612b3b565b61094f565b6040516001600160a01b0390911681526020016102df565b34801561037057600080fd5b5061030861037f366004612af6565b610976565b34801561039057600080fd5b5061039a600f5481565b6040519081526020016102df565b3480156103b457600080fd5b5060085461039a565b3480156103c957600080fd5b5061039a60155481565b3480156103df57600080fd5b5061039a60125481565b3480156103f557600080fd5b50610308610404366004612a14565b610a91565b34801561041557600080fd5b50610308610424366004612b3b565b610ac2565b34801561043557600080fd5b5061039a600d5481565b34801561044b57600080fd5b5061039a61045a366004612af6565b610acf565b610308610b65565b34801561047357600080fd5b50610308610482366004612a14565b610c37565b34801561049357600080fd5b506104a76104a23660046129c6565b610c52565b6040516102df9190612da5565b3480156104c057600080fd5b506103086104cf366004612b3b565b610cf4565b3480156104e057600080fd5b5061039a60175481565b3480156104f657600080fd5b5061039a610505366004612b3b565b610d01565b34801561051657600080fd5b5061039a60145481565b34801561052c57600080fd5b5061039a60105481565b34801561054257600080fd5b50610308610551366004612b8e565b610d94565b34801561056257600080fd5b50610308610571366004612c56565b610daf565b34801561058257600080fd5b506016546102d39060ff1681565b34801561059c57600080fd5b5061034c6105ab366004612b3b565b610e43565b3480156105bc57600080fd5b5061039a6105cb3660046129c6565b610ea3565b3480156105dc57600080fd5b50610308610f29565b3480156105f157600080fd5b50610308610600366004612b3b565b610f3d565b34801561061157600080fd5b50610308610620366004612b3b565b610f4a565b34801561063157600080fd5b50600a546001600160a01b031661034c565b34801561064f57600080fd5b5061039a60135481565b34801561066557600080fd5b5061031f610f57565b34801561067a57600080fd5b5061039a6106893660046129c6565b60186020526000908152604090205481565b6103086106a9366004612b3b565b610f66565b3480156106ba57600080fd5b5061039a6106c9366004612b3b565b611101565b3480156106da57600080fd5b506103086106e9366004612acc565b611148565b3480156106fa57600080fd5b50610308610709366004612a50565b611153565b34801561071a57600080fd5b5061031f61118b565b610308610731366004612bd7565b611219565b34801561074257600080fd5b5061031f610751366004612b3b565b611571565b34801561076257600080fd5b50600c546107709060ff1681565b6040516102df9190612de9565b61030861078b366004612c56565b611616565b6103086117f9565b3480156107a457600080fd5b506103086107b3366004612b8e565b611a55565b3480156107c457600080fd5b5061039a60115481565b3480156107da57600080fd5b506102d36107e93660046129e1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561082357600080fd5b506103086108323660046129c6565b611a70565b34801561084357600080fd5b50610308610852366004612b3b565b611ae9565b34801561086357600080fd5b506104a7610872366004612b3b565b611b27565b60006001600160e01b0319821663780e9d6360e01b148061089c575061089c82611c30565b92915050565b6108aa611c80565b6016805460ff1916911515919091179055565b6060600080546108cc90612fd8565b80601f01602080910402602001604051908101604052809291908181526020018280546108f890612fd8565b80156109455780601f1061091a57610100808354040283529160200191610945565b820191906000526020600020905b81548152906001019060200180831161092857829003601f168201915b5050505050905090565b600061095a82611cda565b506000908152600460205260409020546001600160a01b031690565b600061098182610e43565b9050806001600160a01b0316836001600160a01b031614156109f45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610a105750610a1081336107e9565b610a825760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016109eb565b610a8c8383611d39565b505050565b610a9b3382611da7565b610ab75760405162461bcd60e51b81526004016109eb90612efc565b610a8c838383611e25565b610aca611c80565b601055565b6000610ada83610ea3565b8210610b3c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109eb565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b6d611c80565b6000610b77611fcc565b905060008111610bc25760405162461bcd60e51b81526020600482015260166024820152754e6f2042616c616e636520746f20576974686472617760501b60448201526064016109eb565b6000610bd6600a546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d8060008114610c20576040519150601f19603f3d011682016040523d82523d6000602084013e610c25565b606091505b5050905080610c3357600080fd5b5050565b610a8c83838360405180602001604052806000815250611153565b60606000610c5f83610ea3565b905060008167ffffffffffffffff811115610c7c57610c7c6130b0565b604051908082528060200260200182016040528015610ca5578160200160208202803683370190505b50905060005b82811015610cec57610cbd8582610acf565b828281518110610ccf57610ccf61309a565b602090810291909101015280610ce481613013565b915050610cab565b509392505050565b610cfc611c80565b600f55565b6000610d0c60085490565b8210610d6f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109eb565b60088281548110610d8257610d8261309a565b90600052602060002001549050919050565b610d9c611c80565b8051610c3390600b90602084019061288b565b610db7611c80565b60015b828111610e0e57610dd83382601354610dd39190612f4a565b61200c565b816019600083601354610deb9190612f4a565b815260208101919091526040016000205580610e0681613013565b915050610dba565b508160136000828254610e219190612f4a565b925050819055508160116000828254610e3a9190612f95565b90915550505050565b6000818152600260205260408120546001600160a01b03168061089c5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016109eb565b60006001600160a01b038216610f0d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016109eb565b506001600160a01b031660009081526003602052604090205490565b610f31611c80565b610f3b6000612026565b565b610f45611c80565b600d55565b610f52611c80565b601255565b6060600180546108cc90612fd8565b323314610f855760405162461bcd60e51b81526004016109eb90612e76565b6002600c5460ff166003811115610f9e57610f9e61306e565b14610feb5760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632073616c65206973206e6f74206163746976617465640000000060448201526064016109eb565b8060115410156110325760405162461bcd60e51b8152602060048201526012602482015271115e18d95959081b5a5b9d08185b5bdd5b9d60721b60448201526064016109eb565b6000811161103f57600080fd5b60125481111561104e57600080fd5b600a546001600160a01b0316331461107a5780600f5461106e9190612f76565b34101561107a57600080fd5b60015b8181116110cd576110963382601354610dd39190612f4a565b600160196000836013546110aa9190612f4a565b8152602081019190915260400160002055806110c581613013565b91505061107d565b5080601360008282546110e09190612f4a565b9250508190555080601160008282546110f99190612f95565b909155505050565b6000818152600260205260408120546001600160a01b03166111355760405162461bcd60e51b81526004016109eb90612ead565b5060009081526019602052604090205490565b610c33338383612078565b61115d3383611da7565b6111795760405162461bcd60e51b81526004016109eb90612efc565b61118584848484612147565b50505050565b600e805461119890612fd8565b80601f01602080910402602001604051908101604052809291908181526020018280546111c490612fd8565b80156112115780601f106111e657610100808354040283529160200191611211565b820191906000526020600020905b8154815290600101906020018083116111f457829003601f168201915b505050505081565b3233146112385760405162461bcd60e51b81526004016109eb90612e76565b6015544210156112955760405162461bcd60e51b815260206004820152602260248201527f57686974656c6973742053616c6520686173206e6f7420737461727465642079604482015261195d60f21b60648201526084016109eb565b6001600c5460ff1660038111156112ae576112ae61306e565b146112fb5760405162461bcd60e51b815260206004820152601f60248201527f57686974656c6973742073616c65206973206e6f74206163746976617465640060448201526064016109eb565b8260115410156113425760405162461bcd60e51b8152602060048201526012602482015271115e18d95959081b5a5b9d08185b5bdd5b9d60721b60448201526064016109eb565b6000831161134f57600080fd5b60125483111561135e57600080fd5b6113d682828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d54604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120909250905061217a565b6114145760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b60448201526064016109eb565b33600090815260186020526040902054600490611432908590612f4a565b11156114965760405162461bcd60e51b815260206004820152602d60248201527f596f752063616e206f6e6c7920676574203130204e4654206f6e20746865205760448201526c686974656c6973742053616c6560981b60648201526084016109eb565b600a546001600160a01b031633146114c25782600f546114b69190612f76565b3410156114c257600080fd5b60015b838111611515576114de3382601354610dd39190612f4a565b600160196000836013546114f29190612f4a565b81526020810191909152604001600020558061150d81613013565b9150506114c5565b503360009081526018602052604081208054859290611535908490612f4a565b92505081905550826013600082825461154e9190612f4a565b9250508190555082601160008282546115679190612f95565b9091555050505050565b6000818152600260205260409020546060906001600160a01b03166115a85760405162461bcd60e51b81526004016109eb90612ead565b60006115b2612190565b6000848152601960205260409020548151919250906115e0576040518060200160405280600081525061160e565b816115ea8261219f565b600e6040516020016115fe93929190612ca4565b6040516020818303038152906040525b949350505050565b3233146116355760405162461bcd60e51b81526004016109eb90612e76565b60008181526019602052604080822054848352912054146116a45760405162461bcd60e51b815260206004820152602360248201527f43616e206e6f74206d65726765207769746820646966666572656e7420696d6160448201526267657360e81b60648201526084016109eb565b336116ae83610e43565b6001600160a01b0316146116f05760405162461bcd60e51b81526020600482015260096024820152682737ba1037bbb732b960b91b60448201526064016109eb565b336116fa82610e43565b6001600160a01b03161461173c5760405162461bcd60e51b81526020600482015260096024820152682737ba1037bbb732b960b91b60448201526064016109eb565b6000818152601960205260409020546117845760405162461bcd60e51b815260206004820152600a602482015269139bdd081b5a5b9d195960b21b60448201526064016109eb565b60165460ff161561179457600080fd5b600a546001600160a01b031633146117b5576010543410156117b557600080fd5b6000818152601960205260409020546117cf906002612f76565b6000828152601960205260409020556117e78261229d565b50600090815260196020526040812055565b60016014541061184b5760405162461bcd60e51b815260206004820152601860248201527f4a61636b706f7420416c726561647920436c61696d656421000000000000000060448201526064016109eb565b6000611858610400611b27565b905060008151116118a45760405162461bcd60e51b8152602060048201526016602482015275139bc8151bdad95b9cc81bd988151e5c19480c4c0c8d60521b60448201526064016109eb565b6000815167ffffffffffffffff8111156118c0576118c06130b0565b6040519080825280602002602001820160405280156118e9578160200160208202803683370190505b50905060005b82518110156119565761191a83828151811061190d5761190d61309a565b6020026020010151610e43565b82828151811061192c5761192c61309a565b6001600160a01b03909216602092830291909101909101528061194e81613013565b9150506118ef565b5060008160008151811061196c5761196c61309a565b60200260200101519050336001600160a01b0316816001600160a01b0316146119c85760405162461bcd60e51b815260206004820152600e60248201526d2737ba103a3432903bb4b73732b960911b60448201526064016109eb565b6119d0611fcc565b50815115610a8c576017546040516000916001600160a01b038416918381818185875af1925050503d8060008114611a24576040519150601f19603f3d011682016040523d82523d6000602084013e611a29565b606091505b5050905080611a3757600080fd5b600160146000828254611a4a9190612f4a565b909155505050505050565b611a5d611c80565b8051610c3390600e90602084019061288b565b611a78611c80565b6001600160a01b038116611add5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109eb565b611ae681612026565b50565b611af1611c80565b806003811115611b0357611b0361306e565b600c805460ff19166001836003811115611b1f57611b1f61306e565b021790555050565b6060600060015b6013548111611b6d57600081815260196020526040902054841415611b5b5781611b5781613013565b9250505b80611b6581613013565b915050611b2e565b5060008167ffffffffffffffff811115611b8957611b896130b0565b604051908082528060200260200182016040528015611bb2578160200160208202803683370190505b509050600060015b6013548111611c1757600081815260196020526040902054861415611c055780838381518110611bec57611bec61309a565b602090810291909101015281611c0181613013565b9250505b80611c0f81613013565b915050611bba565b5090949350505050565b6001600160a01b03163b151590565b60006001600160e01b031982166380ac58cd60e01b1480611c6157506001600160e01b03198216635b5e139f60e01b145b8061089c57506301ffc9a760e01b6001600160e01b031983161461089c565b600a546001600160a01b03163314610f3b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109eb565b6000818152600260205260409020546001600160a01b0316611ae65760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016109eb565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d6e82610e43565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611db383610e43565b9050806001600160a01b0316846001600160a01b03161480611dfa57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b8061160e5750836001600160a01b0316611e138461094f565b6001600160a01b031614949350505050565b826001600160a01b0316611e3882610e43565b6001600160a01b031614611e9c5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016109eb565b6001600160a01b038216611efe5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109eb565b611f09838383612344565b611f14600082611d39565b6001600160a01b0383166000908152600360205260408120805460019290611f3d908490612f95565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f6b908490612f4a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000476064611fdc826042612f76565b611fe69190612f62565b601754611ff39190612f4a565b60178190556000906120059083612f95565b9392505050565b610c338282604051806020016040528060008152506123fc565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156120da5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109eb565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612152848484611e25565b61215e8484848461242f565b6111855760405162461bcd60e51b81526004016109eb90612e24565b600082612187858461253c565b14949350505050565b6060600b80546108cc90612fd8565b6060816121c35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121ed57806121d781613013565b91506121e69050600a83612f62565b91506121c7565b60008167ffffffffffffffff811115612208576122086130b0565b6040519080825280601f01601f191660200182016040528015612232576020820181803683370190505b5090505b841561160e57612247600183612f95565b9150612254600a8661302e565b61225f906030612f4a565b60f81b8183815181106122745761227461309a565b60200101906001600160f81b031916908160001a905350612296600a86612f62565b9450612236565b60006122a882610e43565b90506122b681600084612344565b6122c1600083611d39565b6001600160a01b03811660009081526003602052604081208054600192906122ea908490612f95565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b03831661239f5761239a81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6123c2565b816001600160a01b0316836001600160a01b0316146123c2576123c28382612581565b6001600160a01b0382166123d957610a8c8161261e565b826001600160a01b0316826001600160a01b031614610a8c57610a8c82826126cd565b6124068383612711565b612413600084848461242f565b610a8c5760405162461bcd60e51b81526004016109eb90612e24565b60006001600160a01b0384163b1561253157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612473903390899088908890600401612d68565b602060405180830381600087803b15801561248d57600080fd5b505af19250505080156124bd575060408051601f3d908101601f191682019092526124ba91810190612b71565b60015b612517573d8080156124eb576040519150601f19603f3d011682016040523d82523d6000602084013e6124f0565b606091505b50805161250f5760405162461bcd60e51b81526004016109eb90612e24565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061160e565b506001949350505050565b600081815b8451811015610cec5761256d828683815181106125605761256061309a565b602002602001015161285f565b91508061257981613013565b915050612541565b6000600161258e84610ea3565b6125989190612f95565b6000838152600760205260409020549091508082146125eb576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061263090600190612f95565b600083815260096020526040812054600880549394509092849081106126585761265861309a565b9060005260206000200154905080600883815481106126795761267961309a565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806126b1576126b1613084565b6001900381819060005260206000200160009055905550505050565b60006126d883610ea3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166127675760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109eb565b6000818152600260205260409020546001600160a01b0316156127cc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109eb565b6127d860008383612344565b6001600160a01b0382166000908152600360205260408120805460019290612801908490612f4a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081831061287b576000828152602084905260409020612005565b5060009182526020526040902090565b82805461289790612fd8565b90600052602060002090601f0160209004810192826128b957600085556128ff565b82601f106128d257805160ff19168380011785556128ff565b828001600101855582156128ff579182015b828111156128ff5782518255916020019190600101906128e4565b5061290b92915061290f565b5090565b5b8082111561290b5760008155600101612910565b600067ffffffffffffffff8084111561293f5761293f6130b0565b604051601f8501601f19908116603f01168101908282118183101715612967576129676130b0565b8160405280935085815286868601111561298057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146129b157600080fd5b919050565b803580151581146129b157600080fd5b6000602082840312156129d857600080fd5b6120058261299a565b600080604083850312156129f457600080fd5b6129fd8361299a565b9150612a0b6020840161299a565b90509250929050565b600080600060608486031215612a2957600080fd5b612a328461299a565b9250612a406020850161299a565b9150604084013590509250925092565b60008060008060808587031215612a6657600080fd5b612a6f8561299a565b9350612a7d6020860161299a565b925060408501359150606085013567ffffffffffffffff811115612aa057600080fd5b8501601f81018713612ab157600080fd5b612ac087823560208401612924565b91505092959194509250565b60008060408385031215612adf57600080fd5b612ae88361299a565b9150612a0b602084016129b6565b60008060408385031215612b0957600080fd5b612b128361299a565b946020939093013593505050565b600060208284031215612b3257600080fd5b612005826129b6565b600060208284031215612b4d57600080fd5b5035919050565b600060208284031215612b6657600080fd5b8135612005816130c6565b600060208284031215612b8357600080fd5b8151612005816130c6565b600060208284031215612ba057600080fd5b813567ffffffffffffffff811115612bb757600080fd5b8201601f81018413612bc857600080fd5b61160e84823560208401612924565b600080600060408486031215612bec57600080fd5b83359250602084013567ffffffffffffffff80821115612c0b57600080fd5b818601915086601f830112612c1f57600080fd5b813581811115612c2e57600080fd5b8760208260051b8501011115612c4357600080fd5b6020830194508093505050509250925092565b60008060408385031215612c6957600080fd5b50508035926020909101359150565b60008151808452612c90816020860160208601612fac565b601f01601f19169290920160200192915050565b600084516020612cb78285838a01612fac565b855191840191612cca8184848a01612fac565b8554920191600090600181811c9080831680612ce757607f831692505b858310811415612d0557634e487b7160e01b85526022600452602485fd5b808015612d195760018114612d2a57612d57565b60ff19851688528388019550612d57565b60008b81526020902060005b85811015612d4f5781548a820152908401908801612d36565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d9b90830184612c78565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612ddd57835183529284019291840191600101612dc1565b50909695505050505050565b6020810160048310612e0b57634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006120056020830184612c78565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b60008219821115612f5d57612f5d613042565b500190565b600082612f7157612f71613058565b500490565b6000816000190483118215151615612f9057612f90613042565b500290565b600082821015612fa757612fa7613042565b500390565b60005b83811015612fc7578181015183820152602001612faf565b838111156111855750506000910152565b600181811c90821680612fec57607f821691505b6020821081141561300d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561302757613027613042565b5060010190565b60008261303d5761303d613058565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611ae657600080fdfea26469706673582212202ffe6cbb83e83f635d39293d8cf4fb4b4b434cebb00a0c7c21a28cd6c25da6c464736f6c63430008070033

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

6e1e3c85b8a9d94eff12851d85f0dfbed691d35f140ac6d17a3fd77ee066542200000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d62736a6335574c45554552515268457a5867424473313769613833356e61564d4136786a7168484771474a682f00000000000000000000

-----Decoded View---------------
Arg [0] : _merkleRoot (bytes32): 0x6e1e3c85b8a9d94eff12851d85f0dfbed691d35f140ac6d17a3fd77ee0665422
Arg [1] : _initBaseURI (string): ipfs://Qmbsjc5WLEUERQRhEzXgBDs17ia835naVMA6xjqhHGqGJh/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 6e1e3c85b8a9d94eff12851d85f0dfbed691d35f140ac6d17a3fd77ee0665422
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d62736a6335574c45554552515268457a58674244733137
Arg [4] : 69613833356e61564d4136786a7168484771474a682f00000000000000000000


Deployed Bytecode Sourcemap

54955:8548:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40010:224;;;;;;;;;;-1:-1:-1;40010:224:0;;;;;:::i;:::-;;:::i;:::-;;;9167:14:1;;9160:22;9142:41;;9130:2;9115:18;40010:224:0;;;;;;;;60447:73;;;;;;;;;;-1:-1:-1;60447:73:0;;;;;:::i;:::-;;:::i;:::-;;26744:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28257:171::-;;;;;;;;;;-1:-1:-1;28257:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7828:32:1;;;7810:51;;7798:2;7783:18;28257:171:0;7664:203:1;27774:417:0;;;;;;;;;;-1:-1:-1;27774:417:0;;;;;:::i;:::-;;:::i;55265:29::-;;;;;;;;;;;;;;;;;;;9340:25:1;;;9328:2;9313:18;55265:29:0;9194:177:1;40650:113:0;;;;;;;;;;-1:-1:-1;40738:10:0;:17;40650:113;;55490:39;;;;;;;;;;;;;;;;55387:32;;;;;;;;;;;;;;;;28957:336;;;;;;;;;;-1:-1:-1;28957:336:0;;;;;:::i;:::-;;:::i;59995:90::-;;;;;;;;;;-1:-1:-1;59995:90:0;;;;;:::i;:::-;;:::i;55193:25::-;;;;;;;;;;;;;;;;40318:256;;;;;;;;;;-1:-1:-1;40318:256:0;;;;;:::i;:::-;;:::i;63251:249::-;;;:::i;29364:185::-;;;;;;;;;;-1:-1:-1;29364:185:0;;;;;:::i;:::-;;:::i;58657:348::-;;;;;;;;;;-1:-1:-1;58657:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;59908:80::-;;;;;;;;;;-1:-1:-1;59908:80:0;;;;;:::i;:::-;;:::i;55565:33::-;;;;;;;;;;;;;;;;40840:233;;;;;;;;;;-1:-1:-1;40840:233:0;;;;;:::i;:::-;;:::i;55458:27::-;;;;;;;;;;;;;;;;55299:38;;;;;;;;;;;;;;;;60215:98;;;;;;;;;;-1:-1:-1;60215:98:0;;;;;:::i;:::-;;:::i;58338:311::-;;;;;;;;;;-1:-1:-1;58338:311:0;;;;;:::i;:::-;;:::i;55534:26::-;;;;;;;;;;-1:-1:-1;55534:26:0;;;;;;;;26455:222;;;;;;;;;;-1:-1:-1;26455:222:0;;;;;:::i;:::-;;:::i;26186:207::-;;;;;;;;;;-1:-1:-1;26186:207:0;;;;;:::i;:::-;;:::i;5273:103::-;;;;;;;;;;;;;:::i;60539:102::-;;;;;;;;;;-1:-1:-1;60539:102:0;;;;;:::i;:::-;;:::i;60091:116::-;;;;;;;;;;-1:-1:-1;60091:116:0;;;;;:::i;:::-;;:::i;4625:87::-;;;;;;;;;;-1:-1:-1;4698:6:0;;-1:-1:-1;;;;;4698:6:0;4625:87;;55424:29;;;;;;;;;;;;;;;;26913:104;;;;;;;;;;;;;:::i;55607:64::-;;;;;;;;;;-1:-1:-1;55607:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;56061:601;;;;;;:::i;:::-;;:::i;59621:279::-;;;;;;;;;;-1:-1:-1;59621:279:0;;;;;:::i;:::-;;:::i;28500:155::-;;;;;;;;;;-1:-1:-1;28500:155:0;;;;;:::i;:::-;;:::i;29620:323::-;;;;;;;;;;-1:-1:-1;29620:323:0;;;;;:::i;:::-;;:::i;55223:37::-;;;;;;;;;;;;;:::i;56688:1012::-;;;;;;:::i;:::-;;:::i;59111:477::-;;;;;;;;;;-1:-1:-1;59111:477:0;;;;;:::i;:::-;;:::i;55165:23::-;;;;;;;;;;-1:-1:-1;55165:23:0;;;;;;;;;;;;;;;:::i;57725:588::-;;;;;;:::i;:::-;;:::i;61948:922::-;;;:::i;60319:122::-;;;;;;;;;;-1:-1:-1;60319:122:0;;;;;:::i;:::-;;:::i;55342:40::-;;;;;;;;;;;;;;;;28726:164;;;;;;;;;;-1:-1:-1;28726:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28847:25:0;;;28823:4;28847:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28726:164;5531:201;;;;;;;;;;-1:-1:-1;5531:201:0;;;;;:::i;:::-;;:::i;59011:90::-;;;;;;;;;;-1:-1:-1;59011:90:0;;;;;:::i;:::-;;:::i;61316:626::-;;;;;;;;;;-1:-1:-1;61316:626:0;;;;;:::i;:::-;;:::i;40010:224::-;40112:4;-1:-1:-1;;;;;;40136:50:0;;-1:-1:-1;;;40136:50:0;;:90;;;40190:36;40214:11;40190:23;:36::i;:::-;40129:97;40010:224;-1:-1:-1;;40010:224:0:o;60447:73::-;4511:13;:11;:13::i;:::-;60499:6:::1;:15:::0;;-1:-1:-1;;60499:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;60447:73::o;26744:100::-;26798:13;26831:5;26824:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26744:100;:::o;28257:171::-;28333:7;28353:23;28368:7;28353:14;:23::i;:::-;-1:-1:-1;28396:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28396:24:0;;28257:171::o;27774:417::-;27855:13;27871:23;27886:7;27871:14;:23::i;:::-;27855:39;;27919:5;-1:-1:-1;;;;;27913:11:0;:2;-1:-1:-1;;;;;27913:11:0;;;27905:57;;;;-1:-1:-1;;;27905:57:0;;18918:2:1;27905:57:0;;;18900:21:1;18957:2;18937:18;;;18930:30;18996:34;18976:18;;;18969:62;-1:-1:-1;;;19047:18:1;;;19040:31;19088:19;;27905:57:0;;;;;;;;;3256:10;-1:-1:-1;;;;;27997:21:0;;;;:62;;-1:-1:-1;28022:37:0;28039:5;3256:10;28726:164;:::i;28022:37::-;27975:174;;;;-1:-1:-1;;;27975:174:0;;15827:2:1;27975:174:0;;;15809:21:1;15866:2;15846:18;;;15839:30;15905:34;15885:18;;;15878:62;15976:32;15956:18;;;15949:60;16026:19;;27975:174:0;15625:426:1;27975:174:0;28162:21;28171:2;28175:7;28162:8;:21::i;:::-;27844:347;27774:417;;:::o;28957:336::-;29152:41;3256:10;29185:7;29152:18;:41::i;:::-;29144:100;;;;-1:-1:-1;;;29144:100:0;;;;;;;:::i;:::-;29257:28;29267:4;29273:2;29277:7;29257:9;:28::i;59995:90::-;4511:13;:11;:13::i;:::-;60059:9:::1;:20:::0;59995:90::o;40318:256::-;40415:7;40451:23;40468:5;40451:16;:23::i;:::-;40443:5;:31;40435:87;;;;-1:-1:-1;;;40435:87:0;;10144:2:1;40435:87:0;;;10126:21:1;10183:2;10163:18;;;10156:30;10222:34;10202:18;;;10195:62;-1:-1:-1;;;10273:18:1;;;10266:41;10324:19;;40435:87:0;9942:407:1;40435:87:0;-1:-1:-1;;;;;;40540:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40318:256::o;63251:249::-;4511:13;:11;:13::i;:::-;63305:16:::1;63324:23;:21;:23::i;:::-;63305:42;;63373:1;63362:8;:12;63354:47;;;::::0;-1:-1:-1;;;63354:47:0;;16619:2:1;63354:47:0::1;::::0;::::1;16601:21:1::0;16658:2;16638:18;;;16631:30;-1:-1:-1;;;16677:18:1;;;16670:52;16739:18;;63354:47:0::1;16417:346:1::0;63354:47:0::1;63415:7;63436;4698:6:::0;;-1:-1:-1;;;;;4698:6:0;;4625:87;63436:7:::1;-1:-1:-1::0;;;;;63428:21:0::1;63457:8;63428:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63414:56;;;63485:2;63477:11;;;::::0;::::1;;63296:204;;63251:249::o:0;29364:185::-;29502:39;29519:4;29525:2;29529:7;29502:39;;;;;;;;;;;;:16;:39::i;58657:348::-;58732:16;58760:23;58786:17;58796:6;58786:9;:17::i;:::-;58760:43;;58810:25;58852:15;58838:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58838:30:0;;58810:58;;58880:9;58875:103;58895:15;58891:1;:19;58875:103;;;58940:30;58960:6;58968:1;58940:19;:30::i;:::-;58926:8;58935:1;58926:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;58912:3;;;;:::i;:::-;;;;58875:103;;;-1:-1:-1;58991:8:0;58657:348;-1:-1:-1;;;58657:348:0:o;59908:80::-;4511:13;:11;:13::i;:::-;59967:4:::1;:15:::0;59908:80::o;40840:233::-;40915:7;40951:30;40738:10;:17;;40650:113;40951:30;40943:5;:38;40935:95;;;;-1:-1:-1;;;40935:95:0;;20010:2:1;40935:95:0;;;19992:21:1;20049:2;20029:18;;;20022:30;20088:34;20068:18;;;20061:62;-1:-1:-1;;;20139:18:1;;;20132:42;20191:19;;40935:95:0;19808:408:1;40935:95:0;41048:10;41059:5;41048:17;;;;;;;;:::i;:::-;;;;;;;;;41041:24;;40840:233;;;:::o;60215:98::-;4511:13;:11;:13::i;:::-;60286:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;58338:311::-:0;4511:13;:11;:13::i;:::-;58443:1:::1;58426:146;58451:11;58446:1;:16;58426:146;;58478:37;58488:10;58513:1;58500:10;;:14;;;;:::i;:::-;58478:9;:37::i;:::-;58553:11;58524:10;:26;58548:1;58535:10;;:14;;;;:::i;:::-;58524:26:::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;58524:26:0;:40;58464:3;::::1;::::0;::::1;:::i;:::-;;;;58426:146;;;;58592:11;58578:10;;:25;;;;;;;:::i;:::-;;;;;;;;58632:11;58610:18;;:33;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;58338:311:0:o;26455:222::-;26527:7;26563:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26563:16:0;26598:19;26590:56;;;;-1:-1:-1;;;26590:56:0;;18565:2:1;26590:56:0;;;18547:21:1;18604:2;18584:18;;;18577:30;-1:-1:-1;;;18623:18:1;;;18616:54;18687:18;;26590:56:0;18363:348:1;26186:207:0;26258:7;-1:-1:-1;;;;;26286:19:0;;26278:73;;;;-1:-1:-1;;;26278:73:0;;15073:2:1;26278:73:0;;;15055:21:1;15112:2;15092:18;;;15085:30;15151:34;15131:18;;;15124:62;-1:-1:-1;;;15202:18:1;;;15195:39;15251:19;;26278:73:0;14871:405:1;26278:73:0;-1:-1:-1;;;;;;26369:16:0;;;;;:9;:16;;;;;;;26186:207::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;60539:102::-;4511:13;:11;:13::i;:::-;60611:10:::1;:24:::0;60539:102::o;60091:116::-;4511:13;:11;:13::i;:::-;60168::::1;:33:::0;60091:116::o;26913:104::-;26969:13;27002:7;26995:14;;;;;:::i;56061:601::-;61131:9;61144:10;61131:23;61123:66;;;;-1:-1:-1;;;61123:66:0;;;;;;;:::i;:::-;56154:15:::1;56139:11;::::0;::::1;;:30;::::0;::::1;;;;;;:::i;:::-;;56131:71;;;::::0;-1:-1:-1;;;56131:71:0;;14716:2:1;56131:71:0::1;::::0;::::1;14698:21:1::0;14755:2;14735:18;;;14728:30;14794;14774:18;;;14767:58;14842:18;;56131:71:0::1;14514:352:1::0;56131:71:0::1;56239:11;56217:18;;:33;;56209:64;;;::::0;-1:-1:-1;;;56209:64:0;;12145:2:1;56209:64:0::1;::::0;::::1;12127:21:1::0;12184:2;12164:18;;;12157:30;-1:-1:-1;;;12203:18:1;;;12196:48;12261:18;;56209:64:0::1;11943:342:1::0;56209:64:0::1;56302:1;56288:11;:15;56280:24;;;::::0;::::1;;56334:13;;56319:11;:28;;56311:37;;;::::0;::::1;;4698:6:::0;;-1:-1:-1;;;;;4698:6:0;56361:10:::1;:21;56357:84;;56421:11;56414:4;;:18;;;;:::i;:::-;56401:9;:31;;56393:40;;;::::0;::::1;;56466:1;56449:136;56474:11;56469:1;:16;56449:136;;56501:37;56511:10;56536:1;56523:10;;:14;;;;:::i;56501:37::-;56576:1;56547:10;:26;56571:1;56558:10;;:14;;;;:::i;:::-;56547:26:::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;56547:26:0;:30;56487:3;::::1;::::0;::::1;:::i;:::-;;;;56449:136;;;;56605:11;56591:10;;:25;;;;;;;:::i;:::-;;;;;;;;56645:11;56623:18;;:33;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;56061:601:0:o;59621:279::-;59725:7;31539:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31539:16:0;59750:105;;;;-1:-1:-1;;;59750:105:0;;;;;;;:::i;:::-;-1:-1:-1;59873:19:0;;;;:10;:19;;;;;;;59621:279::o;28500:155::-;28595:52;3256:10;28628:8;28638;28595:18;:52::i;29620:323::-;29794:41;3256:10;29827:7;29794:18;:41::i;:::-;29786:100;;;;-1:-1:-1;;;29786:100:0;;;;;;;:::i;:::-;29897:38;29911:4;29917:2;29921:7;29930:4;29897:13;:38::i;:::-;29620:323;;;;:::o;55223:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56688:1012::-;61131:9;61144:10;61131:23;61123:66;;;;-1:-1:-1;;;61123:66:0;;;;;;;:::i;:::-;56819:13:::1;::::0;61287:15;56802:30:::1;;56794:77;;;::::0;-1:-1:-1;;;56794:77:0;;12492:2:1;56794:77:0::1;::::0;::::1;12474:21:1::0;12531:2;12511:18;;;12504:30;12570:34;12550:18;;;12543:62;-1:-1:-1;;;12621:18:1;;;12614:32;12663:19;;56794:77:0::1;12290:398:1::0;56794:77:0::1;56901:18;56886:11;::::0;::::1;;:33;::::0;::::1;;;;;;:::i;:::-;;56878:77;;;::::0;-1:-1:-1;;;56878:77:0;;13654:2:1;56878:77:0::1;::::0;::::1;13636:21:1::0;13693:2;13673:18;;;13666:30;13732:33;13712:18;;;13705:61;13783:18;;56878:77:0::1;13452:355:1::0;56878:77:0::1;56992:11;56970:18;;:33;;56962:64;;;::::0;-1:-1:-1;;;56962:64:0;;12145:2:1;56962:64:0::1;::::0;::::1;12127:21:1::0;12184:2;12164:18;;;12157:30;-1:-1:-1;;;12203:18:1;;;12196:48;12261:18;;56962:64:0::1;11943:342:1::0;56962:64:0::1;57055:1;57041:11;:15;57033:24;;;::::0;::::1;;57087:13;;57072:11;:28;;57064:37;;;::::0;::::1;;57116:56;57135:6;;57116:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;57143:10:0::1;::::0;60891:26;;;57160:10:::1;5837:2:1::0;5833:15;-1:-1:-1;;5829:53:1;60891:26:0;;;;5817:66:1;;;;60891:26:0;;;;;;;;;5899:12:1;;;;60891:26:0;;;60881:37;;;;;57143:10;;-1:-1:-1;60881:37:0;-1:-1:-1;57116:18:0::1;:56::i;:::-;57108:84;;;::::0;-1:-1:-1;;;57108:84:0;;15483:2:1;57108:84:0::1;::::0;::::1;15465:21:1::0;15522:2;15502:18;;;15495:30;-1:-1:-1;;;15541:18:1;;;15534:45;15596:18;;57108:84:0::1;15281:339:1::0;57108:84:0::1;57240:10;57207:44;::::0;;;:32:::1;:44;::::0;;;;;57269:1:::1;::::0;57207:58:::1;::::0;57254:11;;57207:58:::1;:::i;:::-;:63;;57199:121;;;::::0;-1:-1:-1;;;57199:121:0;;17747:2:1;57199:121:0::1;::::0;::::1;17729:21:1::0;17786:2;17766:18;;;17759:30;17825:34;17805:18;;;17798:62;-1:-1:-1;;;17876:18:1;;;17869:43;17929:19;;57199:121:0::1;17545:409:1::0;57199:121:0::1;4698:6:::0;;-1:-1:-1;;;;;4698:6:0;57333:10:::1;:21;57329:84;;57393:11;57386:4;;:18;;;;:::i;:::-;57373:9;:31;;57365:40;;;::::0;::::1;;57438:1;57421:136;57446:11;57441:1;:16;57421:136;;57473:37;57483:10;57508:1;57495:10;;:14;;;;:::i;57473:37::-;57548:1;57519:10;:26;57543:1;57530:10;;:14;;;;:::i;:::-;57519:26:::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;57519:26:0;:30;57459:3;::::1;::::0;::::1;:::i;:::-;;;;57421:136;;;-1:-1:-1::0;57596:10:0::1;57563:44;::::0;;;:32:::1;:44;::::0;;;;:59;;57611:11;;57563:44;:59:::1;::::0;57611:11;;57563:59:::1;:::i;:::-;;;;;;;;57643:11;57629:10;;:25;;;;;;;:::i;:::-;;;;;;;;57683:11;57661:18;;:33;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;56688:1012:0:o;59111:477::-;31515:4;31539:16;;;:7;:16;;;;;;59209:13;;-1:-1:-1;;;;;31539:16:0;59234:97;;;;-1:-1:-1;;;59234:97:0;;;;;;;:::i;:::-;59338:28;59369:10;:8;:10::i;:::-;59392:17;59412:19;;;:10;:19;;;;;;59445:28;;59338:41;;-1:-1:-1;59412:19:0;59445:135;;;;;;;;;;;;;;;;;59513:14;59529:20;:9;:18;:20::i;:::-;59551:13;59496:69;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59445:135;59438:142;59111:477;-1:-1:-1;;;;59111:477:0:o;57725:588::-;61131:9;61144:10;61131:23;61123:66;;;;-1:-1:-1;;;61123:66:0;;;;;;;:::i;:::-;57843:20:::1;::::0;;;:10:::1;:20;::::0;;;;;;57819;;;;;;:44:::1;57811:92;;;::::0;-1:-1:-1;;;57811:92:0;;18161:2:1;57811:92:0::1;::::0;::::1;18143:21:1::0;18200:2;18180:18;;;18173:30;18239:34;18219:18;;;18212:62;-1:-1:-1;;;18290:18:1;;;18283:33;18333:19;;57811:92:0::1;17959:399:1::0;57811:92:0::1;57939:10;57918:17;57926:8:::0;57918:7:::1;:17::i;:::-;-1:-1:-1::0;;;;;57918:31:0::1;;57910:53;;;::::0;-1:-1:-1;;;57910:53:0;;19320:2:1;57910:53:0::1;::::0;::::1;19302:21:1::0;19359:1;19339:18;;;19332:29;-1:-1:-1;;;19377:18:1;;;19370:39;19426:18;;57910:53:0::1;19118:332:1::0;57910:53:0::1;57999:10;57978:17;57986:8:::0;57978:7:::1;:17::i;:::-;-1:-1:-1::0;;;;;57978:31:0::1;;57970:53;;;::::0;-1:-1:-1;;;57970:53:0;;19320:2:1;57970:53:0::1;::::0;::::1;19302:21:1::0;19359:1;19339:18;;;19332:29;-1:-1:-1;;;19377:18:1;;;19370:39;19426:18;;57970:53:0::1;19118:332:1::0;57970:53:0::1;58038:20;::::0;;;:10:::1;:20;::::0;;;;;58030:48:::1;;;::::0;-1:-1:-1;;;58030:48:0;;21189:2:1;58030:48:0::1;::::0;::::1;21171:21:1::0;21228:2;21208:18;;;21201:30;-1:-1:-1;;;21247:18:1;;;21240:40;21297:18;;58030:48:0::1;20987:334:1::0;58030:48:0::1;58094:6;::::0;::::1;;58093:7;58085:16;;;::::0;::::1;;4698:6:::0;;-1:-1:-1;;;;;4698:6:0;58114:10:::1;:21;58110:75;;58167:9;;58154;:22;;58146:31;;;::::0;::::1;;58224:20;::::0;;;:10:::1;:20;::::0;;;;;58220:24:::1;::::0;:1:::1;:24;:::i;:::-;58197:20;::::0;;;:10:::1;:20;::::0;;;;:47;58253:15:::1;58259:8:::0;58253:5:::1;:15::i;:::-;-1:-1:-1::0;58298:1:0::1;58275:20:::0;;;:10:::1;:20;::::0;;;;:24;57725:588::o;61948:922::-;62017:1;62006:8;;:12;61998:49;;;;-1:-1:-1;;;61998:49:0;;19657:2:1;61998:49:0;;;19639:21:1;19696:2;19676:18;;;19669:30;19735:26;19715:18;;;19708:54;19779:18;;61998:49:0;19455:348:1;61998:49:0;62089:23;62115:21;62131:4;62115:15;:21::i;:::-;62089:47;;62230:1;62214:6;:13;:17;62206:52;;;;-1:-1:-1;;;62206:52:0;;20423:2:1;62206:52:0;;;20405:21:1;20462:2;20442:18;;;20435:30;-1:-1:-1;;;20481:18:1;;;20474:52;20543:18;;62206:52:0;20221:346:1;62206:52:0;62298:23;62338:6;:13;62324:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;62324:28:0;;62298:54;;62364:9;62359:91;62383:6;:13;62379:1;:17;62359:91;;;62424:18;62432:6;62439:1;62432:9;;;;;;;;:::i;:::-;;;;;;;62424:7;:18::i;:::-;62412:6;62419:1;62412:9;;;;;;;;:::i;:::-;-1:-1:-1;;;;;62412:30:0;;;:9;;;;;;;;;;;:30;62398:3;;;;:::i;:::-;;;;62359:91;;;;62489:19;62511:6;62518:1;62511:9;;;;;;;;:::i;:::-;;;;;;;62489:31;;62608:10;-1:-1:-1;;;;;62593:25:0;:11;-1:-1:-1;;;;;62593:25:0;;62585:52;;;;-1:-1:-1;;;62585:52:0;;14373:2:1;62585:52:0;;;14355:21:1;14412:2;14392:18;;;14385:30;-1:-1:-1;;;14431:18:1;;;14424:44;14485:18;;62585:52:0;14171:338:1;62585:52:0;62646:23;:21;:23::i;:::-;-1:-1:-1;62718:13:0;;:17;62714:147;;62793:14;;62760:52;;62747:7;;-1:-1:-1;;;;;62760:25:0;;;62747:7;62760:52;62747:7;62760:52;62793:14;62760:25;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62746:66;;;62829:2;62821:11;;;;;;62852:1;62841:8;;:12;;;;;;;:::i;:::-;;;;-1:-1:-1;;;61989:881:0;;;61948:922::o;60319:122::-;4511:13;:11;:13::i;:::-;60402:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;5531:201::-:0;4511:13;:11;:13::i;:::-;-1:-1:-1;;;;;5620:22:0;::::1;5612:73;;;::::0;-1:-1:-1;;;5612:73:0;;10975:2:1;5612:73:0::1;::::0;::::1;10957:21:1::0;11014:2;10994:18;;;10987:30;11053:34;11033:18;;;11026:62;-1:-1:-1;;;11104:18:1;;;11097:36;11150:19;;5612:73:0::1;10773:402:1::0;5612:73:0::1;5696:28;5715:8;5696:18;:28::i;:::-;5531:201:::0;:::o;59011:90::-;4511:13;:11;:13::i;:::-;59087:5:::1;59082:11;;;;;;;;:::i;:::-;59068;:25:::0;;-1:-1:-1;;59068:25:0::1;::::0;;::::1;::::0;::::1;;;;;;:::i;:::-;;;;;;59011:90:::0;:::o;61316:626::-;61425:16;61459:18;61509:1;61492:147;61517:10;;61512:1;:15;61492:147;;61553:13;;;;:10;:13;;;;;;:26;;61549:79;;;61600:12;;;;:::i;:::-;;;;61549:79;61529:3;;;;:::i;:::-;;;;61492:147;;;;61649:25;61691:10;61677:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61677:25:0;-1:-1:-1;61649:53:0;-1:-1:-1;61713:9:0;61754:1;61737:172;61762:10;;61757:1;:15;61737:172;;61798:13;;;;:10;:13;;;;;;:26;;61794:104;;;61859:1;61845:8;61854:1;61845:11;;;;;;;;:::i;:::-;;;;;;;;;;:15;61879:3;;;;:::i;:::-;;;;61794:104;61774:3;;;;:::i;:::-;;;;61737:172;;;-1:-1:-1;61926:8:0;;61316:626;-1:-1:-1;;;;61316:626:0:o;7323:326::-;-1:-1:-1;;;;;7618:19:0;;:23;;;7323:326::o;25817:305::-;25919:4;-1:-1:-1;;;;;;25956:40:0;;-1:-1:-1;;;25956:40:0;;:105;;-1:-1:-1;;;;;;;26013:48:0;;-1:-1:-1;;;26013:48:0;25956:105;:158;;;-1:-1:-1;;;;;;;;;;17588:40:0;;;26078:36;17479:157;4790:132;4698:6;;-1:-1:-1;;;;;4698:6:0;3256:10;4854:23;4846:68;;;;-1:-1:-1;;;4846:68:0;;16970:2:1;4846:68:0;;;16952:21:1;;;16989:18;;;16982:30;17048:34;17028:18;;;17021:62;17100:18;;4846:68:0;16768:356:1;36232:135:0;31515:4;31539:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31539:16:0;36306:53;;;;-1:-1:-1;;;36306:53:0;;18565:2:1;36306:53:0;;;18547:21:1;18604:2;18584:18;;;18577:30;-1:-1:-1;;;18623:18:1;;;18616:54;18687:18;;36306:53:0;18363:348:1;35511:174:0;35586:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35586:29:0;-1:-1:-1;;;;;35586:29:0;;;;;;;;:24;;35640:23;35586:24;35640:14;:23::i;:::-;-1:-1:-1;;;;;35631:46:0;;;;;;;;;;;35511:174;;:::o;31744:264::-;31837:4;31854:13;31870:23;31885:7;31870:14;:23::i;:::-;31854:39;;31923:5;-1:-1:-1;;;;;31912:16:0;:7;-1:-1:-1;;;;;31912:16:0;;:52;;;-1:-1:-1;;;;;;28847:25:0;;;28823:4;28847:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31932:32;31912:87;;;;31992:7;-1:-1:-1;;;;;31968:31:0;:20;31980:7;31968:11;:20::i;:::-;-1:-1:-1;;;;;31968:31:0;;31904:96;31744:264;-1:-1:-1;;;;31744:264:0:o;34767:625::-;34926:4;-1:-1:-1;;;;;34899:31:0;:23;34914:7;34899:14;:23::i;:::-;-1:-1:-1;;;;;34899:31:0;;34891:81;;;;-1:-1:-1;;;34891:81:0;;11382:2:1;34891:81:0;;;11364:21:1;11421:2;11401:18;;;11394:30;11460:34;11440:18;;;11433:62;-1:-1:-1;;;11511:18:1;;;11504:35;11556:19;;34891:81:0;11180:401:1;34891:81:0;-1:-1:-1;;;;;34991:16:0;;34983:65;;;;-1:-1:-1;;;34983:65:0;;12895:2:1;34983:65:0;;;12877:21:1;12934:2;12914:18;;;12907:30;12973:34;12953:18;;;12946:62;-1:-1:-1;;;13024:18:1;;;13017:34;13068:19;;34983:65:0;12693:400:1;34983:65:0;35061:39;35082:4;35088:2;35092:7;35061:20;:39::i;:::-;35165:29;35182:1;35186:7;35165:8;:29::i;:::-;-1:-1:-1;;;;;35207:15:0;;;;;;:9;:15;;;;;:20;;35226:1;;35207:15;:20;;35226:1;;35207:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35238:13:0;;;;;;:9;:13;;;;;:18;;35255:1;;35238:13;:18;;35255:1;;35238:18;:::i;:::-;;;;-1:-1:-1;;35267:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35267:21:0;-1:-1:-1;;;;;35267:21:0;;;;;;;;;35306:27;;35267:16;;35306:27;;;;;;;27844:347;27774:417;;:::o;62951:292::-;63002:7;63036:21;63122:3;63107:12;63036:21;63117:2;63107:12;:::i;:::-;:18;;;;:::i;:::-;63087:14;;:39;;;;:::i;:::-;63070:14;:56;;;63160:20;;63183:24;;:7;:24;:::i;:::-;63160:47;62951:292;-1:-1:-1;;;62951:292:0:o;32350:110::-;32426:26;32436:2;32440:7;32426:26;;;;;;;;;;;;:9;:26::i;5892:191::-;5985:6;;;-1:-1:-1;;;;;6002:17:0;;;-1:-1:-1;;;;;;6002:17:0;;;;;;;6035:40;;5985:6;;;6002:17;5985:6;;6035:40;;5966:16;;6035:40;5955:128;5892:191;:::o;35828:315::-;35983:8;-1:-1:-1;;;;;35974:17:0;:5;-1:-1:-1;;;;;35974:17:0;;;35966:55;;;;-1:-1:-1;;;35966:55:0;;13300:2:1;35966:55:0;;;13282:21:1;13339:2;13319:18;;;13312:30;13378:27;13358:18;;;13351:55;13423:18;;35966:55:0;13098:349:1;35966:55:0;-1:-1:-1;;;;;36032:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36032:46:0;;;;;;;;;;36094:41;;9142::1;;;36094::0;;9115:18:1;36094:41:0;;;;;;;35828:315;;;:::o;30824:313::-;30980:28;30990:4;30996:2;31000:7;30980:9;:28::i;:::-;31027:47;31050:4;31056:2;31060:7;31069:4;31027:22;:47::i;:::-;31019:110;;;;-1:-1:-1;;;31019:110:0;;;;;;;:::i;47377:190::-;47502:4;47555;47526:25;47539:5;47546:4;47526:12;:25::i;:::-;:33;;47377:190;-1:-1:-1;;;;47377:190:0:o;55940:102::-;56000:13;56029:7;56022:14;;;;;:::i;430:723::-;486:13;707:10;703:53;;-1:-1:-1;;734:10:0;;;;;;;;;;;;-1:-1:-1;;;734:10:0;;;;;430:723::o;703:53::-;781:5;766:12;822:78;829:9;;822:78;;855:8;;;;:::i;:::-;;-1:-1:-1;878:10:0;;-1:-1:-1;886:2:0;878:10;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;932:17:0;;910:39;;960:154;967:10;;960:154;;994:11;1004:1;994:11;;:::i;:::-;;-1:-1:-1;1063:10:0;1071:2;1063:5;:10;:::i;:::-;1050:24;;:2;:24;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1020:56:0;;;;;;;;-1:-1:-1;1091:11:0;1100:2;1091:11;;:::i;:::-;;;960:154;;34010:420;34070:13;34086:23;34101:7;34086:14;:23::i;:::-;34070:39;;34122:48;34143:5;34158:1;34162:7;34122:20;:48::i;:::-;34211:29;34228:1;34232:7;34211:8;:29::i;:::-;-1:-1:-1;;;;;34253:16:0;;;;;;:9;:16;;;;;:21;;34273:1;;34253:16;:21;;34273:1;;34253:21;:::i;:::-;;;;-1:-1:-1;;34292:16:0;;;;:7;:16;;;;;;34285:23;;-1:-1:-1;;;;;;34285:23:0;;;34326:36;34300:7;;34292:16;-1:-1:-1;;;;;34326:36:0;;;;;34292:16;;34326:36;63296:204:::1;;63251:249::o:0;41686:589::-;-1:-1:-1;;;;;41892:18:0;;41888:187;;41927:40;41959:7;43102:10;:17;;43075:24;;;;:15;:24;;;;;:44;;;43130:24;;;;;;;;;;;;42998:164;41927:40;41888:187;;;41997:2;-1:-1:-1;;;;;41989:10:0;:4;-1:-1:-1;;;;;41989:10:0;;41985:90;;42016:47;42049:4;42055:7;42016:32;:47::i;:::-;-1:-1:-1;;;;;42089:16:0;;42085:183;;42122:45;42159:7;42122:36;:45::i;42085:183::-;42195:4;-1:-1:-1;;;;;42189:10:0;:2;-1:-1:-1;;;;;42189:10:0;;42185:83;;42216:40;42244:2;42248:7;42216:27;:40::i;32687:319::-;32816:18;32822:2;32826:7;32816:5;:18::i;:::-;32867:53;32898:1;32902:2;32906:7;32915:4;32867:22;:53::i;:::-;32845:153;;;;-1:-1:-1;;;32845:153:0;;;;;;;:::i;36931:853::-;37085:4;-1:-1:-1;;;;;37106:13:0;;7618:19;:23;37102:675;;37142:71;;-1:-1:-1;;;37142:71:0;;-1:-1:-1;;;;;37142:36:0;;;;;:71;;3256:10;;37193:4;;37199:7;;37208:4;;37142:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37142:71:0;;;;;;;;-1:-1:-1;;37142:71:0;;;;;;;;;;;;:::i;:::-;;;37138:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37383:13:0;;37379:328;;37426:60;;-1:-1:-1;;;37426:60:0;;;;;;;:::i;37379:328::-;37657:6;37651:13;37642:6;37638:2;37634:15;37627:38;37138:584;-1:-1:-1;;;;;;37264:51:0;-1:-1:-1;;;37264:51:0;;-1:-1:-1;37257:58:0;;37102:675;-1:-1:-1;37761:4:0;36931:853;;;;;;:::o;48244:296::-;48327:7;48370:4;48327:7;48385:118;48409:5;:12;48405:1;:16;48385:118;;;48458:33;48468:12;48482:5;48488:1;48482:8;;;;;;;;:::i;:::-;;;;;;;48458:9;:33::i;:::-;48443:48;-1:-1:-1;48423:3:0;;;;:::i;:::-;;;;48385:118;;43789:988;44055:22;44105:1;44080:22;44097:4;44080:16;:22::i;:::-;:26;;;;:::i;:::-;44117:18;44138:26;;;:17;:26;;;;;;44055:51;;-1:-1:-1;44271:28:0;;;44267:328;;-1:-1:-1;;;;;44338:18:0;;44316:19;44338:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44389:30;;;;;;:44;;;44506:30;;:17;:30;;;;;:43;;;44267:328;-1:-1:-1;44691:26:0;;;;:17;:26;;;;;;;;44684:33;;;-1:-1:-1;;;;;44735:18:0;;;;;:12;:18;;;;;:34;;;;;;;44728:41;43789:988::o;45072:1079::-;45350:10;:17;45325:22;;45350:21;;45370:1;;45350:21;:::i;:::-;45382:18;45403:24;;;:15;:24;;;;;;45776:10;:26;;45325:46;;-1:-1:-1;45403:24:0;;45325:46;;45776:26;;;;;;:::i;:::-;;;;;;;;;45754:48;;45840:11;45815:10;45826;45815:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45920:28;;;:15;:28;;;;;;;:41;;;46092:24;;;;;46085:31;46127:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45143:1008;;;45072:1079;:::o;42576:221::-;42661:14;42678:20;42695:2;42678:16;:20::i;:::-;-1:-1:-1;;;;;42709:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42754:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42576:221:0:o;33342:439::-;-1:-1:-1;;;;;33422:16:0;;33414:61;;;;-1:-1:-1;;;33414:61:0;;16258:2:1;33414:61:0;;;16240:21:1;;;16277:18;;;16270:30;16336:34;16316:18;;;16309:62;16388:18;;33414:61:0;16056:356:1;33414:61:0;31515:4;31539:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31539:16:0;:30;33486:58;;;;-1:-1:-1;;;33486:58:0;;11788:2:1;33486:58:0;;;11770:21:1;11827:2;11807:18;;;11800:30;11866;11846:18;;;11839:58;11914:18;;33486:58:0;11586:352:1;33486:58:0;33557:45;33586:1;33590:2;33594:7;33557:20;:45::i;:::-;-1:-1:-1;;;;;33615:13:0;;;;;;:9;:13;;;;;:18;;33632:1;;33615:13;:18;;33632:1;;33615:18;:::i;:::-;;;;-1:-1:-1;;33644:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33644:21:0;-1:-1:-1;;;;;33644:21:0;;;;;;;;33683:33;;33644:16;;;33683:33;;33644:16;;33683:33;63296:204:::1;;63251:249::o:0;54451:149::-;54514:7;54545:1;54541;:5;:51;;54676:13;54770:15;;;54806:4;54799:15;;;54853:4;54837:21;;54541:51;;;-1:-1:-1;54676:13:0;54770:15;;;54806:4;54799:15;54853:4;54837:21;;;54451:149::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;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:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:180::-;3215:6;3268:2;3256:9;3247:7;3243:23;3239:32;3236:52;;;3284:1;3281;3274:12;3236:52;-1:-1:-1;3307:23:1;;3156:180;-1:-1:-1;3156:180:1:o;3341:245::-;3399:6;3452:2;3440:9;3431:7;3427:23;3423:32;3420:52;;;3468:1;3465;3458:12;3420:52;3507:9;3494:23;3526:30;3550:5;3526:30;:::i;3591:249::-;3660:6;3713:2;3701:9;3692:7;3688:23;3684:32;3681:52;;;3729:1;3726;3719:12;3681:52;3761:9;3755:16;3780:30;3804:5;3780:30;:::i;3845:450::-;3914:6;3967:2;3955:9;3946:7;3942:23;3938:32;3935:52;;;3983:1;3980;3973:12;3935:52;4023:9;4010:23;4056:18;4048:6;4045:30;4042:50;;;4088:1;4085;4078:12;4042:50;4111:22;;4164:4;4156:13;;4152:27;-1:-1:-1;4142:55:1;;4193:1;4190;4183:12;4142:55;4216:73;4281:7;4276:2;4263:16;4258:2;4254;4250:11;4216:73;:::i;4485:683::-;4580:6;4588;4596;4649:2;4637:9;4628:7;4624:23;4620:32;4617:52;;;4665:1;4662;4655:12;4617:52;4701:9;4688:23;4678:33;;4762:2;4751:9;4747:18;4734:32;4785:18;4826:2;4818:6;4815:14;4812:34;;;4842:1;4839;4832:12;4812:34;4880:6;4869:9;4865:22;4855:32;;4925:7;4918:4;4914:2;4910:13;4906:27;4896:55;;4947:1;4944;4937:12;4896:55;4987:2;4974:16;5013:2;5005:6;5002:14;4999:34;;;5029:1;5026;5019:12;4999:34;5082:7;5077:2;5067:6;5064:1;5060:14;5056:2;5052:23;5048:32;5045:45;5042:65;;;5103:1;5100;5093:12;5042:65;5134:2;5130;5126:11;5116:21;;5156:6;5146:16;;;;;4485:683;;;;;:::o;5173:248::-;5241:6;5249;5302:2;5290:9;5281:7;5277:23;5273:32;5270:52;;;5318:1;5315;5308:12;5270:52;-1:-1:-1;;5341:23:1;;;5411:2;5396:18;;;5383:32;;-1:-1:-1;5173:248:1:o;5426:257::-;5467:3;5505:5;5499:12;5532:6;5527:3;5520:19;5548:63;5604:6;5597:4;5592:3;5588:14;5581:4;5574:5;5570:16;5548:63;:::i;:::-;5665:2;5644:15;-1:-1:-1;;5640:29:1;5631:39;;;;5672:4;5627:50;;5426:257;-1:-1:-1;;5426:257:1:o;5922:1527::-;6146:3;6184:6;6178:13;6210:4;6223:51;6267:6;6262:3;6257:2;6249:6;6245:15;6223:51;:::i;:::-;6337:13;;6296:16;;;;6359:55;6337:13;6296:16;6381:15;;;6359:55;:::i;:::-;6503:13;;6436:20;;;6476:1;;6563;6585:18;;;;6638;;;;6665:93;;6743:4;6733:8;6729:19;6717:31;;6665:93;6806:2;6796:8;6793:16;6773:18;6770:40;6767:167;;;-1:-1:-1;;;6833:33:1;;6889:4;6886:1;6879:15;6919:4;6840:3;6907:17;6767:167;6950:18;6977:110;;;;7101:1;7096:328;;;;6943:481;;6977:110;-1:-1:-1;;7012:24:1;;6998:39;;7057:20;;;;-1:-1:-1;6977:110:1;;7096:328;21581:1;21574:14;;;21618:4;21605:18;;7191:1;7205:169;7219:8;7216:1;7213:15;7205:169;;;7301:14;;7286:13;;;7279:37;7344:16;;;;7236:10;;7205:169;;;7209:3;;7405:8;7398:5;7394:20;7387:27;;6943:481;-1:-1:-1;7440:3:1;;5922:1527;-1:-1:-1;;;;;;;;;;;5922:1527:1:o;7872:488::-;-1:-1:-1;;;;;8141:15:1;;;8123:34;;8193:15;;8188:2;8173:18;;8166:43;8240:2;8225:18;;8218:34;;;8288:3;8283:2;8268:18;;8261:31;;;8066:4;;8309:45;;8334:19;;8326:6;8309:45;:::i;:::-;8301:53;7872:488;-1:-1:-1;;;;;;7872:488:1:o;8365:632::-;8536:2;8588:21;;;8658:13;;8561:18;;;8680:22;;;8507:4;;8536:2;8759:15;;;;8733:2;8718:18;;;8507:4;8802:169;8816:6;8813:1;8810:13;8802:169;;;8877:13;;8865:26;;8946:15;;;;8911:12;;;;8838:1;8831:9;8802:169;;;-1:-1:-1;8988:3:1;;8365:632;-1:-1:-1;;;;;;8365:632:1:o;9376:337::-;9517:2;9502:18;;9550:1;9539:13;;9529:144;;9595:10;9590:3;9586:20;9583:1;9576:31;9630:4;9627:1;9620:15;9658:4;9655:1;9648:15;9529:144;9682:25;;;9376:337;:::o;9718:219::-;9867:2;9856:9;9849:21;9830:4;9887:44;9927:2;9916:9;9912:18;9904:6;9887:44;:::i;10354:414::-;10556:2;10538:21;;;10595:2;10575:18;;;10568:30;10634:34;10629:2;10614:18;;10607:62;-1:-1:-1;;;10700:2:1;10685:18;;10678:48;10758:3;10743:19;;10354:414::o;13812:354::-;14014:2;13996:21;;;14053:2;14033:18;;;14026:30;14092:32;14087:2;14072:18;;14065:60;14157:2;14142:18;;13812:354::o;17129:411::-;17331:2;17313:21;;;17370:2;17350:18;;;17343:30;17409:34;17404:2;17389:18;;17382:62;-1:-1:-1;;;17475:2:1;17460:18;;17453:45;17530:3;17515:19;;17129:411::o;20572:410::-;20774:2;20756:21;;;20813:2;20793:18;;;20786:30;20852:34;20847:2;20832:18;;20825:62;-1:-1:-1;;;20918:2:1;20903:18;;20896:44;20972:3;20957:19;;20572:410::o;21634:128::-;21674:3;21705:1;21701:6;21698:1;21695:13;21692:39;;;21711:18;;:::i;:::-;-1:-1:-1;21747:9:1;;21634:128::o;21767:120::-;21807:1;21833;21823:35;;21838:18;;:::i;:::-;-1:-1:-1;21872:9:1;;21767:120::o;21892:168::-;21932:7;21998:1;21994;21990:6;21986:14;21983:1;21980:21;21975:1;21968:9;21961:17;21957:45;21954:71;;;22005:18;;:::i;:::-;-1:-1:-1;22045:9:1;;21892:168::o;22065:125::-;22105:4;22133:1;22130;22127:8;22124:34;;;22138:18;;:::i;:::-;-1:-1:-1;22175:9:1;;22065:125::o;22195:258::-;22267:1;22277:113;22291:6;22288:1;22285:13;22277:113;;;22367:11;;;22361:18;22348:11;;;22341:39;22313:2;22306:10;22277:113;;;22408:6;22405:1;22402:13;22399:48;;;-1:-1:-1;;22443:1:1;22425:16;;22418:27;22195:258::o;22458:380::-;22537:1;22533:12;;;;22580;;;22601:61;;22655:4;22647:6;22643:17;22633:27;;22601:61;22708:2;22700:6;22697:14;22677:18;22674:38;22671:161;;;22754:10;22749:3;22745:20;22742:1;22735:31;22789:4;22786:1;22779:15;22817:4;22814:1;22807:15;22671:161;;22458:380;;;:::o;22843:135::-;22882:3;-1:-1:-1;;22903:17:1;;22900:43;;;22923:18;;:::i;:::-;-1:-1:-1;22970:1:1;22959:13;;22843:135::o;22983:112::-;23015:1;23041;23031:35;;23046:18;;:::i;:::-;-1:-1:-1;23080:9:1;;22983:112::o;23100:127::-;23161:10;23156:3;23152:20;23149:1;23142:31;23192:4;23189:1;23182:15;23216:4;23213:1;23206:15;23232:127;23293:10;23288:3;23284:20;23281:1;23274:31;23324:4;23321:1;23314:15;23348:4;23345:1;23338:15;23364:127;23425:10;23420:3;23416:20;23413:1;23406:31;23456:4;23453:1;23446:15;23480:4;23477:1;23470:15;23496:127;23557:10;23552:3;23548:20;23545:1;23538:31;23588:4;23585:1;23578:15;23612:4;23609:1;23602:15;23628:127;23689:10;23684:3;23680:20;23677:1;23670:31;23720:4;23717:1;23710:15;23744:4;23741:1;23734:15;23760:127;23821:10;23816:3;23812:20;23809:1;23802:31;23852:4;23849:1;23842:15;23876:4;23873:1;23866:15;23892:131;-1:-1:-1;;;;;;23966:32:1;;23956:43;;23946:71;;24013:1;24010;24003:12

Swarm Source

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