ETH Price: $3,253.58 (+2.22%)
Gas: 2 Gwei

Token

PlanetApes (DARWIN)
 

Overview

Max Total Supply

763 DARWIN

Holders

332

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DARWIN
0x37f9f11c68f5d073cde0a1981f0a0b59d186c734
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PlanetApes

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-30
*/

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


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // 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) internal _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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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 _startTokenId() <= tokenId && tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = 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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: contracts/planetapes.sol


pragma solidity ^0.8.4;





error NormalSaleNotActive();
error WhitelistNotActive();
error ExceededLimit();
error NotEnoughTokensLeft();
error WrongEther();
error InvalidMerkle();
error WhitelistUsed();

contract PlanetApes is ERC721A, Ownable, ReentrancyGuard {
    using Address for address;
    using Strings for uint256;

    uint256 public maxMints = 10;
    uint256 public maxSupply = 10000;
    uint256 public mintRate = 0.025 ether;
    string public notRevealedUri = 'ipfs://QmQ3zp283Dt7V3Hc2Jn4VRxfHdfEYDoRHy2qJ42dsCXgX4';
    string public baseExtension = '.json';
    string public baseURI = ''; // ipfs://ID/
    bool public revealed = false;

    constructor() ERC721A('PlanetApes', 'DARWIN') {}

    function mint(uint256 quantity) external payable nonReentrant {
        if (quantity + _numberMinted(msg.sender) > maxMints) {
            revert ExceededLimit();
        }

        if (totalSupply() + quantity > maxSupply) {
            revert NotEnoughTokensLeft();
        }
        if (mintRate * quantity != msg.value) {
            revert WrongEther();
        }

        _safeMint(msg.sender, quantity);
    }

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

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

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

        if (!revealed) {
            return notRevealedUri;
        }

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

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

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setNotRevealedURI(string memory _newURI) public onlyOwner {
        notRevealedUri = _newURI;
    }

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

    function toggleReveal() public onlyOwner {
        revealed = !revealed;
    }
    
    function renounceOwnership() public override onlyOwner {}

    function setMintRate(uint256 _mintRate) public onlyOwner {
        mintRate = _mintRate;
    }

    function setMaxSupply(uint256 _newSupply) public onlyOwner {
        maxSupply = _newSupply;
    }

    function setMaxMints(uint256 _newMaxMints) public onlyOwner {
        maxMints = _newMaxMints;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ExceededLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotEnoughTokensLeft","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"WrongEther","type":"error"},{"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":"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":"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":"maxMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","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":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMints","type":"uint256"}],"name":"setMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintRate","type":"uint256"}],"name":"setMintRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setNotRevealedURI","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":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600a8055612710600b556658d15e17628000600c5560405180606001604052806035815260200162003ce260359139600d90805190602001906200004a929190620002a1565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e908051906020019062000098929190620002a1565b5060405180602001604052806000815250600f9080519060200190620000c0929190620002a1565b506000601060006101000a81548160ff021916908315150217905550348015620000e957600080fd5b506040518060400160405280600a81526020017f506c616e657441706573000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f44415257494e000000000000000000000000000000000000000000000000000081525081600290805190602001906200016e929190620002a1565b50806003908051906020019062000187929190620002a1565b5062000198620001ce60201b60201c565b6000819055505050620001c0620001b4620001d360201b60201c565b620001db60201b60201c565b6001600981905550620003b6565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002af9062000351565b90600052602060002090601f016020900481019282620002d357600085556200031f565b82601f10620002ee57805160ff19168380011785556200031f565b828001600101855582156200031f579182015b828111156200031e57825182559160200191906001019062000301565b5b5090506200032e919062000332565b5090565b5b808211156200034d57600081600090555060010162000333565b5090565b600060028204905060018216806200036a57607f821691505b6020821081141562000381576200038062000387565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61391c80620003c66000396000f3fe6080604052600436106101ee5760003560e01c8063715018a61161010d578063c6682862116100a0578063da3ef23f1161006f578063da3ef23f14610699578063dbe2193f146106c2578063e985e9c5146106eb578063f2c4ce1e14610728578063f2fde38b14610751576101ee565b8063c6682862146105db578063c87b56dd14610606578063ca0dcf1614610643578063d5abeb011461066e576101ee565b8063a0712d68116100dc578063a0712d6814610542578063a22cb4651461055e578063b6b6f0c314610587578063b88d4fde146105b2576101ee565b8063715018a6146104ac57806379c9cb7b146104c35780638da5cb5b146104ec57806395d89b4114610517576101ee565b806342842e0e116101855780636352211e116101545780636352211e146103de5780636c0360eb1461041b5780636f8b44b01461044657806370a082311461046f576101ee565b806342842e0e1461034a578063518302271461037357806355f804b31461039e5780635b8ad429146103c7576101ee565b8063095ea7b3116101c1578063095ea7b3146102c357806318160ddd146102ec57806323b872dd146103175780633ccfd60b14610340576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063081c8c4414610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612ee8565b61077a565b604051610227919061322b565b60405180910390f35b34801561023c57600080fd5b5061024561085c565b6040516102529190613246565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612f8b565b6108ee565b60405161028f91906131c4565b60405180910390f35b3480156102a457600080fd5b506102ad61096a565b6040516102ba9190613246565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e59190612ea8565b6109f8565b005b3480156102f857600080fd5b50610301610b03565b60405161030e91906132e8565b60405180910390f35b34801561032357600080fd5b5061033e60048036038101906103399190612d92565b610b1a565b005b610348610b2a565b005b34801561035657600080fd5b50610371600480360381019061036c9190612d92565b610bf6565b005b34801561037f57600080fd5b50610388610c16565b604051610395919061322b565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c09190612f42565b610c29565b005b3480156103d357600080fd5b506103dc610cbf565b005b3480156103ea57600080fd5b5061040560048036038101906104009190612f8b565b610d67565b60405161041291906131c4565b60405180910390f35b34801561042757600080fd5b50610430610d7d565b60405161043d9190613246565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190612f8b565b610e0b565b005b34801561047b57600080fd5b5061049660048036038101906104919190612d25565b610e91565b6040516104a391906132e8565b60405180910390f35b3480156104b857600080fd5b506104c1610f61565b005b3480156104cf57600080fd5b506104ea60048036038101906104e59190612f8b565b610fdf565b005b3480156104f857600080fd5b50610501611065565b60405161050e91906131c4565b60405180910390f35b34801561052357600080fd5b5061052c61108f565b6040516105399190613246565b60405180910390f35b61055c60048036038101906105579190612f8b565b611121565b005b34801561056a57600080fd5b5061058560048036038101906105809190612e68565b611267565b005b34801561059357600080fd5b5061059c6113df565b6040516105a991906132e8565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d49190612de5565b6113e5565b005b3480156105e757600080fd5b506105f0611461565b6040516105fd9190613246565b60405180910390f35b34801561061257600080fd5b5061062d60048036038101906106289190612f8b565b6114ef565b60405161063a9190613246565b60405180910390f35b34801561064f57600080fd5b50610658611640565b60405161066591906132e8565b60405180910390f35b34801561067a57600080fd5b50610683611646565b60405161069091906132e8565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb9190612f42565b61164c565b005b3480156106ce57600080fd5b506106e960048036038101906106e49190612f8b565b6116e2565b005b3480156106f757600080fd5b50610712600480360381019061070d9190612d52565b611768565b60405161071f919061322b565b60405180910390f35b34801561073457600080fd5b5061074f600480360381019061074a9190612f42565b6117fc565b005b34801561075d57600080fd5b5061077860048036038101906107739190612d25565b611892565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085557506108548261198a565b5b9050919050565b60606002805461086b906135ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610897906135ad565b80156108e45780601f106108b9576101008083540402835291602001916108e4565b820191906000526020600020905b8154815290600101906020018083116108c757829003601f168201915b5050505050905090565b60006108f9826119f4565b61092f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610977906135ad565b80601f01602080910402602001604051908101604052809291908181526020018280546109a3906135ad565b80156109f05780601f106109c5576101008083540402835291602001916109f0565b820191906000526020600020905b8154815290600101906020018083116109d357829003601f168201915b505050505081565b6000610a0382610d67565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8a611a42565b73ffffffffffffffffffffffffffffffffffffffff1614158015610abc5750610aba81610ab5611a42565b611768565b155b15610af3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610afe838383611a4a565b505050565b6000610b0d611afc565b6001546000540303905090565b610b25838383611b01565b505050565b610b32611a42565b73ffffffffffffffffffffffffffffffffffffffff16610b50611065565b73ffffffffffffffffffffffffffffffffffffffff1614610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d90613288565b60405180910390fd5b610bae611065565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bf3573d6000803e3d6000fd5b50565b610c11838383604051806020016040528060008152506113e5565b505050565b601060009054906101000a900460ff1681565b610c31611a42565b73ffffffffffffffffffffffffffffffffffffffff16610c4f611065565b73ffffffffffffffffffffffffffffffffffffffff1614610ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9c90613288565b60405180910390fd5b80600f9080519060200190610cbb929190612af6565b5050565b610cc7611a42565b73ffffffffffffffffffffffffffffffffffffffff16610ce5611065565b73ffffffffffffffffffffffffffffffffffffffff1614610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3290613288565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000610d7282611fb7565b600001519050919050565b600f8054610d8a906135ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610db6906135ad565b8015610e035780601f10610dd857610100808354040283529160200191610e03565b820191906000526020600020905b815481529060010190602001808311610de657829003601f168201915b505050505081565b610e13611a42565b73ffffffffffffffffffffffffffffffffffffffff16610e31611065565b73ffffffffffffffffffffffffffffffffffffffff1614610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90613288565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f69611a42565b73ffffffffffffffffffffffffffffffffffffffff16610f87611065565b73ffffffffffffffffffffffffffffffffffffffff1614610fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd490613288565b60405180910390fd5b565b610fe7611a42565b73ffffffffffffffffffffffffffffffffffffffff16611005611065565b73ffffffffffffffffffffffffffffffffffffffff161461105b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105290613288565b60405180910390fd5b80600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461109e906135ad565b80601f01602080910402602001604051908101604052809291908181526020018280546110ca906135ad565b80156111175780601f106110ec57610100808354040283529160200191611117565b820191906000526020600020905b8154815290600101906020018083116110fa57829003601f168201915b5050505050905090565b60026009541415611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e906132c8565b60405180910390fd5b6002600981905550600a5461117b33612246565b8261118691906133e2565b11156111be576040517f38d8b70c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b54816111ca610b03565b6111d491906133e2565b111561120c576040517f76592c6f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3481600c5461121b9190613469565b14611252576040517fb457f15800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61125c33826122b0565b600160098190555050565b61126f611a42565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112e1611a42565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661138e611a42565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113d3919061322b565b60405180910390a35050565b600a5481565b6113f0848484611b01565b61140f8373ffffffffffffffffffffffffffffffffffffffff166122ce565b80156114245750611422848484846122f1565b155b1561145b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600e805461146e906135ad565b80601f016020809104026020016040519081016040528092919081815260200182805461149a906135ad565b80156114e75780601f106114bc576101008083540402835291602001916114e7565b820191906000526020600020905b8154815290600101906020018083116114ca57829003601f168201915b505050505081565b60606114fa826119f4565b611539576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611530906132a8565b60405180910390fd5b601060009054906101000a900460ff166115df57600d805461155a906135ad565b80601f0160208091040260200160405190810160405280929190818152602001828054611586906135ad565b80156115d35780601f106115a8576101008083540402835291602001916115d3565b820191906000526020600020905b8154815290600101906020018083116115b657829003601f168201915b5050505050905061163b565b60006115e9612451565b905060008151116116095760405180602001604052806000815250611637565b80611613846124e3565b600e60405160200161162793929190613193565b6040516020818303038152906040525b9150505b919050565b600c5481565b600b5481565b611654611a42565b73ffffffffffffffffffffffffffffffffffffffff16611672611065565b73ffffffffffffffffffffffffffffffffffffffff16146116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf90613288565b60405180910390fd5b80600e90805190602001906116de929190612af6565b5050565b6116ea611a42565b73ffffffffffffffffffffffffffffffffffffffff16611708611065565b73ffffffffffffffffffffffffffffffffffffffff161461175e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175590613288565b60405180910390fd5b80600c8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611804611a42565b73ffffffffffffffffffffffffffffffffffffffff16611822611065565b73ffffffffffffffffffffffffffffffffffffffff1614611878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186f90613288565b60405180910390fd5b80600d908051906020019061188e929190612af6565b5050565b61189a611a42565b73ffffffffffffffffffffffffffffffffffffffff166118b8611065565b73ffffffffffffffffffffffffffffffffffffffff161461190e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190590613288565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590613268565b60405180910390fd5b61198781612644565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816119ff611afc565b11158015611a0e575060005482105b8015611a3b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611b0c82611fb7565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b77576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b98611a42565b73ffffffffffffffffffffffffffffffffffffffff161480611bc75750611bc685611bc1611a42565b611768565b5b80611c0c5750611bd5611a42565b73ffffffffffffffffffffffffffffffffffffffff16611bf4846108ee565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c45576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cac576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cb9858585600161270a565b611cc560008487611a4a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f45576000548214611f4457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fb08585856001612710565b5050505050565b611fbf612b7c565b600082905080611fcd611afc565b11158015611fdc575060005481105b1561220f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161220d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120f1578092505050612241565b5b60011561220c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612207578092505050612241565b6120f2565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6122ca828260405180602001604052806000815250612716565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612317611a42565b8786866040518563ffffffff1660e01b815260040161233994939291906131df565b602060405180830381600087803b15801561235357600080fd5b505af192505050801561238457506040513d601f19601f820116820180604052508101906123819190612f15565b60015b6123fe573d80600081146123b4576040519150601f19603f3d011682016040523d82523d6000602084013e6123b9565b606091505b506000815114156123f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054612460906135ad565b80601f016020809104026020016040519081016040528092919081815260200182805461248c906135ad565b80156124d95780601f106124ae576101008083540402835291602001916124d9565b820191906000526020600020905b8154815290600101906020018083116124bc57829003601f168201915b5050505050905090565b6060600082141561252b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061263f565b600082905060005b6000821461255d57808061254690613610565b915050600a826125569190613438565b9150612533565b60008167ffffffffffffffff81111561257957612578613746565b5b6040519080825280601f01601f1916602001820160405280156125ab5781602001600182028036833780820191505090505b5090505b60008514612638576001826125c491906134c3565b9150600a856125d39190613659565b60306125df91906133e2565b60f81b8183815181106125f5576125f4613717565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126319190613438565b94506125af565b8093505050505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b50505050565b50505050565b6127238383836001612728565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612795576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156127d0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127dd600086838761270a565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156129a757506129a68773ffffffffffffffffffffffffffffffffffffffff166122ce565b5b15612a6d575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a1c60008884806001019550886122f1565b612a52576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129ad578260005414612a6857600080fd5b612ad9565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a6e575b816000819055505050612aef6000868387612710565b5050505050565b828054612b02906135ad565b90600052602060002090601f016020900481019282612b245760008555612b6b565b82601f10612b3d57805160ff1916838001178555612b6b565b82800160010185558215612b6b579182015b82811115612b6a578251825591602001919060010190612b4f565b5b509050612b789190612bbf565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612bd8576000816000905550600101612bc0565b5090565b6000612bef612bea84613328565b613303565b905082815260208101848484011115612c0b57612c0a61377a565b5b612c1684828561356b565b509392505050565b6000612c31612c2c84613359565b613303565b905082815260208101848484011115612c4d57612c4c61377a565b5b612c5884828561356b565b509392505050565b600081359050612c6f8161388a565b92915050565b600081359050612c84816138a1565b92915050565b600081359050612c99816138b8565b92915050565b600081519050612cae816138b8565b92915050565b600082601f830112612cc957612cc8613775565b5b8135612cd9848260208601612bdc565b91505092915050565b600082601f830112612cf757612cf6613775565b5b8135612d07848260208601612c1e565b91505092915050565b600081359050612d1f816138cf565b92915050565b600060208284031215612d3b57612d3a613784565b5b6000612d4984828501612c60565b91505092915050565b60008060408385031215612d6957612d68613784565b5b6000612d7785828601612c60565b9250506020612d8885828601612c60565b9150509250929050565b600080600060608486031215612dab57612daa613784565b5b6000612db986828701612c60565b9350506020612dca86828701612c60565b9250506040612ddb86828701612d10565b9150509250925092565b60008060008060808587031215612dff57612dfe613784565b5b6000612e0d87828801612c60565b9450506020612e1e87828801612c60565b9350506040612e2f87828801612d10565b925050606085013567ffffffffffffffff811115612e5057612e4f61377f565b5b612e5c87828801612cb4565b91505092959194509250565b60008060408385031215612e7f57612e7e613784565b5b6000612e8d85828601612c60565b9250506020612e9e85828601612c75565b9150509250929050565b60008060408385031215612ebf57612ebe613784565b5b6000612ecd85828601612c60565b9250506020612ede85828601612d10565b9150509250929050565b600060208284031215612efe57612efd613784565b5b6000612f0c84828501612c8a565b91505092915050565b600060208284031215612f2b57612f2a613784565b5b6000612f3984828501612c9f565b91505092915050565b600060208284031215612f5857612f57613784565b5b600082013567ffffffffffffffff811115612f7657612f7561377f565b5b612f8284828501612ce2565b91505092915050565b600060208284031215612fa157612fa0613784565b5b6000612faf84828501612d10565b91505092915050565b612fc1816134f7565b82525050565b612fd081613509565b82525050565b6000612fe18261339f565b612feb81856133b5565b9350612ffb81856020860161357a565b61300481613789565b840191505092915050565b600061301a826133aa565b61302481856133c6565b935061303481856020860161357a565b61303d81613789565b840191505092915050565b6000613053826133aa565b61305d81856133d7565b935061306d81856020860161357a565b80840191505092915050565b60008154613086816135ad565b61309081866133d7565b945060018216600081146130ab57600181146130bc576130ef565b60ff198316865281860193506130ef565b6130c58561338a565b60005b838110156130e7578154818901526001820191506020810190506130c8565b838801955050505b50505092915050565b60006131056026836133c6565b91506131108261379a565b604082019050919050565b60006131286020836133c6565b9150613133826137e9565b602082019050919050565b600061314b602f836133c6565b915061315682613812565b604082019050919050565b600061316e601f836133c6565b915061317982613861565b602082019050919050565b61318d81613561565b82525050565b600061319f8286613048565b91506131ab8285613048565b91506131b78284613079565b9150819050949350505050565b60006020820190506131d96000830184612fb8565b92915050565b60006080820190506131f46000830187612fb8565b6132016020830186612fb8565b61320e6040830185613184565b81810360608301526132208184612fd6565b905095945050505050565b60006020820190506132406000830184612fc7565b92915050565b60006020820190508181036000830152613260818461300f565b905092915050565b60006020820190508181036000830152613281816130f8565b9050919050565b600060208201905081810360008301526132a18161311b565b9050919050565b600060208201905081810360008301526132c18161313e565b9050919050565b600060208201905081810360008301526132e181613161565b9050919050565b60006020820190506132fd6000830184613184565b92915050565b600061330d61331e565b905061331982826135df565b919050565b6000604051905090565b600067ffffffffffffffff82111561334357613342613746565b5b61334c82613789565b9050602081019050919050565b600067ffffffffffffffff82111561337457613373613746565b5b61337d82613789565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006133ed82613561565b91506133f883613561565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561342d5761342c61368a565b5b828201905092915050565b600061344382613561565b915061344e83613561565b92508261345e5761345d6136b9565b5b828204905092915050565b600061347482613561565b915061347f83613561565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134b8576134b761368a565b5b828202905092915050565b60006134ce82613561565b91506134d983613561565b9250828210156134ec576134eb61368a565b5b828203905092915050565b600061350282613541565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561359857808201518184015260208101905061357d565b838111156135a7576000848401525b50505050565b600060028204905060018216806135c557607f821691505b602082108114156135d9576135d86136e8565b5b50919050565b6135e882613789565b810181811067ffffffffffffffff8211171561360757613606613746565b5b80604052505050565b600061361b82613561565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561364e5761364d61368a565b5b600182019050919050565b600061366482613561565b915061366f83613561565b92508261367f5761367e6136b9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613893816134f7565b811461389e57600080fd5b50565b6138aa81613509565b81146138b557600080fd5b50565b6138c181613515565b81146138cc57600080fd5b50565b6138d881613561565b81146138e357600080fd5b5056fea2646970667358221220c79b93c82a1d3385003f47dc843e2dffeaeff5199b9f3a0b2c69f085463fdf4e64736f6c63430008070033697066733a2f2f516d51337a7032383344743756334863324a6e34565278664864664559446f52487932714a343264734358675834

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c8063715018a61161010d578063c6682862116100a0578063da3ef23f1161006f578063da3ef23f14610699578063dbe2193f146106c2578063e985e9c5146106eb578063f2c4ce1e14610728578063f2fde38b14610751576101ee565b8063c6682862146105db578063c87b56dd14610606578063ca0dcf1614610643578063d5abeb011461066e576101ee565b8063a0712d68116100dc578063a0712d6814610542578063a22cb4651461055e578063b6b6f0c314610587578063b88d4fde146105b2576101ee565b8063715018a6146104ac57806379c9cb7b146104c35780638da5cb5b146104ec57806395d89b4114610517576101ee565b806342842e0e116101855780636352211e116101545780636352211e146103de5780636c0360eb1461041b5780636f8b44b01461044657806370a082311461046f576101ee565b806342842e0e1461034a578063518302271461037357806355f804b31461039e5780635b8ad429146103c7576101ee565b8063095ea7b3116101c1578063095ea7b3146102c357806318160ddd146102ec57806323b872dd146103175780633ccfd60b14610340576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063081c8c4414610298575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612ee8565b61077a565b604051610227919061322b565b60405180910390f35b34801561023c57600080fd5b5061024561085c565b6040516102529190613246565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612f8b565b6108ee565b60405161028f91906131c4565b60405180910390f35b3480156102a457600080fd5b506102ad61096a565b6040516102ba9190613246565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e59190612ea8565b6109f8565b005b3480156102f857600080fd5b50610301610b03565b60405161030e91906132e8565b60405180910390f35b34801561032357600080fd5b5061033e60048036038101906103399190612d92565b610b1a565b005b610348610b2a565b005b34801561035657600080fd5b50610371600480360381019061036c9190612d92565b610bf6565b005b34801561037f57600080fd5b50610388610c16565b604051610395919061322b565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c09190612f42565b610c29565b005b3480156103d357600080fd5b506103dc610cbf565b005b3480156103ea57600080fd5b5061040560048036038101906104009190612f8b565b610d67565b60405161041291906131c4565b60405180910390f35b34801561042757600080fd5b50610430610d7d565b60405161043d9190613246565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190612f8b565b610e0b565b005b34801561047b57600080fd5b5061049660048036038101906104919190612d25565b610e91565b6040516104a391906132e8565b60405180910390f35b3480156104b857600080fd5b506104c1610f61565b005b3480156104cf57600080fd5b506104ea60048036038101906104e59190612f8b565b610fdf565b005b3480156104f857600080fd5b50610501611065565b60405161050e91906131c4565b60405180910390f35b34801561052357600080fd5b5061052c61108f565b6040516105399190613246565b60405180910390f35b61055c60048036038101906105579190612f8b565b611121565b005b34801561056a57600080fd5b5061058560048036038101906105809190612e68565b611267565b005b34801561059357600080fd5b5061059c6113df565b6040516105a991906132e8565b60405180910390f35b3480156105be57600080fd5b506105d960048036038101906105d49190612de5565b6113e5565b005b3480156105e757600080fd5b506105f0611461565b6040516105fd9190613246565b60405180910390f35b34801561061257600080fd5b5061062d60048036038101906106289190612f8b565b6114ef565b60405161063a9190613246565b60405180910390f35b34801561064f57600080fd5b50610658611640565b60405161066591906132e8565b60405180910390f35b34801561067a57600080fd5b50610683611646565b60405161069091906132e8565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb9190612f42565b61164c565b005b3480156106ce57600080fd5b506106e960048036038101906106e49190612f8b565b6116e2565b005b3480156106f757600080fd5b50610712600480360381019061070d9190612d52565b611768565b60405161071f919061322b565b60405180910390f35b34801561073457600080fd5b5061074f600480360381019061074a9190612f42565b6117fc565b005b34801561075d57600080fd5b5061077860048036038101906107739190612d25565b611892565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085557506108548261198a565b5b9050919050565b60606002805461086b906135ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610897906135ad565b80156108e45780601f106108b9576101008083540402835291602001916108e4565b820191906000526020600020905b8154815290600101906020018083116108c757829003601f168201915b5050505050905090565b60006108f9826119f4565b61092f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610977906135ad565b80601f01602080910402602001604051908101604052809291908181526020018280546109a3906135ad565b80156109f05780601f106109c5576101008083540402835291602001916109f0565b820191906000526020600020905b8154815290600101906020018083116109d357829003601f168201915b505050505081565b6000610a0382610d67565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a6b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a8a611a42565b73ffffffffffffffffffffffffffffffffffffffff1614158015610abc5750610aba81610ab5611a42565b611768565b155b15610af3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610afe838383611a4a565b505050565b6000610b0d611afc565b6001546000540303905090565b610b25838383611b01565b505050565b610b32611a42565b73ffffffffffffffffffffffffffffffffffffffff16610b50611065565b73ffffffffffffffffffffffffffffffffffffffff1614610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d90613288565b60405180910390fd5b610bae611065565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bf3573d6000803e3d6000fd5b50565b610c11838383604051806020016040528060008152506113e5565b505050565b601060009054906101000a900460ff1681565b610c31611a42565b73ffffffffffffffffffffffffffffffffffffffff16610c4f611065565b73ffffffffffffffffffffffffffffffffffffffff1614610ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9c90613288565b60405180910390fd5b80600f9080519060200190610cbb929190612af6565b5050565b610cc7611a42565b73ffffffffffffffffffffffffffffffffffffffff16610ce5611065565b73ffffffffffffffffffffffffffffffffffffffff1614610d3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3290613288565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b6000610d7282611fb7565b600001519050919050565b600f8054610d8a906135ad565b80601f0160208091040260200160405190810160405280929190818152602001828054610db6906135ad565b8015610e035780601f10610dd857610100808354040283529160200191610e03565b820191906000526020600020905b815481529060010190602001808311610de657829003601f168201915b505050505081565b610e13611a42565b73ffffffffffffffffffffffffffffffffffffffff16610e31611065565b73ffffffffffffffffffffffffffffffffffffffff1614610e87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7e90613288565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610f69611a42565b73ffffffffffffffffffffffffffffffffffffffff16610f87611065565b73ffffffffffffffffffffffffffffffffffffffff1614610fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd490613288565b60405180910390fd5b565b610fe7611a42565b73ffffffffffffffffffffffffffffffffffffffff16611005611065565b73ffffffffffffffffffffffffffffffffffffffff161461105b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105290613288565b60405180910390fd5b80600a8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461109e906135ad565b80601f01602080910402602001604051908101604052809291908181526020018280546110ca906135ad565b80156111175780601f106110ec57610100808354040283529160200191611117565b820191906000526020600020905b8154815290600101906020018083116110fa57829003601f168201915b5050505050905090565b60026009541415611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115e906132c8565b60405180910390fd5b6002600981905550600a5461117b33612246565b8261118691906133e2565b11156111be576040517f38d8b70c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b54816111ca610b03565b6111d491906133e2565b111561120c576040517f76592c6f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3481600c5461121b9190613469565b14611252576040517fb457f15800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61125c33826122b0565b600160098190555050565b61126f611a42565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112e1611a42565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661138e611a42565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113d3919061322b565b60405180910390a35050565b600a5481565b6113f0848484611b01565b61140f8373ffffffffffffffffffffffffffffffffffffffff166122ce565b80156114245750611422848484846122f1565b155b1561145b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600e805461146e906135ad565b80601f016020809104026020016040519081016040528092919081815260200182805461149a906135ad565b80156114e75780601f106114bc576101008083540402835291602001916114e7565b820191906000526020600020905b8154815290600101906020018083116114ca57829003601f168201915b505050505081565b60606114fa826119f4565b611539576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611530906132a8565b60405180910390fd5b601060009054906101000a900460ff166115df57600d805461155a906135ad565b80601f0160208091040260200160405190810160405280929190818152602001828054611586906135ad565b80156115d35780601f106115a8576101008083540402835291602001916115d3565b820191906000526020600020905b8154815290600101906020018083116115b657829003601f168201915b5050505050905061163b565b60006115e9612451565b905060008151116116095760405180602001604052806000815250611637565b80611613846124e3565b600e60405160200161162793929190613193565b6040516020818303038152906040525b9150505b919050565b600c5481565b600b5481565b611654611a42565b73ffffffffffffffffffffffffffffffffffffffff16611672611065565b73ffffffffffffffffffffffffffffffffffffffff16146116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf90613288565b60405180910390fd5b80600e90805190602001906116de929190612af6565b5050565b6116ea611a42565b73ffffffffffffffffffffffffffffffffffffffff16611708611065565b73ffffffffffffffffffffffffffffffffffffffff161461175e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175590613288565b60405180910390fd5b80600c8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611804611a42565b73ffffffffffffffffffffffffffffffffffffffff16611822611065565b73ffffffffffffffffffffffffffffffffffffffff1614611878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186f90613288565b60405180910390fd5b80600d908051906020019061188e929190612af6565b5050565b61189a611a42565b73ffffffffffffffffffffffffffffffffffffffff166118b8611065565b73ffffffffffffffffffffffffffffffffffffffff161461190e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190590613288565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590613268565b60405180910390fd5b61198781612644565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816119ff611afc565b11158015611a0e575060005482105b8015611a3b575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6000611b0c82611fb7565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b77576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b98611a42565b73ffffffffffffffffffffffffffffffffffffffff161480611bc75750611bc685611bc1611a42565b611768565b5b80611c0c5750611bd5611a42565b73ffffffffffffffffffffffffffffffffffffffff16611bf4846108ee565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c45576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cac576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cb9858585600161270a565b611cc560008487611a4a565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f45576000548214611f4457878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fb08585856001612710565b5050505050565b611fbf612b7c565b600082905080611fcd611afc565b11158015611fdc575060005481105b1561220f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161220d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120f1578092505050612241565b5b60011561220c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612207578092505050612241565b6120f2565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6122ca828260405180602001604052806000815250612716565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612317611a42565b8786866040518563ffffffff1660e01b815260040161233994939291906131df565b602060405180830381600087803b15801561235357600080fd5b505af192505050801561238457506040513d601f19601f820116820180604052508101906123819190612f15565b60015b6123fe573d80600081146123b4576040519150601f19603f3d011682016040523d82523d6000602084013e6123b9565b606091505b506000815114156123f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054612460906135ad565b80601f016020809104026020016040519081016040528092919081815260200182805461248c906135ad565b80156124d95780601f106124ae576101008083540402835291602001916124d9565b820191906000526020600020905b8154815290600101906020018083116124bc57829003601f168201915b5050505050905090565b6060600082141561252b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061263f565b600082905060005b6000821461255d57808061254690613610565b915050600a826125569190613438565b9150612533565b60008167ffffffffffffffff81111561257957612578613746565b5b6040519080825280601f01601f1916602001820160405280156125ab5781602001600182028036833780820191505090505b5090505b60008514612638576001826125c491906134c3565b9150600a856125d39190613659565b60306125df91906133e2565b60f81b8183815181106125f5576125f4613717565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126319190613438565b94506125af565b8093505050505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b50505050565b50505050565b6127238383836001612728565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612795576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156127d0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127dd600086838761270a565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156129a757506129a68773ffffffffffffffffffffffffffffffffffffffff166122ce565b5b15612a6d575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a1c60008884806001019550886122f1565b612a52576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129ad578260005414612a6857600080fd5b612ad9565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612a6e575b816000819055505050612aef6000868387612710565b5050505050565b828054612b02906135ad565b90600052602060002090601f016020900481019282612b245760008555612b6b565b82601f10612b3d57805160ff1916838001178555612b6b565b82800160010185558215612b6b579182015b82811115612b6a578251825591602001919060010190612b4f565b5b509050612b789190612bbf565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612bd8576000816000905550600101612bc0565b5090565b6000612bef612bea84613328565b613303565b905082815260208101848484011115612c0b57612c0a61377a565b5b612c1684828561356b565b509392505050565b6000612c31612c2c84613359565b613303565b905082815260208101848484011115612c4d57612c4c61377a565b5b612c5884828561356b565b509392505050565b600081359050612c6f8161388a565b92915050565b600081359050612c84816138a1565b92915050565b600081359050612c99816138b8565b92915050565b600081519050612cae816138b8565b92915050565b600082601f830112612cc957612cc8613775565b5b8135612cd9848260208601612bdc565b91505092915050565b600082601f830112612cf757612cf6613775565b5b8135612d07848260208601612c1e565b91505092915050565b600081359050612d1f816138cf565b92915050565b600060208284031215612d3b57612d3a613784565b5b6000612d4984828501612c60565b91505092915050565b60008060408385031215612d6957612d68613784565b5b6000612d7785828601612c60565b9250506020612d8885828601612c60565b9150509250929050565b600080600060608486031215612dab57612daa613784565b5b6000612db986828701612c60565b9350506020612dca86828701612c60565b9250506040612ddb86828701612d10565b9150509250925092565b60008060008060808587031215612dff57612dfe613784565b5b6000612e0d87828801612c60565b9450506020612e1e87828801612c60565b9350506040612e2f87828801612d10565b925050606085013567ffffffffffffffff811115612e5057612e4f61377f565b5b612e5c87828801612cb4565b91505092959194509250565b60008060408385031215612e7f57612e7e613784565b5b6000612e8d85828601612c60565b9250506020612e9e85828601612c75565b9150509250929050565b60008060408385031215612ebf57612ebe613784565b5b6000612ecd85828601612c60565b9250506020612ede85828601612d10565b9150509250929050565b600060208284031215612efe57612efd613784565b5b6000612f0c84828501612c8a565b91505092915050565b600060208284031215612f2b57612f2a613784565b5b6000612f3984828501612c9f565b91505092915050565b600060208284031215612f5857612f57613784565b5b600082013567ffffffffffffffff811115612f7657612f7561377f565b5b612f8284828501612ce2565b91505092915050565b600060208284031215612fa157612fa0613784565b5b6000612faf84828501612d10565b91505092915050565b612fc1816134f7565b82525050565b612fd081613509565b82525050565b6000612fe18261339f565b612feb81856133b5565b9350612ffb81856020860161357a565b61300481613789565b840191505092915050565b600061301a826133aa565b61302481856133c6565b935061303481856020860161357a565b61303d81613789565b840191505092915050565b6000613053826133aa565b61305d81856133d7565b935061306d81856020860161357a565b80840191505092915050565b60008154613086816135ad565b61309081866133d7565b945060018216600081146130ab57600181146130bc576130ef565b60ff198316865281860193506130ef565b6130c58561338a565b60005b838110156130e7578154818901526001820191506020810190506130c8565b838801955050505b50505092915050565b60006131056026836133c6565b91506131108261379a565b604082019050919050565b60006131286020836133c6565b9150613133826137e9565b602082019050919050565b600061314b602f836133c6565b915061315682613812565b604082019050919050565b600061316e601f836133c6565b915061317982613861565b602082019050919050565b61318d81613561565b82525050565b600061319f8286613048565b91506131ab8285613048565b91506131b78284613079565b9150819050949350505050565b60006020820190506131d96000830184612fb8565b92915050565b60006080820190506131f46000830187612fb8565b6132016020830186612fb8565b61320e6040830185613184565b81810360608301526132208184612fd6565b905095945050505050565b60006020820190506132406000830184612fc7565b92915050565b60006020820190508181036000830152613260818461300f565b905092915050565b60006020820190508181036000830152613281816130f8565b9050919050565b600060208201905081810360008301526132a18161311b565b9050919050565b600060208201905081810360008301526132c18161313e565b9050919050565b600060208201905081810360008301526132e181613161565b9050919050565b60006020820190506132fd6000830184613184565b92915050565b600061330d61331e565b905061331982826135df565b919050565b6000604051905090565b600067ffffffffffffffff82111561334357613342613746565b5b61334c82613789565b9050602081019050919050565b600067ffffffffffffffff82111561337457613373613746565b5b61337d82613789565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006133ed82613561565b91506133f883613561565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561342d5761342c61368a565b5b828201905092915050565b600061344382613561565b915061344e83613561565b92508261345e5761345d6136b9565b5b828204905092915050565b600061347482613561565b915061347f83613561565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156134b8576134b761368a565b5b828202905092915050565b60006134ce82613561565b91506134d983613561565b9250828210156134ec576134eb61368a565b5b828203905092915050565b600061350282613541565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561359857808201518184015260208101905061357d565b838111156135a7576000848401525b50505050565b600060028204905060018216806135c557607f821691505b602082108114156135d9576135d86136e8565b5b50919050565b6135e882613789565b810181811067ffffffffffffffff8211171561360757613606613746565b5b80604052505050565b600061361b82613561565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561364e5761364d61368a565b5b600182019050919050565b600061366482613561565b915061366f83613561565b92508261367f5761367e6136b9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613893816134f7565b811461389e57600080fd5b50565b6138aa81613509565b81146138b557600080fd5b50565b6138c181613515565b81146138cc57600080fd5b50565b6138d881613561565b81146138e357600080fd5b5056fea2646970667358221220c79b93c82a1d3385003f47dc843e2dffeaeff5199b9f3a0b2c69f085463fdf4e64736f6c63430008070033

Deployed Bytecode Sourcemap

50136:2659:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32120:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35233:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36736:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50384:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36299:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31369:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37601:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51233:114;;;:::i;:::-;;37842:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50568:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51955:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52321:80;;;;;;;;;;;;;:::i;:::-;;35041:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50521:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52582:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32489:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52413:57;;;;;;;;;;;;;:::i;:::-;;52690:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9227:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35402:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50661:429;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37012:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50266:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38098:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50477:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51355:484;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50340:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50301:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52185:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52478:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37370:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52067:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10136:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32120:305;32222:4;32274:25;32259:40;;;:11;:40;;;;:105;;;;32331:33;32316:48;;;:11;:48;;;;32259:105;:158;;;;32381:36;32405:11;32381:23;:36::i;:::-;32259:158;32239:178;;32120:305;;;:::o;35233:100::-;35287:13;35320:5;35313:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35233:100;:::o;36736:204::-;36804:7;36829:16;36837:7;36829;:16::i;:::-;36824:64;;36854:34;;;;;;;;;;;;;;36824:64;36908:15;:24;36924:7;36908:24;;;;;;;;;;;;;;;;;;;;;36901:31;;36736:204;;;:::o;50384:86::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36299:371::-;36372:13;36388:24;36404:7;36388:15;:24::i;:::-;36372:40;;36433:5;36427:11;;:2;:11;;;36423:48;;;36447:24;;;;;;;;;;;;;;36423:48;36504:5;36488:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;36514:37;36531:5;36538:12;:10;:12::i;:::-;36514:16;:37::i;:::-;36513:38;36488:63;36484:138;;;36575:35;;;;;;;;;;;;;;36484:138;36634:28;36643:2;36647:7;36656:5;36634:8;:28::i;:::-;36361:309;36299:371;;:::o;31369:303::-;31413:7;31638:15;:13;:15::i;:::-;31623:12;;31607:13;;:28;:46;31600:53;;31369:303;:::o;37601:170::-;37735:28;37745:4;37751:2;37755:7;37735:9;:28::i;:::-;37601:170;;;:::o;51233:114::-;9458:12;:10;:12::i;:::-;9447:23;;:7;:5;:7::i;:::-;:23;;;9439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51299:7:::1;:5;:7::i;:::-;51291:25;;:48;51317:21;51291:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;51233:114::o:0;37842:185::-;37980:39;37997:4;38003:2;38007:7;37980:39;;;;;;;;;;;;:16;:39::i;:::-;37842:185;;;:::o;50568:28::-;;;;;;;;;;;;;:::o;51955:104::-;9458:12;:10;:12::i;:::-;9447:23;;:7;:5;:7::i;:::-;:23;;;9439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52040:11:::1;52030:7;:21;;;;;;;;;;;;:::i;:::-;;51955:104:::0;:::o;52321:80::-;9458:12;:10;:12::i;:::-;9447:23;;:7;:5;:7::i;:::-;:23;;;9439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52385:8:::1;;;;;;;;;;;52384:9;52373:8;;:20;;;;;;;;;;;;;;;;;;52321:80::o:0;35041:125::-;35105:7;35132:21;35145:7;35132:12;:21::i;:::-;:26;;;35125:33;;35041:125;;;:::o;50521:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52582:100::-;9458:12;:10;:12::i;:::-;9447:23;;:7;:5;:7::i;:::-;:23;;;9439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52664:10:::1;52652:9;:22;;;;52582:100:::0;:::o;32489:206::-;32553:7;32594:1;32577:19;;:5;:19;;;32573:60;;;32605:28;;;;;;;;;;;;;;32573:60;32659:12;:19;32672:5;32659:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;32651:36;;32644:43;;32489:206;;;:::o;52413:57::-;9458:12;:10;:12::i;:::-;9447:23;;:7;:5;:7::i;:::-;:23;;;9439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52413:57::o;52690:102::-;9458:12;:10;:12::i;:::-;9447:23;;:7;:5;:7::i;:::-;:23;;;9439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52772:12:::1;52761:8;:23;;;;52690:102:::0;:::o;9227:87::-;9273:7;9300:6;;;;;;;;;;;9293:13;;9227:87;:::o;35402:104::-;35458:13;35491:7;35484:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35402:104;:::o;50661:429::-;1812:1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;50777:8:::1;;50749:25;50763:10;50749:13;:25::i;:::-;50738:8;:36;;;;:::i;:::-;:47;50734:102;;;50809:15;;;;;;;;;;;;;;50734:102;50879:9;;50868:8;50852:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:36;50848:97;;;50912:21;;;;;;;;;;;;;;50848:97;50982:9;50970:8;50959;;:19;;;;:::i;:::-;:32;50955:84;;51015:12;;;;;;;;;;;;;;50955:84;51051:31;51061:10;51073:8;51051:9;:31::i;:::-;1768:1:::0;2722:7;:22;;;;50661:429;:::o;37012:287::-;37123:12;:10;:12::i;:::-;37111:24;;:8;:24;;;37107:54;;;37144:17;;;;;;;;;;;;;;37107:54;37219:8;37174:18;:32;37193:12;:10;:12::i;:::-;37174:32;;;;;;;;;;;;;;;:42;37207:8;37174:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;37272:8;37243:48;;37258:12;:10;:12::i;:::-;37243:48;;;37282:8;37243:48;;;;;;:::i;:::-;;;;;;;;37012:287;;:::o;50266:28::-;;;;:::o;38098:369::-;38265:28;38275:4;38281:2;38285:7;38265:9;:28::i;:::-;38308:15;:2;:13;;;:15::i;:::-;:76;;;;;38328:56;38359:4;38365:2;38369:7;38378:5;38328:30;:56::i;:::-;38327:57;38308:76;38304:156;;;38408:40;;;;;;;;;;;;;;38304:156;38098:369;;;;:::o;50477:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51355:484::-;51420:13;51454:16;51462:7;51454;:16::i;:::-;51446:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;51540:8;;;;;;;;;;;51535:63;;51572:14;51565:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51535:63;51610:28;51641:10;:8;:10::i;:::-;51610:41;;51713:1;51688:14;51682:28;:32;:149;;;;;;;;;;;;;;;;;51758:14;51774:18;:7;:16;:18::i;:::-;51794:13;51741:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51682:149;51662:169;;;51355:484;;;;:::o;50340:37::-;;;;:::o;50301:32::-;;;;:::o;52185:128::-;9458:12;:10;:12::i;:::-;9447:23;;:7;:5;:7::i;:::-;:23;;;9439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52288:17:::1;52272:13;:33;;;;;;;;;;;;:::i;:::-;;52185:128:::0;:::o;52478:96::-;9458:12;:10;:12::i;:::-;9447:23;;:7;:5;:7::i;:::-;:23;;;9439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52557:9:::1;52546:8;:20;;;;52478:96:::0;:::o;37370:164::-;37467:4;37491:18;:25;37510:5;37491:25;;;;;;;;;;;;;;;:35;37517:8;37491:35;;;;;;;;;;;;;;;;;;;;;;;;;37484:42;;37370:164;;;;:::o;52067:110::-;9458:12;:10;:12::i;:::-;9447:23;;:7;:5;:7::i;:::-;:23;;;9439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52162:7:::1;52145:14;:24;;;;;;;;;;;;:::i;:::-;;52067:110:::0;:::o;10136:201::-;9458:12;:10;:12::i;:::-;9447:23;;:7;:5;:7::i;:::-;:23;;;9439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10245:1:::1;10225:22;;:8;:22;;;;10217:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10301:28;10320:8;10301:18;:28::i;:::-;10136:201:::0;:::o;22011:157::-;22096:4;22135:25;22120:40;;;:11;:40;;;;22113:47;;22011:157;;;:::o;38722:187::-;38779:4;38822:7;38803:15;:13;:15::i;:::-;:26;;:53;;;;;38843:13;;38833:7;:23;38803:53;:98;;;;;38874:11;:20;38886:7;38874:20;;;;;;;;;;;:27;;;;;;;;;;;;38873:28;38803:98;38796:105;;38722:187;;;:::o;7951:98::-;8004:7;8031:10;8024:17;;7951:98;:::o;46892:196::-;47034:2;47007:15;:24;47023:7;47007:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47072:7;47068:2;47052:28;;47061:5;47052:28;;;;;;;;;;;;46892:196;;;:::o;31143:92::-;31199:7;31143:92;:::o;41835:2130::-;41950:35;41988:21;42001:7;41988:12;:21::i;:::-;41950:59;;42048:4;42026:26;;:13;:18;;;:26;;;42022:67;;42061:28;;;;;;;;;;;;;;42022:67;42102:22;42144:4;42128:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;42165:36;42182:4;42188:12;:10;:12::i;:::-;42165:16;:36::i;:::-;42128:73;:126;;;;42242:12;:10;:12::i;:::-;42218:36;;:20;42230:7;42218:11;:20::i;:::-;:36;;;42128:126;42102:153;;42273:17;42268:66;;42299:35;;;;;;;;;;;;;;42268:66;42363:1;42349:16;;:2;:16;;;42345:52;;;42374:23;;;;;;;;;;;;;;42345:52;42410:43;42432:4;42438:2;42442:7;42451:1;42410:21;:43::i;:::-;42518:35;42535:1;42539:7;42548:4;42518:8;:35::i;:::-;42879:1;42849:12;:18;42862:4;42849:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42923:1;42895:12;:16;42908:2;42895:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42941:31;42975:11;:20;42987:7;42975:20;;;;;;;;;;;42941:54;;43026:2;43010:8;:13;;;:18;;;;;;;;;;;;;;;;;;43076:15;43043:8;:23;;;:49;;;;;;;;;;;;;;;;;;43344:19;43376:1;43366:7;:11;43344:33;;43392:31;43426:11;:24;43438:11;43426:24;;;;;;;;;;;43392:58;;43494:1;43469:27;;:8;:13;;;;;;;;;;;;:27;;;43465:384;;;43679:13;;43664:11;:28;43660:174;;43733:4;43717:8;:13;;;:20;;;;;;;;;;;;;;;;;;43786:13;:28;;;43760:8;:23;;;:54;;;;;;;;;;;;;;;;;;43660:174;43465:384;42824:1036;;;43896:7;43892:2;43877:27;;43886:4;43877:27;;;;;;;;;;;;43915:42;43936:4;43942:2;43946:7;43955:1;43915:20;:42::i;:::-;41939:2026;;41835:2130;;;:::o;33870:1109::-;33932:21;;:::i;:::-;33966:12;33981:7;33966:22;;34049:4;34030:15;:13;:15::i;:::-;:23;;:47;;;;;34064:13;;34057:4;:20;34030:47;34026:886;;;34098:31;34132:11;:17;34144:4;34132:17;;;;;;;;;;;34098:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34173:9;:16;;;34168:729;;34244:1;34218:28;;:9;:14;;;:28;;;34214:101;;34282:9;34275:16;;;;;;34214:101;34617:261;34624:4;34617:261;;;34657:6;;;;;;;;34702:11;:17;34714:4;34702:17;;;;;;;;;;;34690:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34776:1;34750:28;;:9;:14;;;:28;;;34746:109;;34818:9;34811:16;;;;;;34746:109;34617:261;;;34168:729;34079:833;34026:886;34940:31;;;;;;;;;;;;;;33870:1109;;;;:::o;32777:137::-;32838:7;32873:12;:19;32886:5;32873:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;32865:41;;32858:48;;32777:137;;;:::o;38917:104::-;38986:27;38996:2;39000:8;38986:27;;;;;;;;;;;;:9;:27::i;:::-;38917:104;;:::o;11928:326::-;11988:4;12245:1;12223:7;:19;;;:23;12216:30;;11928:326;;;:::o;47580:667::-;47743:4;47780:2;47764:36;;;47801:12;:10;:12::i;:::-;47815:4;47821:7;47830:5;47764:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47760:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48015:1;47998:6;:13;:18;47994:235;;;48044:40;;;;;;;;;;;;;;47994:235;48187:6;48181:13;48172:6;48168:2;48164:15;48157:38;47760:480;47893:45;;;47883:55;;;:6;:55;;;;47876:62;;;47580:667;;;;;;:::o;51847:100::-;51899:13;51932:7;51925:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51847:100;:::o;5513:723::-;5569:13;5799:1;5790:5;:10;5786:53;;;5817:10;;;;;;;;;;;;;;;;;;;;;5786:53;5849:12;5864:5;5849:20;;5880:14;5905:78;5920:1;5912:4;:9;5905:78;;5938:8;;;;;:::i;:::-;;;;5969:2;5961:10;;;;;:::i;:::-;;;5905:78;;;5993:19;6025:6;6015:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5993:39;;6043:154;6059:1;6050:5;:10;6043:154;;6087:1;6077:11;;;;;:::i;:::-;;;6154:2;6146:5;:10;;;;:::i;:::-;6133:2;:24;;;;:::i;:::-;6120:39;;6103:6;6110;6103:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6183:2;6174:11;;;;;:::i;:::-;;;6043:154;;;6221:6;6207:21;;;;;5513:723;;;;:::o;10497:191::-;10571:16;10590:6;;;;;;;;;;;10571:25;;10616:8;10607:6;;:17;;;;;;;;;;;;;;;;;;10671:8;10640:40;;10661:8;10640:40;;;;;;;;;;;;10560:128;10497:191;:::o;48895:159::-;;;;;:::o;49713:158::-;;;;;:::o;39384:163::-;39507:32;39513:2;39517:8;39527:5;39534:4;39507:5;:32::i;:::-;39384:163;;;:::o;39806:1775::-;39945:20;39968:13;;39945:36;;40010:1;39996:16;;:2;:16;;;39992:48;;;40021:19;;;;;;;;;;;;;;39992:48;40067:1;40055:8;:13;40051:44;;;40077:18;;;;;;;;;;;;;;40051:44;40108:61;40138:1;40142:2;40146:12;40160:8;40108:21;:61::i;:::-;40481:8;40446:12;:16;40459:2;40446:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40545:8;40505:12;:16;40518:2;40505:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40604:2;40571:11;:25;40583:12;40571:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40671:15;40621:11;:25;40633:12;40621:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;40704:20;40727:12;40704:35;;40754:11;40783:8;40768:12;:23;40754:37;;40812:4;:23;;;;;40820:15;:2;:13;;;:15::i;:::-;40812:23;40808:641;;;40856:314;40912:12;40908:2;40887:38;;40904:1;40887:38;;;;;;;;;;;;40953:69;40992:1;40996:2;41000:14;;;;;;41016:5;40953:30;:69::i;:::-;40948:174;;41058:40;;;;;;;;;;;;;;40948:174;41165:3;41149:12;:19;;40856:314;;41251:12;41234:13;;:29;41230:43;;41265:8;;;41230:43;40808:641;;;41314:120;41370:14;;;;;;41366:2;41345:40;;41362:1;41345:40;;;;;;;;;;;;41429:3;41413:12;:19;;41314:120;;40808:641;41479:12;41463:13;:28;;;;40421:1082;;41513:60;41542:1;41546:2;41550:12;41564:8;41513:20;:60::i;:::-;39934:1647;39806:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:118::-;10966:24;10984:5;10966:24;:::i;:::-;10961:3;10954:37;10879:118;;:::o;11003:589::-;11228:3;11250:95;11341:3;11332:6;11250:95;:::i;:::-;11243:102;;11362:95;11453:3;11444:6;11362:95;:::i;:::-;11355:102;;11474:92;11562:3;11553:6;11474:92;:::i;:::-;11467:99;;11583:3;11576:10;;11003:589;;;;;;:::o;11598:222::-;11691:4;11729:2;11718:9;11714:18;11706:26;;11742:71;11810:1;11799:9;11795:17;11786:6;11742:71;:::i;:::-;11598:222;;;;:::o;11826:640::-;12021:4;12059:3;12048:9;12044:19;12036:27;;12073:71;12141:1;12130:9;12126:17;12117:6;12073:71;:::i;:::-;12154:72;12222:2;12211:9;12207:18;12198:6;12154:72;:::i;:::-;12236;12304:2;12293:9;12289:18;12280:6;12236:72;:::i;:::-;12355:9;12349:4;12345:20;12340:2;12329:9;12325:18;12318:48;12383:76;12454:4;12445:6;12383:76;:::i;:::-;12375:84;;11826:640;;;;;;;:::o;12472:210::-;12559:4;12597:2;12586:9;12582:18;12574:26;;12610:65;12672:1;12661:9;12657:17;12648:6;12610:65;:::i;:::-;12472:210;;;;:::o;12688:313::-;12801:4;12839:2;12828:9;12824:18;12816:26;;12888:9;12882:4;12878:20;12874:1;12863:9;12859:17;12852:47;12916:78;12989:4;12980:6;12916:78;:::i;:::-;12908:86;;12688:313;;;;:::o;13007:419::-;13173:4;13211:2;13200:9;13196:18;13188:26;;13260:9;13254:4;13250:20;13246:1;13235:9;13231:17;13224:47;13288:131;13414:4;13288:131;:::i;:::-;13280:139;;13007:419;;;:::o;13432:::-;13598:4;13636:2;13625:9;13621:18;13613:26;;13685:9;13679:4;13675:20;13671:1;13660:9;13656:17;13649:47;13713:131;13839:4;13713:131;:::i;:::-;13705:139;;13432:419;;;:::o;13857:::-;14023:4;14061:2;14050:9;14046:18;14038:26;;14110:9;14104:4;14100:20;14096:1;14085:9;14081:17;14074:47;14138:131;14264:4;14138:131;:::i;:::-;14130:139;;13857:419;;;:::o;14282:::-;14448:4;14486:2;14475:9;14471:18;14463:26;;14535:9;14529:4;14525:20;14521:1;14510:9;14506:17;14499:47;14563:131;14689:4;14563:131;:::i;:::-;14555:139;;14282:419;;;:::o;14707:222::-;14800:4;14838:2;14827:9;14823:18;14815:26;;14851:71;14919:1;14908:9;14904:17;14895:6;14851:71;:::i;:::-;14707:222;;;;:::o;14935:129::-;14969:6;14996:20;;:::i;:::-;14986:30;;15025:33;15053:4;15045:6;15025:33;:::i;:::-;14935:129;;;:::o;15070:75::-;15103:6;15136:2;15130:9;15120:19;;15070:75;:::o;15151:307::-;15212:4;15302:18;15294:6;15291:30;15288:56;;;15324:18;;:::i;:::-;15288:56;15362:29;15384:6;15362:29;:::i;:::-;15354:37;;15446:4;15440;15436:15;15428:23;;15151:307;;;:::o;15464:308::-;15526:4;15616:18;15608:6;15605:30;15602:56;;;15638:18;;:::i;:::-;15602:56;15676:29;15698:6;15676:29;:::i;:::-;15668:37;;15760:4;15754;15750:15;15742:23;;15464:308;;;:::o;15778:141::-;15827:4;15850:3;15842:11;;15873:3;15870:1;15863:14;15907:4;15904:1;15894:18;15886:26;;15778:141;;;:::o;15925:98::-;15976:6;16010:5;16004:12;15994:22;;15925:98;;;:::o;16029:99::-;16081:6;16115:5;16109:12;16099:22;;16029:99;;;:::o;16134:168::-;16217:11;16251:6;16246:3;16239:19;16291:4;16286:3;16282:14;16267:29;;16134:168;;;;:::o;16308:169::-;16392:11;16426:6;16421:3;16414:19;16466:4;16461:3;16457:14;16442:29;;16308:169;;;;:::o;16483:148::-;16585:11;16622:3;16607:18;;16483:148;;;;:::o;16637:305::-;16677:3;16696:20;16714:1;16696:20;:::i;:::-;16691:25;;16730:20;16748:1;16730:20;:::i;:::-;16725:25;;16884:1;16816:66;16812:74;16809:1;16806:81;16803:107;;;16890:18;;:::i;:::-;16803:107;16934:1;16931;16927:9;16920:16;;16637:305;;;;:::o;16948:185::-;16988:1;17005:20;17023:1;17005:20;:::i;:::-;17000:25;;17039:20;17057:1;17039:20;:::i;:::-;17034:25;;17078:1;17068:35;;17083:18;;:::i;:::-;17068:35;17125:1;17122;17118:9;17113:14;;16948:185;;;;:::o;17139:348::-;17179:7;17202:20;17220:1;17202:20;:::i;:::-;17197:25;;17236:20;17254:1;17236:20;:::i;:::-;17231:25;;17424:1;17356:66;17352:74;17349:1;17346:81;17341:1;17334:9;17327:17;17323:105;17320:131;;;17431:18;;:::i;:::-;17320:131;17479:1;17476;17472:9;17461:20;;17139:348;;;;:::o;17493:191::-;17533:4;17553:20;17571:1;17553:20;:::i;:::-;17548:25;;17587:20;17605:1;17587:20;:::i;:::-;17582:25;;17626:1;17623;17620:8;17617:34;;;17631:18;;:::i;:::-;17617:34;17676:1;17673;17669:9;17661:17;;17493:191;;;;:::o;17690:96::-;17727:7;17756:24;17774:5;17756:24;:::i;:::-;17745:35;;17690:96;;;:::o;17792:90::-;17826:7;17869:5;17862:13;17855:21;17844:32;;17792:90;;;:::o;17888:149::-;17924:7;17964:66;17957:5;17953:78;17942:89;;17888:149;;;:::o;18043:126::-;18080:7;18120:42;18113:5;18109:54;18098:65;;18043:126;;;:::o;18175:77::-;18212:7;18241:5;18230:16;;18175:77;;;:::o;18258:154::-;18342:6;18337:3;18332;18319:30;18404:1;18395:6;18390:3;18386:16;18379:27;18258:154;;;:::o;18418:307::-;18486:1;18496:113;18510:6;18507:1;18504:13;18496:113;;;18595:1;18590:3;18586:11;18580:18;18576:1;18571:3;18567:11;18560:39;18532:2;18529:1;18525:10;18520:15;;18496:113;;;18627:6;18624:1;18621:13;18618:101;;;18707:1;18698:6;18693:3;18689:16;18682:27;18618:101;18467:258;18418:307;;;:::o;18731:320::-;18775:6;18812:1;18806:4;18802:12;18792:22;;18859:1;18853:4;18849:12;18880:18;18870:81;;18936:4;18928:6;18924:17;18914:27;;18870:81;18998:2;18990:6;18987:14;18967:18;18964:38;18961:84;;;19017:18;;:::i;:::-;18961:84;18782:269;18731:320;;;:::o;19057:281::-;19140:27;19162:4;19140:27;:::i;:::-;19132:6;19128:40;19270:6;19258:10;19255:22;19234:18;19222:10;19219:34;19216:62;19213:88;;;19281:18;;:::i;:::-;19213:88;19321:10;19317:2;19310:22;19100:238;19057:281;;:::o;19344:233::-;19383:3;19406:24;19424:5;19406:24;:::i;:::-;19397:33;;19452:66;19445:5;19442:77;19439:103;;;19522:18;;:::i;:::-;19439:103;19569:1;19562:5;19558:13;19551:20;;19344:233;;;:::o;19583:176::-;19615:1;19632:20;19650:1;19632:20;:::i;:::-;19627:25;;19666:20;19684:1;19666:20;:::i;:::-;19661:25;;19705:1;19695:35;;19710:18;;:::i;:::-;19695:35;19751:1;19748;19744:9;19739:14;;19583:176;;;;:::o;19765:180::-;19813:77;19810:1;19803:88;19910:4;19907:1;19900:15;19934:4;19931:1;19924:15;19951:180;19999:77;19996:1;19989:88;20096:4;20093:1;20086:15;20120:4;20117:1;20110:15;20137:180;20185:77;20182:1;20175:88;20282:4;20279:1;20272:15;20306:4;20303:1;20296:15;20323:180;20371:77;20368:1;20361:88;20468:4;20465:1;20458:15;20492:4;20489:1;20482:15;20509:180;20557:77;20554:1;20547:88;20654:4;20651:1;20644:15;20678:4;20675:1;20668:15;20695:117;20804:1;20801;20794:12;20818:117;20927:1;20924;20917:12;20941:117;21050:1;21047;21040:12;21064:117;21173:1;21170;21163:12;21187:102;21228:6;21279:2;21275:7;21270:2;21263:5;21259:14;21255:28;21245:38;;21187:102;;;:::o;21295:225::-;21435:34;21431:1;21423:6;21419:14;21412:58;21504:8;21499:2;21491:6;21487:15;21480:33;21295:225;:::o;21526:182::-;21666:34;21662:1;21654:6;21650:14;21643:58;21526:182;:::o;21714:234::-;21854:34;21850:1;21842:6;21838:14;21831:58;21923:17;21918:2;21910:6;21906:15;21899:42;21714:234;:::o;21954:181::-;22094:33;22090:1;22082:6;22078:14;22071:57;21954:181;:::o;22141:122::-;22214:24;22232:5;22214:24;:::i;:::-;22207:5;22204:35;22194:63;;22253:1;22250;22243:12;22194:63;22141:122;:::o;22269:116::-;22339:21;22354:5;22339:21;:::i;:::-;22332:5;22329:32;22319:60;;22375:1;22372;22365:12;22319:60;22269:116;:::o;22391:120::-;22463:23;22480:5;22463:23;:::i;:::-;22456:5;22453:34;22443:62;;22501:1;22498;22491:12;22443:62;22391:120;:::o;22517:122::-;22590:24;22608:5;22590:24;:::i;:::-;22583:5;22580:35;22570:63;;22629:1;22626;22619:12;22570:63;22517:122;:::o

Swarm Source

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