ETH Price: $3,198.39 (+2.03%)
Gas: 32 Gwei

Token

Earth Call Official Collection (EARTH)
 

Overview

Max Total Supply

103 EARTH

Holders

45

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
bagbiaised.eth
Balance
3 EARTH
0xf393d0abff92cd57c7263a0bc3aa579e9d618f9c
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:
EarthCall

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-18
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

// File @openzeppelin/contracts/utils/[email protected]

/**
 * @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/[email protected]

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

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

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

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

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

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

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

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




// File @openzeppelin/contracts/utils/introspection/[email protected]

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

/**
 * @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 whiteed 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 whiteed 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/[email protected]

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/utils/[email protected]

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]

/**
 * @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/[email protected]

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

/**
 * @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/[email protected]


/**
 * @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 whites for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/math/[email protected]


// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}




/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

  // 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
   * `maxBatchSize` refers to how much a minter can mint at a time.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_
  ) {
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  function walletOfOwner(address owner) public view returns(uint256[] memory) {
    uint256 tokenCount = balanceOf(owner);

    uint256[] memory tokenIds = new uint256[](tokenCount);
    if (tokenCount == 0)
    {
      return tokenIds;
    }

    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        tokenIds[tokenIdsIdx] = i;
        tokenIdsIdx++;
        if (tokenIdsIdx == tokenCount) {
          return tokenIds;
        }
      }
    }
    revert("ERC721A: unable to get walletOfOwner");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

  /**
   * @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 override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

  /**
   * @dev See {IERC721-transferFrom}.
   */
  function transferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public virtual override {
    _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 {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: 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`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * 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
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > currentIndex - 1) {
      endIndex = currentIndex - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * 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`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

contract EarthCall is ERC721A, Ownable {
    constructor() ERC721A("Earth Call Official Collection", "EARTH",50) {}

    using SafeMath for uint256;
    using Strings for uint256;

    string private baseURI;
    string private blindURI;
    uint256 public constant BUY_LIMIT_PER_TX = 50;
    uint256 public constant MAX_NFT_PUBLIC = 2953;
    uint256 private constant MAX_NFT = 3033;
    uint256 public NFTPrice = 180000000000000000;  // 0.18 ETH
    bool public reveal;
    bool public isActive;
    bool public isPresaleActive;
    bool public freeMintActive;
    bytes32 public root;
    uint256 public WHITELIST_MAX_MINT = 2;
    mapping(address => uint256) public whiteListClaimed;
    mapping(address => bool) private giveawayMintClaimed;


    /*
     * Function to reveal all EARTH CALL
    */
    function revealNow()
        external
        onlyOwner
    {
        reveal = true;
    }

    /*
     * Function setIsActive to activate/desactivate the smart contract
    */
    function setIsActive(
        bool _isActive
    )
        external
        onlyOwner
    {
        isActive = _isActive;
    }

    /*
     * Function setPresaleActive to activate/desactivate the whitelist/raffle presale
    */
    function setPresaleActive(
        bool _isActive
    )
        external
        onlyOwner
    {
        isPresaleActive = _isActive;
    }

    /*
     * Function setFreeMintActive to activate/desactivate the free mint capability
    */
    function setFreeMintActive(
        bool _isActive
    )
        external
        onlyOwner
    {
        freeMintActive = _isActive;
    }

    /*
     * Function to set Base and Blind URI
    */
    function setURIs(
        string memory _blindURI,
        string memory _URI
    )
        external
        onlyOwner
    {
        blindURI = _blindURI;
        baseURI = _URI;
    }

    /*
     * Function to set NFT Price
    */
    function setNFTPrice(uint256 _price) external onlyOwner {
        NFTPrice = _price;
    }

    /*
     * Function to withdraw collected amount during minting by the owner
    */
    function withdraw(
    )
        public
        onlyOwner
    {
        uint balance = address(this).balance;
        require(balance > 0, "Balance should be more then zero");
        payable(address(owner())).transfer(balance);
    }

    /*
     * Function to mint new NFTs during the public sale
     * It is payable. Amount is calculated as per (NFTPrice.mul(_numOfTokens))
    */
    function mintNFT(
        uint256 _numOfTokens
    )
        public
        payable
    {
        require(isActive, 'Contract is not active');
        require(!isPresaleActive, 'Presale is still active');
        require(_numOfTokens <= BUY_LIMIT_PER_TX, "Cannot mint above limit");
        require(totalSupply().add(_numOfTokens) <= MAX_NFT_PUBLIC, "Purchase would exceed max public supply of NFTs");
        require(NFTPrice.mul(_numOfTokens) == msg.value, "Ether value sent is not correct");

        _safeMint(msg.sender, _numOfTokens);
    }

    /*
     * Function to mint new NFTs during the presale
     * It is payable. Amount is calculated as per (NFTPrice.mul(_numOfTokens))
    */
    function mintNFTDuringPresale(
        uint256 _numOfTokens,
        bytes32[] memory _proof
    )
        public
        payable
    {
        require(isActive, 'Sale is not active');
        require(isPresaleActive, 'Whitelist is not active');
        require(verify(_proof, bytes32(uint256(uint160(msg.sender)))), "Not whitelisted");
        if (!freeMintActive){
            require(totalSupply() < MAX_NFT_PUBLIC, 'All public tokens have been minted');
            require(_numOfTokens <= WHITELIST_MAX_MINT, 'Cannot purchase this many tokens');
            require(totalSupply().add(_numOfTokens) <= MAX_NFT_PUBLIC, 'Purchase would exceed max public supply of NFTs');
            require(whiteListClaimed[msg.sender].add(_numOfTokens) <= WHITELIST_MAX_MINT, 'Purchase exceeds max whitelisted');
            require(NFTPrice.mul(_numOfTokens) == msg.value, "Ether value sent is not correct");
            whiteListClaimed[msg.sender] += _numOfTokens;
            _safeMint(msg.sender, _numOfTokens);
        } else {
            require(totalSupply() <= MAX_NFT, 'All tokens have been minted');
            require(_numOfTokens == 1, 'Cannot purchase this many tokens');
            require(!giveawayMintClaimed[msg.sender], 'Already claimed giveaway');
            giveawayMintClaimed[msg.sender] = true;
            _safeMint(msg.sender, _numOfTokens);
        }
    }

    /*
     * Function to mint NFTs for giveaway and partnerships
    */
    function mintByOwner(
        address _to,
        uint256 _num
    )
        public
        onlyOwner
    {
        require(totalSupply()+_num <= MAX_NFT, "Tokens number to mint cannot exceed number of MAX tokens");
        _safeMint(_to, _num);
    }

    /*
     * Function to mint all NFTs for giveaway and partnerships
    */
    function mintMultipleByOwner(
        address[] memory _to,
        uint256 _num
    )
        public
        onlyOwner
    {

        for(uint256 i = 0; i < _to.length; i++){
            require(totalSupply()+_num <= MAX_NFT, "Tokens number to mint cannot exceed number of MAX tokens");
            _safeMint(_to[i], _num);
        }
    }

    /*
     * Function to get token URI of given token ID
     * URI will be blank untill totalSupply reaches MAX_NFT_PUBLIC
    */
    function tokenURI(
        uint256 _tokenId
    )
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        if (!reveal) {
            return string(abi.encodePacked(blindURI));
        } else {
            return string(abi.encodePacked(baseURI, _tokenId.toString()));
        }
    }

    // Set Root for whitelist and raffle to participate in presale
    function setRootAndMax(uint256 _root,uint256 _max) onlyOwner() public {
        root = bytes32(_root);
        WHITELIST_MAX_MINT = _max;
    }

    // Verify MerkleProof
    function verify(bytes32[] memory proof, bytes32 leaf) public view returns (bool) {
        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 = sha256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = sha256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BUY_LIMIT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFTPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"mintByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"mintMultipleByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mintNFTDuringPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealNow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setFreeMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setNFTPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_root","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setRootAndMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_blindURI","type":"string"},{"internalType":"string","name":"_URI","type":"string"}],"name":"setURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405260008055600060075567027f7d0bdb920000600b556002600e553480156200002b57600080fd5b506040518060400160405280601e81526020017f45617274682043616c6c204f6666696369616c20436f6c6c656374696f6e00008152506040518060400160405280600581526020016408a82a4a8960db1b815250603260008111620000e75760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840160405180910390fd5b8251620000fc9060019060208601906200017c565b508151620001129060029060208501906200017c565b5060805250620001249050336200012a565b6200025f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200018a9062000222565b90600052602060002090601f016020900481019282620001ae5760008555620001f9565b82601f10620001c957805160ff1916838001178555620001f9565b82800160010185558215620001f9579182015b82811115620001f9578251825591602001919060010190620001dc565b50620002079291506200020b565b5090565b5b808211156200020757600081556001016200020c565b600181811c908216806200023757607f821691505b602082108114156200025957634e487b7160e01b600052602260045260246000fd5b50919050565b6080516130d7620002896000396000818161200601528181612030015261246601526130d76000f3fe6080604052600436106102675760003560e01c806381530b6811610144578063c87b56dd116100b6578063e748e07c1161007a578063e748e07c14610700578063e825417414610715578063e985e9c514610735578063ebf0c7171461077e578063f2fde38b14610794578063f37484e3146107b457600080fd5b8063c87b56dd14610673578063cb5bc2aa14610693578063cc7cc223146106b4578063d1d80f30146106d4578063d7224ba0146106ea57600080fd5b8063972a2a6211610108578063972a2a62146105cd578063a22cb465146105ed578063a38bffda1461060d578063a475b5dd14610623578063aeb167681461063d578063b88d4fde1461065357600080fd5b806381530b68146105545780638da5cb5b146105745780638f76696c1461059257806392642744146105a557806395d89b41146105b857600080fd5b80633ccfd60b116101dd5780634f9b563c116101a15780634f9b563c146104aa5780635f0f45b2146104ca57806360d938dc146104df5780636352211e146104ff57806370a082311461051f578063715018a61461053f57600080fd5b80633ccfd60b146104085780633f8121a21461041d57806342842e0e1461043d578063438b63001461045d5780634f6ccce71461048a57600080fd5b806322f3e2d41161022f57806322f3e2d41461033c5780632333f3c41461035b57806323b872dd146103885780632750fc78146103a85780632f745c59146103c85780633542aee2146103e857600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806318160ddd1461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612a98565b6107d4565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610841565b6040516102989190612d40565b3480156102cf57600080fd5b506102e36102de366004612b35565b6108d3565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612952565b610963565b005b34801561032957600080fd5b506000545b604051908152602001610298565b34801561034857600080fd5b50600c5461028c90610100900460ff1681565b34801561036757600080fd5b5061032e610376366004612823565b600f6020526000908152604090205481565b34801561039457600080fd5b5061031b6103a3366004612871565b610a7b565b3480156103b457600080fd5b5061031b6103c3366004612a64565b610a86565b3480156103d457600080fd5b5061032e6103e3366004612952565b610aca565b3480156103f457600080fd5b5061031b610403366004612952565b610c37565b34801561041457600080fd5b5061031b610ca4565b34801561042957600080fd5b5061031b610438366004612a64565b610d56565b34801561044957600080fd5b5061031b610458366004612871565b610d9c565b34801561046957600080fd5b5061047d610478366004612823565b610db7565b6040516102989190612cfc565b34801561049657600080fd5b5061032e6104a5366004612b35565b610f34565b3480156104b657600080fd5b5061031b6104c5366004612a64565b610f96565b3480156104d657600080fd5b5061031b610fde565b3480156104eb57600080fd5b50600c5461028c9062010000900460ff1681565b34801561050b57600080fd5b506102e361051a366004612b35565b611017565b34801561052b57600080fd5b5061032e61053a366004612823565b611029565b34801561054b57600080fd5b5061031b6110ba565b34801561056057600080fd5b5061031b61056f366004612b35565b6110f0565b34801561058057600080fd5b506008546001600160a01b03166102e3565b61031b6105a0366004612b4e565b61111f565b61031b6105b3366004612b35565b61152a565b3480156105c457600080fd5b506102b66116bb565b3480156105d957600080fd5b5061028c6105e8366004612a20565b6116ca565b3480156105f957600080fd5b5061031b610608366004612928565b611808565b34801561061957600080fd5b5061032e600b5481565b34801561062f57600080fd5b50600c5461028c9060ff1681565b34801561064957600080fd5b5061032e600e5481565b34801561065f57600080fd5b5061031b61066e3660046128ad565b6118cd565b34801561067f57600080fd5b506102b661068e366004612b35565b611906565b34801561069f57600080fd5b50600c5461028c906301000000900460ff1681565b3480156106c057600080fd5b5061031b6106cf36600461297c565b6119ca565b3480156106e057600080fd5b5061032e610b8981565b3480156106f657600080fd5b5061032e60075481565b34801561070c57600080fd5b5061032e603281565b34801561072157600080fd5b5061031b610730366004612ad2565b611a6a565b34801561074157600080fd5b5061028c61075036600461283e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561078a57600080fd5b5061032e600d5481565b3480156107a057600080fd5b5061031b6107af366004612823565b611abb565b3480156107c057600080fd5b5061031b6107cf366004612b8a565b611b53565b60006001600160e01b031982166380ac58cd60e01b148061080557506001600160e01b03198216635b5e139f60e01b145b8061082057506001600160e01b0319821663780e9d6360e01b145b8061083b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461085090612fc9565b80601f016020809104026020016040519081016040528092919081815260200182805461087c90612fc9565b80156108c95780601f1061089e576101008083540402835291602001916108c9565b820191906000526020600020905b8154815290600101906020018083116108ac57829003601f168201915b5050505050905090565b60006108e0826000541190565b6109475760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061096e82611017565b9050806001600160a01b0316836001600160a01b031614156109dd5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161093e565b336001600160a01b03821614806109f957506109f98133610750565b610a6b5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161093e565b610a76838383611b88565b505050565b610a76838383611be4565b6008546001600160a01b03163314610ab05760405162461bcd60e51b815260040161093e90612db0565b600c80549115156101000261ff0019909216919091179055565b6000610ad583611029565b8210610b2e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161093e565b600080549080805b83811015610bd7576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610b8857805192505b876001600160a01b0316836001600160a01b03161415610bc45786841415610bb65750935061083b92505050565b83610bc081613004565b9450505b5080610bcf81613004565b915050610b36565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161093e565b6008546001600160a01b03163314610c615760405162461bcd60e51b815260040161093e90612db0565b610bd981610c6e60005490565b610c789190612efc565b1115610c965760405162461bcd60e51b815260040161093e90612d53565b610ca08282611f6a565b5050565b6008546001600160a01b03163314610cce5760405162461bcd60e51b815260040161093e90612db0565b4780610d1c5760405162461bcd60e51b815260206004820181905260248201527f42616c616e63652073686f756c64206265206d6f7265207468656e207a65726f604482015260640161093e565b6008546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610ca0573d6000803e3d6000fd5b6008546001600160a01b03163314610d805760405162461bcd60e51b815260040161093e90612db0565b600c8054911515620100000262ff000019909216919091179055565b610a76838383604051806020016040528060008152506118cd565b60606000610dc483611029565b90506000816001600160401b03811115610de057610de0613075565b604051908082528060200260200182016040528015610e09578160200160208202803683370190505b50905081610e18579392505050565b600080549080805b83811015610edf576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610e7257805192505b886001600160a01b0316836001600160a01b03161415610ecc5781868581518110610e9f57610e9f61305f565b602090810291909101015283610eb481613004565b94505086841415610ecc575093979650505050505050565b5080610ed781613004565b915050610e20565b5060405162461bcd60e51b8152602060048201526024808201527f455243373231413a20756e61626c6520746f206765742077616c6c65744f664f6044820152633bb732b960e11b606482015260840161093e565b600080548210610f925760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161093e565b5090565b6008546001600160a01b03163314610fc05760405162461bcd60e51b815260040161093e90612db0565b600c805491151563010000000263ff00000019909216919091179055565b6008546001600160a01b031633146110085760405162461bcd60e51b815260040161093e90612db0565b600c805460ff19166001179055565b600061102282611f84565b5192915050565b60006001600160a01b0382166110955760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161093e565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146110e45760405162461bcd60e51b815260040161093e90612db0565b6110ee600061212d565b565b6008546001600160a01b0316331461111a5760405162461bcd60e51b815260040161093e90612db0565b600b55565b600c54610100900460ff1661116b5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b604482015260640161093e565b600c5462010000900460ff166111c35760405162461bcd60e51b815260206004820152601760248201527f57686974656c697374206973206e6f7420616374697665000000000000000000604482015260640161093e565b6111cd81336116ca565b61120b5760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b604482015260640161093e565b600c546301000000900460ff166113fc57610b8961122860005490565b106112805760405162461bcd60e51b815260206004820152602260248201527f416c6c207075626c696320746f6b656e732068617665206265656e206d696e74604482015261195960f21b606482015260840161093e565b600e548211156112d25760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604482015260640161093e565b610b896112e8836112e260005490565b9061217f565b11156113065760405162461bcd60e51b815260040161093e90612de5565b600e54336000908152600f6020526040902054611323908461217f565b11156113715760405162461bcd60e51b815260206004820181905260248201527f50757263686173652065786365656473206d61782077686974656c6973746564604482015260640161093e565b600b5434906113809084612192565b146113cd5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161093e565b336000908152600f6020526040812080548492906113ec908490612efc565b90915550610ca090503383611f6a565b610bd961140860005490565b11156114565760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604482015260640161093e565b816001146114a65760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604482015260640161093e565b3360009081526010602052604090205460ff16156115065760405162461bcd60e51b815260206004820152601860248201527f416c726561647920636c61696d65642067697665617761790000000000000000604482015260640161093e565b336000818152601060205260409020805460ff19166001179055610ca09083611f6a565b600c54610100900460ff1661157a5760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b604482015260640161093e565b600c5462010000900460ff16156115d35760405162461bcd60e51b815260206004820152601760248201527f50726573616c65206973207374696c6c20616374697665000000000000000000604482015260640161093e565b60328111156116245760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74206d696e742061626f7665206c696d6974000000000000000000604482015260640161093e565b610b89611634826112e260005490565b11156116525760405162461bcd60e51b815260040161093e90612de5565b600b5434906116619083612192565b146116ae5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161093e565b6116b83382611f6a565b50565b60606002805461085090612fc9565b600081815b84518110156117fc5760008582815181106116ec576116ec61305f565b6020026020010151905080831161177557604080516020810185905290810182905260029060600160408051601f198184030181529082905261172e91612c72565b602060405180830381855afa15801561174b573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061176e9190612a7f565b92506117e9565b604080516020810183905290810184905260029060600160408051601f19818403018152908290526117a691612c72565b602060405180830381855afa1580156117c3573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906117e69190612a7f565b92505b50806117f481613004565b9150506116cf565b50600d54149392505050565b6001600160a01b0382163314156118615760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161093e565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6118d8848484611be4565b6118e48484848461219e565b6119005760405162461bcd60e51b815260040161093e90612e34565b50505050565b6060611913826000541190565b6119775760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161093e565b600c5460ff166119a957600a6040516020016119939190612c8e565b6040516020818303038152906040529050919050565b60096119b4836122ac565b604051602001611993929190612c9a565b919050565b6008546001600160a01b031633146119f45760405162461bcd60e51b815260040161093e90612db0565b60005b8251811015610a7657610bd982611a0d60005490565b611a179190612efc565b1115611a355760405162461bcd60e51b815260040161093e90612d53565b611a58838281518110611a4a57611a4a61305f565b602002602001015183611f6a565b80611a6281613004565b9150506119f7565b6008546001600160a01b03163314611a945760405162461bcd60e51b815260040161093e90612db0565b8151611aa790600a906020850190612683565b508051610a76906009906020840190612683565b6008546001600160a01b03163314611ae55760405162461bcd60e51b815260040161093e90612db0565b6001600160a01b038116611b4a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093e565b6116b88161212d565b6008546001600160a01b03163314611b7d5760405162461bcd60e51b815260040161093e90612db0565b600d91909155600e55565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611bef82611f84565b80519091506000906001600160a01b0316336001600160a01b03161480611c26575033611c1b846108d3565b6001600160a01b0316145b80611c3857508151611c389033610750565b905080611ca25760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161093e565b846001600160a01b031682600001516001600160a01b031614611d165760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161093e565b6001600160a01b038416611d7a5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161093e565b611d8a6000848460000151611b88565b6001600160a01b0385166000908152600460205260408120805460019290611dbc9084906001600160801b0316612f47565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611e0891859116612eda565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611e8f846001612efc565b6000818152600360205260409020549091506001600160a01b0316611f2057611eb9816000541190565b15611f205760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610ca08282604051806020016040528060008152506123a9565b6040805180820190915260008082526020820152611fa3826000541190565b6120025760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161093e565b60007f00000000000000000000000000000000000000000000000000000000000000008310612063576120557f000000000000000000000000000000000000000000000000000000000000000084612f6f565b612060906001612efc565b90505b825b8181106120cc576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156120b957949350505050565b50806120c481612fb2565b915050612065565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161093e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061218b8284612efc565b9392505050565b600061218b8284612f28565b60006001600160a01b0384163b156122a057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121e2903390899088908890600401612cbf565b602060405180830381600087803b1580156121fc57600080fd5b505af192505050801561222c575060408051601f3d908101601f1916820190925261222991810190612ab5565b60015b612286573d80801561225a576040519150601f19603f3d011682016040523d82523d6000602084013e61225f565b606091505b50805161227e5760405162461bcd60e51b815260040161093e90612e34565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506122a4565b5060015b949350505050565b6060816122d05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156122fa57806122e481613004565b91506122f39050600a83612f14565b91506122d4565b6000816001600160401b0381111561231457612314613075565b6040519080825280601f01601f19166020018201604052801561233e576020820181803683370190505b5090505b84156122a457612353600183612f6f565b9150612360600a8661301f565b61236b906030612efc565b60f81b8183815181106123805761238061305f565b60200101906001600160f81b031916908160001a9053506123a2600a86612f14565b9450612342565b6000546001600160a01b03841661240c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161093e565b612417816000541190565b156124645760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161093e565b7f00000000000000000000000000000000000000000000000000000000000000008311156124df5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161093e565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061253b908790612eda565b6001600160801b031681526020018583602001516125599190612eda565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156126785760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461263c600088848861219e565b6126585760405162461bcd60e51b815260040161093e90612e34565b8161266281613004565b925050808061267090613004565b9150506125ef565b506000819055611f62565b82805461268f90612fc9565b90600052602060002090601f0160209004810192826126b157600085556126f7565b82601f106126ca57805160ff19168380011785556126f7565b828001600101855582156126f7579182015b828111156126f75782518255916020019190600101906126dc565b50610f929291505b80821115610f9257600081556001016126ff565b60006001600160401b0383111561272c5761272c613075565b61273f601f8401601f1916602001612e87565b905082815283838301111561275357600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146119c557600080fd5b600082601f83011261279257600080fd5b813560206127a76127a283612eb7565b612e87565b80838252828201915082860187848660051b89010111156127c757600080fd5b60005b858110156127e6578135845292840192908401906001016127ca565b5090979650505050505050565b803580151581146119c557600080fd5b600082601f83011261281457600080fd5b61218b83833560208501612713565b60006020828403121561283557600080fd5b61218b8261276a565b6000806040838503121561285157600080fd5b61285a8361276a565b91506128686020840161276a565b90509250929050565b60008060006060848603121561288657600080fd5b61288f8461276a565b925061289d6020850161276a565b9150604084013590509250925092565b600080600080608085870312156128c357600080fd5b6128cc8561276a565b93506128da6020860161276a565b92506040850135915060608501356001600160401b038111156128fc57600080fd5b8501601f8101871361290d57600080fd5b61291c87823560208401612713565b91505092959194509250565b6000806040838503121561293b57600080fd5b6129448361276a565b9150612868602084016127f3565b6000806040838503121561296557600080fd5b61296e8361276a565b946020939093013593505050565b6000806040838503121561298f57600080fd5b82356001600160401b038111156129a557600080fd5b8301601f810185136129b657600080fd5b803560206129c66127a283612eb7565b80838252828201915082850189848660051b88010111156129e657600080fd5b600095505b84861015612a10576129fc8161276a565b8352600195909501949183019183016129eb565b5098969091013596505050505050565b60008060408385031215612a3357600080fd5b82356001600160401b03811115612a4957600080fd5b612a5585828601612781565b95602094909401359450505050565b600060208284031215612a7657600080fd5b61218b826127f3565b600060208284031215612a9157600080fd5b5051919050565b600060208284031215612aaa57600080fd5b813561218b8161308b565b600060208284031215612ac757600080fd5b815161218b8161308b565b60008060408385031215612ae557600080fd5b82356001600160401b0380821115612afc57600080fd5b612b0886838701612803565b93506020850135915080821115612b1e57600080fd5b50612b2b85828601612803565b9150509250929050565b600060208284031215612b4757600080fd5b5035919050565b60008060408385031215612b6157600080fd5b8235915060208301356001600160401b03811115612b7e57600080fd5b612b2b85828601612781565b60008060408385031215612b9d57600080fd5b50508035926020909101359150565b60008151808452612bc4816020860160208601612f86565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680612bf257607f831692505b6020808410821415612c1457634e487b7160e01b600052602260045260246000fd5b818015612c285760018114612c3957612c66565b60ff19861689528489019650612c66565b60008881526020902060005b86811015612c5e5781548b820152908501908301612c45565b505084890196505b50505050505092915050565b60008251612c84818460208701612f86565b9190910192915050565b600061218b8284612bd8565b6000612ca68285612bd8565b8351612cb6818360208801612f86565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612cf290830184612bac565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612d3457835183529284019291840191600101612d18565b50909695505050505050565b60208152600061218b6020830184612bac565b60208082526038908201527f546f6b656e73206e756d62657220746f206d696e742063616e6e6f742065786360408201527f656564206e756d626572206f66204d415820746f6b656e730000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f507572636861736520776f756c6420657863656564206d6178207075626c696360408201526e20737570706c79206f66204e46547360881b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715612eaf57612eaf613075565b604052919050565b60006001600160401b03821115612ed057612ed0613075565b5060051b60200190565b60006001600160801b03808316818516808303821115612cb657612cb6613033565b60008219821115612f0f57612f0f613033565b500190565b600082612f2357612f23613049565b500490565b6000816000190483118215151615612f4257612f42613033565b500290565b60006001600160801b0383811690831681811015612f6757612f67613033565b039392505050565b600082821015612f8157612f81613033565b500390565b60005b83811015612fa1578181015183820152602001612f89565b838111156119005750506000910152565b600081612fc157612fc1613033565b506000190190565b600181811c90821680612fdd57607f821691505b60208210811415612ffe57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561301857613018613033565b5060010190565b60008261302e5761302e613049565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146116b857600080fdfea2646970667358221220e1a63a7fa85c154d7b4e809b46a43cbc745929d2b741938d808ed71f0dd01c4464736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102675760003560e01c806381530b6811610144578063c87b56dd116100b6578063e748e07c1161007a578063e748e07c14610700578063e825417414610715578063e985e9c514610735578063ebf0c7171461077e578063f2fde38b14610794578063f37484e3146107b457600080fd5b8063c87b56dd14610673578063cb5bc2aa14610693578063cc7cc223146106b4578063d1d80f30146106d4578063d7224ba0146106ea57600080fd5b8063972a2a6211610108578063972a2a62146105cd578063a22cb465146105ed578063a38bffda1461060d578063a475b5dd14610623578063aeb167681461063d578063b88d4fde1461065357600080fd5b806381530b68146105545780638da5cb5b146105745780638f76696c1461059257806392642744146105a557806395d89b41146105b857600080fd5b80633ccfd60b116101dd5780634f9b563c116101a15780634f9b563c146104aa5780635f0f45b2146104ca57806360d938dc146104df5780636352211e146104ff57806370a082311461051f578063715018a61461053f57600080fd5b80633ccfd60b146104085780633f8121a21461041d57806342842e0e1461043d578063438b63001461045d5780634f6ccce71461048a57600080fd5b806322f3e2d41161022f57806322f3e2d41461033c5780632333f3c41461035b57806323b872dd146103885780632750fc78146103a85780632f745c59146103c85780633542aee2146103e857600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57806318160ddd1461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612a98565b6107d4565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b6610841565b6040516102989190612d40565b3480156102cf57600080fd5b506102e36102de366004612b35565b6108d3565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612952565b610963565b005b34801561032957600080fd5b506000545b604051908152602001610298565b34801561034857600080fd5b50600c5461028c90610100900460ff1681565b34801561036757600080fd5b5061032e610376366004612823565b600f6020526000908152604090205481565b34801561039457600080fd5b5061031b6103a3366004612871565b610a7b565b3480156103b457600080fd5b5061031b6103c3366004612a64565b610a86565b3480156103d457600080fd5b5061032e6103e3366004612952565b610aca565b3480156103f457600080fd5b5061031b610403366004612952565b610c37565b34801561041457600080fd5b5061031b610ca4565b34801561042957600080fd5b5061031b610438366004612a64565b610d56565b34801561044957600080fd5b5061031b610458366004612871565b610d9c565b34801561046957600080fd5b5061047d610478366004612823565b610db7565b6040516102989190612cfc565b34801561049657600080fd5b5061032e6104a5366004612b35565b610f34565b3480156104b657600080fd5b5061031b6104c5366004612a64565b610f96565b3480156104d657600080fd5b5061031b610fde565b3480156104eb57600080fd5b50600c5461028c9062010000900460ff1681565b34801561050b57600080fd5b506102e361051a366004612b35565b611017565b34801561052b57600080fd5b5061032e61053a366004612823565b611029565b34801561054b57600080fd5b5061031b6110ba565b34801561056057600080fd5b5061031b61056f366004612b35565b6110f0565b34801561058057600080fd5b506008546001600160a01b03166102e3565b61031b6105a0366004612b4e565b61111f565b61031b6105b3366004612b35565b61152a565b3480156105c457600080fd5b506102b66116bb565b3480156105d957600080fd5b5061028c6105e8366004612a20565b6116ca565b3480156105f957600080fd5b5061031b610608366004612928565b611808565b34801561061957600080fd5b5061032e600b5481565b34801561062f57600080fd5b50600c5461028c9060ff1681565b34801561064957600080fd5b5061032e600e5481565b34801561065f57600080fd5b5061031b61066e3660046128ad565b6118cd565b34801561067f57600080fd5b506102b661068e366004612b35565b611906565b34801561069f57600080fd5b50600c5461028c906301000000900460ff1681565b3480156106c057600080fd5b5061031b6106cf36600461297c565b6119ca565b3480156106e057600080fd5b5061032e610b8981565b3480156106f657600080fd5b5061032e60075481565b34801561070c57600080fd5b5061032e603281565b34801561072157600080fd5b5061031b610730366004612ad2565b611a6a565b34801561074157600080fd5b5061028c61075036600461283e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561078a57600080fd5b5061032e600d5481565b3480156107a057600080fd5b5061031b6107af366004612823565b611abb565b3480156107c057600080fd5b5061031b6107cf366004612b8a565b611b53565b60006001600160e01b031982166380ac58cd60e01b148061080557506001600160e01b03198216635b5e139f60e01b145b8061082057506001600160e01b0319821663780e9d6360e01b145b8061083b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461085090612fc9565b80601f016020809104026020016040519081016040528092919081815260200182805461087c90612fc9565b80156108c95780601f1061089e576101008083540402835291602001916108c9565b820191906000526020600020905b8154815290600101906020018083116108ac57829003601f168201915b5050505050905090565b60006108e0826000541190565b6109475760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061096e82611017565b9050806001600160a01b0316836001600160a01b031614156109dd5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161093e565b336001600160a01b03821614806109f957506109f98133610750565b610a6b5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161093e565b610a76838383611b88565b505050565b610a76838383611be4565b6008546001600160a01b03163314610ab05760405162461bcd60e51b815260040161093e90612db0565b600c80549115156101000261ff0019909216919091179055565b6000610ad583611029565b8210610b2e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161093e565b600080549080805b83811015610bd7576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610b8857805192505b876001600160a01b0316836001600160a01b03161415610bc45786841415610bb65750935061083b92505050565b83610bc081613004565b9450505b5080610bcf81613004565b915050610b36565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161093e565b6008546001600160a01b03163314610c615760405162461bcd60e51b815260040161093e90612db0565b610bd981610c6e60005490565b610c789190612efc565b1115610c965760405162461bcd60e51b815260040161093e90612d53565b610ca08282611f6a565b5050565b6008546001600160a01b03163314610cce5760405162461bcd60e51b815260040161093e90612db0565b4780610d1c5760405162461bcd60e51b815260206004820181905260248201527f42616c616e63652073686f756c64206265206d6f7265207468656e207a65726f604482015260640161093e565b6008546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610ca0573d6000803e3d6000fd5b6008546001600160a01b03163314610d805760405162461bcd60e51b815260040161093e90612db0565b600c8054911515620100000262ff000019909216919091179055565b610a76838383604051806020016040528060008152506118cd565b60606000610dc483611029565b90506000816001600160401b03811115610de057610de0613075565b604051908082528060200260200182016040528015610e09578160200160208202803683370190505b50905081610e18579392505050565b600080549080805b83811015610edf576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610e7257805192505b886001600160a01b0316836001600160a01b03161415610ecc5781868581518110610e9f57610e9f61305f565b602090810291909101015283610eb481613004565b94505086841415610ecc575093979650505050505050565b5080610ed781613004565b915050610e20565b5060405162461bcd60e51b8152602060048201526024808201527f455243373231413a20756e61626c6520746f206765742077616c6c65744f664f6044820152633bb732b960e11b606482015260840161093e565b600080548210610f925760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161093e565b5090565b6008546001600160a01b03163314610fc05760405162461bcd60e51b815260040161093e90612db0565b600c805491151563010000000263ff00000019909216919091179055565b6008546001600160a01b031633146110085760405162461bcd60e51b815260040161093e90612db0565b600c805460ff19166001179055565b600061102282611f84565b5192915050565b60006001600160a01b0382166110955760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161093e565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146110e45760405162461bcd60e51b815260040161093e90612db0565b6110ee600061212d565b565b6008546001600160a01b0316331461111a5760405162461bcd60e51b815260040161093e90612db0565b600b55565b600c54610100900460ff1661116b5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b604482015260640161093e565b600c5462010000900460ff166111c35760405162461bcd60e51b815260206004820152601760248201527f57686974656c697374206973206e6f7420616374697665000000000000000000604482015260640161093e565b6111cd81336116ca565b61120b5760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b604482015260640161093e565b600c546301000000900460ff166113fc57610b8961122860005490565b106112805760405162461bcd60e51b815260206004820152602260248201527f416c6c207075626c696320746f6b656e732068617665206265656e206d696e74604482015261195960f21b606482015260840161093e565b600e548211156112d25760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604482015260640161093e565b610b896112e8836112e260005490565b9061217f565b11156113065760405162461bcd60e51b815260040161093e90612de5565b600e54336000908152600f6020526040902054611323908461217f565b11156113715760405162461bcd60e51b815260206004820181905260248201527f50757263686173652065786365656473206d61782077686974656c6973746564604482015260640161093e565b600b5434906113809084612192565b146113cd5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161093e565b336000908152600f6020526040812080548492906113ec908490612efc565b90915550610ca090503383611f6a565b610bd961140860005490565b11156114565760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604482015260640161093e565b816001146114a65760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604482015260640161093e565b3360009081526010602052604090205460ff16156115065760405162461bcd60e51b815260206004820152601860248201527f416c726561647920636c61696d65642067697665617761790000000000000000604482015260640161093e565b336000818152601060205260409020805460ff19166001179055610ca09083611f6a565b600c54610100900460ff1661157a5760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b604482015260640161093e565b600c5462010000900460ff16156115d35760405162461bcd60e51b815260206004820152601760248201527f50726573616c65206973207374696c6c20616374697665000000000000000000604482015260640161093e565b60328111156116245760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74206d696e742061626f7665206c696d6974000000000000000000604482015260640161093e565b610b89611634826112e260005490565b11156116525760405162461bcd60e51b815260040161093e90612de5565b600b5434906116619083612192565b146116ae5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161093e565b6116b83382611f6a565b50565b60606002805461085090612fc9565b600081815b84518110156117fc5760008582815181106116ec576116ec61305f565b6020026020010151905080831161177557604080516020810185905290810182905260029060600160408051601f198184030181529082905261172e91612c72565b602060405180830381855afa15801561174b573d6000803e3d6000fd5b5050506040513d601f19601f8201168201806040525081019061176e9190612a7f565b92506117e9565b604080516020810183905290810184905260029060600160408051601f19818403018152908290526117a691612c72565b602060405180830381855afa1580156117c3573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906117e69190612a7f565b92505b50806117f481613004565b9150506116cf565b50600d54149392505050565b6001600160a01b0382163314156118615760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161093e565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6118d8848484611be4565b6118e48484848461219e565b6119005760405162461bcd60e51b815260040161093e90612e34565b50505050565b6060611913826000541190565b6119775760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161093e565b600c5460ff166119a957600a6040516020016119939190612c8e565b6040516020818303038152906040529050919050565b60096119b4836122ac565b604051602001611993929190612c9a565b919050565b6008546001600160a01b031633146119f45760405162461bcd60e51b815260040161093e90612db0565b60005b8251811015610a7657610bd982611a0d60005490565b611a179190612efc565b1115611a355760405162461bcd60e51b815260040161093e90612d53565b611a58838281518110611a4a57611a4a61305f565b602002602001015183611f6a565b80611a6281613004565b9150506119f7565b6008546001600160a01b03163314611a945760405162461bcd60e51b815260040161093e90612db0565b8151611aa790600a906020850190612683565b508051610a76906009906020840190612683565b6008546001600160a01b03163314611ae55760405162461bcd60e51b815260040161093e90612db0565b6001600160a01b038116611b4a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161093e565b6116b88161212d565b6008546001600160a01b03163314611b7d5760405162461bcd60e51b815260040161093e90612db0565b600d91909155600e55565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611bef82611f84565b80519091506000906001600160a01b0316336001600160a01b03161480611c26575033611c1b846108d3565b6001600160a01b0316145b80611c3857508151611c389033610750565b905080611ca25760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161093e565b846001600160a01b031682600001516001600160a01b031614611d165760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161093e565b6001600160a01b038416611d7a5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161093e565b611d8a6000848460000151611b88565b6001600160a01b0385166000908152600460205260408120805460019290611dbc9084906001600160801b0316612f47565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526004602052604081208054600194509092611e0891859116612eda565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611e8f846001612efc565b6000818152600360205260409020549091506001600160a01b0316611f2057611eb9816000541190565b15611f205760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610ca08282604051806020016040528060008152506123a9565b6040805180820190915260008082526020820152611fa3826000541190565b6120025760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161093e565b60007f00000000000000000000000000000000000000000000000000000000000000328310612063576120557f000000000000000000000000000000000000000000000000000000000000003284612f6f565b612060906001612efc565b90505b825b8181106120cc576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156120b957949350505050565b50806120c481612fb2565b915050612065565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161093e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061218b8284612efc565b9392505050565b600061218b8284612f28565b60006001600160a01b0384163b156122a057604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121e2903390899088908890600401612cbf565b602060405180830381600087803b1580156121fc57600080fd5b505af192505050801561222c575060408051601f3d908101601f1916820190925261222991810190612ab5565b60015b612286573d80801561225a576040519150601f19603f3d011682016040523d82523d6000602084013e61225f565b606091505b50805161227e5760405162461bcd60e51b815260040161093e90612e34565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506122a4565b5060015b949350505050565b6060816122d05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156122fa57806122e481613004565b91506122f39050600a83612f14565b91506122d4565b6000816001600160401b0381111561231457612314613075565b6040519080825280601f01601f19166020018201604052801561233e576020820181803683370190505b5090505b84156122a457612353600183612f6f565b9150612360600a8661301f565b61236b906030612efc565b60f81b8183815181106123805761238061305f565b60200101906001600160f81b031916908160001a9053506123a2600a86612f14565b9450612342565b6000546001600160a01b03841661240c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161093e565b612417816000541190565b156124645760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161093e565b7f00000000000000000000000000000000000000000000000000000000000000328311156124df5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161093e565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061253b908790612eda565b6001600160801b031681526020018583602001516125599190612eda565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156126785760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461263c600088848861219e565b6126585760405162461bcd60e51b815260040161093e90612e34565b8161266281613004565b925050808061267090613004565b9150506125ef565b506000819055611f62565b82805461268f90612fc9565b90600052602060002090601f0160209004810192826126b157600085556126f7565b82601f106126ca57805160ff19168380011785556126f7565b828001600101855582156126f7579182015b828111156126f75782518255916020019190600101906126dc565b50610f929291505b80821115610f9257600081556001016126ff565b60006001600160401b0383111561272c5761272c613075565b61273f601f8401601f1916602001612e87565b905082815283838301111561275357600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146119c557600080fd5b600082601f83011261279257600080fd5b813560206127a76127a283612eb7565b612e87565b80838252828201915082860187848660051b89010111156127c757600080fd5b60005b858110156127e6578135845292840192908401906001016127ca565b5090979650505050505050565b803580151581146119c557600080fd5b600082601f83011261281457600080fd5b61218b83833560208501612713565b60006020828403121561283557600080fd5b61218b8261276a565b6000806040838503121561285157600080fd5b61285a8361276a565b91506128686020840161276a565b90509250929050565b60008060006060848603121561288657600080fd5b61288f8461276a565b925061289d6020850161276a565b9150604084013590509250925092565b600080600080608085870312156128c357600080fd5b6128cc8561276a565b93506128da6020860161276a565b92506040850135915060608501356001600160401b038111156128fc57600080fd5b8501601f8101871361290d57600080fd5b61291c87823560208401612713565b91505092959194509250565b6000806040838503121561293b57600080fd5b6129448361276a565b9150612868602084016127f3565b6000806040838503121561296557600080fd5b61296e8361276a565b946020939093013593505050565b6000806040838503121561298f57600080fd5b82356001600160401b038111156129a557600080fd5b8301601f810185136129b657600080fd5b803560206129c66127a283612eb7565b80838252828201915082850189848660051b88010111156129e657600080fd5b600095505b84861015612a10576129fc8161276a565b8352600195909501949183019183016129eb565b5098969091013596505050505050565b60008060408385031215612a3357600080fd5b82356001600160401b03811115612a4957600080fd5b612a5585828601612781565b95602094909401359450505050565b600060208284031215612a7657600080fd5b61218b826127f3565b600060208284031215612a9157600080fd5b5051919050565b600060208284031215612aaa57600080fd5b813561218b8161308b565b600060208284031215612ac757600080fd5b815161218b8161308b565b60008060408385031215612ae557600080fd5b82356001600160401b0380821115612afc57600080fd5b612b0886838701612803565b93506020850135915080821115612b1e57600080fd5b50612b2b85828601612803565b9150509250929050565b600060208284031215612b4757600080fd5b5035919050565b60008060408385031215612b6157600080fd5b8235915060208301356001600160401b03811115612b7e57600080fd5b612b2b85828601612781565b60008060408385031215612b9d57600080fd5b50508035926020909101359150565b60008151808452612bc4816020860160208601612f86565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680612bf257607f831692505b6020808410821415612c1457634e487b7160e01b600052602260045260246000fd5b818015612c285760018114612c3957612c66565b60ff19861689528489019650612c66565b60008881526020902060005b86811015612c5e5781548b820152908501908301612c45565b505084890196505b50505050505092915050565b60008251612c84818460208701612f86565b9190910192915050565b600061218b8284612bd8565b6000612ca68285612bd8565b8351612cb6818360208801612f86565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612cf290830184612bac565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612d3457835183529284019291840191600101612d18565b50909695505050505050565b60208152600061218b6020830184612bac565b60208082526038908201527f546f6b656e73206e756d62657220746f206d696e742063616e6e6f742065786360408201527f656564206e756d626572206f66204d415820746f6b656e730000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f507572636861736520776f756c6420657863656564206d6178207075626c696360408201526e20737570706c79206f66204e46547360881b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715612eaf57612eaf613075565b604052919050565b60006001600160401b03821115612ed057612ed0613075565b5060051b60200190565b60006001600160801b03808316818516808303821115612cb657612cb6613033565b60008219821115612f0f57612f0f613033565b500190565b600082612f2357612f23613049565b500490565b6000816000190483118215151615612f4257612f42613033565b500290565b60006001600160801b0383811690831681811015612f6757612f67613033565b039392505050565b600082821015612f8157612f81613033565b500390565b60005b83811015612fa1578181015183820152602001612f89565b838111156119005750506000910152565b600081612fc157612fc1613033565b506000190190565b600181811c90821680612fdd57607f821691505b60208210811415612ffe57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561301857613018613033565b5060010190565b60008261302e5761302e613049565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146116b857600080fdfea2646970667358221220e1a63a7fa85c154d7b4e809b46a43cbc745929d2b741938d808ed71f0dd01c4464736f6c63430008070033

Deployed Bytecode Sourcemap

66172:7098:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53932:370;;;;;;;;;;-1:-1:-1;53932:370:0;;;;;:::i;:::-;;:::i;:::-;;;11196:14:1;;11189:22;11171:41;;11159:2;11144:18;53932:370:0;;;;;;;;55658:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;57183:204::-;;;;;;;;;;-1:-1:-1;57183:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9857:32:1;;;9839:51;;9827:2;9812:18;57183:204:0;9693:203:1;56746:379:0;;;;;;;;;;-1:-1:-1;56746:379:0;;;;;:::i;:::-;;:::i;:::-;;51659:94;;;;;;;;;;-1:-1:-1;51712:7:0;51735:12;51659:94;;;11369:25:1;;;11357:2;11342:18;51659:94:0;11223:177:1;66661:20:0;;;;;;;;;;-1:-1:-1;66661:20:0;;;;;;;;;;;66825:51;;;;;;;;;;-1:-1:-1;66825:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;58033:150;;;;;;;;;;-1:-1:-1;58033:150:0;;;;;:::i;:::-;;:::i;67195:134::-;;;;;;;;;;-1:-1:-1;67195:134:0;;;;;:::i;:::-;;:::i;52287:744::-;;;;;;;;;;-1:-1:-1;52287:744:0;;;;;:::i;:::-;;:::i;70951:261::-;;;;;;;;;;-1:-1:-1;70951:261:0;;;;;:::i;:::-;;:::i;68348:242::-;;;;;;;;;;;;;:::i;67440:146::-;;;;;;;;;;-1:-1:-1;67440:146:0;;;;;:::i;:::-;;:::i;58246:165::-;;;;;;;;;;-1:-1:-1;58246:165:0;;;;;:::i;:::-;;:::i;53037:831::-;;;;;;;;;;-1:-1:-1;53037:831:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;51822:177::-;;;;;;;;;;-1:-1:-1;51822:177:0;;;;;:::i;:::-;;:::i;67694:146::-;;;;;;;;;;-1:-1:-1;67694:146:0;;;;;:::i;:::-;;:::i;67004:95::-;;;;;;;;;;;;;:::i;66688:27::-;;;;;;;;;;-1:-1:-1;66688:27:0;;;;;;;;;;;55481:118;;;;;;;;;;-1:-1:-1;55481:118:0;;;;;:::i;:::-;;:::i;54358:211::-;;;;;;;;;;-1:-1:-1;54358:211:0;;;;;:::i;:::-;;:::i;2498:94::-;;;;;;;;;;;;;:::i;68158:92::-;;;;;;;;;;-1:-1:-1;68158:92:0;;;;;:::i;:::-;;:::i;1847:87::-;;;;;;;;;;-1:-1:-1;1920:6:0;;-1:-1:-1;;;;;1920:6:0;1847:87;;69467:1400;;;;;;:::i;:::-;;:::i;68751:559::-;;;;;;:::i;:::-;;:::i;55813:98::-;;;;;;;;;;;;;:::i;72489:774::-;;;;;;;;;;-1:-1:-1;72489:774:0;;;;;:::i;:::-;;:::i;57451:274::-;;;;;;;;;;-1:-1:-1;57451:274:0;;;;;:::i;:::-;;:::i;66572:44::-;;;;;;;;;;;;;;;;66636:18;;;;;;;;;;-1:-1:-1;66636:18:0;;;;;;;;66781:37;;;;;;;;;;;;;;;;58474:319;;;;;;;;;;-1:-1:-1;58474:319:0;;;;;:::i;:::-;;:::i;71796:436::-;;;;;;;;;;-1:-1:-1;71796:436:0;;;;;:::i;:::-;;:::i;66722:26::-;;;;;;;;;;-1:-1:-1;66722:26:0;;;;;;;;;;;71300:352;;;;;;;;;;-1:-1:-1;71300:352:0;;;;;:::i;:::-;;:::i;66474:45::-;;;;;;;;;;;;66515:4;66474:45;;62813:43;;;;;;;;;;;;;;;;66422:45;;;;;;;;;;;;66465:2;66422:45;;67907:193;;;;;;;;;;-1:-1:-1;67907:193:0;;;;;:::i;:::-;;:::i;57788:186::-;;;;;;;;;;-1:-1:-1;57788:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;57933:25:0;;;57910:4;57933:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;57788:186;66755:19;;;;;;;;;;;;;;;;2747:192;;;;;;;;;;-1:-1:-1;2747:192:0;;;;;:::i;:::-;;:::i;72308:146::-;;;;;;;;;;-1:-1:-1;72308:146:0;;;;;:::i;:::-;;:::i;53932:370::-;54059:4;-1:-1:-1;;;;;;54089:40:0;;-1:-1:-1;;;54089:40:0;;:99;;-1:-1:-1;;;;;;;54140:48:0;;-1:-1:-1;;;54140:48:0;54089:99;:160;;;-1:-1:-1;;;;;;;54199:50:0;;-1:-1:-1;;;54199:50:0;54089:160;:207;;;-1:-1:-1;;;;;;;;;;21381:40:0;;;54260:36;54075:221;53932:370;-1:-1:-1;;53932:370:0:o;55658:94::-;55712:13;55741:5;55734:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55658:94;:::o;57183:204::-;57251:7;57275:16;57283:7;59089:4;59119:12;-1:-1:-1;59109:22:0;59032:105;57275:16;57267:74;;;;-1:-1:-1;;;57267:74:0;;24257:2:1;57267:74:0;;;24239:21:1;24296:2;24276:18;;;24269:30;24335:34;24315:18;;;24308:62;-1:-1:-1;;;24386:18:1;;;24379:43;24439:19;;57267:74:0;;;;;;;;;-1:-1:-1;57357:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;57357:24:0;;57183:204::o;56746:379::-;56815:13;56831:24;56847:7;56831:15;:24::i;:::-;56815:40;;56876:5;-1:-1:-1;;;;;56870:11:0;:2;-1:-1:-1;;;;;56870:11:0;;;56862:58;;;;-1:-1:-1;;;56862:58:0;;20371:2:1;56862:58:0;;;20353:21:1;20410:2;20390:18;;;20383:30;20449:34;20429:18;;;20422:62;-1:-1:-1;;;20500:18:1;;;20493:32;20542:19;;56862:58:0;20169:398:1;56862:58:0;740:10;-1:-1:-1;;;;;56945:21:0;;;;:62;;-1:-1:-1;56970:37:0;56987:5;740:10;57788:186;:::i;56970:37::-;56929:153;;;;-1:-1:-1;;;56929:153:0;;16383:2:1;56929:153:0;;;16365:21:1;16422:2;16402:18;;;16395:30;16461:34;16441:18;;;16434:62;16532:27;16512:18;;;16505:55;16577:19;;56929:153:0;16181:421:1;56929:153:0;57091:28;57100:2;57104:7;57113:5;57091:8;:28::i;:::-;56808:317;56746:379;;:::o;58033:150::-;58149:28;58159:4;58165:2;58169:7;58149:9;:28::i;67195:134::-;1920:6;;-1:-1:-1;;;;;1920:6:0;740:10;2067:23;2059:68;;;;-1:-1:-1;;;2059:68:0;;;;;;;:::i;:::-;67301:8:::1;:20:::0;;;::::1;;;;-1:-1:-1::0;;67301:20:0;;::::1;::::0;;;::::1;::::0;;67195:134::o;52287:744::-;52396:7;52431:16;52441:5;52431:9;:16::i;:::-;52423:5;:24;52415:71;;;;-1:-1:-1;;;52415:71:0;;11831:2:1;52415:71:0;;;11813:21:1;11870:2;11850:18;;;11843:30;11909:34;11889:18;;;11882:62;-1:-1:-1;;;11960:18:1;;;11953:32;12002:19;;52415:71:0;11629:398:1;52415:71:0;52493:22;51735:12;;;52493:22;;52613:350;52637:14;52633:1;:18;52613:350;;;52667:31;52701:14;;;:11;:14;;;;;;;;;52667:48;;;;;;;;;-1:-1:-1;;;;;52667:48:0;;;;;-1:-1:-1;;;52667:48:0;;;-1:-1:-1;;;;;52667:48:0;;;;;;;;52728:28;52724:89;;52789:14;;;-1:-1:-1;52724:89:0;52846:5;-1:-1:-1;;;;;52825:26:0;:17;-1:-1:-1;;;;;52825:26:0;;52821:135;;;52883:5;52868:11;:20;52864:59;;;-1:-1:-1;52910:1:0;-1:-1:-1;52903:8:0;;-1:-1:-1;;;52903:8:0;52864:59;52933:13;;;;:::i;:::-;;;;52821:135;-1:-1:-1;52653:3:0;;;;:::i;:::-;;;;52613:350;;;-1:-1:-1;52969:56:0;;-1:-1:-1;;;52969:56:0;;22315:2:1;52969:56:0;;;22297:21:1;22354:2;22334:18;;;22327:30;22393:34;22373:18;;;22366:62;-1:-1:-1;;;22444:18:1;;;22437:44;22498:19;;52969:56:0;22113:410:1;70951:261:0;1920:6;;-1:-1:-1;;;;;1920:6:0;740:10;2067:23;2059:68;;;;-1:-1:-1;;;2059:68:0;;;;;;;:::i;:::-;66561:4:::1;71097;71083:13;51712:7:::0;51735:12;;51659:94;71083:13:::1;:18;;;;:::i;:::-;:29;;71075:98;;;;-1:-1:-1::0;;;71075:98:0::1;;;;;;;:::i;:::-;71184:20;71194:3;71199:4;71184:9;:20::i;:::-;70951:261:::0;;:::o;68348:242::-;1920:6;;-1:-1:-1;;;;;1920:6:0;740:10;2067:23;2059:68;;;;-1:-1:-1;;;2059:68:0;;;;;;;:::i;:::-;68440:21:::1;68480:11:::0;68472:56:::1;;;::::0;-1:-1:-1;;;68472:56:0;;15678:2:1;68472:56:0::1;::::0;::::1;15660:21:1::0;;;15697:18;;;15690:30;15756:34;15736:18;;;15729:62;15808:18;;68472:56:0::1;15476:356:1::0;68472:56:0::1;1920:6:::0;;68539:43:::1;::::0;-1:-1:-1;;;;;1920:6:0;;;;68539:43;::::1;;;::::0;68574:7;;68539:43:::1;::::0;;;68574:7;1920:6;68539:43;::::1;;;;;;;;;;;;;::::0;::::1;;;;67440:146:::0;1920:6;;-1:-1:-1;;;;;1920:6:0;740:10;2067:23;2059:68;;;;-1:-1:-1;;;2059:68:0;;;;;;;:::i;:::-;67551:15:::1;:27:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;67551:27:0;;::::1;::::0;;;::::1;::::0;;67440:146::o;58246:165::-;58366:39;58383:4;58389:2;58393:7;58366:39;;;;;;;;;;;;:16;:39::i;53037:831::-;53095:16;53120:18;53141:16;53151:5;53141:9;:16::i;:::-;53120:37;;53166:25;53208:10;-1:-1:-1;;;;;53194:25:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53194:25:0;-1:-1:-1;53166:53:0;-1:-1:-1;53230:15:0;53226:58;;53268:8;53037:831;-1:-1:-1;;;53037:831:0:o;53226:58::-;53292:22;51735:12;;;53292:22;;53412:398;53436:14;53432:1;:18;53412:398;;;53466:31;53500:14;;;:11;:14;;;;;;;;;53466:48;;;;;;;;;-1:-1:-1;;;;;53466:48:0;;;;;-1:-1:-1;;;53466:48:0;;;-1:-1:-1;;;;;53466:48:0;;;;;;;;53527:28;53523:89;;53588:14;;;-1:-1:-1;53523:89:0;53645:5;-1:-1:-1;;;;;53624:26:0;:17;-1:-1:-1;;;;;53624:26:0;;53620:183;;;53687:1;53663:8;53672:11;53663:21;;;;;;;;:::i;:::-;;;;;;;;;;:25;53699:13;;;;:::i;:::-;;;;53742:10;53727:11;:25;53723:71;;;-1:-1:-1;53774:8:0;;53037:831;-1:-1:-1;;;;;;;53037:831:0:o;53723:71::-;-1:-1:-1;53452:3:0;;;;:::i;:::-;;;;53412:398;;;-1:-1:-1;53816:46:0;;-1:-1:-1;;;53816:46:0;;14160:2:1;53816:46:0;;;14142:21:1;14199:2;14179:18;;;14172:30;14238:34;14218:18;;;14211:62;-1:-1:-1;;;14289:18:1;;;14282:34;14333:19;;53816:46:0;13958:400:1;51822:177:0;51889:7;51735:12;;51913:5;:21;51905:69;;;;-1:-1:-1;;;51905:69:0;;13756:2:1;51905:69:0;;;13738:21:1;13795:2;13775:18;;;13768:30;13834:34;13814:18;;;13807:62;-1:-1:-1;;;13885:18:1;;;13878:33;13928:19;;51905:69:0;13554:399:1;51905:69:0;-1:-1:-1;51988:5:0;51822:177::o;67694:146::-;1920:6;;-1:-1:-1;;;;;1920:6:0;740:10;2067:23;2059:68;;;;-1:-1:-1;;;2059:68:0;;;;;;;:::i;:::-;67806:14:::1;:26:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;67806:26:0;;::::1;::::0;;;::::1;::::0;;67694:146::o;67004:95::-;1920:6;;-1:-1:-1;;;;;1920:6:0;740:10;2067:23;2059:68;;;;-1:-1:-1;;;2059:68:0;;;;;;;:::i;:::-;67078:6:::1;:13:::0;;-1:-1:-1;;67078:13:0::1;67087:4;67078:13;::::0;;67004:95::o;55481:118::-;55545:7;55568:20;55580:7;55568:11;:20::i;:::-;:25;;55481:118;-1:-1:-1;;55481:118:0:o;54358:211::-;54422:7;-1:-1:-1;;;;;54446:19:0;;54438:75;;;;-1:-1:-1;;;54438:75:0;;17234:2:1;54438:75:0;;;17216:21:1;17273:2;17253:18;;;17246:30;17312:34;17292:18;;;17285:62;-1:-1:-1;;;17363:18:1;;;17356:41;17414:19;;54438:75:0;17032:407:1;54438:75:0;-1:-1:-1;;;;;;54535:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;54535:27:0;;54358:211::o;2498:94::-;1920:6;;-1:-1:-1;;;;;1920:6:0;740:10;2067:23;2059:68;;;;-1:-1:-1;;;2059:68:0;;;;;;;:::i;:::-;2563:21:::1;2581:1;2563:9;:21::i;:::-;2498:94::o:0;68158:92::-;1920:6;;-1:-1:-1;;;;;1920:6:0;740:10;2067:23;2059:68;;;;-1:-1:-1;;;2059:68:0;;;;;;;:::i;:::-;68225:8:::1;:17:::0;68158:92::o;69467:1400::-;69626:8;;;;;;;69618:39;;;;-1:-1:-1;;;69618:39:0;;14971:2:1;69618:39:0;;;14953:21:1;15010:2;14990:18;;;14983:30;-1:-1:-1;;;15029:18:1;;;15022:48;15087:18;;69618:39:0;14769:342:1;69618:39:0;69676:15;;;;;;;69668:51;;;;-1:-1:-1;;;69668:51:0;;12234:2:1;69668:51:0;;;12216:21:1;12273:2;12253:18;;;12246:30;12312:25;12292:18;;;12285:53;12355:18;;69668:51:0;12032:347:1;69668:51:0;69738:53;69745:6;69777:10;69738:6;:53::i;:::-;69730:81;;;;-1:-1:-1;;;69730:81:0;;16039:2:1;69730:81:0;;;16021:21:1;16078:2;16058:18;;;16051:30;-1:-1:-1;;;16097:18:1;;;16090:45;16152:18;;69730:81:0;15837:339:1;69730:81:0;69827:14;;;;;;;69822:1038;;66515:4;69865:13;51712:7;51735:12;;51659:94;69865:13;:30;69857:77;;;;-1:-1:-1;;;69857:77:0;;23082:2:1;69857:77:0;;;23064:21:1;23121:2;23101:18;;;23094:30;23160:34;23140:18;;;23133:62;-1:-1:-1;;;23211:18:1;;;23204:32;23253:19;;69857:77:0;22880:398:1;69857:77:0;69973:18;;69957:12;:34;;69949:79;;;;-1:-1:-1;;;69949:79:0;;25427:2:1;69949:79:0;;;25409:21:1;;;25446:18;;;25439:30;25505:34;25485:18;;;25478:62;25557:18;;69949:79:0;25225:356:1;69949:79:0;66515:4;70051:31;70069:12;70051:13;51712:7;51735:12;;51659:94;70051:13;:17;;:31::i;:::-;:49;;70043:109;;;;-1:-1:-1;;;70043:109:0;;;;;;;:::i;:::-;70225:18;;70192:10;70175:28;;;;:16;:28;;;;;;:46;;70208:12;70175:32;:46::i;:::-;:68;;70167:113;;;;-1:-1:-1;;;70167:113:0;;21552:2:1;70167:113:0;;;21534:21:1;;;21571:18;;;21564:30;21630:34;21610:18;;;21603:62;21682:18;;70167:113:0;21350:356:1;70167:113:0;70303:8;;70333:9;;70303:26;;70316:12;70303;:26::i;:::-;:39;70295:83;;;;-1:-1:-1;;;70295:83:0;;15318:2:1;70295:83:0;;;15300:21:1;15357:2;15337:18;;;15330:30;15396:33;15376:18;;;15369:61;15447:18;;70295:83:0;15116:355:1;70295:83:0;70410:10;70393:28;;;;:16;:28;;;;;:44;;70425:12;;70393:28;:44;;70425:12;;70393:44;:::i;:::-;;;;-1:-1:-1;70452:35:0;;-1:-1:-1;70462:10:0;70474:12;70452:9;:35::i;69822:1038::-;66561:4;70528:13;51712:7;51735:12;;51659:94;70528:13;:24;;70520:64;;;;-1:-1:-1;;;70520:64:0;;23901:2:1;70520:64:0;;;23883:21:1;23940:2;23920:18;;;23913:30;23979:29;23959:18;;;23952:57;24026:18;;70520:64:0;23699:351:1;70520:64:0;70607:12;70623:1;70607:17;70599:62;;;;-1:-1:-1;;;70599:62:0;;25427:2:1;70599:62:0;;;25409:21:1;;;25446:18;;;25439:30;25505:34;25485:18;;;25478:62;25557:18;;70599:62:0;25225:356:1;70599:62:0;70705:10;70685:31;;;;:19;:31;;;;;;;;70684:32;70676:69;;;;-1:-1:-1;;;70676:69:0;;25074:2:1;70676:69:0;;;25056:21:1;25113:2;25093:18;;;25086:30;25152:26;25132:18;;;25125:54;25196:18;;70676:69:0;24872:348:1;70676:69:0;70780:10;70760:31;;;;:19;:31;;;;;:38;;-1:-1:-1;;70760:38:0;70794:4;70760:38;;;70813:35;;70835:12;70813:9;:35::i;68751:559::-;68863:8;;;;;;;68855:43;;;;-1:-1:-1;;;68855:43:0;;17646:2:1;68855:43:0;;;17628:21:1;17685:2;17665:18;;;17658:30;-1:-1:-1;;;17704:18:1;;;17697:52;17766:18;;68855:43:0;17444:346:1;68855:43:0;68918:15;;;;;;;68917:16;68909:52;;;;-1:-1:-1;;;68909:52:0;;22730:2:1;68909:52:0;;;22712:21:1;22769:2;22749:18;;;22742:30;22808:25;22788:18;;;22781:53;22851:18;;68909:52:0;22528:347:1;68909:52:0;66465:2;68980:12;:32;;68972:68;;;;-1:-1:-1;;;68972:68:0;;13404:2:1;68972:68:0;;;13386:21:1;13443:2;13423:18;;;13416:30;13482:25;13462:18;;;13455:53;13525:18;;68972:68:0;13202:347:1;68972:68:0;66515:4;69059:31;69077:12;69059:13;51712:7;51735:12;;51659:94;69059:31;:49;;69051:109;;;;-1:-1:-1;;;69051:109:0;;;;;;;:::i;:::-;69179:8;;69209:9;;69179:26;;69192:12;69179;:26::i;:::-;:39;69171:83;;;;-1:-1:-1;;;69171:83:0;;15318:2:1;69171:83:0;;;15300:21:1;15357:2;15337:18;;;15330:30;15396:33;15376:18;;;15369:61;15447:18;;69171:83:0;15116:355:1;69171:83:0;69267:35;69277:10;69289:12;69267:9;:35::i;:::-;68751:559;:::o;55813:98::-;55869:13;55898:7;55891:14;;;;;:::i;72489:774::-;72564:4;72604;72564;72621:519;72645:5;:12;72641:1;:16;72621:519;;;72679:20;72702:5;72708:1;72702:8;;;;;;;;:::i;:::-;;;;;;;72679:31;;72747:12;72731;:28;72727:402;;72881:44;;;;;;8736:19:1;;;8771:12;;;8764:28;;;72874:52:0;;8808:12:1;;72881:44:0;;;-1:-1:-1;;72881:44:0;;;;;;;;;;72874:52;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;72859:67;;72727:402;;;73068:44;;;;;;8736:19:1;;;8771:12;;;8764:28;;;73061:52:0;;8808:12:1;;73068:44:0;;;-1:-1:-1;;73068:44:0;;;;;;;;;;73061:52;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;73046:67;;72727:402;-1:-1:-1;72659:3:0;;;;:::i;:::-;;;;72621:519;;;-1:-1:-1;73251:4:0;;73235:20;;72489:774;-1:-1:-1;;;72489:774:0:o;57451:274::-;-1:-1:-1;;;;;57542:24:0;;740:10;57542:24;;57534:63;;;;-1:-1:-1;;;57534:63:0;;19181:2:1;57534:63:0;;;19163:21:1;19220:2;19200:18;;;19193:30;19259:28;19239:18;;;19232:56;19305:18;;57534:63:0;18979:350:1;57534:63:0;740:10;57606:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;57606:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;57606:53:0;;;;;;;;;;57671:48;;11171:41:1;;;57606:42:0;;740:10;57671:48;;11144:18:1;57671:48:0;;;;;;;57451:274;;:::o;58474:319::-;58619:28;58629:4;58635:2;58639:7;58619:9;:28::i;:::-;58670:48;58693:4;58699:2;58703:7;58712:5;58670:22;:48::i;:::-;58654:133;;;;-1:-1:-1;;;58654:133:0;;;;;;;:::i;:::-;58474:319;;;;:::o;71796:436::-;71931:13;71970:17;71978:8;59089:4;59119:12;-1:-1:-1;59109:22:0;59032:105;71970:17;71962:77;;;;-1:-1:-1;;;71962:77:0;;18765:2:1;71962:77:0;;;18747:21:1;18804:2;18784:18;;;18777:30;18843:34;18823:18;;;18816:62;-1:-1:-1;;;18894:18:1;;;18887:45;18949:19;;71962:77:0;18563:411:1;71962:77:0;72055:6;;;;72050:175;;72109:8;72092:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;72078:41;;71796:436;;;:::o;72050:175::-;72183:7;72192:19;:8;:17;:19::i;:::-;72166:46;;;;;;;;;:::i;72050:175::-;71796:436;;;:::o;71300:352::-;1920:6;;-1:-1:-1;;;;;1920:6:0;740:10;2067:23;2059:68;;;;-1:-1:-1;;;2059:68:0;;;;;;;:::i;:::-;71447:9:::1;71443:202;71466:3;:10;71462:1;:14;71443:202;;;66561:4;71519;71505:13;51712:7:::0;51735:12;;51659:94;71505:13:::1;:18;;;;:::i;:::-;:29;;71497:98;;;;-1:-1:-1::0;;;71497:98:0::1;;;;;;;:::i;:::-;71610:23;71620:3;71624:1;71620:6;;;;;;;;:::i;:::-;;;;;;;71628:4;71610:9;:23::i;:::-;71478:3:::0;::::1;::::0;::::1;:::i;:::-;;;;71443:202;;67907:193:::0;1920:6;;-1:-1:-1;;;;;1920:6:0;740:10;2067:23;2059:68;;;;-1:-1:-1;;;2059:68:0;;;;;;;:::i;:::-;68047:20;;::::1;::::0;:8:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;68078:14:0;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;2747:192::-:0;1920:6;;-1:-1:-1;;;;;1920:6:0;740:10;2067:23;2059:68;;;;-1:-1:-1;;;2059:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2836:22:0;::::1;2828:73;;;::::0;-1:-1:-1;;;2828:73:0;;12586:2:1;2828:73:0::1;::::0;::::1;12568:21:1::0;12625:2;12605:18;;;12598:30;12664:34;12644:18;;;12637:62;-1:-1:-1;;;12715:18:1;;;12708:36;12761:19;;2828:73:0::1;12384:402:1::0;2828:73:0::1;2912:19;2922:8;2912:9;:19::i;72308:146::-:0;1920:6;;-1:-1:-1;;;;;1920:6:0;740:10;2067:23;2059:68;;;;-1:-1:-1;;;2059:68:0;;;;;;;:::i;:::-;72389:4:::1;:21:::0;;;;72421:18:::1;:25:::0;72308:146::o;62635:172::-;62732:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;62732:29:0;-1:-1:-1;;;;;62732:29:0;;;;;;;;;62773:28;;62732:24;;62773:28;;;;;;;62635:172;;;:::o;61000:1529::-;61097:35;61135:20;61147:7;61135:11;:20::i;:::-;61206:18;;61097:58;;-1:-1:-1;61164:22:0;;-1:-1:-1;;;;;61190:34:0;740:10;-1:-1:-1;;;;;61190:34:0;;:81;;;-1:-1:-1;740:10:0;61235:20;61247:7;61235:11;:20::i;:::-;-1:-1:-1;;;;;61235:36:0;;61190:81;:142;;;-1:-1:-1;61299:18:0;;61282:50;;740:10;57788:186;:::i;61282:50::-;61164:169;;61358:17;61342:101;;;;-1:-1:-1;;;61342:101:0;;19536:2:1;61342:101:0;;;19518:21:1;19575:2;19555:18;;;19548:30;19614:34;19594:18;;;19587:62;-1:-1:-1;;;19665:18:1;;;19658:48;19723:19;;61342:101:0;19334:414:1;61342:101:0;61490:4;-1:-1:-1;;;;;61468:26:0;:13;:18;;;-1:-1:-1;;;;;61468:26:0;;61452:98;;;;-1:-1:-1;;;61452:98:0;;17997:2:1;61452:98:0;;;17979:21:1;18036:2;18016:18;;;18009:30;18075:34;18055:18;;;18048:62;-1:-1:-1;;;18126:18:1;;;18119:36;18172:19;;61452:98:0;17795:402:1;61452:98:0;-1:-1:-1;;;;;61565:16:0;;61557:66;;;;-1:-1:-1;;;61557:66:0;;14565:2:1;61557:66:0;;;14547:21:1;14604:2;14584:18;;;14577:30;14643:34;14623:18;;;14616:62;-1:-1:-1;;;14694:18:1;;;14687:35;14739:19;;61557:66:0;14363:401:1;61557:66:0;61732:49;61749:1;61753:7;61762:13;:18;;;61732:8;:49::i;:::-;-1:-1:-1;;;;;61790:18:0;;;;;;:12;:18;;;;;:31;;61820:1;;61790:18;:31;;61820:1;;-1:-1:-1;;;;;61790:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;61790:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;61828:16:0;;-1:-1:-1;61828:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;61828:16:0;;:29;;-1:-1:-1;;61828:29:0;;:::i;:::-;;;-1:-1:-1;;;;;61828:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61887:43:0;;;;;;;;-1:-1:-1;;;;;61887:43:0;;;;;-1:-1:-1;;;;;61913:15:0;61887:43;;;;;;;;;-1:-1:-1;61864:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;61864:66:0;-1:-1:-1;;;;;;61864:66:0;;;;;;;;;;;62180:11;61876:7;-1:-1:-1;62180:11:0;:::i;:::-;62243:1;62202:24;;;:11;:24;;;;;:29;62158:33;;-1:-1:-1;;;;;;62202:29:0;62198:236;;62260:20;62268:11;59089:4;59119:12;-1:-1:-1;59109:22:0;59032:105;62260:20;62256:171;;;62320:97;;;;;;;;62347:18;;-1:-1:-1;;;;;62320:97:0;;;;;;62378:28;;;;-1:-1:-1;;;;;62320:97:0;;;;;;;;;-1:-1:-1;62293:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;62293:124:0;-1:-1:-1;;;;;;62293:124:0;;;;;;;;;;;;62256:171;62466:7;62462:2;-1:-1:-1;;;;;62447:27:0;62456:4;-1:-1:-1;;;;;62447:27:0;;;;;;;;;;;62481:42;61090:1439;;;61000:1529;;;:::o;59143:98::-;59208:27;59218:2;59222:8;59208:27;;;;;;;;;;;;:9;:27::i;54821:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;54938:16:0;54946:7;59089:4;59119:12;-1:-1:-1;59109:22:0;59032:105;54938:16;54930:71;;;;-1:-1:-1;;;54930:71:0;;12993:2:1;54930:71:0;;;12975:21:1;13032:2;13012:18;;;13005:30;13071:34;13051:18;;;13044:62;-1:-1:-1;;;13122:18:1;;;13115:40;13172:19;;54930:71:0;12791:406:1;54930:71:0;55010:26;55058:12;55047:7;:23;55043:93;;55102:22;55112:12;55102:7;:22;:::i;:::-;:26;;55127:1;55102:26;:::i;:::-;55081:47;;55043:93;55164:7;55144:212;55181:18;55173:4;:26;55144:212;;55218:31;55252:17;;;:11;:17;;;;;;;;;55218:51;;;;;;;;;-1:-1:-1;;;;;55218:51:0;;;;;-1:-1:-1;;;55218:51:0;;;-1:-1:-1;;;;;55218:51:0;;;;;;;;55282:28;55278:71;;55330:9;54821:606;-1:-1:-1;;;;54821:606:0:o;55278:71::-;-1:-1:-1;55201:6:0;;;;:::i;:::-;;;;55144:212;;;-1:-1:-1;55364:57:0;;-1:-1:-1;;;55364:57:0;;23485:2:1;55364:57:0;;;23467:21:1;23524:2;23504:18;;;23497:30;23563:34;23543:18;;;23536:62;-1:-1:-1;;;23614:18:1;;;23607:45;23669:19;;55364:57:0;23283:411:1;2947:173:0;3022:6;;;-1:-1:-1;;;;;3039:17:0;;;-1:-1:-1;;;;;;3039:17:0;;;;;;;3072:40;;3022:6;;;3039:17;3022:6;;3072:40;;3003:16;;3072:40;2992:128;2947:173;:::o;45644:98::-;45702:7;45729:5;45733:1;45729;:5;:::i;:::-;45722:12;45644:98;-1:-1:-1;;;45644:98:0:o;46382:::-;46440:7;46467:5;46471:1;46467;:5;:::i;64346:690::-;64483:4;-1:-1:-1;;;;;64500:13:0;;11446:20;11494:8;64496:535;;64539:72;;-1:-1:-1;;;64539:72:0;;-1:-1:-1;;;;;64539:36:0;;;;;:72;;740:10;;64590:4;;64596:7;;64605:5;;64539:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64539:72:0;;;;;;;;-1:-1:-1;;64539:72:0;;;;;;;;;;;;:::i;:::-;;;64526:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64770:13:0;;64766:215;;64803:61;;-1:-1:-1;;;64803:61:0;;;;;;;:::i;64766:215::-;64949:6;64943:13;64934:6;64930:2;64926:15;64919:38;64526:464;-1:-1:-1;;;;;;64661:55:0;-1:-1:-1;;;64661:55:0;;-1:-1:-1;64654:62:0;;64496:535;-1:-1:-1;65019:4:0;64496:535;64346:690;;;;;;:::o;18740:723::-;18796:13;19017:10;19013:53;;-1:-1:-1;;19044:10:0;;;;;;;;;;;;-1:-1:-1;;;19044:10:0;;;;;18740:723::o;19013:53::-;19091:5;19076:12;19132:78;19139:9;;19132:78;;19165:8;;;;:::i;:::-;;-1:-1:-1;19188:10:0;;-1:-1:-1;19196:2:0;19188:10;;:::i;:::-;;;19132:78;;;19220:19;19252:6;-1:-1:-1;;;;;19242:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19242:17:0;;19220:39;;19270:154;19277:10;;19270:154;;19304:11;19314:1;19304:11;;:::i;:::-;;-1:-1:-1;19373:10:0;19381:2;19373:5;:10;:::i;:::-;19360:24;;:2;:24;:::i;:::-;19347:39;;19330:6;19337;19330:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19330:56:0;;;;;;;;-1:-1:-1;19401:11:0;19410:2;19401:11;;:::i;:::-;;;19270:154;;59496:1272;59601:20;59624:12;-1:-1:-1;;;;;59651:16:0;;59643:62;;;;-1:-1:-1;;;59643:62:0;;21913:2:1;59643:62:0;;;21895:21:1;21952:2;21932:18;;;21925:30;21991:34;21971:18;;;21964:62;-1:-1:-1;;;22042:18:1;;;22035:31;22083:19;;59643:62:0;21711:397:1;59643:62:0;59842:21;59850:12;59089:4;59119:12;-1:-1:-1;59109:22:0;59032:105;59842:21;59841:22;59833:64;;;;-1:-1:-1;;;59833:64:0;;21194:2:1;59833:64:0;;;21176:21:1;21233:2;21213:18;;;21206:30;21272:31;21252:18;;;21245:59;21321:18;;59833:64:0;20992:353:1;59833:64:0;59924:12;59912:8;:24;;59904:71;;;;-1:-1:-1;;;59904:71:0;;24671:2:1;59904:71:0;;;24653:21:1;24710:2;24690:18;;;24683:30;24749:34;24729:18;;;24722:62;-1:-1:-1;;;24800:18:1;;;24793:32;24842:19;;59904:71:0;24469:398:1;59904:71:0;-1:-1:-1;;;;;60087:16:0;;60054:30;60087:16;;;:12;:16;;;;;;;;;60054:49;;;;;;;;;-1:-1:-1;;;;;60054:49:0;;;;;-1:-1:-1;;;60054:49:0;;;;;;;;;;;60129:119;;;;;;;;60149:19;;60054:49;;60129:119;;;60149:39;;60179:8;;60149:39;:::i;:::-;-1:-1:-1;;;;;60129:119:0;;;;;60232:8;60197:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;60129:119:0;;;;;;-1:-1:-1;;;;;60110:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;60110:138:0;;;;;;;;;;;;60283:43;;;;;;;;;;-1:-1:-1;;;;;60309:15:0;60283:43;;;;;;;;60255:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;60255:71:0;-1:-1:-1;;;;;;60255:71:0;;;;;;;;;;;;;;;;;;60267:12;;60379:281;60403:8;60399:1;:12;60379:281;;;60432:38;;60457:12;;-1:-1:-1;;;;;60432:38:0;;;60449:1;;60432:38;;60449:1;;60432:38;60497:59;60528:1;60532:2;60536:12;60550:5;60497:22;:59::i;:::-;60479:150;;;;-1:-1:-1;;;60479:150:0;;;;;;;:::i;:::-;60638:14;;;;:::i;:::-;;;;60413:3;;;;;:::i;:::-;;;;60379:281;;;-1:-1:-1;60668:12:0;:27;;;60702:60;58474:319;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;603:673;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;814:60;830:43;870:2;830:43;:::i;:::-;814:60;:::i;:::-;896:3;920:2;915:3;908:15;948:2;943:3;939:12;932:19;;983:2;975:6;971:15;1035:3;1030:2;1024;1021:1;1017:10;1009:6;1005:23;1001:32;998:41;995:61;;;1052:1;1049;1042:12;995:61;1074:1;1084:163;1098:2;1095:1;1092:9;1084:163;;;1155:17;;1143:30;;1193:12;;;;1225;;;;1116:1;1109:9;1084:163;;;-1:-1:-1;1265:5:1;;603:673;-1:-1:-1;;;;;;;603:673:1:o;1281:160::-;1346:20;;1402:13;;1395:21;1385:32;;1375:60;;1431:1;1428;1421:12;1446:221;1489:5;1542:3;1535:4;1527:6;1523:17;1519:27;1509:55;;1560:1;1557;1550:12;1509:55;1582:79;1657:3;1648:6;1635:20;1628:4;1620:6;1616:17;1582:79;:::i;1672:186::-;1731:6;1784:2;1772:9;1763:7;1759:23;1755:32;1752:52;;;1800:1;1797;1790:12;1752:52;1823:29;1842:9;1823:29;:::i;1863:260::-;1931:6;1939;1992:2;1980:9;1971:7;1967:23;1963:32;1960:52;;;2008:1;2005;1998:12;1960:52;2031:29;2050:9;2031:29;:::i;:::-;2021:39;;2079:38;2113:2;2102:9;2098:18;2079:38;:::i;:::-;2069:48;;1863:260;;;;;:::o;2128:328::-;2205:6;2213;2221;2274:2;2262:9;2253:7;2249:23;2245:32;2242:52;;;2290:1;2287;2280:12;2242:52;2313:29;2332:9;2313:29;:::i;:::-;2303:39;;2361:38;2395:2;2384:9;2380:18;2361:38;:::i;:::-;2351:48;;2446:2;2435:9;2431:18;2418:32;2408:42;;2128:328;;;;;:::o;2461:666::-;2556:6;2564;2572;2580;2633:3;2621:9;2612:7;2608:23;2604:33;2601:53;;;2650:1;2647;2640:12;2601:53;2673:29;2692:9;2673:29;:::i;:::-;2663:39;;2721:38;2755:2;2744:9;2740:18;2721:38;:::i;:::-;2711:48;;2806:2;2795:9;2791:18;2778:32;2768:42;;2861:2;2850:9;2846:18;2833:32;-1:-1:-1;;;;;2880:6:1;2877:30;2874:50;;;2920:1;2917;2910:12;2874:50;2943:22;;2996:4;2988:13;;2984:27;-1:-1:-1;2974:55:1;;3025:1;3022;3015:12;2974:55;3048:73;3113:7;3108:2;3095:16;3090:2;3086;3082:11;3048:73;:::i;:::-;3038:83;;;2461:666;;;;;;;:::o;3132:254::-;3197:6;3205;3258:2;3246:9;3237:7;3233:23;3229:32;3226:52;;;3274:1;3271;3264:12;3226:52;3297:29;3316:9;3297:29;:::i;:::-;3287:39;;3345:35;3376:2;3365:9;3361:18;3345:35;:::i;3391:254::-;3459:6;3467;3520:2;3508:9;3499:7;3495:23;3491:32;3488:52;;;3536:1;3533;3526:12;3488:52;3559:29;3578:9;3559:29;:::i;:::-;3549:39;3635:2;3620:18;;;;3607:32;;-1:-1:-1;;;3391:254:1:o;3650:978::-;3743:6;3751;3804:2;3792:9;3783:7;3779:23;3775:32;3772:52;;;3820:1;3817;3810:12;3772:52;3860:9;3847:23;-1:-1:-1;;;;;3885:6:1;3882:30;3879:50;;;3925:1;3922;3915:12;3879:50;3948:22;;4001:4;3993:13;;3989:27;-1:-1:-1;3979:55:1;;4030:1;4027;4020:12;3979:55;4066:2;4053:16;4088:4;4112:60;4128:43;4168:2;4128:43;:::i;4112:60::-;4194:3;4218:2;4213:3;4206:15;4246:2;4241:3;4237:12;4230:19;;4277:2;4273;4269:11;4325:7;4320:2;4314;4311:1;4307:10;4303:2;4299:19;4295:28;4292:41;4289:61;;;4346:1;4343;4336:12;4289:61;4368:1;4359:10;;4378:169;4392:2;4389:1;4386:9;4378:169;;;4449:23;4468:3;4449:23;:::i;:::-;4437:36;;4410:1;4403:9;;;;;4493:12;;;;4525;;4378:169;;;-1:-1:-1;4566:5:1;4603:18;;;;4590:32;;-1:-1:-1;;;;;;3650:978:1:o;4633:416::-;4726:6;4734;4787:2;4775:9;4766:7;4762:23;4758:32;4755:52;;;4803:1;4800;4793:12;4755:52;4843:9;4830:23;-1:-1:-1;;;;;4868:6:1;4865:30;4862:50;;;4908:1;4905;4898:12;4862:50;4931:61;4984:7;4975:6;4964:9;4960:22;4931:61;:::i;:::-;4921:71;5039:2;5024:18;;;;5011:32;;-1:-1:-1;;;;4633:416:1:o;5054:180::-;5110:6;5163:2;5151:9;5142:7;5138:23;5134:32;5131:52;;;5179:1;5176;5169:12;5131:52;5202:26;5218:9;5202:26;:::i;5239:184::-;5309:6;5362:2;5350:9;5341:7;5337:23;5333:32;5330:52;;;5378:1;5375;5368:12;5330:52;-1:-1:-1;5401:16:1;;5239:184;-1:-1:-1;5239:184:1:o;5428:245::-;5486:6;5539:2;5527:9;5518:7;5514:23;5510:32;5507:52;;;5555:1;5552;5545:12;5507:52;5594:9;5581:23;5613:30;5637:5;5613:30;:::i;5678:249::-;5747:6;5800:2;5788:9;5779:7;5775:23;5771:32;5768:52;;;5816:1;5813;5806:12;5768:52;5848:9;5842:16;5867:30;5891:5;5867:30;:::i;5932:543::-;6020:6;6028;6081:2;6069:9;6060:7;6056:23;6052:32;6049:52;;;6097:1;6094;6087:12;6049:52;6137:9;6124:23;-1:-1:-1;;;;;6207:2:1;6199:6;6196:14;6193:34;;;6223:1;6220;6213:12;6193:34;6246:50;6288:7;6279:6;6268:9;6264:22;6246:50;:::i;:::-;6236:60;;6349:2;6338:9;6334:18;6321:32;6305:48;;6378:2;6368:8;6365:16;6362:36;;;6394:1;6391;6384:12;6362:36;;6417:52;6461:7;6450:8;6439:9;6435:24;6417:52;:::i;:::-;6407:62;;;5932:543;;;;;:::o;6480:180::-;6539:6;6592:2;6580:9;6571:7;6567:23;6563:32;6560:52;;;6608:1;6605;6598:12;6560:52;-1:-1:-1;6631:23:1;;6480:180;-1:-1:-1;6480:180:1:o;6665:416::-;6758:6;6766;6819:2;6807:9;6798:7;6794:23;6790:32;6787:52;;;6835:1;6832;6825:12;6787:52;6871:9;6858:23;6848:33;;6932:2;6921:9;6917:18;6904:32;-1:-1:-1;;;;;6951:6:1;6948:30;6945:50;;;6991:1;6988;6981:12;6945:50;7014:61;7067:7;7058:6;7047:9;7043:22;7014:61;:::i;7086:248::-;7154:6;7162;7215:2;7203:9;7194:7;7190:23;7186:32;7183:52;;;7231:1;7228;7221:12;7183:52;-1:-1:-1;;7254:23:1;;;7324:2;7309:18;;;7296:32;;-1:-1:-1;7086:248:1:o;7339:257::-;7380:3;7418:5;7412:12;7445:6;7440:3;7433:19;7461:63;7517:6;7510:4;7505:3;7501:14;7494:4;7487:5;7483:16;7461:63;:::i;:::-;7578:2;7557:15;-1:-1:-1;;7553:29:1;7544:39;;;;7585:4;7540:50;;7339:257;-1:-1:-1;;7339:257:1:o;7601:973::-;7686:12;;7651:3;;7741:1;7761:18;;;;7814;;;;7841:61;;7895:4;7887:6;7883:17;7873:27;;7841:61;7921:2;7969;7961:6;7958:14;7938:18;7935:38;7932:161;;;8015:10;8010:3;8006:20;8003:1;7996:31;8050:4;8047:1;8040:15;8078:4;8075:1;8068:15;7932:161;8109:18;8136:104;;;;8254:1;8249:319;;;;8102:466;;8136:104;-1:-1:-1;;8169:24:1;;8157:37;;8214:16;;;;-1:-1:-1;8136:104:1;;8249:319;26309:1;26302:14;;;26346:4;26333:18;;8343:1;8357:165;8371:6;8368:1;8365:13;8357:165;;;8449:14;;8436:11;;;8429:35;8492:16;;;;8386:10;;8357:165;;;8361:3;;8551:6;8546:3;8542:16;8535:23;;8102:466;;;;;;;7601:973;;;;:::o;8831:274::-;8960:3;8998:6;8992:13;9014:53;9060:6;9055:3;9048:4;9040:6;9036:17;9014:53;:::i;:::-;9083:16;;;;;8831:274;-1:-1:-1;;8831:274:1:o;9110:197::-;9238:3;9263:38;9297:3;9289:6;9263:38;:::i;9312:376::-;9488:3;9516:38;9550:3;9542:6;9516:38;:::i;:::-;9583:6;9577:13;9599:52;9644:6;9640:2;9633:4;9625:6;9621:17;9599:52;:::i;:::-;9667:15;;9312:376;-1:-1:-1;;;;9312:376:1:o;9901:488::-;-1:-1:-1;;;;;10170:15:1;;;10152:34;;10222:15;;10217:2;10202:18;;10195:43;10269:2;10254:18;;10247:34;;;10317:3;10312:2;10297:18;;10290:31;;;10095:4;;10338:45;;10363:19;;10355:6;10338:45;:::i;:::-;10330:53;9901:488;-1:-1:-1;;;;;;9901:488:1:o;10394:632::-;10565:2;10617:21;;;10687:13;;10590:18;;;10709:22;;;10536:4;;10565:2;10788:15;;;;10762:2;10747:18;;;10536:4;10831:169;10845:6;10842:1;10839:13;10831:169;;;10906:13;;10894:26;;10975:15;;;;10940:12;;;;10867:1;10860:9;10831:169;;;-1:-1:-1;11017:3:1;;10394:632;-1:-1:-1;;;;;;10394:632:1:o;11405:219::-;11554:2;11543:9;11536:21;11517:4;11574:44;11614:2;11603:9;11599:18;11591:6;11574:44;:::i;16607:420::-;16809:2;16791:21;;;16848:2;16828:18;;;16821:30;16887:34;16882:2;16867:18;;16860:62;16958:26;16953:2;16938:18;;16931:54;17017:3;17002:19;;16607:420::o;18202:356::-;18404:2;18386:21;;;18423:18;;;18416:30;18482:34;18477:2;18462:18;;18455:62;18549:2;18534:18;;18202:356::o;19753:411::-;19955:2;19937:21;;;19994:2;19974:18;;;19967:30;20033:34;20028:2;20013:18;;20006:62;-1:-1:-1;;;20099:2:1;20084:18;;20077:45;20154:3;20139:19;;19753:411::o;20572:415::-;20774:2;20756:21;;;20813:2;20793:18;;;20786:30;20852:34;20847:2;20832:18;;20825:62;-1:-1:-1;;;20918:2:1;20903:18;;20896:49;20977:3;20962:19;;20572:415::o;25768:275::-;25839:2;25833:9;25904:2;25885:13;;-1:-1:-1;;25881:27:1;25869:40;;-1:-1:-1;;;;;25924:34:1;;25960:22;;;25921:62;25918:88;;;25986:18;;:::i;:::-;26022:2;26015:22;25768:275;;-1:-1:-1;25768:275:1:o;26048:183::-;26108:4;-1:-1:-1;;;;;26133:6:1;26130:30;26127:56;;;26163:18;;:::i;:::-;-1:-1:-1;26208:1:1;26204:14;26220:4;26200:25;;26048:183::o;26362:253::-;26402:3;-1:-1:-1;;;;;26491:2:1;26488:1;26484:10;26521:2;26518:1;26514:10;26552:3;26548:2;26544:12;26539:3;26536:21;26533:47;;;26560:18;;:::i;26620:128::-;26660:3;26691:1;26687:6;26684:1;26681:13;26678:39;;;26697:18;;:::i;:::-;-1:-1:-1;26733:9:1;;26620:128::o;26753:120::-;26793:1;26819;26809:35;;26824:18;;:::i;:::-;-1:-1:-1;26858:9:1;;26753:120::o;26878:168::-;26918:7;26984:1;26980;26976:6;26972:14;26969:1;26966:21;26961:1;26954:9;26947:17;26943:45;26940:71;;;26991:18;;:::i;:::-;-1:-1:-1;27031:9:1;;26878:168::o;27051:246::-;27091:4;-1:-1:-1;;;;;27204:10:1;;;;27174;;27226:12;;;27223:38;;;27241:18;;:::i;:::-;27278:13;;27051:246;-1:-1:-1;;;27051:246:1:o;27302:125::-;27342:4;27370:1;27367;27364:8;27361:34;;;27375:18;;:::i;:::-;-1:-1:-1;27412:9:1;;27302:125::o;27432:258::-;27504:1;27514:113;27528:6;27525:1;27522:13;27514:113;;;27604:11;;;27598:18;27585:11;;;27578:39;27550:2;27543:10;27514:113;;;27645:6;27642:1;27639:13;27636:48;;;-1:-1:-1;;27680:1:1;27662:16;;27655:27;27432:258::o;27695:136::-;27734:3;27762:5;27752:39;;27771:18;;:::i;:::-;-1:-1:-1;;;27807:18:1;;27695:136::o;27836:380::-;27915:1;27911:12;;;;27958;;;27979:61;;28033:4;28025:6;28021:17;28011:27;;27979:61;28086:2;28078:6;28075:14;28055:18;28052:38;28049:161;;;28132:10;28127:3;28123:20;28120:1;28113:31;28167:4;28164:1;28157:15;28195:4;28192:1;28185:15;28049:161;;27836:380;;;:::o;28221:135::-;28260:3;-1:-1:-1;;28281:17:1;;28278:43;;;28301:18;;:::i;:::-;-1:-1:-1;28348:1:1;28337:13;;28221:135::o;28361:112::-;28393:1;28419;28409:35;;28424:18;;:::i;:::-;-1:-1:-1;28458:9:1;;28361:112::o;28478:127::-;28539:10;28534:3;28530:20;28527:1;28520:31;28570:4;28567:1;28560:15;28594:4;28591:1;28584:15;28610:127;28671:10;28666:3;28662:20;28659:1;28652:31;28702:4;28699:1;28692:15;28726:4;28723:1;28716:15;28742:127;28803:10;28798:3;28794:20;28791:1;28784:31;28834:4;28831:1;28824:15;28858:4;28855:1;28848:15;28874:127;28935:10;28930:3;28926:20;28923:1;28916:31;28966:4;28963:1;28956:15;28990:4;28987:1;28980:15;29006:131;-1:-1:-1;;;;;;29080:32:1;;29070:43;;29060:71;;29127:1;29124;29117:12

Swarm Source

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