ETH Price: $3,407.05 (-1.62%)
Gas: 8 Gwei

Token

Project Shura (SHURA)
 

Overview

Max Total Supply

5,500 SHURA

Holders

2,887

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SHURA
0x02a59f642e07bf5b180fd8e51e13dfddf8de1228
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:
ProjectShura

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees 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.
 */
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 Returns the rebuilt hash obtained by traversing a Merklee 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++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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 v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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 v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/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 v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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 v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _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: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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


// 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: contracts/ProjectShura.sol



/*
   ___  ___  ____     _________________  ______ ____  _____  ___ 
  / _ \/ _ \/ __ \__ / / __/ ___/_  __/ / __/ // / / / / _ \/ _ |
 / ___/ , _/ /_/ / // / _// /__  / /   _\ \/ _  / /_/ / , _/ __ |
/_/  /_/|_|\____/\___/___/\___/ /_/   /___/_//_/\____/_/|_/_/ |_|

made with ❤️ by @_bitquence

Twitter: https://twitter.com/Project_Shura
Website: https://projectshura.net
Discord: https://discord.gg/projectshura
*/

pragma solidity ^0.8.0;




contract ProjectShura is ERC721Enumerable, Ownable {
    uint256 public constant MINT_PRICE = 0.09 ether;
    uint256 public constant TOTAL_SUPPLY = 5500;
    uint256 public constant PUBLIC_MINT_LIMIT = 5;
    uint256 public constant PRESALE_MINT_LIMIT = 1;

    bytes32 private merkleRoot;
    string private baseURI;

    /// @dev Inactive = 0; Presale = 1; Public = 2;
    uint256 private saleFlag = 0;
    bool private metadataLocked = false;

    mapping(address => uint256) private amountMintedPerUser;
    mapping(address => bool) private hasClaimedWhitelist;

    constructor(
        string memory _base,
        bytes32 _merkleRoot
    ) ERC721("Project Shura", "SHURA") {
        baseURI = _base;
        merkleRoot = _merkleRoot;
    }

    function lockMetadata() external onlyOwner {
        metadataLocked = true;
    }

    function setFlag(uint256 _new) external onlyOwner onlyUnlocked {
        saleFlag = _new;
    }

    function setMerkleRoot(bytes32 _newRoot) external onlyOwner onlyUnlocked {
        merkleRoot = _newRoot;
    }

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

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

    modifier onlyUnlocked() {
        require(!metadataLocked, "METADATA_LOCKED");
        _;
    }

    modifier onlyWhitelist(bytes32[] calldata _merkleProof) {
        require(hasClaimedWhitelist[msg.sender] == false, "HAS_ALREADY_MINTED");
        require(MerkleProof.verify(
            _merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "INVALID_MERKLE_PROOF");
        _;
    }

    function mintWhitelist(bytes32[] calldata _merkleProof) external payable onlyWhitelist(_merkleProof) {        
        uint256 supply = this.totalSupply();
        require(supply + 1 <= TOTAL_SUPPLY, "EXCEEDS_TOTAL_SUPPLY");
        require(msg.value == MINT_PRICE, "INVALID_VALUE");
        require(saleFlag == 1, "MINTING_PAUSED");

        _mint(msg.sender, supply);
    
        hasClaimedWhitelist[msg.sender] = true;
    }

    function mint(uint256 _amount) external payable {
        uint256 supply = this.totalSupply();
        require(supply + _amount <= TOTAL_SUPPLY, "EXCEEDS_TOTAL_SUPPLY");
        require(msg.value == MINT_PRICE * _amount, "INVALID_VALUE");
        require(saleFlag == 2, "MINTING_PAUSED");
        require(_amount <= 5, "_AMOUNT_TOO_HIGH");
        require(amountMintedPerUser[msg.sender] + _amount <= PUBLIC_MINT_LIMIT, "EXCEEDS_MINT_LIMIT");
        require(tx.origin == msg.sender, "SENDER_IS_NOT_AN_EOA");

        for (uint256 i = 0; i < _amount; i++) {
            _mint(msg.sender, supply + i);
        }

        amountMintedPerUser[msg.sender] += _amount;
    }

    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_base","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","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":[{"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":"lockMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_new","type":"uint256"}],"name":"setFlag","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600d55600e805460ff191690553480156200002057600080fd5b5060405162002891380380620028918339810160408190526200004391620001e4565b604080518082018252600d81526c50726f6a65637420536875726160981b602080830191825283518085019094526005845264534855524160d81b90840152815191929162000095916000916200013e565b508051620000ab9060019060208401906200013e565b505050620000c8620000c2620000e860201b60201c565b620000ec565b8151620000dd90600c9060208501906200013e565b50600b55506200031c565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014c90620002c9565b90600052602060002090601f016020900481019282620001705760008555620001bb565b82601f106200018b57805160ff1916838001178555620001bb565b82800160010185558215620001bb579182015b82811115620001bb5782518255916020019190600101906200019e565b50620001c9929150620001cd565b5090565b5b80821115620001c95760008155600101620001ce565b60008060408385031215620001f857600080fd5b82516001600160401b03808211156200021057600080fd5b818501915085601f8301126200022557600080fd5b8151818111156200023a576200023a62000306565b604051601f8201601f19908116603f0116810190838211818310171562000265576200026562000306565b816040528281526020935088848487010111156200028257600080fd5b600091505b82821015620002a6578482018401518183018501529083019062000287565b82821115620002b85760008484830101525b969092015195979596505050505050565b600181811c90821680620002de57607f821691505b602082108114156200030057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612565806200032c6000396000f3fe6080604052600436106101cd5760003560e01c80637cb64759116100f7578063b88d4fde11610095578063d40c79f011610064578063d40c79f0146104e1578063e985e9c514610501578063f2fde38b1461054a578063f5ebec801461056a57600080fd5b8063b88d4fde14610470578063bceae77b14610490578063c002d23d146104a5578063c87b56dd146104c157600080fd5b806395d89b41116100d157806395d89b4114610413578063989bdbb614610428578063a0712d681461043d578063a22cb4651461045057600080fd5b80637cb64759146103bf5780638da5cb5b146103df578063902d55a5146103fd57600080fd5b80633ccfd60b1161016f57806355f804b31161013e57806355f804b31461034a5780636352211e1461036a57806370a082311461038a578063715018a6146103aa57600080fd5b80633ccfd60b146102e257806342842e0e146102f757806344d84381146103175780634f6ccce71461032a57600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a25780632f745c59146102c257600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed36600461216b565b61057f565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105aa565b6040516101fe919061229f565b34801561023557600080fd5b50610249610244366004612152565b61063c565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c3660046120b3565b6106d6565b005b34801561028f57600080fd5b506008545b6040519081526020016101fe565b3480156102ae57600080fd5b506102816102bd366004611fbf565b6107ec565b3480156102ce57600080fd5b506102946102dd3660046120b3565b61081d565b3480156102ee57600080fd5b506102816108b3565b34801561030357600080fd5b50610281610312366004611fbf565b61090c565b6102816103253660046120dd565b610927565b34801561033657600080fd5b50610294610345366004612152565b610bb5565b34801561035657600080fd5b506102816103653660046121a5565b610c48565b34801561037657600080fd5b50610249610385366004612152565b610cac565b34801561039657600080fd5b506102946103a5366004611f71565b610d23565b3480156103b657600080fd5b50610281610daa565b3480156103cb57600080fd5b506102816103da366004612152565b610de0565b3480156103eb57600080fd5b50600a546001600160a01b0316610249565b34801561040957600080fd5b5061029461157c81565b34801561041f57600080fd5b5061021c610e32565b34801561043457600080fd5b50610281610e41565b61028161044b366004612152565b610e7a565b34801561045c57600080fd5b5061028161046b366004612077565b611118565b34801561047c57600080fd5b5061028161048b366004611ffb565b611123565b34801561049c57600080fd5b50610294600581565b3480156104b157600080fd5b5061029467013fbe85edc9000081565b3480156104cd57600080fd5b5061021c6104dc366004612152565b61115b565b3480156104ed57600080fd5b506102816104fc366004612152565b611236565b34801561050d57600080fd5b506101f261051c366004611f8c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561055657600080fd5b50610281610565366004611f71565b611288565b34801561057657600080fd5b50610294600181565b60006001600160e01b0319821663780e9d6360e01b14806105a457506105a482611320565b92915050565b6060600080546105b990612441565b80601f01602080910402602001604051908101604052809291908181526020018280546105e590612441565b80156106325780601f1061060757610100808354040283529160200191610632565b820191906000526020600020905b81548152906001019060200180831161061557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106ba5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106e182610cac565b9050806001600160a01b0316836001600160a01b0316141561074f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106b1565b336001600160a01b038216148061076b575061076b813361051c565b6107dd5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106b1565b6107e78383611370565b505050565b6107f633826113de565b6108125760405162461bcd60e51b81526004016106b190612362565b6107e78383836114d5565b600061082883610d23565b821061088a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106b1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146108dd5760405162461bcd60e51b81526004016106b19061232d565b60405133904780156108fc02916000818181858888f19350505050158015610909573d6000803e3d6000fd5b50565b6107e783838360405180602001604052806000815250611123565b336000908152601060205260409020548290829060ff16156109805760405162461bcd60e51b8152602060048201526012602482015271121054d7d053149150511657d3525395115160721b60448201526064016106b1565b6109f582828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611680565b610a385760405162461bcd60e51b815260206004820152601460248201527324a72b20a624a22fa6a2a925a622afa82927a7a360611b60448201526064016106b1565b6000306001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610a7357600080fd5b505afa158015610a87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aab91906121ee565b905061157c610abb8260016123b3565b1115610b005760405162461bcd60e51b8152602060048201526014602482015273455843454544535f544f54414c5f535550504c5960601b60448201526064016106b1565b67013fbe85edc900003414610b475760405162461bcd60e51b815260206004820152600d60248201526c494e56414c49445f56414c554560981b60448201526064016106b1565b600d54600114610b8a5760405162461bcd60e51b815260206004820152600e60248201526d13525395125391d7d4105554d15160921b60448201526064016106b1565b610b943382611696565b5050336000908152601060205260409020805460ff19166001179055505050565b6000610bc060085490565b8210610c235760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106b1565b60088281548110610c3657610c366124ed565b90600052602060002001549050919050565b600a546001600160a01b03163314610c725760405162461bcd60e51b81526004016106b19061232d565b600e5460ff1615610c955760405162461bcd60e51b81526004016106b190612304565b8051610ca890600c906020840190611e46565b5050565b6000818152600260205260408120546001600160a01b0316806105a45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106b1565b60006001600160a01b038216610d8e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106b1565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610dd45760405162461bcd60e51b81526004016106b19061232d565b610dde60006117e4565b565b600a546001600160a01b03163314610e0a5760405162461bcd60e51b81526004016106b19061232d565b600e5460ff1615610e2d5760405162461bcd60e51b81526004016106b190612304565b600b55565b6060600180546105b990612441565b600a546001600160a01b03163314610e6b5760405162461bcd60e51b81526004016106b19061232d565b600e805460ff19166001179055565b6000306001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610eb557600080fd5b505afa158015610ec9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eed91906121ee565b905061157c610efc83836123b3565b1115610f415760405162461bcd60e51b8152602060048201526014602482015273455843454544535f544f54414c5f535550504c5960601b60448201526064016106b1565b610f538267013fbe85edc900006123df565b3414610f915760405162461bcd60e51b815260206004820152600d60248201526c494e56414c49445f56414c554560981b60448201526064016106b1565b600d54600214610fd45760405162461bcd60e51b815260206004820152600e60248201526d13525395125391d7d4105554d15160921b60448201526064016106b1565b60058211156110185760405162461bcd60e51b815260206004820152601060248201526f0be829a9eaa9ca8bea89e9ebe90928e960831b60448201526064016106b1565b336000908152600f60205260409020546005906110369084906123b3565b11156110795760405162461bcd60e51b8152602060048201526012602482015271115610d1515114d7d352539517d31253525560721b60448201526064016106b1565b3233146110bf5760405162461bcd60e51b815260206004820152601460248201527353454e4445525f49535f4e4f545f414e5f454f4160601b60448201526064016106b1565b60005b828110156110ef576110dd336110d883856123b3565b611696565b806110e78161247c565b9150506110c2565b50336000908152600f60205260408120805484929061110f9084906123b3565b90915550505050565b610ca8338383611836565b61112d33836113de565b6111495760405162461bcd60e51b81526004016106b190612362565b61115584848484611905565b50505050565b6000818152600260205260409020546060906001600160a01b03166111da5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106b1565b60006111e4611938565b90506000815111611204576040518060200160405280600081525061122f565b8061120e84611947565b60405160200161121f929190612233565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146112605760405162461bcd60e51b81526004016106b19061232d565b600e5460ff16156112835760405162461bcd60e51b81526004016106b190612304565b600d55565b600a546001600160a01b031633146112b25760405162461bcd60e51b81526004016106b19061232d565b6001600160a01b0381166113175760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b1565b610909816117e4565b60006001600160e01b031982166380ac58cd60e01b148061135157506001600160e01b03198216635b5e139f60e01b145b806105a457506301ffc9a760e01b6001600160e01b03198316146105a4565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113a582610cac565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114575760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106b1565b600061146283610cac565b9050806001600160a01b0316846001600160a01b0316148061149d5750836001600160a01b03166114928461063c565b6001600160a01b0316145b806114cd57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166114e882610cac565b6001600160a01b0316146115505760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106b1565b6001600160a01b0382166115b25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106b1565b6115bd838383611a45565b6115c8600082611370565b6001600160a01b03831660009081526003602052604081208054600192906115f19084906123fe565b90915550506001600160a01b038216600090815260036020526040812080546001929061161f9084906123b3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008261168d8584611afd565b14949350505050565b6001600160a01b0382166116ec5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106b1565b6000818152600260205260409020546001600160a01b0316156117515760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106b1565b61175d60008383611a45565b6001600160a01b03821660009081526003602052604081208054600192906117869084906123b3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156118985760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106b1565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6119108484846114d5565b61191c84848484611ba9565b6111555760405162461bcd60e51b81526004016106b1906122b2565b6060600c80546105b990612441565b60608161196b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611995578061197f8161247c565b915061198e9050600a836123cb565b915061196f565b60008167ffffffffffffffff8111156119b0576119b0612503565b6040519080825280601f01601f1916602001820160405280156119da576020820181803683370190505b5090505b84156114cd576119ef6001836123fe565b91506119fc600a86612497565b611a079060306123b3565b60f81b818381518110611a1c57611a1c6124ed565b60200101906001600160f81b031916908160001a905350611a3e600a866123cb565b94506119de565b6001600160a01b038316611aa057611a9b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ac3565b816001600160a01b0316836001600160a01b031614611ac357611ac38382611cb6565b6001600160a01b038216611ada576107e781611d53565b826001600160a01b0316826001600160a01b0316146107e7576107e78282611e02565b600081815b8451811015611ba1576000858281518110611b1f57611b1f6124ed565b60200260200101519050808311611b61576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611b8e565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611b998161247c565b915050611b02565b509392505050565b60006001600160a01b0384163b15611cab57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bed903390899088908890600401612262565b602060405180830381600087803b158015611c0757600080fd5b505af1925050508015611c37575060408051601f3d908101601f19168201909252611c3491810190612188565b60015b611c91573d808015611c65576040519150601f19603f3d011682016040523d82523d6000602084013e611c6a565b606091505b508051611c895760405162461bcd60e51b81526004016106b1906122b2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114cd565b506001949350505050565b60006001611cc384610d23565b611ccd91906123fe565b600083815260076020526040902054909150808214611d20576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d65906001906123fe565b60008381526009602052604081205460088054939450909284908110611d8d57611d8d6124ed565b906000526020600020015490508060088381548110611dae57611dae6124ed565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611de657611de66124d7565b6001900381819060005260206000200160009055905550505050565b6000611e0d83610d23565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611e5290612441565b90600052602060002090601f016020900481019282611e745760008555611eba565b82601f10611e8d57805160ff1916838001178555611eba565b82800160010185558215611eba579182015b82811115611eba578251825591602001919060010190611e9f565b50611ec6929150611eca565b5090565b5b80821115611ec65760008155600101611ecb565b600067ffffffffffffffff80841115611efa57611efa612503565b604051601f8501601f19908116603f01168101908282118183101715611f2257611f22612503565b81604052809350858152868686011115611f3b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f6c57600080fd5b919050565b600060208284031215611f8357600080fd5b61122f82611f55565b60008060408385031215611f9f57600080fd5b611fa883611f55565b9150611fb660208401611f55565b90509250929050565b600080600060608486031215611fd457600080fd5b611fdd84611f55565b9250611feb60208501611f55565b9150604084013590509250925092565b6000806000806080858703121561201157600080fd5b61201a85611f55565b935061202860208601611f55565b925060408501359150606085013567ffffffffffffffff81111561204b57600080fd5b8501601f8101871361205c57600080fd5b61206b87823560208401611edf565b91505092959194509250565b6000806040838503121561208a57600080fd5b61209383611f55565b9150602083013580151581146120a857600080fd5b809150509250929050565b600080604083850312156120c657600080fd5b6120cf83611f55565b946020939093013593505050565b600080602083850312156120f057600080fd5b823567ffffffffffffffff8082111561210857600080fd5b818501915085601f83011261211c57600080fd5b81358181111561212b57600080fd5b8660208260051b850101111561214057600080fd5b60209290920196919550909350505050565b60006020828403121561216457600080fd5b5035919050565b60006020828403121561217d57600080fd5b813561122f81612519565b60006020828403121561219a57600080fd5b815161122f81612519565b6000602082840312156121b757600080fd5b813567ffffffffffffffff8111156121ce57600080fd5b8201601f810184136121df57600080fd5b6114cd84823560208401611edf565b60006020828403121561220057600080fd5b5051919050565b6000815180845261221f816020860160208601612415565b601f01601f19169290920160200192915050565b60008351612245818460208801612415565b835190830190612259818360208801612415565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061229590830184612207565b9695505050505050565b60208152600061122f6020830184612207565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600f908201526e135155105110551057d313d0d2d151608a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156123c6576123c66124ab565b500190565b6000826123da576123da6124c1565b500490565b60008160001904831182151516156123f9576123f96124ab565b500290565b600082821015612410576124106124ab565b500390565b60005b83811015612430578181015183820152602001612418565b838111156111555750506000910152565b600181811c9082168061245557607f821691505b6020821081141561247657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612490576124906124ab565b5060010190565b6000826124a6576124a66124c1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461090957600080fdfea26469706673582212205ee1b7afbfcfd53416efe0f17b7c675d661d3f2cbd6dd96be4e2890791e249fd64736f6c6343000806003300000000000000000000000000000000000000000000000000000000000000404036e637d379e4f72e4199c4d65db31b2d878f5f45ca9d5e27bd0167f09a1f1a0000000000000000000000000000000000000000000000000000000000000042697066733a2f2f516d61674777547843395958663144356f5356624d67593951395751444352746f6d3138516354313673387378482f68696464656e2e6a736f6e23000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80637cb64759116100f7578063b88d4fde11610095578063d40c79f011610064578063d40c79f0146104e1578063e985e9c514610501578063f2fde38b1461054a578063f5ebec801461056a57600080fd5b8063b88d4fde14610470578063bceae77b14610490578063c002d23d146104a5578063c87b56dd146104c157600080fd5b806395d89b41116100d157806395d89b4114610413578063989bdbb614610428578063a0712d681461043d578063a22cb4651461045057600080fd5b80637cb64759146103bf5780638da5cb5b146103df578063902d55a5146103fd57600080fd5b80633ccfd60b1161016f57806355f804b31161013e57806355f804b31461034a5780636352211e1461036a57806370a082311461038a578063715018a6146103aa57600080fd5b80633ccfd60b146102e257806342842e0e146102f757806344d84381146103175780634f6ccce71461032a57600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a25780632f745c59146102c257600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed36600461216b565b61057f565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105aa565b6040516101fe919061229f565b34801561023557600080fd5b50610249610244366004612152565b61063c565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c3660046120b3565b6106d6565b005b34801561028f57600080fd5b506008545b6040519081526020016101fe565b3480156102ae57600080fd5b506102816102bd366004611fbf565b6107ec565b3480156102ce57600080fd5b506102946102dd3660046120b3565b61081d565b3480156102ee57600080fd5b506102816108b3565b34801561030357600080fd5b50610281610312366004611fbf565b61090c565b6102816103253660046120dd565b610927565b34801561033657600080fd5b50610294610345366004612152565b610bb5565b34801561035657600080fd5b506102816103653660046121a5565b610c48565b34801561037657600080fd5b50610249610385366004612152565b610cac565b34801561039657600080fd5b506102946103a5366004611f71565b610d23565b3480156103b657600080fd5b50610281610daa565b3480156103cb57600080fd5b506102816103da366004612152565b610de0565b3480156103eb57600080fd5b50600a546001600160a01b0316610249565b34801561040957600080fd5b5061029461157c81565b34801561041f57600080fd5b5061021c610e32565b34801561043457600080fd5b50610281610e41565b61028161044b366004612152565b610e7a565b34801561045c57600080fd5b5061028161046b366004612077565b611118565b34801561047c57600080fd5b5061028161048b366004611ffb565b611123565b34801561049c57600080fd5b50610294600581565b3480156104b157600080fd5b5061029467013fbe85edc9000081565b3480156104cd57600080fd5b5061021c6104dc366004612152565b61115b565b3480156104ed57600080fd5b506102816104fc366004612152565b611236565b34801561050d57600080fd5b506101f261051c366004611f8c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561055657600080fd5b50610281610565366004611f71565b611288565b34801561057657600080fd5b50610294600181565b60006001600160e01b0319821663780e9d6360e01b14806105a457506105a482611320565b92915050565b6060600080546105b990612441565b80601f01602080910402602001604051908101604052809291908181526020018280546105e590612441565b80156106325780601f1061060757610100808354040283529160200191610632565b820191906000526020600020905b81548152906001019060200180831161061557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106ba5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106e182610cac565b9050806001600160a01b0316836001600160a01b0316141561074f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106b1565b336001600160a01b038216148061076b575061076b813361051c565b6107dd5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106b1565b6107e78383611370565b505050565b6107f633826113de565b6108125760405162461bcd60e51b81526004016106b190612362565b6107e78383836114d5565b600061082883610d23565b821061088a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106b1565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146108dd5760405162461bcd60e51b81526004016106b19061232d565b60405133904780156108fc02916000818181858888f19350505050158015610909573d6000803e3d6000fd5b50565b6107e783838360405180602001604052806000815250611123565b336000908152601060205260409020548290829060ff16156109805760405162461bcd60e51b8152602060048201526012602482015271121054d7d053149150511657d3525395115160721b60448201526064016106b1565b6109f582828080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611680565b610a385760405162461bcd60e51b815260206004820152601460248201527324a72b20a624a22fa6a2a925a622afa82927a7a360611b60448201526064016106b1565b6000306001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610a7357600080fd5b505afa158015610a87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aab91906121ee565b905061157c610abb8260016123b3565b1115610b005760405162461bcd60e51b8152602060048201526014602482015273455843454544535f544f54414c5f535550504c5960601b60448201526064016106b1565b67013fbe85edc900003414610b475760405162461bcd60e51b815260206004820152600d60248201526c494e56414c49445f56414c554560981b60448201526064016106b1565b600d54600114610b8a5760405162461bcd60e51b815260206004820152600e60248201526d13525395125391d7d4105554d15160921b60448201526064016106b1565b610b943382611696565b5050336000908152601060205260409020805460ff19166001179055505050565b6000610bc060085490565b8210610c235760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106b1565b60088281548110610c3657610c366124ed565b90600052602060002001549050919050565b600a546001600160a01b03163314610c725760405162461bcd60e51b81526004016106b19061232d565b600e5460ff1615610c955760405162461bcd60e51b81526004016106b190612304565b8051610ca890600c906020840190611e46565b5050565b6000818152600260205260408120546001600160a01b0316806105a45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106b1565b60006001600160a01b038216610d8e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106b1565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610dd45760405162461bcd60e51b81526004016106b19061232d565b610dde60006117e4565b565b600a546001600160a01b03163314610e0a5760405162461bcd60e51b81526004016106b19061232d565b600e5460ff1615610e2d5760405162461bcd60e51b81526004016106b190612304565b600b55565b6060600180546105b990612441565b600a546001600160a01b03163314610e6b5760405162461bcd60e51b81526004016106b19061232d565b600e805460ff19166001179055565b6000306001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610eb557600080fd5b505afa158015610ec9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eed91906121ee565b905061157c610efc83836123b3565b1115610f415760405162461bcd60e51b8152602060048201526014602482015273455843454544535f544f54414c5f535550504c5960601b60448201526064016106b1565b610f538267013fbe85edc900006123df565b3414610f915760405162461bcd60e51b815260206004820152600d60248201526c494e56414c49445f56414c554560981b60448201526064016106b1565b600d54600214610fd45760405162461bcd60e51b815260206004820152600e60248201526d13525395125391d7d4105554d15160921b60448201526064016106b1565b60058211156110185760405162461bcd60e51b815260206004820152601060248201526f0be829a9eaa9ca8bea89e9ebe90928e960831b60448201526064016106b1565b336000908152600f60205260409020546005906110369084906123b3565b11156110795760405162461bcd60e51b8152602060048201526012602482015271115610d1515114d7d352539517d31253525560721b60448201526064016106b1565b3233146110bf5760405162461bcd60e51b815260206004820152601460248201527353454e4445525f49535f4e4f545f414e5f454f4160601b60448201526064016106b1565b60005b828110156110ef576110dd336110d883856123b3565b611696565b806110e78161247c565b9150506110c2565b50336000908152600f60205260408120805484929061110f9084906123b3565b90915550505050565b610ca8338383611836565b61112d33836113de565b6111495760405162461bcd60e51b81526004016106b190612362565b61115584848484611905565b50505050565b6000818152600260205260409020546060906001600160a01b03166111da5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106b1565b60006111e4611938565b90506000815111611204576040518060200160405280600081525061122f565b8061120e84611947565b60405160200161121f929190612233565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146112605760405162461bcd60e51b81526004016106b19061232d565b600e5460ff16156112835760405162461bcd60e51b81526004016106b190612304565b600d55565b600a546001600160a01b031633146112b25760405162461bcd60e51b81526004016106b19061232d565b6001600160a01b0381166113175760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b1565b610909816117e4565b60006001600160e01b031982166380ac58cd60e01b148061135157506001600160e01b03198216635b5e139f60e01b145b806105a457506301ffc9a760e01b6001600160e01b03198316146105a4565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113a582610cac565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114575760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106b1565b600061146283610cac565b9050806001600160a01b0316846001600160a01b0316148061149d5750836001600160a01b03166114928461063c565b6001600160a01b0316145b806114cd57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166114e882610cac565b6001600160a01b0316146115505760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106b1565b6001600160a01b0382166115b25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106b1565b6115bd838383611a45565b6115c8600082611370565b6001600160a01b03831660009081526003602052604081208054600192906115f19084906123fe565b90915550506001600160a01b038216600090815260036020526040812080546001929061161f9084906123b3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008261168d8584611afd565b14949350505050565b6001600160a01b0382166116ec5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106b1565b6000818152600260205260409020546001600160a01b0316156117515760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106b1565b61175d60008383611a45565b6001600160a01b03821660009081526003602052604081208054600192906117869084906123b3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156118985760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106b1565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6119108484846114d5565b61191c84848484611ba9565b6111555760405162461bcd60e51b81526004016106b1906122b2565b6060600c80546105b990612441565b60608161196b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611995578061197f8161247c565b915061198e9050600a836123cb565b915061196f565b60008167ffffffffffffffff8111156119b0576119b0612503565b6040519080825280601f01601f1916602001820160405280156119da576020820181803683370190505b5090505b84156114cd576119ef6001836123fe565b91506119fc600a86612497565b611a079060306123b3565b60f81b818381518110611a1c57611a1c6124ed565b60200101906001600160f81b031916908160001a905350611a3e600a866123cb565b94506119de565b6001600160a01b038316611aa057611a9b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ac3565b816001600160a01b0316836001600160a01b031614611ac357611ac38382611cb6565b6001600160a01b038216611ada576107e781611d53565b826001600160a01b0316826001600160a01b0316146107e7576107e78282611e02565b600081815b8451811015611ba1576000858281518110611b1f57611b1f6124ed565b60200260200101519050808311611b61576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611b8e565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611b998161247c565b915050611b02565b509392505050565b60006001600160a01b0384163b15611cab57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bed903390899088908890600401612262565b602060405180830381600087803b158015611c0757600080fd5b505af1925050508015611c37575060408051601f3d908101601f19168201909252611c3491810190612188565b60015b611c91573d808015611c65576040519150601f19603f3d011682016040523d82523d6000602084013e611c6a565b606091505b508051611c895760405162461bcd60e51b81526004016106b1906122b2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114cd565b506001949350505050565b60006001611cc384610d23565b611ccd91906123fe565b600083815260076020526040902054909150808214611d20576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d65906001906123fe565b60008381526009602052604081205460088054939450909284908110611d8d57611d8d6124ed565b906000526020600020015490508060088381548110611dae57611dae6124ed565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611de657611de66124d7565b6001900381819060005260206000200160009055905550505050565b6000611e0d83610d23565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611e5290612441565b90600052602060002090601f016020900481019282611e745760008555611eba565b82601f10611e8d57805160ff1916838001178555611eba565b82800160010185558215611eba579182015b82811115611eba578251825591602001919060010190611e9f565b50611ec6929150611eca565b5090565b5b80821115611ec65760008155600101611ecb565b600067ffffffffffffffff80841115611efa57611efa612503565b604051601f8501601f19908116603f01168101908282118183101715611f2257611f22612503565b81604052809350858152868686011115611f3b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611f6c57600080fd5b919050565b600060208284031215611f8357600080fd5b61122f82611f55565b60008060408385031215611f9f57600080fd5b611fa883611f55565b9150611fb660208401611f55565b90509250929050565b600080600060608486031215611fd457600080fd5b611fdd84611f55565b9250611feb60208501611f55565b9150604084013590509250925092565b6000806000806080858703121561201157600080fd5b61201a85611f55565b935061202860208601611f55565b925060408501359150606085013567ffffffffffffffff81111561204b57600080fd5b8501601f8101871361205c57600080fd5b61206b87823560208401611edf565b91505092959194509250565b6000806040838503121561208a57600080fd5b61209383611f55565b9150602083013580151581146120a857600080fd5b809150509250929050565b600080604083850312156120c657600080fd5b6120cf83611f55565b946020939093013593505050565b600080602083850312156120f057600080fd5b823567ffffffffffffffff8082111561210857600080fd5b818501915085601f83011261211c57600080fd5b81358181111561212b57600080fd5b8660208260051b850101111561214057600080fd5b60209290920196919550909350505050565b60006020828403121561216457600080fd5b5035919050565b60006020828403121561217d57600080fd5b813561122f81612519565b60006020828403121561219a57600080fd5b815161122f81612519565b6000602082840312156121b757600080fd5b813567ffffffffffffffff8111156121ce57600080fd5b8201601f810184136121df57600080fd5b6114cd84823560208401611edf565b60006020828403121561220057600080fd5b5051919050565b6000815180845261221f816020860160208601612415565b601f01601f19169290920160200192915050565b60008351612245818460208801612415565b835190830190612259818360208801612415565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061229590830184612207565b9695505050505050565b60208152600061122f6020830184612207565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600f908201526e135155105110551057d313d0d2d151608a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156123c6576123c66124ab565b500190565b6000826123da576123da6124c1565b500490565b60008160001904831182151516156123f9576123f96124ab565b500290565b600082821015612410576124106124ab565b500390565b60005b83811015612430578181015183820152602001612418565b838111156111555750506000910152565b600181811c9082168061245557607f821691505b6020821081141561247657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612490576124906124ab565b5060010190565b6000826124a6576124a66124c1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461090957600080fdfea26469706673582212205ee1b7afbfcfd53416efe0f17b7c675d661d3f2cbd6dd96be4e2890791e249fd64736f6c63430008060033

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

00000000000000000000000000000000000000000000000000000000000000404036e637d379e4f72e4199c4d65db31b2d878f5f45ca9d5e27bd0167f09a1f1a0000000000000000000000000000000000000000000000000000000000000042697066733a2f2f516d61674777547843395958663144356f5356624d67593951395751444352746f6d3138516354313673387378482f68696464656e2e6a736f6e23000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _base (string): ipfs://QmagGwTxC9YXf1D5oSVbMgY9Q9WQDCRtom18QcT16s8sxH/hidden.json#
Arg [1] : _merkleRoot (bytes32): 0x4036e637d379e4f72e4199c4d65db31b2d878f5f45ca9d5e27bd0167f09a1f1a

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 4036e637d379e4f72e4199c4d65db31b2d878f5f45ca9d5e27bd0167f09a1f1a
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [3] : 697066733a2f2f516d61674777547843395958663144356f5356624d67593951
Arg [4] : 395751444352746f6d3138516354313673387378482f68696464656e2e6a736f
Arg [5] : 6e23000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47094:2988:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40434:224;;;;;;;;;;-1:-1:-1;40434:224:0;;;;;:::i;:::-;;:::i;:::-;;;7126:14:1;;7119:22;7101:41;;7089:2;7074:18;40434:224:0;;;;;;;;27928:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29487:221::-;;;;;;;;;;-1:-1:-1;29487:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6424:32:1;;;6406:51;;6394:2;6379:18;29487:221:0;6361:102:1;29010:411:0;;;;;;;;;;-1:-1:-1;29010:411:0;;;;;:::i;:::-;;:::i;:::-;;41074:113;;;;;;;;;;-1:-1:-1;41162:10:0;:17;41074:113;;;17845:25:1;;;17833:2;17818:18;41074:113:0;17800:76:1;30237:339:0;;;;;;;;;;-1:-1:-1;30237:339:0;;;;;:::i;:::-;;:::i;40742:256::-;;;;;;;;;;-1:-1:-1;40742:256:0;;;;;:::i;:::-;;:::i;49970:109::-;;;;;;;;;;;;;:::i;30647:185::-;;;;;;;;;;-1:-1:-1;30647:185:0;;;;;:::i;:::-;;:::i;48834:437::-;;;;;;:::i;:::-;;:::i;41264:233::-;;;;;;;;;;-1:-1:-1;41264:233:0;;;;;:::i;:::-;;:::i;48188:107::-;;;;;;;;;;-1:-1:-1;48188:107:0;;;;;:::i;:::-;;:::i;27622:239::-;;;;;;;;;;-1:-1:-1;27622:239:0;;;;;:::i;:::-;;:::i;27352:208::-;;;;;;;;;;-1:-1:-1;27352:208:0;;;;;:::i;:::-;;:::i;6898:103::-;;;;;;;;;;;;;:::i;48067:113::-;;;;;;;;;;-1:-1:-1;48067:113:0;;;;;:::i;:::-;;:::i;6247:87::-;;;;;;;;;;-1:-1:-1;6320:6:0;;-1:-1:-1;;;;;6320:6:0;6247:87;;47206:43;;;;;;;;;;;;47245:4;47206:43;;28097:104;;;;;;;;;;;;;:::i;47871:83::-;;;;;;;;;;;;;:::i;49279:683::-;;;;;;:::i;:::-;;:::i;29780:155::-;;;;;;;;;;-1:-1:-1;29780:155:0;;;;;:::i;:::-;;:::i;30903:328::-;;;;;;;;;;-1:-1:-1;30903:328:0;;;;;:::i;:::-;;:::i;47256:45::-;;;;;;;;;;;;47300:1;47256:45;;47152:47;;;;;;;;;;;;47189:10;47152:47;;28272:334;;;;;;;;;;-1:-1:-1;28272:334:0;;;;;:::i;:::-;;:::i;47962:97::-;;;;;;;;;;-1:-1:-1;47962:97:0;;;;;:::i;:::-;;:::i;30006:164::-;;;;;;;;;;-1:-1:-1;30006:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30127:25:0;;;30103:4;30127:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30006:164;7156:201;;;;;;;;;;-1:-1:-1;7156:201:0;;;;;:::i;:::-;;:::i;47308:46::-;;;;;;;;;;;;47353:1;47308:46;;40434:224;40536:4;-1:-1:-1;;;;;;40560:50:0;;-1:-1:-1;;;40560:50:0;;:90;;;40614:36;40638:11;40614:23;:36::i;:::-;40553:97;40434:224;-1:-1:-1;;40434:224:0:o;27928:100::-;27982:13;28015:5;28008:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27928:100;:::o;29487:221::-;29563:7;32830:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32830:16:0;29583:73;;;;-1:-1:-1;;;29583:73:0;;14036:2:1;29583:73:0;;;14018:21:1;14075:2;14055:18;;;14048:30;14114:34;14094:18;;;14087:62;-1:-1:-1;;;14165:18:1;;;14158:42;14217:19;;29583:73:0;;;;;;;;;-1:-1:-1;29676:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29676:24:0;;29487:221::o;29010:411::-;29091:13;29107:23;29122:7;29107:14;:23::i;:::-;29091:39;;29155:5;-1:-1:-1;;;;;29149:11:0;:2;-1:-1:-1;;;;;29149:11:0;;;29141:57;;;;-1:-1:-1;;;29141:57:0;;15983:2:1;29141:57:0;;;15965:21:1;16022:2;16002:18;;;15995:30;16061:34;16041:18;;;16034:62;-1:-1:-1;;;16112:18:1;;;16105:31;16153:19;;29141:57:0;15955:223:1;29141:57:0;5051:10;-1:-1:-1;;;;;29233:21:0;;;;:62;;-1:-1:-1;29258:37:0;29275:5;5051:10;30006:164;:::i;29258:37::-;29211:168;;;;-1:-1:-1;;;29211:168:0;;12080:2:1;29211:168:0;;;12062:21:1;12119:2;12099:18;;;12092:30;12158:34;12138:18;;;12131:62;12229:26;12209:18;;;12202:54;12273:19;;29211:168:0;12052:246:1;29211:168:0;29392:21;29401:2;29405:7;29392:8;:21::i;:::-;29080:341;29010:411;;:::o;30237:339::-;30432:41;5051:10;30465:7;30432:18;:41::i;:::-;30424:103;;;;-1:-1:-1;;;30424:103:0;;;;;;;:::i;:::-;30540:28;30550:4;30556:2;30560:7;30540:9;:28::i;40742:256::-;40839:7;40875:23;40892:5;40875:16;:23::i;:::-;40867:5;:31;40859:87;;;;-1:-1:-1;;;40859:87:0;;7579:2:1;40859:87:0;;;7561:21:1;7618:2;7598:18;;;7591:30;7657:34;7637:18;;;7630:62;-1:-1:-1;;;7708:18:1;;;7701:41;7759:19;;40859:87:0;7551:233:1;40859:87:0;-1:-1:-1;;;;;;40964:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40742:256::o;49970:109::-;6320:6;;-1:-1:-1;;;;;6320:6:0;5051:10;6467:23;6459:68;;;;-1:-1:-1;;;6459:68:0;;;;;;;:::i;:::-;50020:51:::1;::::0;50028:10:::1;::::0;50049:21:::1;50020:51:::0;::::1;;;::::0;::::1;::::0;;;50049:21;50028:10;50020:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;49970:109::o:0;30647:185::-;30785:39;30802:4;30808:2;30812:7;30785:39;;;;;;;;;;;;:16;:39::i;48834:437::-;48620:10;48600:31;;;;:19;:31;;;;;;48921:12;;;;48600:31;;:40;48592:71;;;;-1:-1:-1;;;48592:71:0;;14449:2:1;48592:71:0;;;14431:21:1;14488:2;14468:18;;;14461:30;-1:-1:-1;;;14507:18:1;;;14500:48;14565:18;;48592:71:0;14421:168:1;48592:71:0;48682:99;48715:12;;48682:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;48729:10:0;;48751:28;;-1:-1:-1;;48768:10:0;5448:2:1;5444:15;5440:53;48751:28:0;;;5428:66:1;48729:10:0;;-1:-1:-1;5510:12:1;;;-1:-1:-1;48751:28:0;;;;;;;;;;;;48741:39;;;;;;48682:18;:99::i;:::-;48674:132;;;;-1:-1:-1;;;48674:132:0;;11731:2:1;48674:132:0;;;11713:21:1;11770:2;11750:18;;;11743:30;-1:-1:-1;;;11789:18:1;;;11782:50;11849:18;;48674:132:0;11703:170:1;48674:132:0;48954:14:::1;48971:4;-1:-1:-1::0;;;;;48971:16:0::1;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48954:35:::0;-1:-1:-1;47245:4:0::1;49008:10;48954:35:::0;49017:1:::1;49008:10;:::i;:::-;:26;;49000:59;;;::::0;-1:-1:-1;;;49000:59:0;;13326:2:1;49000:59:0::1;::::0;::::1;13308:21:1::0;13365:2;13345:18;;;13338:30;-1:-1:-1;;;13384:18:1;;;13377:50;13444:18;;49000:59:0::1;13298:170:1::0;49000:59:0::1;47189:10;49078:9;:23;49070:49;;;::::0;-1:-1:-1;;;49070:49:0;;17216:2:1;49070:49:0::1;::::0;::::1;17198:21:1::0;17255:2;17235:18;;;17228:30;-1:-1:-1;;;17274:18:1;;;17267:43;17327:18;;49070:49:0::1;17188:163:1::0;49070:49:0::1;49138:8;;49150:1;49138:13;49130:40;;;::::0;-1:-1:-1;;;49130:40:0;;17558:2:1;49130:40:0::1;::::0;::::1;17540:21:1::0;17597:2;17577:18;;;17570:30;-1:-1:-1;;;17616:18:1;;;17609:44;17670:18;;49130:40:0::1;17530:164:1::0;49130:40:0::1;49183:25;49189:10;49201:6;49183:5;:25::i;:::-;-1:-1:-1::0;;49245:10:0::1;49225:31;::::0;;;:19:::1;:31;::::0;;;;:38;;-1:-1:-1;;49225:38:0::1;49259:4;49225:38;::::0;;-1:-1:-1;;;48834:437:0:o;41264:233::-;41339:7;41375:30;41162:10;:17;;41074:113;41375:30;41367:5;:38;41359:95;;;;-1:-1:-1;;;41359:95:0;;16803:2:1;41359:95:0;;;16785:21:1;16842:2;16822:18;;;16815:30;16881:34;16861:18;;;16854:62;-1:-1:-1;;;16932:18:1;;;16925:42;16984:19;;41359:95:0;16775:234:1;41359:95:0;41472:10;41483:5;41472:17;;;;;;;;:::i;:::-;;;;;;;;;41465:24;;41264:233;;;:::o;48188:107::-;6320:6;;-1:-1:-1;;;;;6320:6:0;5051:10;6467:23;6459:68;;;;-1:-1:-1;;;6459:68:0;;;;;;;:::i;:::-;48463:14:::1;::::0;::::1;;48462:15;48454:43;;;;-1:-1:-1::0;;;48454:43:0::1;;;;;;;:::i;:::-;48272:15:::0;;::::2;::::0;:7:::2;::::0;:15:::2;::::0;::::2;::::0;::::2;:::i;:::-;;48188:107:::0;:::o;27622:239::-;27694:7;27730:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27730:16:0;27765:19;27757:73;;;;-1:-1:-1;;;27757:73:0;;12916:2:1;27757:73:0;;;12898:21:1;12955:2;12935:18;;;12928:30;12994:34;12974:18;;;12967:62;-1:-1:-1;;;13045:18:1;;;13038:39;13094:19;;27757:73:0;12888:231:1;27352:208:0;27424:7;-1:-1:-1;;;;;27452:19:0;;27444:74;;;;-1:-1:-1;;;27444:74:0;;12505:2:1;27444:74:0;;;12487:21:1;12544:2;12524:18;;;12517:30;12583:34;12563:18;;;12556:62;-1:-1:-1;;;12634:18:1;;;12627:40;12684:19;;27444:74:0;12477:232:1;27444:74:0;-1:-1:-1;;;;;;27536:16:0;;;;;:9;:16;;;;;;;27352:208::o;6898:103::-;6320:6;;-1:-1:-1;;;;;6320:6:0;5051:10;6467:23;6459:68;;;;-1:-1:-1;;;6459:68:0;;;;;;;:::i;:::-;6963:30:::1;6990:1;6963:18;:30::i;:::-;6898:103::o:0;48067:113::-;6320:6;;-1:-1:-1;;;;;6320:6:0;5051:10;6467:23;6459:68;;;;-1:-1:-1;;;6459:68:0;;;;;;;:::i;:::-;48463:14:::1;::::0;::::1;;48462:15;48454:43;;;;-1:-1:-1::0;;;48454:43:0::1;;;;;;;:::i;:::-;48151:10:::2;:21:::0;48067:113::o;28097:104::-;28153:13;28186:7;28179:14;;;;;:::i;47871:83::-;6320:6;;-1:-1:-1;;;;;6320:6:0;5051:10;6467:23;6459:68;;;;-1:-1:-1;;;6459:68:0;;;;;;;:::i;:::-;47925:14:::1;:21:::0;;-1:-1:-1;;47925:21:0::1;47942:4;47925:21;::::0;;47871:83::o;49279:683::-;49338:14;49355:4;-1:-1:-1;;;;;49355:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49338:35;-1:-1:-1;47245:4:0;49392:16;49401:7;49338:35;49392:16;:::i;:::-;:32;;49384:65;;;;-1:-1:-1;;;49384:65:0;;13326:2:1;49384:65:0;;;13308:21:1;13365:2;13345:18;;;13338:30;-1:-1:-1;;;13384:18:1;;;13377:50;13444:18;;49384:65:0;13298:170:1;49384:65:0;49481:20;49494:7;47189:10;49481:20;:::i;:::-;49468:9;:33;49460:59;;;;-1:-1:-1;;;49460:59:0;;17216:2:1;49460:59:0;;;17198:21:1;17255:2;17235:18;;;17228:30;-1:-1:-1;;;17274:18:1;;;17267:43;17327:18;;49460:59:0;17188:163:1;49460:59:0;49538:8;;49550:1;49538:13;49530:40;;;;-1:-1:-1;;;49530:40:0;;17558:2:1;49530:40:0;;;17540:21:1;17597:2;17577:18;;;17570:30;-1:-1:-1;;;17616:18:1;;;17609:44;17670:18;;49530:40:0;17530:164:1;49530:40:0;49600:1;49589:7;:12;;49581:41;;;;-1:-1:-1;;;49581:41:0;;9523:2:1;49581:41:0;;;9505:21:1;9562:2;9542:18;;;9535:30;-1:-1:-1;;;9581:18:1;;;9574:46;9637:18;;49581:41:0;9495:166:1;49581:41:0;49661:10;49641:31;;;;:19;:31;;;;;;47300:1;;49641:41;;49675:7;;49641:41;:::i;:::-;:62;;49633:93;;;;-1:-1:-1;;;49633:93:0;;10627:2:1;49633:93:0;;;10609:21:1;10666:2;10646:18;;;10639:30;-1:-1:-1;;;10685:18:1;;;10678:48;10743:18;;49633:93:0;10599:168:1;49633:93:0;49745:9;49758:10;49745:23;49737:56;;;;-1:-1:-1;;;49737:56:0;;8410:2:1;49737:56:0;;;8392:21:1;8449:2;8429:18;;;8422:30;-1:-1:-1;;;8468:18:1;;;8461:50;8528:18;;49737:56:0;8382:170:1;49737:56:0;49811:9;49806:94;49830:7;49826:1;:11;49806:94;;;49859:29;49865:10;49877;49886:1;49877:6;:10;:::i;:::-;49859:5;:29::i;:::-;49839:3;;;;:::i;:::-;;;;49806:94;;;-1:-1:-1;49932:10:0;49912:31;;;;:19;:31;;;;;:42;;49947:7;;49912:31;:42;;49947:7;;49912:42;:::i;:::-;;;;-1:-1:-1;;;;49279:683:0:o;29780:155::-;29875:52;5051:10;29908:8;29918;29875:18;:52::i;30903:328::-;31078:41;5051:10;31111:7;31078:18;:41::i;:::-;31070:103;;;;-1:-1:-1;;;31070:103:0;;;;;;;:::i;:::-;31184:39;31198:4;31204:2;31208:7;31217:5;31184:13;:39::i;:::-;30903:328;;;;:::o;28272:334::-;32806:4;32830:16;;;:7;:16;;;;;;28345:13;;-1:-1:-1;;;;;32830:16:0;28371:76;;;;-1:-1:-1;;;28371:76:0;;15567:2:1;28371:76:0;;;15549:21:1;15606:2;15586:18;;;15579:30;15645:34;15625:18;;;15618:62;-1:-1:-1;;;15696:18:1;;;15689:45;15751:19;;28371:76:0;15539:237:1;28371:76:0;28460:21;28484:10;:8;:10::i;:::-;28460:34;;28536:1;28518:7;28512:21;:25;:86;;;;;;;;;;;;;;;;;28564:7;28573:18;:7;:16;:18::i;:::-;28547:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28512:86;28505:93;28272:334;-1:-1:-1;;;28272:334:0:o;47962:97::-;6320:6;;-1:-1:-1;;;;;6320:6:0;5051:10;6467:23;6459:68;;;;-1:-1:-1;;;6459:68:0;;;;;;;:::i;:::-;48463:14:::1;::::0;::::1;;48462:15;48454:43;;;;-1:-1:-1::0;;;48454:43:0::1;;;;;;;:::i;:::-;48036:8:::2;:15:::0;47962:97::o;7156:201::-;6320:6;;-1:-1:-1;;;;;6320:6:0;5051:10;6467:23;6459:68;;;;-1:-1:-1;;;6459:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7245:22:0;::::1;7237:73;;;::::0;-1:-1:-1;;;7237:73:0;;8759:2:1;7237:73:0::1;::::0;::::1;8741:21:1::0;8798:2;8778:18;;;8771:30;8837:34;8817:18;;;8810:62;-1:-1:-1;;;8888:18:1;;;8881:36;8934:19;;7237:73:0::1;8731:228:1::0;7237:73:0::1;7321:28;7340:8;7321:18;:28::i;26983:305::-:0;27085:4;-1:-1:-1;;;;;;27122:40:0;;-1:-1:-1;;;27122:40:0;;:105;;-1:-1:-1;;;;;;;27179:48:0;;-1:-1:-1;;;27179:48:0;27122:105;:158;;;-1:-1:-1;;;;;;;;;;18788:40:0;;;27244:36;18679:157;36723:174;36798:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36798:29:0;-1:-1:-1;;;;;36798:29:0;;;;;;;;:24;;36852:23;36798:24;36852:14;:23::i;:::-;-1:-1:-1;;;;;36843:46:0;;;;;;;;;;;36723:174;;:::o;33035:348::-;33128:4;32830:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32830:16:0;33145:73;;;;-1:-1:-1;;;33145:73:0;;11318:2:1;33145:73:0;;;11300:21:1;11357:2;11337:18;;;11330:30;11396:34;11376:18;;;11369:62;-1:-1:-1;;;11447:18:1;;;11440:42;11499:19;;33145:73:0;11290:234:1;33145:73:0;33229:13;33245:23;33260:7;33245:14;:23::i;:::-;33229:39;;33298:5;-1:-1:-1;;;;;33287:16:0;:7;-1:-1:-1;;;;;33287:16:0;;:51;;;;33331:7;-1:-1:-1;;;;;33307:31:0;:20;33319:7;33307:11;:20::i;:::-;-1:-1:-1;;;;;33307:31:0;;33287:51;:87;;;-1:-1:-1;;;;;;30127:25:0;;;30103:4;30127:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33342:32;33279:96;33035:348;-1:-1:-1;;;;33035:348:0:o;36027:578::-;36186:4;-1:-1:-1;;;;;36159:31:0;:23;36174:7;36159:14;:23::i;:::-;-1:-1:-1;;;;;36159:31:0;;36151:85;;;;-1:-1:-1;;;36151:85:0;;15157:2:1;36151:85:0;;;15139:21:1;15196:2;15176:18;;;15169:30;15235:34;15215:18;;;15208:62;-1:-1:-1;;;15286:18:1;;;15279:39;15335:19;;36151:85:0;15129:231:1;36151:85:0;-1:-1:-1;;;;;36255:16:0;;36247:65;;;;-1:-1:-1;;;36247:65:0;;9868:2:1;36247:65:0;;;9850:21:1;9907:2;9887:18;;;9880:30;9946:34;9926:18;;;9919:62;-1:-1:-1;;;9997:18:1;;;9990:34;10041:19;;36247:65:0;9840:226:1;36247:65:0;36325:39;36346:4;36352:2;36356:7;36325:20;:39::i;:::-;36429:29;36446:1;36450:7;36429:8;:29::i;:::-;-1:-1:-1;;;;;36471:15:0;;;;;;:9;:15;;;;;:20;;36490:1;;36471:15;:20;;36490:1;;36471:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36502:13:0;;;;;;:9;:13;;;;;:18;;36519:1;;36502:13;:18;;36519:1;;36502:18;:::i;:::-;;;;-1:-1:-1;;36531:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36531:21:0;-1:-1:-1;;;;;36531:21:0;;;;;;;;;36570:27;;36531:16;;36570:27;;;;;;;36027:578;;;:::o;908:190::-;1033:4;1086;1057:25;1070:5;1077:4;1057:12;:25::i;:::-;:33;;908:190;-1:-1:-1;;;;908:190:0:o;34719:382::-;-1:-1:-1;;;;;34799:16:0;;34791:61;;;;-1:-1:-1;;;34791:61:0;;13675:2:1;34791:61:0;;;13657:21:1;;;13694:18;;;13687:30;13753:34;13733:18;;;13726:62;13805:18;;34791:61:0;13647:182:1;34791:61:0;32806:4;32830:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32830:16:0;:30;34863:58;;;;-1:-1:-1;;;34863:58:0;;9166:2:1;34863:58:0;;;9148:21:1;9205:2;9185:18;;;9178:30;9244;9224:18;;;9217:58;9292:18;;34863:58:0;9138:178:1;34863:58:0;34934:45;34963:1;34967:2;34971:7;34934:20;:45::i;:::-;-1:-1:-1;;;;;34992:13:0;;;;;;:9;:13;;;;;:18;;35009:1;;34992:13;:18;;35009:1;;34992:18;:::i;:::-;;;;-1:-1:-1;;35021:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35021:21:0;-1:-1:-1;;;;;35021:21:0;;;;;;;;35060:33;;35021:16;;;35060:33;;35021:16;;35060:33;34719:382;;:::o;7517:191::-;7610:6;;;-1:-1:-1;;;;;7627:17:0;;;-1:-1:-1;;;;;;7627:17:0;;;;;;;7660:40;;7610:6;;;7627:17;7610:6;;7660:40;;7591:16;;7660:40;7580:128;7517:191;:::o;37039:315::-;37194:8;-1:-1:-1;;;;;37185:17:0;:5;-1:-1:-1;;;;;37185:17:0;;;37177:55;;;;-1:-1:-1;;;37177:55:0;;10273:2:1;37177:55:0;;;10255:21:1;10312:2;10292:18;;;10285:30;10351:27;10331:18;;;10324:55;10396:18;;37177:55:0;10245:175:1;37177:55:0;-1:-1:-1;;;;;37243:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37243:46:0;;;;;;;;;;37305:41;;7101::1;;;37305::0;;7074:18:1;37305:41:0;;;;;;;37039:315;;;:::o;32113:::-;32270:28;32280:4;32286:2;32290:7;32270:9;:28::i;:::-;32317:48;32340:4;32346:2;32350:7;32359:5;32317:22;:48::i;:::-;32309:111;;;;-1:-1:-1;;;32309:111:0;;;;;;;:::i;48303:108::-;48363:13;48396:7;48389:14;;;;;:::i;2533:723::-;2589:13;2810:10;2806:53;;-1:-1:-1;;2837:10:0;;;;;;;;;;;;-1:-1:-1;;;2837:10:0;;;;;2533:723::o;2806:53::-;2884:5;2869:12;2925:78;2932:9;;2925:78;;2958:8;;;;:::i;:::-;;-1:-1:-1;2981:10:0;;-1:-1:-1;2989:2:0;2981:10;;:::i;:::-;;;2925:78;;;3013:19;3045:6;3035:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3035:17:0;;3013:39;;3063:154;3070:10;;3063:154;;3097:11;3107:1;3097:11;;:::i;:::-;;-1:-1:-1;3166:10:0;3174:2;3166:5;:10;:::i;:::-;3153:24;;:2;:24;:::i;:::-;3140:39;;3123:6;3130;3123:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3123:56:0;;;;;;;;-1:-1:-1;3194:11:0;3203:2;3194:11;;:::i;:::-;;;3063:154;;42110:589;-1:-1:-1;;;;;42316:18:0;;42312:187;;42351:40;42383:7;43526:10;:17;;43499:24;;;;:15;:24;;;;;:44;;;43554:24;;;;;;;;;;;;43422:164;42351:40;42312:187;;;42421:2;-1:-1:-1;;;;;42413:10:0;:4;-1:-1:-1;;;;;42413:10:0;;42409:90;;42440:47;42473:4;42479:7;42440:32;:47::i;:::-;-1:-1:-1;;;;;42513:16:0;;42509:183;;42546:45;42583:7;42546:36;:45::i;42509:183::-;42619:4;-1:-1:-1;;;;;42613:10:0;:2;-1:-1:-1;;;;;42613:10:0;;42609:83;;42640:40;42668:2;42672:7;42640:27;:40::i;1460:701::-;1543:7;1586:4;1543:7;1601:523;1625:5;:12;1621:1;:16;1601:523;;;1659:20;1682:5;1688:1;1682:8;;;;;;;;:::i;:::-;;;;;;;1659:31;;1725:12;1709;:28;1705:408;;1862:44;;;;;;5690:19:1;;;5725:12;;;5718:28;;;5762:12;;1862:44:0;;;;;;;;;;;;1852:55;;;;;;1837:70;;1705:408;;;2052:44;;;;;;5690:19:1;;;5725:12;;;5718:28;;;5762:12;;2052:44:0;;;;;;;;;;;;2042:55;;;;;;2027:70;;1705:408;-1:-1:-1;1639:3:0;;;;:::i;:::-;;;;1601:523;;;-1:-1:-1;2141:12:0;1460:701;-1:-1:-1;;;1460:701:0:o;37919:799::-;38074:4;-1:-1:-1;;;;;38095:13:0;;8858:20;8906:8;38091:620;;38131:72;;-1:-1:-1;;;38131:72:0;;-1:-1:-1;;;;;38131:36:0;;;;;:72;;5051:10;;38182:4;;38188:7;;38197:5;;38131:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38131:72:0;;;;;;;;-1:-1:-1;;38131:72:0;;;;;;;;;;;;:::i;:::-;;;38127:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38373:13:0;;38369:272;;38416:60;;-1:-1:-1;;;38416:60:0;;;;;;;:::i;38369:272::-;38591:6;38585:13;38576:6;38572:2;38568:15;38561:38;38127:529;-1:-1:-1;;;;;;38254:51:0;-1:-1:-1;;;38254:51:0;;-1:-1:-1;38247:58:0;;38091:620;-1:-1:-1;38695:4:0;37919:799;;;;;;:::o;44213:988::-;44479:22;44529:1;44504:22;44521:4;44504:16;:22::i;:::-;:26;;;;:::i;:::-;44541:18;44562:26;;;:17;:26;;;;;;44479:51;;-1:-1:-1;44695:28:0;;;44691:328;;-1:-1:-1;;;;;44762:18:0;;44740:19;44762:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44813:30;;;;;;:44;;;44930:30;;:17;:30;;;;;:43;;;44691:328;-1:-1:-1;45115:26:0;;;;:17;:26;;;;;;;;45108:33;;;-1:-1:-1;;;;;45159:18:0;;;;;:12;:18;;;;;:34;;;;;;;45152:41;44213:988::o;45496:1079::-;45774:10;:17;45749:22;;45774:21;;45794:1;;45774:21;:::i;:::-;45806:18;45827:24;;;:15;:24;;;;;;46200:10;:26;;45749:46;;-1:-1:-1;45827:24:0;;45749:46;;46200:26;;;;;;:::i;:::-;;;;;;;;;46178:48;;46264:11;46239:10;46250;46239:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;46344:28;;;:15;:28;;;;;;;:41;;;46516:24;;;;;46509:31;46551:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45567:1008;;;45496:1079;:::o;43000:221::-;43085:14;43102:20;43119:2;43102:16;:20::i;:::-;-1:-1:-1;;;;;43133:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43178:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43000:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;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:2;;;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:2;;;532:1;529;522:12;491:2;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;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;956:1;953;946:12;908:2;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:2;;;1164:1;1161;1154:12;1116:2;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1106:173;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:2;;;1446:1;1443;1436:12;1398:2;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1388:224;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:2;;;1806:1;1803;1796:12;1757:2;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:2;;;2076:1;2073;2066:12;2030:2;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:2:1;;2181:1;2178;2171:12;2130:2;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1747:536;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:2;;;2430:1;2427;2420:12;2382:2;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:2;;2601:1;2598;2591:12;2545:2;2624:5;2614:15;;;2372:263;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:2;;;2785:1;2782;2775:12;2737:2;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2727:167:1:o;2899:615::-;2985:6;2993;3046:2;3034:9;3025:7;3021:23;3017:32;3014:2;;;3062:1;3059;3052:12;3014:2;3102:9;3089:23;3131:18;3172:2;3164:6;3161:14;3158:2;;;3188:1;3185;3178:12;3158:2;3226:6;3215:9;3211:22;3201:32;;3271:7;3264:4;3260:2;3256:13;3252:27;3242:2;;3293:1;3290;3283:12;3242:2;3333;3320:16;3359:2;3351:6;3348:14;3345:2;;;3375:1;3372;3365:12;3345:2;3428:7;3423:2;3413:6;3410:1;3406:14;3402:2;3398:23;3394:32;3391:45;3388:2;;;3449:1;3446;3439:12;3388:2;3480;3472:11;;;;;3502:6;;-1:-1:-1;3004:510:1;;-1:-1:-1;;;;3004:510:1:o;3519:180::-;3578:6;3631:2;3619:9;3610:7;3606:23;3602:32;3599:2;;;3647:1;3644;3637:12;3599:2;-1:-1:-1;3670:23:1;;3589:110;-1:-1:-1;3589:110:1:o;3704:245::-;3762:6;3815:2;3803:9;3794:7;3790:23;3786:32;3783:2;;;3831:1;3828;3821:12;3783:2;3870:9;3857:23;3889:30;3913:5;3889:30;:::i;3954:249::-;4023:6;4076:2;4064:9;4055:7;4051:23;4047:32;4044:2;;;4092:1;4089;4082:12;4044:2;4124:9;4118:16;4143:30;4167:5;4143:30;:::i;4208:450::-;4277:6;4330:2;4318:9;4309:7;4305:23;4301:32;4298:2;;;4346:1;4343;4336:12;4298:2;4386:9;4373:23;4419:18;4411:6;4408:30;4405:2;;;4451:1;4448;4441:12;4405:2;4474:22;;4527:4;4519:13;;4515:27;-1:-1:-1;4505:2:1;;4556:1;4553;4546:12;4505:2;4579:73;4644:7;4639:2;4626:16;4621:2;4617;4613:11;4579:73;:::i;4848:184::-;4918:6;4971:2;4959:9;4950:7;4946:23;4942:32;4939:2;;;4987:1;4984;4977:12;4939:2;-1:-1:-1;5010:16:1;;4929:103;-1:-1:-1;4929:103:1:o;5037:257::-;5078:3;5116:5;5110:12;5143:6;5138:3;5131:19;5159:63;5215:6;5208:4;5203:3;5199:14;5192:4;5185:5;5181:16;5159:63;:::i;:::-;5276:2;5255:15;-1:-1:-1;;5251:29:1;5242:39;;;;5283:4;5238:50;;5086:208;-1:-1:-1;;5086:208:1:o;5785:470::-;5964:3;6002:6;5996:13;6018:53;6064:6;6059:3;6052:4;6044:6;6040:17;6018:53;:::i;:::-;6134:13;;6093:16;;;;6156:57;6134:13;6093:16;6190:4;6178:17;;6156:57;:::i;:::-;6229:20;;5972:283;-1:-1:-1;;;;5972:283:1:o;6468:488::-;-1:-1:-1;;;;;6737:15:1;;;6719:34;;6789:15;;6784:2;6769:18;;6762:43;6836:2;6821:18;;6814:34;;;6884:3;6879:2;6864:18;;6857:31;;;6662:4;;6905:45;;6930:19;;6922:6;6905:45;:::i;:::-;6897:53;6671:285;-1:-1:-1;;;;;;6671:285:1:o;7153:219::-;7302:2;7291:9;7284:21;7265:4;7322:44;7362:2;7351:9;7347:18;7339:6;7322:44;:::i;7789:414::-;7991:2;7973:21;;;8030:2;8010:18;;;8003:30;8069:34;8064:2;8049:18;;8042:62;-1:-1:-1;;;8135:2:1;8120:18;;8113:48;8193:3;8178:19;;7963:240::o;10772:339::-;10974:2;10956:21;;;11013:2;10993:18;;;10986:30;-1:-1:-1;;;11047:2:1;11032:18;;11025:45;11102:2;11087:18;;10946:165::o;14594:356::-;14796:2;14778:21;;;14815:18;;;14808:30;14874:34;14869:2;14854:18;;14847:62;14941:2;14926:18;;14768:182::o;16183:413::-;16385:2;16367:21;;;16424:2;16404:18;;;16397:30;16463:34;16458:2;16443:18;;16436:62;-1:-1:-1;;;16529:2:1;16514:18;;16507:47;16586:3;16571:19;;16357:239::o;17881:128::-;17921:3;17952:1;17948:6;17945:1;17942:13;17939:2;;;17958:18;;:::i;:::-;-1:-1:-1;17994:9:1;;17929:80::o;18014:120::-;18054:1;18080;18070:2;;18085:18;;:::i;:::-;-1:-1:-1;18119:9:1;;18060:74::o;18139:168::-;18179:7;18245:1;18241;18237:6;18233:14;18230:1;18227:21;18222:1;18215:9;18208:17;18204:45;18201:2;;;18252:18;;:::i;:::-;-1:-1:-1;18292:9:1;;18191:116::o;18312:125::-;18352:4;18380:1;18377;18374:8;18371:2;;;18385:18;;:::i;:::-;-1:-1:-1;18422:9:1;;18361:76::o;18442:258::-;18514:1;18524:113;18538:6;18535:1;18532:13;18524:113;;;18614:11;;;18608:18;18595:11;;;18588:39;18560:2;18553:10;18524:113;;;18655:6;18652:1;18649:13;18646:2;;;-1:-1:-1;;18690:1:1;18672:16;;18665:27;18495:205::o;18705:380::-;18784:1;18780:12;;;;18827;;;18848:2;;18902:4;18894:6;18890:17;18880:27;;18848:2;18955;18947:6;18944:14;18924:18;18921:38;18918:2;;;19001:10;18996:3;18992:20;18989:1;18982:31;19036:4;19033:1;19026:15;19064:4;19061:1;19054:15;18918:2;;18760:325;;;:::o;19090:135::-;19129:3;-1:-1:-1;;19150:17:1;;19147:2;;;19170:18;;:::i;:::-;-1:-1:-1;19217:1:1;19206:13;;19137:88::o;19230:112::-;19262:1;19288;19278:2;;19293:18;;:::i;:::-;-1:-1:-1;19327:9:1;;19268:74::o;19347:127::-;19408:10;19403:3;19399:20;19396:1;19389:31;19439:4;19436:1;19429:15;19463:4;19460:1;19453:15;19479:127;19540:10;19535:3;19531:20;19528:1;19521:31;19571:4;19568:1;19561:15;19595:4;19592:1;19585:15;19611:127;19672:10;19667:3;19663:20;19660:1;19653:31;19703:4;19700:1;19693:15;19727:4;19724:1;19717:15;19743:127;19804:10;19799:3;19795:20;19792:1;19785:31;19835:4;19832:1;19825:15;19859:4;19856:1;19849:15;19875:127;19936:10;19931:3;19927:20;19924:1;19917:31;19967:4;19964:1;19957:15;19991:4;19988:1;19981:15;20007:131;-1:-1:-1;;;;;;20081:32:1;;20071:43;;20061:2;;20128:1;20125;20118:12

Swarm Source

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