ETH Price: $3,384.53 (-2.77%)
Gas: 1 Gwei

Token

Frenly Pandas (FANDAS)
 

Overview

Max Total Supply

10,000 FANDAS

Holders

3,291

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Blur: Blend
Balance
1 FANDAS
0x29469395eaf6f95920e59f858042f0e28d98a20b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Frenly Pandas is a community driven collection of 10,000 unique and randomly generated NFTs on the Ethereum Blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FANDAS

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-17
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;









/**
 * @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..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * 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 collectionSize;
  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.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

  /**
   * @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(collectionSize). 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");
  }

  /**
   * @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 override {
    _transfer(from, to, tokenId);
  }

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public 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:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `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 > collectionSize - 1) {
      endIndex = collectionSize - 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 {}
}
// File: contracts/Fanda.sol


pragma solidity 0.8.7;





contract FANDAS is ERC721A, Ownable, ReentrancyGuard {

    using Address for address;
    using Strings for uint256;
    using MerkleProof for bytes32[];

    string public baseURI;
    string public baseExtension = ".json";

    uint256 public presaleMintPrice = 0.04 ether;
    uint256 public publicMintPrice = 0.05 ether;
    uint256 public maxMintPerWallet = 3;
    uint256 public maxMintPerTx = 3;


    bool public whitelistOpen = true;

    bytes32 whitelistMerkleRoot = 0xaccf7d34fbd84c5cbcb9dc624ce046254c6c77b603b2de1ce6c3376632db7c4c;

    mapping(address => uint256) public MintedAmountWhitelist;
    mapping(address => uint256) public MintedAmountPublic;


    // ===== Constructor =====
    constructor() ERC721A("Frenly Pandas", "FANDAS", maxMintPerWallet, 10000) {
        
    }

    function changePublicPrice(uint256 _price) public onlyOwner
    {
        publicMintPrice = _price;
    }

    function devMint(uint256 amount) public onlyOwner
    {
        _safeMint(msg.sender, amount);
    }

    // ===== Modifier =====
    function _onlySender() private view {
        require(msg.sender == tx.origin);
    }

    modifier onlySender {
        _onlySender();
        _;
    }

    modifier whitelistIsOpen {
        require(whitelistOpen == true);
        _;
    }

    modifier whitelistIsClosed {
        require(whitelistOpen == false);
        _;
    }

    function flipSale() public onlyOwner
    {
        whitelistOpen = !whitelistOpen;
    }

    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        whitelistMerkleRoot = _merkleRoot;
    }

    function whitelistMint(bytes32[] calldata _merkleProof, uint256 amount) public payable nonReentrant onlySender whitelistIsOpen
    {      
        require(msg.value >= presaleMintPrice, "Minting a Panda Costs 0.05 Ether Each!");
        
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(_merkleProof, whitelistMerkleRoot, leaf), "Invalid proof.");

        require(
            amount <= maxMintPerTx,
            "Minting amount exceeds allowance per tx"
        );

        require(
            MintedAmountWhitelist[msg.sender] + amount <= maxMintPerWallet,
            "Minting amount exceeds allowance per wallet"
        );
        MintedAmountWhitelist[msg.sender] += amount;

        require((totalSupply() + amount) <= collectionSize, "Sold out!");
        _safeMint(msg.sender, amount);
        
    }


    function publicMint(uint256 amount) public payable nonReentrant onlySender whitelistIsClosed
    {      
        require(msg.value >= publicMintPrice, "Minting a Panda Costs 0.06 Ether Each!");
        
        require(
            amount <= maxMintPerTx,
            "Minting amount exceeds allowance per tx"
        );
        
        require(
            MintedAmountPublic[msg.sender] + amount <= maxMintPerWallet,
            "Minting amount exceeds allowance per wallet"
        );


        MintedAmountPublic[msg.sender] += amount;

        require((totalSupply() + amount) <= collectionSize, "Sold out!");
        _safeMint(msg.sender, amount);
        
    }

    function _withdraw(address payable address_, uint256 amount_) internal {
        (bool success, ) = payable(address_).call{value: amount_}("");
        require(success, "Transfer failed");
    }

    function withdrawEther() external onlyOwner {
        _withdraw(payable(msg.sender), address(this).balance);
    }

    function withdrawEtherTo(address payable to_) external onlyOwner {
        _withdraw(to_, address(this).balance);
    }
    
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }   
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

    function walletOfOwner(address address_) public virtual view returns (uint256[] memory) {
        uint256 _balance = balanceOf(address_);
        uint256[] memory _tokens = new uint256[] (_balance);
        uint256 _index;
        uint256 _loopThrough = totalSupply();
        for (uint256 i = 0; i < _loopThrough; i++) {
            bool _exists = _exists(i);
            if (_exists) {
                if (ownerOf(i) == address_) { _tokens[_index] = i; _index++; }
            }
            else if (!_exists && _tokens[_balance - 1] == 0) { _loopThrough++; }
        }
        return _tokens;
    }
}

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":[{"internalType":"address","name":"","type":"address"}],"name":"MintedAmountPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"MintedAmountWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"changePublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"presaleMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"to_","type":"address"}],"name":"withdrawEtherTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000808055600755610100604052600560c081905264173539b7b760d91b60e09081526200003191600b91906200024b565b50668e1bc9bf040000600c5566b1a2bc2ec50000600d556003600e819055600f556010805460ff191660011790557faccf7d34fbd84c5cbcb9dc624ce046254c6c77b603b2de1ce6c3376632db7c4c6011553480156200009057600080fd5b506040518060400160405280600d81526020016c4672656e6c792050616e64617360981b8152506040518060400160405280600681526020016546414e44415360d01b815250600e5461271060008111620001495760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001ab5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000140565b8351620001c09060019060208701906200024b565b508251620001d69060029060208601906200024b565b5060a09190915260805250620001ee905033620001f9565b60016009556200032e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200025990620002f1565b90600052602060002090601f0160209004810192826200027d5760008555620002c8565b82601f106200029857805160ff1916838001178555620002c8565b82800160010185558215620002c8579182015b82811115620002c8578251825591602001919060010190620002ab565b50620002d6929150620002da565b5090565b5b80821115620002d65760008155600101620002db565b600181811c908216806200030657607f821691505b602082108114156200032857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612aee6200036960003960008181611bdd01528181611c0701526120a3015260008181610bfb0152610dd30152612aee6000f3fe6080604052600436106102305760003560e01c806370a082311161012e578063a22cb465116100ab578063d7224ba01161006f578063d7224ba014610654578063dc53fd921461066a578063de7fcb1d14610680578063e985e9c514610696578063f2fde38b146106df57600080fd5b8063a22cb465146105c9578063b228d925146105e9578063b88d4fde146105ff578063c66828621461061f578063c87b56dd1461063457600080fd5b80637cb64759116100f25780637cb647591461053c5780637db3aecc1461055c5780638da5cb5b1461057657806395d89b41146105945780639d7e8d5f146105a957600080fd5b806370a08231146104b0578063715018a6146104d05780637362377b146104e5578063797444b7146104fa5780637ba5e6211461052757600080fd5b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce71461042557806355f804b3146104455780635be50521146104655780636352211e1461047b5780636c0360eb1461049b57600080fd5b80632f745c591461036b578063375a069a1461038b57806342842e0e146103ab578063438b6300146103cb57806347ed50ae146103f857600080fd5b8063095ea7b311610203578063095ea7b3146102e657806318160ddd1461030657806323b872dd146103255780632904e6d9146103455780632db115441461035857600080fd5b806301ffc9a71461023557806306fdde031461026a57806307fa40e41461028c578063081812fc146102ae575b600080fd5b34801561024157600080fd5b506102556102503660046125d1565b6106ff565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f61076c565b60405161026191906127c5565b34801561029857600080fd5b506102ac6102a73660046123c7565b6107fe565b005b3480156102ba57600080fd5b506102ce6102c93660046125b8565b61083e565b6040516001600160a01b039091168152602001610261565b3480156102f257600080fd5b506102ac610301366004612511565b6108c9565b34801561031257600080fd5b506000545b604051908152602001610261565b34801561033157600080fd5b506102ac61034036600461241d565b6109e1565b6102ac61035336600461253d565b6109ec565b6102ac6103663660046125b8565b610c7f565b34801561037757600080fd5b50610317610386366004612511565b610e54565b34801561039757600080fd5b506102ac6103a63660046125b8565b610fc2565b3480156103b757600080fd5b506102ac6103c636600461241d565b610ff6565b3480156103d757600080fd5b506103eb6103e63660046123c7565b611011565b6040516102619190612781565b34801561040457600080fd5b506103176104133660046123c7565b60136020526000908152604090205481565b34801561043157600080fd5b506103176104403660046125b8565b61114a565b34801561045157600080fd5b506102ac61046036600461260b565b6111ac565b34801561047157600080fd5b50610317600c5481565b34801561048757600080fd5b506102ce6104963660046125b8565b6111ed565b3480156104a757600080fd5b5061027f6111ff565b3480156104bc57600080fd5b506103176104cb3660046123c7565b61128d565b3480156104dc57600080fd5b506102ac61131e565b3480156104f157600080fd5b506102ac611354565b34801561050657600080fd5b506103176105153660046123c7565b60126020526000908152604090205481565b34801561053357600080fd5b506102ac611388565b34801561054857600080fd5b506102ac6105573660046125b8565b6113c6565b34801561056857600080fd5b506010546102559060ff1681565b34801561058257600080fd5b506008546001600160a01b03166102ce565b3480156105a057600080fd5b5061027f6113f5565b3480156105b557600080fd5b506102ac6105c43660046125b8565b611404565b3480156105d557600080fd5b506102ac6105e43660046124de565b611433565b3480156105f557600080fd5b50610317600e5481565b34801561060b57600080fd5b506102ac61061a36600461245e565b6114f8565b34801561062b57600080fd5b5061027f611531565b34801561064057600080fd5b5061027f61064f3660046125b8565b61153e565b34801561066057600080fd5b5061031760075481565b34801561067657600080fd5b50610317600d5481565b34801561068c57600080fd5b50610317600f5481565b3480156106a257600080fd5b506102556106b13660046123e4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106eb57600080fd5b506102ac6106fa3660046123c7565b61160e565b60006001600160e01b031982166380ac58cd60e01b148061073057506001600160e01b03198216635b5e139f60e01b145b8061074b57506001600160e01b0319821663780e9d6360e01b145b8061076657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461077b906129cb565b80601f01602080910402602001604051908101604052809291908181526020018280546107a7906129cb565b80156107f45780601f106107c9576101008083540402835291602001916107f4565b820191906000526020600020905b8154815290600101906020018083116107d757829003601f168201915b5050505050905090565b6008546001600160a01b031633146108315760405162461bcd60e51b81526004016108289061286a565b60405180910390fd5b61083b81476116a6565b50565b600061084b826000541190565b6108ad5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610828565b506000908152600560205260409020546001600160a01b031690565b60006108d4826111ed565b9050806001600160a01b0316836001600160a01b031614156109435760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610828565b336001600160a01b038216148061095f575061095f81336106b1565b6109d15760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610828565b6109dc83838361173b565b505050565b6109dc838383611797565b60026009541415610a3f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610828565b6002600955610a4c611b1f565b60105460ff161515600114610a6057600080fd5b600c54341015610ac15760405162461bcd60e51b815260206004820152602660248201527f4d696e74696e6720612050616e646120436f73747320302e303520457468657260448201526520456163682160d01b6064820152608401610828565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610b3b848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011549150849050611b2b565b610b785760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b6044820152606401610828565b600f54821115610b9a5760405162461bcd60e51b8152600401610828906127d8565b600e5433600090815260126020526040902054610bb890849061291d565b1115610bd65760405162461bcd60e51b81526004016108289061281f565b3360009081526012602052604081208054849290610bf590849061291d565b909155507f0000000000000000000000000000000000000000000000000000000000000000905082610c2660005490565b610c30919061291d565b1115610c6a5760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610828565b610c743383611b41565b505060016009555050565b60026009541415610cd25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610828565b6002600955610cdf611b1f565b60105460ff1615610cef57600080fd5b600d54341015610d505760405162461bcd60e51b815260206004820152602660248201527f4d696e74696e6720612050616e646120436f73747320302e303620457468657260448201526520456163682160d01b6064820152608401610828565b600f54811115610d725760405162461bcd60e51b8152600401610828906127d8565b600e5433600090815260136020526040902054610d9090839061291d565b1115610dae5760405162461bcd60e51b81526004016108289061281f565b3360009081526013602052604081208054839290610dcd90849061291d565b909155507f0000000000000000000000000000000000000000000000000000000000000000905081610dfe60005490565b610e08919061291d565b1115610e425760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610828565b610e4c3382611b41565b506001600955565b6000610e5f8361128d565b8210610eb85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610828565b600080549080805b83811015610f62576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610f1357805192505b876001600160a01b0316836001600160a01b03161415610f4f5786841415610f415750935061076692505050565b83610f4b81612a06565b9450505b5080610f5a81612a06565b915050610ec0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610828565b6008546001600160a01b03163314610fec5760405162461bcd60e51b81526004016108289061286a565b61083b3382611b41565b6109dc838383604051806020016040528060008152506114f8565b6060600061101e8361128d565b905060008167ffffffffffffffff81111561103b5761103b612a77565b604051908082528060200260200182016040528015611064578160200160208202803683370190505b50905060008061107360005490565b905060005b8181101561113f57600061108d826000541190565b905080156110e857876001600160a01b03166110a8836111ed565b6001600160a01b031614156110e357818585815181106110ca576110ca612a61565b6020908102919091010152836110df81612a06565b9450505b61112c565b801580156111195750846110fd600188612971565b8151811061110d5761110d612a61565b60200260200101516000145b1561112c578261112881612a06565b9350505b508061113781612a06565b915050611078565b509195945050505050565b6000805482106111a85760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610828565b5090565b6008546001600160a01b031633146111d65760405162461bcd60e51b81526004016108289061286a565b80516111e990600a9060208401906122c1565b5050565b60006111f882611b5b565b5192915050565b600a805461120c906129cb565b80601f0160208091040260200160405190810160405280929190818152602001828054611238906129cb565b80156112855780601f1061125a57610100808354040283529160200191611285565b820191906000526020600020905b81548152906001019060200180831161126857829003601f168201915b505050505081565b60006001600160a01b0382166112f95760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610828565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146113485760405162461bcd60e51b81526004016108289061286a565b6113526000611d05565b565b6008546001600160a01b0316331461137e5760405162461bcd60e51b81526004016108289061286a565b61135233476116a6565b6008546001600160a01b031633146113b25760405162461bcd60e51b81526004016108289061286a565b6010805460ff19811660ff90911615179055565b6008546001600160a01b031633146113f05760405162461bcd60e51b81526004016108289061286a565b601155565b60606002805461077b906129cb565b6008546001600160a01b0316331461142e5760405162461bcd60e51b81526004016108289061286a565b600d55565b6001600160a01b03821633141561148c5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610828565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611503848484611797565b61150f84848484611d57565b61152b5760405162461bcd60e51b81526004016108289061289f565b50505050565b600b805461120c906129cb565b606061154b826000541190565b6115af5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610828565b60006115b9611e65565b905060008151116115d95760405180602001604052806000815250611607565b806115e384611e74565b600b6040516020016115f793929190612680565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146116385760405162461bcd60e51b81526004016108289061286a565b6001600160a01b03811661169d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610828565b61083b81611d05565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146116f3576040519150601f19603f3d011682016040523d82523d6000602084013e6116f8565b606091505b50509050806109dc5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610828565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117a282611b5b565b80519091506000906001600160a01b0316336001600160a01b031614806117d95750336117ce8461083e565b6001600160a01b0316145b806117eb575081516117eb90336106b1565b9050806118555760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610828565b846001600160a01b031682600001516001600160a01b0316146118c95760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610828565b6001600160a01b03841661192d5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610828565b61193d600084846000015161173b565b6001600160a01b038516600090815260046020526040812080546001929061196f9084906001600160801b0316612949565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926119bb918591166128f2565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611a4384600161291d565b6000818152600360205260409020549091506001600160a01b0316611ad557611a6d816000541190565b15611ad55760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b33321461135257600080fd5b600082611b388584611f72565b14949350505050565b6111e9828260405180602001604052806000815250611fe6565b6040805180820190915260008082526020820152611b7a826000541190565b611bd95760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610828565b60007f00000000000000000000000000000000000000000000000000000000000000008310611c3a57611c2c7f000000000000000000000000000000000000000000000000000000000000000084612971565b611c3790600161291d565b90505b825b818110611ca4576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611c9157949350505050565b5080611c9c816129b4565b915050611c3c565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610828565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611e5957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d9b903390899088908890600401612744565b602060405180830381600087803b158015611db557600080fd5b505af1925050508015611de5575060408051601f3d908101601f19168201909252611de2918101906125ee565b60015b611e3f573d808015611e13576040519150601f19603f3d011682016040523d82523d6000602084013e611e18565b606091505b508051611e375760405162461bcd60e51b81526004016108289061289f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e5d565b5060015b949350505050565b6060600a805461077b906129cb565b606081611e985750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ec25780611eac81612a06565b9150611ebb9050600a83612935565b9150611e9c565b60008167ffffffffffffffff811115611edd57611edd612a77565b6040519080825280601f01601f191660200182016040528015611f07576020820181803683370190505b5090505b8415611e5d57611f1c600183612971565b9150611f29600a86612a21565b611f3490603061291d565b60f81b818381518110611f4957611f49612a61565b60200101906001600160f81b031916908160001a905350611f6b600a86612935565b9450611f0b565b600081815b8451811015611fde576000858281518110611f9457611f94612a61565b60200260200101519050808311611fba5760008381526020829052604090209250611fcb565b600081815260208490526040902092505b5080611fd681612a06565b915050611f77565b509392505050565b6000546001600160a01b0384166120495760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610828565b612054816000541190565b156120a15760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610828565b7f000000000000000000000000000000000000000000000000000000000000000083111561211c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610828565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906121789087906128f2565b6001600160801b0316815260200185836020015161219691906128f2565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156122b65760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461227a6000888488611d57565b6122965760405162461bcd60e51b81526004016108289061289f565b816122a081612a06565b92505080806122ae90612a06565b91505061222d565b506000819055611b17565b8280546122cd906129cb565b90600052602060002090601f0160209004810192826122ef5760008555612335565b82601f1061230857805160ff1916838001178555612335565b82800160010185558215612335579182015b8281111561233557825182559160200191906001019061231a565b506111a89291505b808211156111a8576000815560010161233d565b600067ffffffffffffffff8084111561236c5761236c612a77565b604051601f8501601f19908116603f0116810190828211818310171561239457612394612a77565b816040528093508581528686860111156123ad57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156123d957600080fd5b813561160781612a8d565b600080604083850312156123f757600080fd5b823561240281612a8d565b9150602083013561241281612a8d565b809150509250929050565b60008060006060848603121561243257600080fd5b833561243d81612a8d565b9250602084013561244d81612a8d565b929592945050506040919091013590565b6000806000806080858703121561247457600080fd5b843561247f81612a8d565b9350602085013561248f81612a8d565b925060408501359150606085013567ffffffffffffffff8111156124b257600080fd5b8501601f810187136124c357600080fd5b6124d287823560208401612351565b91505092959194509250565b600080604083850312156124f157600080fd5b82356124fc81612a8d565b91506020830135801515811461241257600080fd5b6000806040838503121561252457600080fd5b823561252f81612a8d565b946020939093013593505050565b60008060006040848603121561255257600080fd5b833567ffffffffffffffff8082111561256a57600080fd5b818601915086601f83011261257e57600080fd5b81358181111561258d57600080fd5b8760208260051b85010111156125a257600080fd5b6020928301989097509590910135949350505050565b6000602082840312156125ca57600080fd5b5035919050565b6000602082840312156125e357600080fd5b813561160781612aa2565b60006020828403121561260057600080fd5b815161160781612aa2565b60006020828403121561261d57600080fd5b813567ffffffffffffffff81111561263457600080fd5b8201601f8101841361264557600080fd5b611e5d84823560208401612351565b6000815180845261266c816020860160208601612988565b601f01601f19169290920160200192915050565b6000845160206126938285838a01612988565b8551918401916126a68184848a01612988565b8554920191600090600181811c90808316806126c357607f831692505b8583108114156126e157634e487b7160e01b85526022600452602485fd5b8080156126f5576001811461270657612733565b60ff19851688528388019550612733565b60008b81526020902060005b8581101561272b5781548a820152908401908801612712565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061277790830184612654565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127b95783518352928401929184019160010161279d565b50909695505050505050565b6020815260006116076020830184612654565b60208082526027908201527f4d696e74696e6720616d6f756e74206578636565647320616c6c6f77616e6365604082015266040e0cae440e8f60cb1b606082015260800190565b6020808252602b908201527f4d696e74696e6720616d6f756e74206578636565647320616c6c6f77616e636560408201526a081c195c881dd85b1b195d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561291457612914612a35565b01949350505050565b6000821982111561293057612930612a35565b500190565b60008261294457612944612a4b565b500490565b60006001600160801b038381169083168181101561296957612969612a35565b039392505050565b60008282101561298357612983612a35565b500390565b60005b838110156129a357818101518382015260200161298b565b8381111561152b5750506000910152565b6000816129c3576129c3612a35565b506000190190565b600181811c908216806129df57607f821691505b60208210811415612a0057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a1a57612a1a612a35565b5060010190565b600082612a3057612a30612a4b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461083b57600080fd5b6001600160e01b03198116811461083b57600080fdfea26469706673582212206d3dd76b2cd1294d93fe372605f6f6cfc8b3e0848518e190f0023a7f70a5a81764736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102305760003560e01c806370a082311161012e578063a22cb465116100ab578063d7224ba01161006f578063d7224ba014610654578063dc53fd921461066a578063de7fcb1d14610680578063e985e9c514610696578063f2fde38b146106df57600080fd5b8063a22cb465146105c9578063b228d925146105e9578063b88d4fde146105ff578063c66828621461061f578063c87b56dd1461063457600080fd5b80637cb64759116100f25780637cb647591461053c5780637db3aecc1461055c5780638da5cb5b1461057657806395d89b41146105945780639d7e8d5f146105a957600080fd5b806370a08231146104b0578063715018a6146104d05780637362377b146104e5578063797444b7146104fa5780637ba5e6211461052757600080fd5b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce71461042557806355f804b3146104455780635be50521146104655780636352211e1461047b5780636c0360eb1461049b57600080fd5b80632f745c591461036b578063375a069a1461038b57806342842e0e146103ab578063438b6300146103cb57806347ed50ae146103f857600080fd5b8063095ea7b311610203578063095ea7b3146102e657806318160ddd1461030657806323b872dd146103255780632904e6d9146103455780632db115441461035857600080fd5b806301ffc9a71461023557806306fdde031461026a57806307fa40e41461028c578063081812fc146102ae575b600080fd5b34801561024157600080fd5b506102556102503660046125d1565b6106ff565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f61076c565b60405161026191906127c5565b34801561029857600080fd5b506102ac6102a73660046123c7565b6107fe565b005b3480156102ba57600080fd5b506102ce6102c93660046125b8565b61083e565b6040516001600160a01b039091168152602001610261565b3480156102f257600080fd5b506102ac610301366004612511565b6108c9565b34801561031257600080fd5b506000545b604051908152602001610261565b34801561033157600080fd5b506102ac61034036600461241d565b6109e1565b6102ac61035336600461253d565b6109ec565b6102ac6103663660046125b8565b610c7f565b34801561037757600080fd5b50610317610386366004612511565b610e54565b34801561039757600080fd5b506102ac6103a63660046125b8565b610fc2565b3480156103b757600080fd5b506102ac6103c636600461241d565b610ff6565b3480156103d757600080fd5b506103eb6103e63660046123c7565b611011565b6040516102619190612781565b34801561040457600080fd5b506103176104133660046123c7565b60136020526000908152604090205481565b34801561043157600080fd5b506103176104403660046125b8565b61114a565b34801561045157600080fd5b506102ac61046036600461260b565b6111ac565b34801561047157600080fd5b50610317600c5481565b34801561048757600080fd5b506102ce6104963660046125b8565b6111ed565b3480156104a757600080fd5b5061027f6111ff565b3480156104bc57600080fd5b506103176104cb3660046123c7565b61128d565b3480156104dc57600080fd5b506102ac61131e565b3480156104f157600080fd5b506102ac611354565b34801561050657600080fd5b506103176105153660046123c7565b60126020526000908152604090205481565b34801561053357600080fd5b506102ac611388565b34801561054857600080fd5b506102ac6105573660046125b8565b6113c6565b34801561056857600080fd5b506010546102559060ff1681565b34801561058257600080fd5b506008546001600160a01b03166102ce565b3480156105a057600080fd5b5061027f6113f5565b3480156105b557600080fd5b506102ac6105c43660046125b8565b611404565b3480156105d557600080fd5b506102ac6105e43660046124de565b611433565b3480156105f557600080fd5b50610317600e5481565b34801561060b57600080fd5b506102ac61061a36600461245e565b6114f8565b34801561062b57600080fd5b5061027f611531565b34801561064057600080fd5b5061027f61064f3660046125b8565b61153e565b34801561066057600080fd5b5061031760075481565b34801561067657600080fd5b50610317600d5481565b34801561068c57600080fd5b50610317600f5481565b3480156106a257600080fd5b506102556106b13660046123e4565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106eb57600080fd5b506102ac6106fa3660046123c7565b61160e565b60006001600160e01b031982166380ac58cd60e01b148061073057506001600160e01b03198216635b5e139f60e01b145b8061074b57506001600160e01b0319821663780e9d6360e01b145b8061076657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461077b906129cb565b80601f01602080910402602001604051908101604052809291908181526020018280546107a7906129cb565b80156107f45780601f106107c9576101008083540402835291602001916107f4565b820191906000526020600020905b8154815290600101906020018083116107d757829003601f168201915b5050505050905090565b6008546001600160a01b031633146108315760405162461bcd60e51b81526004016108289061286a565b60405180910390fd5b61083b81476116a6565b50565b600061084b826000541190565b6108ad5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610828565b506000908152600560205260409020546001600160a01b031690565b60006108d4826111ed565b9050806001600160a01b0316836001600160a01b031614156109435760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610828565b336001600160a01b038216148061095f575061095f81336106b1565b6109d15760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610828565b6109dc83838361173b565b505050565b6109dc838383611797565b60026009541415610a3f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610828565b6002600955610a4c611b1f565b60105460ff161515600114610a6057600080fd5b600c54341015610ac15760405162461bcd60e51b815260206004820152602660248201527f4d696e74696e6720612050616e646120436f73747320302e303520457468657260448201526520456163682160d01b6064820152608401610828565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610b3b848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011549150849050611b2b565b610b785760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b210383937b7b31760911b6044820152606401610828565b600f54821115610b9a5760405162461bcd60e51b8152600401610828906127d8565b600e5433600090815260126020526040902054610bb890849061291d565b1115610bd65760405162461bcd60e51b81526004016108289061281f565b3360009081526012602052604081208054849290610bf590849061291d565b909155507f0000000000000000000000000000000000000000000000000000000000002710905082610c2660005490565b610c30919061291d565b1115610c6a5760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610828565b610c743383611b41565b505060016009555050565b60026009541415610cd25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610828565b6002600955610cdf611b1f565b60105460ff1615610cef57600080fd5b600d54341015610d505760405162461bcd60e51b815260206004820152602660248201527f4d696e74696e6720612050616e646120436f73747320302e303620457468657260448201526520456163682160d01b6064820152608401610828565b600f54811115610d725760405162461bcd60e51b8152600401610828906127d8565b600e5433600090815260136020526040902054610d9090839061291d565b1115610dae5760405162461bcd60e51b81526004016108289061281f565b3360009081526013602052604081208054839290610dcd90849061291d565b909155507f0000000000000000000000000000000000000000000000000000000000002710905081610dfe60005490565b610e08919061291d565b1115610e425760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610828565b610e4c3382611b41565b506001600955565b6000610e5f8361128d565b8210610eb85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610828565b600080549080805b83811015610f62576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610f1357805192505b876001600160a01b0316836001600160a01b03161415610f4f5786841415610f415750935061076692505050565b83610f4b81612a06565b9450505b5080610f5a81612a06565b915050610ec0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610828565b6008546001600160a01b03163314610fec5760405162461bcd60e51b81526004016108289061286a565b61083b3382611b41565b6109dc838383604051806020016040528060008152506114f8565b6060600061101e8361128d565b905060008167ffffffffffffffff81111561103b5761103b612a77565b604051908082528060200260200182016040528015611064578160200160208202803683370190505b50905060008061107360005490565b905060005b8181101561113f57600061108d826000541190565b905080156110e857876001600160a01b03166110a8836111ed565b6001600160a01b031614156110e357818585815181106110ca576110ca612a61565b6020908102919091010152836110df81612a06565b9450505b61112c565b801580156111195750846110fd600188612971565b8151811061110d5761110d612a61565b60200260200101516000145b1561112c578261112881612a06565b9350505b508061113781612a06565b915050611078565b509195945050505050565b6000805482106111a85760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610828565b5090565b6008546001600160a01b031633146111d65760405162461bcd60e51b81526004016108289061286a565b80516111e990600a9060208401906122c1565b5050565b60006111f882611b5b565b5192915050565b600a805461120c906129cb565b80601f0160208091040260200160405190810160405280929190818152602001828054611238906129cb565b80156112855780601f1061125a57610100808354040283529160200191611285565b820191906000526020600020905b81548152906001019060200180831161126857829003601f168201915b505050505081565b60006001600160a01b0382166112f95760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610828565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146113485760405162461bcd60e51b81526004016108289061286a565b6113526000611d05565b565b6008546001600160a01b0316331461137e5760405162461bcd60e51b81526004016108289061286a565b61135233476116a6565b6008546001600160a01b031633146113b25760405162461bcd60e51b81526004016108289061286a565b6010805460ff19811660ff90911615179055565b6008546001600160a01b031633146113f05760405162461bcd60e51b81526004016108289061286a565b601155565b60606002805461077b906129cb565b6008546001600160a01b0316331461142e5760405162461bcd60e51b81526004016108289061286a565b600d55565b6001600160a01b03821633141561148c5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610828565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611503848484611797565b61150f84848484611d57565b61152b5760405162461bcd60e51b81526004016108289061289f565b50505050565b600b805461120c906129cb565b606061154b826000541190565b6115af5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610828565b60006115b9611e65565b905060008151116115d95760405180602001604052806000815250611607565b806115e384611e74565b600b6040516020016115f793929190612680565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146116385760405162461bcd60e51b81526004016108289061286a565b6001600160a01b03811661169d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610828565b61083b81611d05565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146116f3576040519150601f19603f3d011682016040523d82523d6000602084013e6116f8565b606091505b50509050806109dc5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610828565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006117a282611b5b565b80519091506000906001600160a01b0316336001600160a01b031614806117d95750336117ce8461083e565b6001600160a01b0316145b806117eb575081516117eb90336106b1565b9050806118555760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610828565b846001600160a01b031682600001516001600160a01b0316146118c95760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610828565b6001600160a01b03841661192d5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610828565b61193d600084846000015161173b565b6001600160a01b038516600090815260046020526040812080546001929061196f9084906001600160801b0316612949565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926119bb918591166128f2565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611a4384600161291d565b6000818152600360205260409020549091506001600160a01b0316611ad557611a6d816000541190565b15611ad55760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b33321461135257600080fd5b600082611b388584611f72565b14949350505050565b6111e9828260405180602001604052806000815250611fe6565b6040805180820190915260008082526020820152611b7a826000541190565b611bd95760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610828565b60007f00000000000000000000000000000000000000000000000000000000000000038310611c3a57611c2c7f000000000000000000000000000000000000000000000000000000000000000384612971565b611c3790600161291d565b90505b825b818110611ca4576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611c9157949350505050565b5080611c9c816129b4565b915050611c3c565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610828565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611e5957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d9b903390899088908890600401612744565b602060405180830381600087803b158015611db557600080fd5b505af1925050508015611de5575060408051601f3d908101601f19168201909252611de2918101906125ee565b60015b611e3f573d808015611e13576040519150601f19603f3d011682016040523d82523d6000602084013e611e18565b606091505b508051611e375760405162461bcd60e51b81526004016108289061289f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e5d565b5060015b949350505050565b6060600a805461077b906129cb565b606081611e985750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ec25780611eac81612a06565b9150611ebb9050600a83612935565b9150611e9c565b60008167ffffffffffffffff811115611edd57611edd612a77565b6040519080825280601f01601f191660200182016040528015611f07576020820181803683370190505b5090505b8415611e5d57611f1c600183612971565b9150611f29600a86612a21565b611f3490603061291d565b60f81b818381518110611f4957611f49612a61565b60200101906001600160f81b031916908160001a905350611f6b600a86612935565b9450611f0b565b600081815b8451811015611fde576000858281518110611f9457611f94612a61565b60200260200101519050808311611fba5760008381526020829052604090209250611fcb565b600081815260208490526040902092505b5080611fd681612a06565b915050611f77565b509392505050565b6000546001600160a01b0384166120495760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610828565b612054816000541190565b156120a15760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610828565b7f000000000000000000000000000000000000000000000000000000000000000383111561211c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610828565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906121789087906128f2565b6001600160801b0316815260200185836020015161219691906128f2565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156122b65760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461227a6000888488611d57565b6122965760405162461bcd60e51b81526004016108289061289f565b816122a081612a06565b92505080806122ae90612a06565b91505061222d565b506000819055611b17565b8280546122cd906129cb565b90600052602060002090601f0160209004810192826122ef5760008555612335565b82601f1061230857805160ff1916838001178555612335565b82800160010185558215612335579182015b8281111561233557825182559160200191906001019061231a565b506111a89291505b808211156111a8576000815560010161233d565b600067ffffffffffffffff8084111561236c5761236c612a77565b604051601f8501601f19908116603f0116810190828211818310171561239457612394612a77565b816040528093508581528686860111156123ad57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156123d957600080fd5b813561160781612a8d565b600080604083850312156123f757600080fd5b823561240281612a8d565b9150602083013561241281612a8d565b809150509250929050565b60008060006060848603121561243257600080fd5b833561243d81612a8d565b9250602084013561244d81612a8d565b929592945050506040919091013590565b6000806000806080858703121561247457600080fd5b843561247f81612a8d565b9350602085013561248f81612a8d565b925060408501359150606085013567ffffffffffffffff8111156124b257600080fd5b8501601f810187136124c357600080fd5b6124d287823560208401612351565b91505092959194509250565b600080604083850312156124f157600080fd5b82356124fc81612a8d565b91506020830135801515811461241257600080fd5b6000806040838503121561252457600080fd5b823561252f81612a8d565b946020939093013593505050565b60008060006040848603121561255257600080fd5b833567ffffffffffffffff8082111561256a57600080fd5b818601915086601f83011261257e57600080fd5b81358181111561258d57600080fd5b8760208260051b85010111156125a257600080fd5b6020928301989097509590910135949350505050565b6000602082840312156125ca57600080fd5b5035919050565b6000602082840312156125e357600080fd5b813561160781612aa2565b60006020828403121561260057600080fd5b815161160781612aa2565b60006020828403121561261d57600080fd5b813567ffffffffffffffff81111561263457600080fd5b8201601f8101841361264557600080fd5b611e5d84823560208401612351565b6000815180845261266c816020860160208601612988565b601f01601f19169290920160200192915050565b6000845160206126938285838a01612988565b8551918401916126a68184848a01612988565b8554920191600090600181811c90808316806126c357607f831692505b8583108114156126e157634e487b7160e01b85526022600452602485fd5b8080156126f5576001811461270657612733565b60ff19851688528388019550612733565b60008b81526020902060005b8581101561272b5781548a820152908401908801612712565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061277790830184612654565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127b95783518352928401929184019160010161279d565b50909695505050505050565b6020815260006116076020830184612654565b60208082526027908201527f4d696e74696e6720616d6f756e74206578636565647320616c6c6f77616e6365604082015266040e0cae440e8f60cb1b606082015260800190565b6020808252602b908201527f4d696e74696e6720616d6f756e74206578636565647320616c6c6f77616e636560408201526a081c195c881dd85b1b195d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561291457612914612a35565b01949350505050565b6000821982111561293057612930612a35565b500190565b60008261294457612944612a4b565b500490565b60006001600160801b038381169083168181101561296957612969612a35565b039392505050565b60008282101561298357612983612a35565b500390565b60005b838110156129a357818101518382015260200161298b565b8381111561152b5750506000910152565b6000816129c3576129c3612a35565b506000190190565b600181811c908216806129df57607f821691505b60208210811415612a0057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a1a57612a1a612a35565b5060010190565b600082612a3057612a30612a4b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461083b57600080fd5b6001600160e01b03198116811461083b57600080fdfea26469706673582212206d3dd76b2cd1294d93fe372605f6f6cfc8b3e0848518e190f0023a7f70a5a81764736f6c63430008070033

Deployed Bytecode Sourcemap

45092:4942:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32722:370;;;;;;;;;;-1:-1:-1;32722:370:0;;;;;:::i;:::-;;:::i;:::-;;;9320:14:1;;9313:22;9295:41;;9283:2;9268:18;32722:370:0;;;;;;;;34448:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;48674:121::-;;;;;;;;;;-1:-1:-1;48674:121:0;;;;;:::i;:::-;;:::i;:::-;;35973:204;;;;;;;;;;-1:-1:-1;35973:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7981:32:1;;;7963:51;;7951:2;7936:18;35973:204:0;7817:203:1;35536:379:0;;;;;;;;;;-1:-1:-1;35536:379:0;;;;;:::i;:::-;;:::i;31283:94::-;;;;;;;;;;-1:-1:-1;31336:7:0;31359:12;31283:94;;;20793:25:1;;;20781:2;20766:18;31283:94:0;20647:177:1;36823:142:0;;;;;;;;;;-1:-1:-1;36823:142:0;;;;;:::i;:::-;;:::i;46756:882::-;;;;;;:::i;:::-;;:::i;47648:689::-;;;;;;:::i;:::-;;:::i;31914:744::-;;;;;;;;;;-1:-1:-1;31914:744:0;;;;;:::i;:::-;;:::i;46038:103::-;;;;;;;;;;-1:-1:-1;46038:103:0;;;;;:::i;:::-;;:::i;37028:157::-;;;;;;;;;;-1:-1:-1;37028:157:0;;;;;:::i;:::-;;:::i;49417:614::-;;;;;;;;;;-1:-1:-1;49417:614:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45726:53::-;;;;;;;;;;-1:-1:-1;45726:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;31446:177;;;;;;;;;;-1:-1:-1;31446:177:0;;;;;:::i;:::-;;:::i;48807:104::-;;;;;;;;;;-1:-1:-1;48807:104:0;;;;;:::i;:::-;;:::i;45332:44::-;;;;;;;;;;;;;;;;34271:118;;;;;;;;;;-1:-1:-1;34271:118:0;;;;;:::i;:::-;;:::i;45258:21::-;;;;;;;;;;;;;:::i;33148:211::-;;;;;;;;;;-1:-1:-1;33148:211:0;;;;;:::i;:::-;;:::i;9911:103::-;;;;;;;;;;;;;:::i;48550:116::-;;;;;;;;;;;;;:::i;45663:56::-;;;;;;;;;;-1:-1:-1;45663:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;46536:91;;;;;;;;;;;;;:::i;46635:113::-;;;;;;;;;;-1:-1:-1;46635:113:0;;;;;:::i;:::-;;:::i;45517:32::-;;;;;;;;;;-1:-1:-1;45517:32:0;;;;;;;;9260:87;;;;;;;;;;-1:-1:-1;9333:6:0;;-1:-1:-1;;;;;9333:6:0;9260:87;;34603:98;;;;;;;;;;;;;:::i;45922:108::-;;;;;;;;;;-1:-1:-1;45922:108:0;;;;;:::i;:::-;;:::i;36241:274::-;;;;;;;;;;-1:-1:-1;36241:274:0;;;;;:::i;:::-;;:::i;45433:35::-;;;;;;;;;;;;;;;;37248:311;;;;;;;;;;-1:-1:-1;37248:311:0;;;;;:::i;:::-;;:::i;45286:37::-;;;;;;;;;;;;;:::i;49034:375::-;;;;;;;;;;-1:-1:-1;49034:375:0;;;;;:::i;:::-;;:::i;41663:43::-;;;;;;;;;;;;;;;;45383;;;;;;;;;;;;;;;;45475:31;;;;;;;;;;;;;;;;36578:186;;;;;;;;;;-1:-1:-1;36578:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;36723:25:0;;;36700:4;36723:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36578:186;10169:201;;;;;;;;;;-1:-1:-1;10169:201:0;;;;;:::i;:::-;;:::i;32722:370::-;32849:4;-1:-1:-1;;;;;;32879:40:0;;-1:-1:-1;;;32879:40:0;;:99;;-1:-1:-1;;;;;;;32930:48:0;;-1:-1:-1;;;32930:48:0;32879:99;:160;;;-1:-1:-1;;;;;;;32989:50:0;;-1:-1:-1;;;32989:50:0;32879:160;:207;;;-1:-1:-1;;;;;;;;;;22153:40:0;;;33050:36;32865:221;32722:370;-1:-1:-1;;32722:370:0:o;34448:94::-;34502:13;34531:5;34524:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34448:94;:::o;48674:121::-;9333:6;;-1:-1:-1;;;;;9333:6:0;8064:10;9480:23;9472:68;;;;-1:-1:-1;;;9472:68:0;;;;;;;:::i;:::-;;;;;;;;;48750:37:::1;48760:3;48765:21;48750:9;:37::i;:::-;48674:121:::0;:::o;35973:204::-;36041:7;36065:16;36073:7;37855:4;37885:12;-1:-1:-1;37875:22:0;37798:105;36065:16;36057:74;;;;-1:-1:-1;;;36057:74:0;;19695:2:1;36057:74:0;;;19677:21:1;19734:2;19714:18;;;19707:30;19773:34;19753:18;;;19746:62;-1:-1:-1;;;19824:18:1;;;19817:43;19877:19;;36057:74:0;19493:409:1;36057:74:0;-1:-1:-1;36147:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36147:24:0;;35973:204::o;35536:379::-;35605:13;35621:24;35637:7;35621:15;:24::i;:::-;35605:40;;35666:5;-1:-1:-1;;;;;35660:11:0;:2;-1:-1:-1;;;;;35660:11:0;;;35652:58;;;;-1:-1:-1;;;35652:58:0;;16578:2:1;35652:58:0;;;16560:21:1;16617:2;16597:18;;;16590:30;16656:34;16636:18;;;16629:62;-1:-1:-1;;;16707:18:1;;;16700:32;16749:19;;35652:58:0;16376:398:1;35652:58:0;8064:10;-1:-1:-1;;;;;35735:21:0;;;;:62;;-1:-1:-1;35760:37:0;35777:5;8064:10;36578:186;:::i;35760:37::-;35719:153;;;;-1:-1:-1;;;35719:153:0;;13375:2:1;35719:153:0;;;13357:21:1;13414:2;13394:18;;;13387:30;13453:34;13433:18;;;13426:62;13524:27;13504:18;;;13497:55;13569:19;;35719:153:0;13173:421:1;35719:153:0;35881:28;35890:2;35894:7;35903:5;35881:8;:28::i;:::-;35598:317;35536:379;;:::o;36823:142::-;36931:28;36941:4;36947:2;36951:7;36931:9;:28::i;46756:882::-;4234:1;4832:7;;:19;;4824:63;;;;-1:-1:-1;;;4824:63:0;;18919:2:1;4824:63:0;;;18901:21:1;18958:2;18938:18;;;18931:30;18997:33;18977:18;;;18970:61;19048:18;;4824:63:0;18717:355:1;4824:63:0;4234:1;4965:7;:18;46304:13:::1;:11;:13::i;:::-;46389::::2;::::0;::::2;;:21;;:13:::0;:21:::2;46381:30;;;::::0;::::2;;46926:16:::3;;46913:9;:29;;46905:80;;;::::0;-1:-1:-1;;;46905:80:0;;10927:2:1;46905:80:0::3;::::0;::::3;10909:21:1::0;10966:2;10946:18;;;10939:30;11005:34;10985:18;;;10978:62;-1:-1:-1;;;11056:18:1;;;11049:36;11102:19;;46905:80:0::3;10725:402:1::0;46905:80:0::3;47031:28;::::0;-1:-1:-1;;47048:10:0::3;5990:2:1::0;5986:15;5982:53;47031:28:0::3;::::0;::::3;5970:66:1::0;47006:12:0::3;::::0;6052::1;;47031:28:0::3;;;;;;;;;;;;47021:39;;;;;;47006:54;;47079:59;47098:12;;47079:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;::::0;;;;-1:-1:-1;;47112:19:0::3;::::0;;-1:-1:-1;47133:4:0;;-1:-1:-1;47079:18:0::3;:59::i;:::-;47071:86;;;::::0;-1:-1:-1;;;47071:86:0;;18161:2:1;47071:86:0::3;::::0;::::3;18143:21:1::0;18200:2;18180:18;;;18173:30;-1:-1:-1;;;18219:18:1;;;18212:44;18273:18;;47071:86:0::3;17959:338:1::0;47071:86:0::3;47202:12;;47192:6;:22;;47170:111;;;;-1:-1:-1::0;;;47170:111:0::3;;;;;;;:::i;:::-;47362:16;::::0;47338:10:::3;47316:33;::::0;;;:21:::3;:33;::::0;;;;;:42:::3;::::0;47352:6;;47316:42:::3;:::i;:::-;:62;;47294:155;;;;-1:-1:-1::0;;;47294:155:0::3;;;;;;;:::i;:::-;47482:10;47460:33;::::0;;;:21:::3;:33;::::0;;;;:43;;47497:6;;47460:33;:43:::3;::::0;47497:6;;47460:43:::3;:::i;:::-;::::0;;;-1:-1:-1;47552:14:0::3;::::0;-1:-1:-1;47541:6:0;47525:13:::3;31336:7:::0;31359:12;;31283:94;47525:13:::3;:22;;;;:::i;:::-;47524:42;;47516:64;;;::::0;-1:-1:-1;;;47516:64:0;;20512:2:1;47516:64:0::3;::::0;::::3;20494:21:1::0;20551:1;20531:18;;;20524:29;-1:-1:-1;;;20569:18:1;;;20562:39;20618:18;;47516:64:0::3;20310:332:1::0;47516:64:0::3;47591:29;47601:10;47613:6;47591:9;:29::i;:::-;-1:-1:-1::0;;4190:1:0;5144:7;:22;-1:-1:-1;;46756:882:0:o;47648:689::-;4234:1;4832:7;;:19;;4824:63;;;;-1:-1:-1;;;4824:63:0;;18919:2:1;4824:63:0;;;18901:21:1;18958:2;18938:18;;;18931:30;18997:33;18977:18;;;18970:61;19048:18;;4824:63:0;18717:355:1;4824:63:0;4234:1;4965:7;:18;46304:13:::1;:11;:13::i;:::-;46485::::2;::::0;::::2;;:22;46477:31;;;::::0;::::2;;47784:15:::3;;47771:9;:28;;47763:79;;;::::0;-1:-1:-1;;;47763:79:0;;13801:2:1;47763:79:0::3;::::0;::::3;13783:21:1::0;13840:2;13820:18;;;13813:30;13879:34;13859:18;;;13852:62;-1:-1:-1;;;13930:18:1;;;13923:36;13976:19;;47763:79:0::3;13599:402:1::0;47763:79:0::3;47895:12;;47885:6;:22;;47863:111;;;;-1:-1:-1::0;;;47863:111:0::3;;;;;;;:::i;:::-;48060:16;::::0;48036:10:::3;48017:30;::::0;;;:18:::3;:30;::::0;;;;;:39:::3;::::0;48050:6;;48017:39:::3;:::i;:::-;:59;;47995:152;;;;-1:-1:-1::0;;;47995:152:0::3;;;;;;;:::i;:::-;48181:10;48162:30;::::0;;;:18:::3;:30;::::0;;;;:40;;48196:6;;48162:30;:40:::3;::::0;48196:6;;48162:40:::3;:::i;:::-;::::0;;;-1:-1:-1;48251:14:0::3;::::0;-1:-1:-1;48240:6:0;48224:13:::3;31336:7:::0;31359:12;;31283:94;48224:13:::3;:22;;;;:::i;:::-;48223:42;;48215:64;;;::::0;-1:-1:-1;;;48215:64:0;;20512:2:1;48215:64:0::3;::::0;::::3;20494:21:1::0;20551:1;20531:18;;;20524:29;-1:-1:-1;;;20569:18:1;;;20562:39;20618:18;;48215:64:0::3;20310:332:1::0;48215:64:0::3;48290:29;48300:10;48312:6;48290:9;:29::i;:::-;-1:-1:-1::0;4190:1:0;5144:7;:22;47648:689::o;31914:744::-;32023:7;32058:16;32068:5;32058:9;:16::i;:::-;32050:5;:24;32042:71;;;;-1:-1:-1;;;32042:71:0;;9773:2:1;32042:71:0;;;9755:21:1;9812:2;9792:18;;;9785:30;9851:34;9831:18;;;9824:62;-1:-1:-1;;;9902:18:1;;;9895:32;9944:19;;32042:71:0;9571:398:1;32042:71:0;32120:22;31359:12;;;32120:22;;32240:350;32264:14;32260:1;:18;32240:350;;;32294:31;32328:14;;;:11;:14;;;;;;;;;32294:48;;;;;;;;;-1:-1:-1;;;;;32294:48:0;;;;;-1:-1:-1;;;32294:48:0;;;;;;;;;;;;32355:28;32351:89;;32416:14;;;-1:-1:-1;32351:89:0;32473:5;-1:-1:-1;;;;;32452:26:0;:17;-1:-1:-1;;;;;32452:26:0;;32448:135;;;32510:5;32495:11;:20;32491:59;;;-1:-1:-1;32537:1:0;-1:-1:-1;32530:8:0;;-1:-1:-1;;;32530:8:0;32491:59;32560:13;;;;:::i;:::-;;;;32448:135;-1:-1:-1;32280:3:0;;;;:::i;:::-;;;;32240:350;;;-1:-1:-1;32596:56:0;;-1:-1:-1;;;32596:56:0;;18504:2:1;32596:56:0;;;18486:21:1;18543:2;18523:18;;;18516:30;18582:34;18562:18;;;18555:62;-1:-1:-1;;;18633:18:1;;;18626:44;18687:19;;32596:56:0;18302:410:1;46038:103:0;9333:6;;-1:-1:-1;;;;;9333:6:0;8064:10;9480:23;9472:68;;;;-1:-1:-1;;;9472:68:0;;;;;;;:::i;:::-;46104:29:::1;46114:10;46126:6;46104:9;:29::i;37028:157::-:0;37140:39;37157:4;37163:2;37167:7;37140:39;;;;;;;;;;;;:16;:39::i;49417:614::-;49487:16;49516;49535:19;49545:8;49535:9;:19::i;:::-;49516:38;;49565:24;49607:8;49592:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49592:24:0;;49565:51;;49627:14;49652:20;49675:13;31336:7;31359:12;;31283:94;49675:13;49652:36;;49704:9;49699:300;49723:12;49719:1;:16;49699:300;;;49757:12;49772:10;49780:1;37855:4;37885:12;-1:-1:-1;37875:22:0;37798:105;49772:10;49757:25;;49801:7;49797:191;;;49847:8;-1:-1:-1;;;;;49833:22:0;:10;49841:1;49833:7;:10::i;:::-;-1:-1:-1;;;;;49833:22:0;;49829:62;;;49877:1;49859:7;49867:6;49859:15;;;;;;;;:::i;:::-;;;;;;;;;;:19;49880:8;;;;:::i;:::-;;;;49829:62;49797:191;;;49930:7;49929:8;:38;;;;-1:-1:-1;49941:7:0;49949:12;49960:1;49949:8;:12;:::i;:::-;49941:21;;;;;;;;:::i;:::-;;;;;;;49966:1;49941:26;49929:38;49925:63;;;49971:14;;;;:::i;:::-;;;;49925:63;-1:-1:-1;49737:3:0;;;;:::i;:::-;;;;49699:300;;;-1:-1:-1;50016:7:0;;49417:614;-1:-1:-1;;;;;49417:614:0:o;31446:177::-;31513:7;31359:12;;31537:5;:21;31529:69;;;;-1:-1:-1;;;31529:69:0;;12153:2:1;31529:69:0;;;12135:21:1;12192:2;12172:18;;;12165:30;12231:34;12211:18;;;12204:62;-1:-1:-1;;;12282:18:1;;;12275:33;12325:19;;31529:69:0;11951:399:1;31529:69:0;-1:-1:-1;31612:5:0;31446:177::o;48807:104::-;9333:6;;-1:-1:-1;;;;;9333:6:0;8064:10;9480:23;9472:68;;;;-1:-1:-1;;;9472:68:0;;;;;;;:::i;:::-;48882:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48807:104:::0;:::o;34271:118::-;34335:7;34358:20;34370:7;34358:11;:20::i;:::-;:25;;34271:118;-1:-1:-1;;34271:118:0:o;45258:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33148:211::-;33212:7;-1:-1:-1;;;;;33236:19:0;;33228:75;;;;-1:-1:-1;;;33228:75:0;;14208:2:1;33228:75:0;;;14190:21:1;14247:2;14227:18;;;14220:30;14286:34;14266:18;;;14259:62;-1:-1:-1;;;14337:18:1;;;14330:41;14388:19;;33228:75:0;14006:407:1;33228:75:0;-1:-1:-1;;;;;;33325:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;33325:27:0;;33148:211::o;9911:103::-;9333:6;;-1:-1:-1;;;;;9333:6:0;8064:10;9480:23;9472:68;;;;-1:-1:-1;;;9472:68:0;;;;;;;:::i;:::-;9976:30:::1;10003:1;9976:18;:30::i;:::-;9911:103::o:0;48550:116::-;9333:6;;-1:-1:-1;;;;;9333:6:0;8064:10;9480:23;9472:68;;;;-1:-1:-1;;;9472:68:0;;;;;;;:::i;:::-;48605:53:::1;48623:10;48636:21;48605:9;:53::i;46536:91::-:0;9333:6;;-1:-1:-1;;;;;9333:6:0;8064:10;9480:23;9472:68;;;;-1:-1:-1;;;9472:68:0;;;;;;;:::i;:::-;46606:13:::1;::::0;;-1:-1:-1;;46589:30:0;::::1;46606:13;::::0;;::::1;46605:14;46589:30;::::0;;46536:91::o;46635:113::-;9333:6;;-1:-1:-1;;;;;9333:6:0;8064:10;9480:23;9472:68;;;;-1:-1:-1;;;9472:68:0;;;;;;;:::i;:::-;46707:19:::1;:33:::0;46635:113::o;34603:98::-;34659:13;34688:7;34681:14;;;;;:::i;45922:108::-;9333:6;;-1:-1:-1;;;;;9333:6:0;8064:10;9480:23;9472:68;;;;-1:-1:-1;;;9472:68:0;;;;;;;:::i;:::-;45998:15:::1;:24:::0;45922:108::o;36241:274::-;-1:-1:-1;;;;;36332:24:0;;8064:10;36332:24;;36324:63;;;;-1:-1:-1;;;36324:63:0;;15804:2:1;36324:63:0;;;15786:21:1;15843:2;15823:18;;;15816:30;15882:28;15862:18;;;15855:56;15928:18;;36324:63:0;15602:350:1;36324:63:0;8064:10;36396:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;36396:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;36396:53:0;;;;;;;;;;36461:48;;9295:41:1;;;36396:42:0;;8064:10;36461:48;;9268:18:1;36461:48:0;;;;;;;36241:274;;:::o;37248:311::-;37385:28;37395:4;37401:2;37405:7;37385:9;:28::i;:::-;37436:48;37459:4;37465:2;37469:7;37478:5;37436:22;:48::i;:::-;37420:133;;;;-1:-1:-1;;;37420:133:0;;;;;;;:::i;:::-;37248:311;;;;:::o;45286:37::-;;;;;;;:::i;49034:375::-;49107:13;49146:16;49154:7;37855:4;37885:12;-1:-1:-1;37875:22:0;37798:105;49146:16;49138:76;;;;-1:-1:-1;;;49138:76:0;;15388:2:1;49138:76:0;;;15370:21:1;15427:2;15407:18;;;15400:30;15466:34;15446:18;;;15439:62;-1:-1:-1;;;15517:18:1;;;15510:45;15572:19;;49138:76:0;15186:411:1;49138:76:0;49227:28;49258:10;:8;:10::i;:::-;49227:41;;49317:1;49292:14;49286:28;:32;:115;;;;;;;;;;;;;;;;;49345:14;49361:18;:7;:16;:18::i;:::-;49381:13;49328:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49286:115;49279:122;49034:375;-1:-1:-1;;;49034:375:0:o;10169:201::-;9333:6;;-1:-1:-1;;;;;9333:6:0;8064:10;9480:23;9472:68;;;;-1:-1:-1;;;9472:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10258:22:0;::::1;10250:73;;;::::0;-1:-1:-1;;;10250:73:0;;10176:2:1;10250:73:0::1;::::0;::::1;10158:21:1::0;10215:2;10195:18;;;10188:30;10254:34;10234:18;;;10227:62;-1:-1:-1;;;10305:18:1;;;10298:36;10351:19;;10250:73:0::1;9974:402:1::0;10250:73:0::1;10334:28;10353:8;10334:18;:28::i;48345:197::-:0;48428:12;48454:8;-1:-1:-1;;;;;48446:22:0;48476:7;48446:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48427:61;;;48507:7;48499:35;;;;-1:-1:-1;;;48499:35:0;;10583:2:1;48499:35:0;;;10565:21:1;10622:2;10602:18;;;10595:30;-1:-1:-1;;;10641:18:1;;;10634:45;10696:18;;48499:35:0;10381:339:1;41485:172:0;41582:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41582:29:0;-1:-1:-1;;;;;41582:29:0;;;;;;;;;41623:28;;41582:24;;41623:28;;;;;;;41485:172;;;:::o;39850:1529::-;39947:35;39985:20;39997:7;39985:11;:20::i;:::-;40056:18;;39947:58;;-1:-1:-1;40014:22:0;;-1:-1:-1;;;;;40040:34:0;8064:10;-1:-1:-1;;;;;40040:34:0;;:81;;;-1:-1:-1;8064:10:0;40085:20;40097:7;40085:11;:20::i;:::-;-1:-1:-1;;;;;40085:36:0;;40040:81;:142;;;-1:-1:-1;40149:18:0;;40132:50;;8064:10;36578:186;:::i;40132:50::-;40014:169;;40208:17;40192:101;;;;-1:-1:-1;;;40192:101:0;;16159:2:1;40192:101:0;;;16141:21:1;16198:2;16178:18;;;16171:30;16237:34;16217:18;;;16210:62;-1:-1:-1;;;16288:18:1;;;16281:48;16346:19;;40192:101:0;15957:414:1;40192:101:0;40340:4;-1:-1:-1;;;;;40318:26:0;:13;:18;;;-1:-1:-1;;;;;40318:26:0;;40302:98;;;;-1:-1:-1;;;40302:98:0;;14620:2:1;40302:98:0;;;14602:21:1;14659:2;14639:18;;;14632:30;14698:34;14678:18;;;14671:62;-1:-1:-1;;;14749:18:1;;;14742:36;14795:19;;40302:98:0;14418:402:1;40302:98:0;-1:-1:-1;;;;;40415:16:0;;40407:66;;;;-1:-1:-1;;;40407:66:0;;12557:2:1;40407:66:0;;;12539:21:1;12596:2;12576:18;;;12569:30;12635:34;12615:18;;;12608:62;-1:-1:-1;;;12686:18:1;;;12679:35;12731:19;;40407:66:0;12355:401:1;40407:66:0;40582:49;40599:1;40603:7;40612:13;:18;;;40582:8;:49::i;:::-;-1:-1:-1;;;;;40640:18:0;;;;;;:12;:18;;;;;:31;;40670:1;;40640:18;:31;;40670:1;;-1:-1:-1;;;;;40640:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;40640:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40678:16:0;;-1:-1:-1;40678:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;40678:16:0;;:29;;-1:-1:-1;;40678:29:0;;:::i;:::-;;;-1:-1:-1;;;;;40678:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40737:43:0;;;;;;;;-1:-1:-1;;;;;40737:43:0;;;;;;40763:15;40737:43;;;;;;;;;-1:-1:-1;40714:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;40714:66:0;-1:-1:-1;;;;;;40714:66:0;;;;;;;;;;;41030:11;40726:7;-1:-1:-1;41030:11:0;:::i;:::-;41093:1;41052:24;;;:11;:24;;;;;:29;41008:33;;-1:-1:-1;;;;;;41052:29:0;41048:236;;41110:20;41118:11;37855:4;37885:12;-1:-1:-1;37875:22:0;37798:105;41110:20;41106:171;;;41170:97;;;;;;;;41197:18;;-1:-1:-1;;;;;41170:97:0;;;;;;41228:28;;;;41170:97;;;;;;;;;;-1:-1:-1;41143:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;41143:124:0;-1:-1:-1;;;;;;41143:124:0;;;;;;;;;;;;41106:171;41316:7;41312:2;-1:-1:-1;;;;;41297:27:0;41306:4;-1:-1:-1;;;;;41297:27:0;;;;;;;;;;;41331:42;39940:1439;;;39850:1529;;;:::o;46178:87::-;46233:10;46247:9;46233:23;46225:32;;;;;956:190;1081:4;1134;1105:25;1118:5;1125:4;1105:12;:25::i;:::-;:33;;956:190;-1:-1:-1;;;;956:190:0:o;37909:98::-;37974:27;37984:2;37988:8;37974:27;;;;;;;;;;;;:9;:27::i;33611:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;33728:16:0;33736:7;37855:4;37885:12;-1:-1:-1;37875:22:0;37798:105;33728:16;33720:71;;;;-1:-1:-1;;;33720:71:0;;11334:2:1;33720:71:0;;;11316:21:1;11373:2;11353:18;;;11346:30;11412:34;11392:18;;;11385:62;-1:-1:-1;;;11463:18:1;;;11456:40;11513:19;;33720:71:0;11132:406:1;33720:71:0;33800:26;33848:12;33837:7;:23;33833:93;;33892:22;33902:12;33892:7;:22;:::i;:::-;:26;;33917:1;33892:26;:::i;:::-;33871:47;;33833:93;33954:7;33934:212;33971:18;33963:4;:26;33934:212;;34008:31;34042:17;;;:11;:17;;;;;;;;;34008:51;;;;;;;;;-1:-1:-1;;;;;34008:51:0;;;;;-1:-1:-1;;;34008:51:0;;;;;;;;;;;;34072:28;34068:71;;34120:9;33611:606;-1:-1:-1;;;;33611:606:0:o;34068:71::-;-1:-1:-1;33991:6:0;;;;:::i;:::-;;;;33934:212;;;-1:-1:-1;34154:57:0;;-1:-1:-1;;;34154:57:0;;19279:2:1;34154:57:0;;;19261:21:1;19318:2;19298:18;;;19291:30;19357:34;19337:18;;;19330:62;-1:-1:-1;;;19408:18:1;;;19401:45;19463:19;;34154:57:0;19077:411:1;10530:191:0;10623:6;;;-1:-1:-1;;;;;10640:17:0;;;-1:-1:-1;;;;;;10640:17:0;;;;;;;10673:40;;10623:6;;;10640:17;10623:6;;10673:40;;10604:16;;10673:40;10593:128;10530:191;:::o;43200:690::-;43337:4;-1:-1:-1;;;;;43354:13:0;;12256:19;:23;43350:535;;43393:72;;-1:-1:-1;;;43393:72:0;;-1:-1:-1;;;;;43393:36:0;;;;;:72;;8064:10;;43444:4;;43450:7;;43459:5;;43393:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43393:72:0;;;;;;;;-1:-1:-1;;43393:72:0;;;;;;;;;;;;:::i;:::-;;;43380:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43624:13:0;;43620:215;;43657:61;;-1:-1:-1;;;43657:61:0;;;;;;;:::i;43620:215::-;43803:6;43797:13;43788:6;43784:2;43780:15;43773:38;43380:464;-1:-1:-1;;;;;;43515:55:0;-1:-1:-1;;;43515:55:0;;-1:-1:-1;43508:62:0;;43350:535;-1:-1:-1;43873:4:0;43350:535;43200:690;;;;;;:::o;48917:108::-;48977:13;49010:7;49003:14;;;;;:::i;5546:723::-;5602:13;5823:10;5819:53;;-1:-1:-1;;5850:10:0;;;;;;;;;;;;-1:-1:-1;;;5850:10:0;;;;;5546:723::o;5819:53::-;5897:5;5882:12;5938:78;5945:9;;5938:78;;5971:8;;;;:::i;:::-;;-1:-1:-1;5994:10:0;;-1:-1:-1;6002:2:0;5994:10;;:::i;:::-;;;5938:78;;;6026:19;6058:6;6048:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6048:17:0;;6026:39;;6076:154;6083:10;;6076:154;;6110:11;6120:1;6110:11;;:::i;:::-;;-1:-1:-1;6179:10:0;6187:2;6179:5;:10;:::i;:::-;6166:24;;:2;:24;:::i;:::-;6153:39;;6136:6;6143;6136:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6136:56:0;;;;;;;;-1:-1:-1;6207:11:0;6216:2;6207:11;;:::i;:::-;;;6076:154;;1508:675;1591:7;1634:4;1591:7;1649:497;1673:5;:12;1669:1;:16;1649:497;;;1707:20;1730:5;1736:1;1730:8;;;;;;;;:::i;:::-;;;;;;;1707:31;;1773:12;1757;:28;1753:382;;2259:13;2309:15;;;2345:4;2338:15;;;2392:4;2376:21;;1885:57;;1753:382;;;2259:13;2309:15;;;2345:4;2338:15;;;2392:4;2376:21;;2062:57;;1753:382;-1:-1:-1;1687:3:0;;;;:::i;:::-;;;;1649:497;;;-1:-1:-1;2163:12:0;1508:675;-1:-1:-1;;;1508:675:0:o;38346:1272::-;38451:20;38474:12;-1:-1:-1;;;;;38501:16:0;;38493:62;;;;-1:-1:-1;;;38493:62:0;;17759:2:1;38493:62:0;;;17741:21:1;17798:2;17778:18;;;17771:30;17837:34;17817:18;;;17810:62;-1:-1:-1;;;17888:18:1;;;17881:31;17929:19;;38493:62:0;17557:397:1;38493:62:0;38692:21;38700:12;37855:4;37885:12;-1:-1:-1;37875:22:0;37798:105;38692:21;38691:22;38683:64;;;;-1:-1:-1;;;38683:64:0;;17401:2:1;38683:64:0;;;17383:21:1;17440:2;17420:18;;;17413:30;17479:31;17459:18;;;17452:59;17528:18;;38683:64:0;17199:353:1;38683:64:0;38774:12;38762:8;:24;;38754:71;;;;-1:-1:-1;;;38754:71:0;;20109:2:1;38754:71:0;;;20091:21:1;20148:2;20128:18;;;20121:30;20187:34;20167:18;;;20160:62;-1:-1:-1;;;20238:18:1;;;20231:32;20280:19;;38754:71:0;19907:398:1;38754:71:0;-1:-1:-1;;;;;38937:16:0;;38904:30;38937:16;;;:12;:16;;;;;;;;;38904:49;;;;;;;;;-1:-1:-1;;;;;38904:49:0;;;;;-1:-1:-1;;;38904:49:0;;;;;;;;;;;38979:119;;;;;;;;38999:19;;38904:49;;38979:119;;;38999:39;;39029:8;;38999:39;:::i;:::-;-1:-1:-1;;;;;38979:119:0;;;;;39082:8;39047:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;38979:119:0;;;;;;-1:-1:-1;;;;;38960:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;38960:138:0;;;;;;;;;;;;39133:43;;;;;;;;;;;39159:15;39133:43;;;;;;;;39105:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;39105:71:0;-1:-1:-1;;;;;;39105:71:0;;;;;;;;;;;;;;;;;;39117:12;;39229:281;39253:8;39249:1;:12;39229:281;;;39282:38;;39307:12;;-1:-1:-1;;;;;39282:38:0;;;39299:1;;39282:38;;39299:1;;39282:38;39347:59;39378:1;39382:2;39386:12;39400:5;39347:22;:59::i;:::-;39329:150;;;;-1:-1:-1;;;39329:150:0;;;;;;;:::i;:::-;39488:14;;;;:::i;:::-;;;;39263:3;;;;;:::i;:::-;;;;39229:281;;;-1:-1:-1;39518:12:0;:27;;;39552:60;37248:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;1162:388::-;1230:6;1238;1291:2;1279:9;1270:7;1266:23;1262:32;1259:52;;;1307:1;1304;1297:12;1259:52;1346:9;1333:23;1365:31;1390:5;1365:31;:::i;:::-;1415:5;-1:-1:-1;1472:2:1;1457:18;;1444:32;1485:33;1444:32;1485:33;:::i;:::-;1537:7;1527:17;;;1162:388;;;;;:::o;1555:456::-;1632:6;1640;1648;1701:2;1689:9;1680:7;1676:23;1672:32;1669:52;;;1717:1;1714;1707:12;1669:52;1756:9;1743:23;1775:31;1800:5;1775:31;:::i;:::-;1825:5;-1:-1:-1;1882:2:1;1867:18;;1854:32;1895:33;1854:32;1895:33;:::i;:::-;1555:456;;1947:7;;-1:-1:-1;;;2001:2:1;1986:18;;;;1973:32;;1555:456::o;2016:794::-;2111:6;2119;2127;2135;2188:3;2176:9;2167:7;2163:23;2159:33;2156:53;;;2205:1;2202;2195:12;2156:53;2244:9;2231:23;2263:31;2288:5;2263:31;:::i;:::-;2313:5;-1:-1:-1;2370:2:1;2355:18;;2342:32;2383:33;2342:32;2383:33;:::i;:::-;2435:7;-1:-1:-1;2489:2:1;2474:18;;2461:32;;-1:-1:-1;2544:2:1;2529:18;;2516:32;2571:18;2560:30;;2557:50;;;2603:1;2600;2593:12;2557:50;2626:22;;2679:4;2671:13;;2667:27;-1:-1:-1;2657:55:1;;2708:1;2705;2698:12;2657:55;2731:73;2796:7;2791:2;2778:16;2773:2;2769;2765:11;2731:73;:::i;:::-;2721:83;;;2016:794;;;;;;;:::o;2815:416::-;2880:6;2888;2941:2;2929:9;2920:7;2916:23;2912:32;2909:52;;;2957:1;2954;2947:12;2909:52;2996:9;2983:23;3015:31;3040:5;3015:31;:::i;:::-;3065:5;-1:-1:-1;3122:2:1;3107:18;;3094:32;3164:15;;3157:23;3145:36;;3135:64;;3195:1;3192;3185:12;3236:315;3304:6;3312;3365:2;3353:9;3344:7;3340:23;3336:32;3333:52;;;3381:1;3378;3371:12;3333:52;3420:9;3407:23;3439:31;3464:5;3439:31;:::i;:::-;3489:5;3541:2;3526:18;;;;3513:32;;-1:-1:-1;;;3236:315:1:o;3556:689::-;3651:6;3659;3667;3720:2;3708:9;3699:7;3695:23;3691:32;3688:52;;;3736:1;3733;3726:12;3688:52;3776:9;3763:23;3805:18;3846:2;3838:6;3835:14;3832:34;;;3862:1;3859;3852:12;3832:34;3900:6;3889:9;3885:22;3875:32;;3945:7;3938:4;3934:2;3930:13;3926:27;3916:55;;3967:1;3964;3957:12;3916:55;4007:2;3994:16;4033:2;4025:6;4022:14;4019:34;;;4049:1;4046;4039:12;4019:34;4104:7;4097:4;4087:6;4084:1;4080:14;4076:2;4072:23;4068:34;4065:47;4062:67;;;4125:1;4122;4115:12;4062:67;4156:4;4148:13;;;;4180:6;;-1:-1:-1;4218:20:1;;;;4205:34;;3556:689;-1:-1:-1;;;;3556:689:1:o;4250:180::-;4309:6;4362:2;4350:9;4341:7;4337:23;4333:32;4330:52;;;4378:1;4375;4368:12;4330:52;-1:-1:-1;4401:23:1;;4250:180;-1:-1:-1;4250:180:1:o;4435:245::-;4493:6;4546:2;4534:9;4525:7;4521:23;4517:32;4514:52;;;4562:1;4559;4552:12;4514:52;4601:9;4588:23;4620:30;4644:5;4620:30;:::i;4685:249::-;4754:6;4807:2;4795:9;4786:7;4782:23;4778:32;4775:52;;;4823:1;4820;4813:12;4775:52;4855:9;4849:16;4874:30;4898:5;4874:30;:::i;4939:450::-;5008:6;5061:2;5049:9;5040:7;5036:23;5032:32;5029:52;;;5077:1;5074;5067:12;5029:52;5117:9;5104:23;5150:18;5142:6;5139:30;5136:50;;;5182:1;5179;5172:12;5136:50;5205:22;;5258:4;5250:13;;5246:27;-1:-1:-1;5236:55:1;;5287:1;5284;5277:12;5236:55;5310:73;5375:7;5370:2;5357:16;5352:2;5348;5344:11;5310:73;:::i;5579:257::-;5620:3;5658:5;5652:12;5685:6;5680:3;5673:19;5701:63;5757:6;5750:4;5745:3;5741:14;5734:4;5727:5;5723:16;5701:63;:::i;:::-;5818:2;5797:15;-1:-1:-1;;5793:29:1;5784:39;;;;5825:4;5780:50;;5579:257;-1:-1:-1;;5579:257:1:o;6075:1527::-;6299:3;6337:6;6331:13;6363:4;6376:51;6420:6;6415:3;6410:2;6402:6;6398:15;6376:51;:::i;:::-;6490:13;;6449:16;;;;6512:55;6490:13;6449:16;6534:15;;;6512:55;:::i;:::-;6656:13;;6589:20;;;6629:1;;6716;6738:18;;;;6791;;;;6818:93;;6896:4;6886:8;6882:19;6870:31;;6818:93;6959:2;6949:8;6946:16;6926:18;6923:40;6920:167;;;-1:-1:-1;;;6986:33:1;;7042:4;7039:1;7032:15;7072:4;6993:3;7060:17;6920:167;7103:18;7130:110;;;;7254:1;7249:328;;;;7096:481;;7130:110;-1:-1:-1;;7165:24:1;;7151:39;;7210:20;;;;-1:-1:-1;7130:110:1;;7249:328;20902:1;20895:14;;;20939:4;20926:18;;7344:1;7358:169;7372:8;7369:1;7366:15;7358:169;;;7454:14;;7439:13;;;7432:37;7497:16;;;;7389:10;;7358:169;;;7362:3;;7558:8;7551:5;7547:20;7540:27;;7096:481;-1:-1:-1;7593:3:1;;6075:1527;-1:-1:-1;;;;;;;;;;;6075:1527:1:o;8025:488::-;-1:-1:-1;;;;;8294:15:1;;;8276:34;;8346:15;;8341:2;8326:18;;8319:43;8393:2;8378:18;;8371:34;;;8441:3;8436:2;8421:18;;8414:31;;;8219:4;;8462:45;;8487:19;;8479:6;8462:45;:::i;:::-;8454:53;8025:488;-1:-1:-1;;;;;;8025:488:1:o;8518:632::-;8689:2;8741:21;;;8811:13;;8714:18;;;8833:22;;;8660:4;;8689:2;8912:15;;;;8886:2;8871:18;;;8660:4;8955:169;8969:6;8966:1;8963:13;8955:169;;;9030:13;;9018:26;;9099:15;;;;9064:12;;;;8991:1;8984:9;8955:169;;;-1:-1:-1;9141:3:1;;8518:632;-1:-1:-1;;;;;;8518:632:1:o;9347:219::-;9496:2;9485:9;9478:21;9459:4;9516:44;9556:2;9545:9;9541:18;9533:6;9516:44;:::i;11543:403::-;11745:2;11727:21;;;11784:2;11764:18;;;11757:30;11823:34;11818:2;11803:18;;11796:62;-1:-1:-1;;;11889:2:1;11874:18;;11867:37;11936:3;11921:19;;11543:403::o;12761:407::-;12963:2;12945:21;;;13002:2;12982:18;;;12975:30;13041:34;13036:2;13021:18;;13014:62;-1:-1:-1;;;13107:2:1;13092:18;;13085:41;13158:3;13143:19;;12761:407::o;14825:356::-;15027:2;15009:21;;;15046:18;;;15039:30;15105:34;15100:2;15085:18;;15078:62;15172:2;15157:18;;14825:356::o;16779:415::-;16981:2;16963:21;;;17020:2;17000:18;;;16993:30;17059:34;17054:2;17039:18;;17032:62;-1:-1:-1;;;17125:2:1;17110:18;;17103:49;17184:3;17169:19;;16779:415::o;20955:253::-;20995:3;-1:-1:-1;;;;;21084:2:1;21081:1;21077:10;21114:2;21111:1;21107:10;21145:3;21141:2;21137:12;21132:3;21129:21;21126:47;;;21153:18;;:::i;:::-;21189:13;;20955:253;-1:-1:-1;;;;20955:253:1:o;21213:128::-;21253:3;21284:1;21280:6;21277:1;21274:13;21271:39;;;21290:18;;:::i;:::-;-1:-1:-1;21326:9:1;;21213:128::o;21346:120::-;21386:1;21412;21402:35;;21417:18;;:::i;:::-;-1:-1:-1;21451:9:1;;21346:120::o;21471:246::-;21511:4;-1:-1:-1;;;;;21624:10:1;;;;21594;;21646:12;;;21643:38;;;21661:18;;:::i;:::-;21698:13;;21471:246;-1:-1:-1;;;21471:246:1:o;21722:125::-;21762:4;21790:1;21787;21784:8;21781:34;;;21795:18;;:::i;:::-;-1:-1:-1;21832:9:1;;21722:125::o;21852:258::-;21924:1;21934:113;21948:6;21945:1;21942:13;21934:113;;;22024:11;;;22018:18;22005:11;;;21998:39;21970:2;21963:10;21934:113;;;22065:6;22062:1;22059:13;22056:48;;;-1:-1:-1;;22100:1:1;22082:16;;22075:27;21852:258::o;22115:136::-;22154:3;22182:5;22172:39;;22191:18;;:::i;:::-;-1:-1:-1;;;22227:18:1;;22115:136::o;22256:380::-;22335:1;22331:12;;;;22378;;;22399:61;;22453:4;22445:6;22441:17;22431:27;;22399:61;22506:2;22498:6;22495:14;22475:18;22472:38;22469:161;;;22552:10;22547:3;22543:20;22540:1;22533:31;22587:4;22584:1;22577:15;22615:4;22612:1;22605:15;22469:161;;22256:380;;;:::o;22641:135::-;22680:3;-1:-1:-1;;22701:17:1;;22698:43;;;22721:18;;:::i;:::-;-1:-1:-1;22768:1:1;22757:13;;22641:135::o;22781:112::-;22813:1;22839;22829:35;;22844:18;;:::i;:::-;-1:-1:-1;22878:9:1;;22781:112::o;22898:127::-;22959:10;22954:3;22950:20;22947:1;22940:31;22990:4;22987:1;22980:15;23014:4;23011:1;23004:15;23030:127;23091:10;23086:3;23082:20;23079:1;23072:31;23122:4;23119:1;23112:15;23146:4;23143:1;23136:15;23162:127;23223:10;23218:3;23214:20;23211:1;23204:31;23254:4;23251:1;23244:15;23278:4;23275:1;23268:15;23294:127;23355:10;23350:3;23346:20;23343:1;23336:31;23386:4;23383:1;23376:15;23410:4;23407:1;23400:15;23426:131;-1:-1:-1;;;;;23501:31:1;;23491:42;;23481:70;;23547:1;23544;23537:12;23562:131;-1:-1:-1;;;;;;23636:32:1;;23626:43;;23616:71;;23683:1;23680;23673:12

Swarm Source

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