ETH Price: $3,465.20 (+2.10%)
Gas: 14 Gwei

Token

Moon Face (MOON)
 

Overview

Max Total Supply

2,232 MOON

Holders

1,496

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
42352.eth
Balance
2 MOON
0x58527dd426788a75d9d5ae426e9357cd04eb5134
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:
MoonFace

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 1 runs

Other Settings:
default evmVersion, MIT license
File 1 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 2 of 13 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// 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 3 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

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

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

File 4 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 5 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @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 6 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// 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 7 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// 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 8 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// 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 9 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 10 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// 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 11 of 13 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

/**
 * @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, IERC721A {
    using Address for address;
    using Strings for uint256;

    // 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 override 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) if (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) if(!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()) if(!_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;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 (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 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) 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;

            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 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 12 of 13 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    // 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;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

File 13 of 13 : MoonFace.sol
//1$      /$$  /$$$$$$   /$$$$$$  /$$   /$$       /$$$$$$$$ /$$$$$$   /$$$$$$  /2$$$$$$$
//$$$    /$$$ /$$__  $$ /$$__  $$| $$$ | $$      | $$_____//$$__  $$ /$$__  $$| $$_____/
//$$$$  /$0$$| $$  \ $$| $$  \ $$| $$$$| $$      | $$     | $$  \ $$| $$  \__/| $2      
//$$ $$/$$ $$| $$  | $$| $$  | $$| $$ $$ $$      | $$$$$  | $$$$$$$$| $$      | $$$$$   
//$$  $$$| $$| $$  | $$| $$  | $$| $$  $$$$      | $$__/  | $$__  $$| $$      | $$__/   
//$$\  $ | $$| $$  | $$| $$  | $$| $$\  $$$      | $$     | $$  | $$| $$    $$| $$      
//$$ \/  | $1|  $$$$$$/|  $$$$$$/| $$ \  $$      | $$     | $$  | $$|  $$$$$$/| $$$$$$$1
//_/     |__/ \______/  \______/ |__/  \__/      |__/     |__/  |__/ \______/ |________/
                                                                                        


//SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract MoonFace is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    uint256 public sentinentLife = 5555;
    uint256 public teamAmount = 555;
    uint256 public basePrice = 0.005 ether;
    uint256 public dontBeGreedy = 10;
    uint256 public anOfferYouCantResist = 1;

    bool public eventHorizon = false;
    bool public startSequence = false;

    string public baseURI = "";
    string public notRevealedUri = "ipfs://bafkreigt5xbzr7jxuqsonpveea2qqcpiayvvcchlfmwodtxf6vkia7lyue";
    string public uriSuffix = ".json";

    constructor() ERC721A("Moon Face", "MOON") {}

    /* MINT NFT */

    function teamMint(address to ,uint256 amount) external onlyOwner{
        uint256 supply = totalSupply();
        require(supply + amount <= sentinentLife,"Sold Out");
        require(amount <= teamAmount,'No team mints left');
        _safeMint(to,amount);
        teamAmount-=amount;
    }

    function terraform(uint256 amount) external payable nonReentrant{

        uint256 supply = totalSupply();
        uint256 minted = numberMinted(msg.sender);

        require(tx.origin == msg.sender, "The caller is another contract");
        require(startSequence,"Public Sale Is Not Active");
        require(supply + amount + teamAmount <= sentinentLife,"Public Mint Sold Out!");
        require(minted + amount <= dontBeGreedy,"You've Maxed Out Your Mints");

        uint256 price;
        uint256 tokenPrice = basePrice;
        
        if (minted > 0) {
            for (uint i = 1; i <= minted; i++) {
                if (i > anOfferYouCantResist) {
                    tokenPrice+=basePrice;
                }
            }
            for (uint i = 1; i <= amount; i++) {
                price+=tokenPrice;
                tokenPrice+=basePrice;
            }
        } else {
            for (uint i = 1; i <= amount; i++) {
                if (i > anOfferYouCantResist) {
                    price+=tokenPrice;
                    tokenPrice+=basePrice;
                }
            }
        }

            require(msg.value >= price, "Need to send more ETH.");
            
            _safeMint(msg.sender,amount);
    }
     /* END MINT */

    //SETTERS

    function setSentinentLife(uint256 _newSupply) external onlyOwner {
        require(_newSupply <= sentinentLife,"Can't Increase Supply");
        sentinentLife = _newSupply;
    }

    function setTeamAmount(uint256 _newSupply) external onlyOwner {
        require(_newSupply <= teamAmount,"Can't Increase Supply");
        teamAmount = _newSupply;
    }
    //@seekers - oY90XcdRt56

    function enterEventHorizon(bool _status) public onlyOwner {
        eventHorizon = _status;
    }

    function initiateStartSequence(bool _status) public onlyOwner {
        startSequence = _status;
    }

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

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

    function setUriSuffix(string memory _newSuffix) external onlyOwner{
        uriSuffix = _newSuffix;
    }

    function setBasePrice(uint256 _newPrice) external onlyOwner {
        basePrice = _newPrice;
    }

    function setGreediness(uint256 _newSupply) external onlyOwner {
        dontBeGreedy = _newSupply;
    }

    //END SETTERS

    // GETTERS

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function mintPrice(address who,uint256 amount) public view returns (uint256) {

        uint256 minted = numberMinted(who);

        uint256 price;
        uint256 tokenPrice = basePrice;
        if (minted > 0) {
            for (uint i = 1; i <= minted; i++) {
                if (i > anOfferYouCantResist) {
                    tokenPrice+=basePrice;
                }
            }
            for (uint i = 1; i <= amount; i++) {
                price+=tokenPrice;
                tokenPrice+=basePrice;
            }
        } else {
            for (uint i = 1; i <= amount; i++) {
                if (i > anOfferYouCantResist) {
                    price+=tokenPrice;
                    tokenPrice+=basePrice;
                }
            }
        }
        return price;
        
    }

    // END GETTERS
    // FACTORY

    function tokenURI(uint256 _tokenId)
        public
        view
        override(ERC721A)
        returns (string memory)
    {
        if (eventHorizon == false) {
            return notRevealedUri;
        }

        string memory currentBaseURI = baseURI;
        return
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(),uriSuffix))
                : "";
    }
    //@theCurious - Np539ZdrtNMq2

    function withdraw() public payable onlyOwner {
        uint256 balance = address(this).balance;

        (bool r1, ) = payable(0x5898E79586007aD656408C0A01330b934491c997).call{value: balance * 5000/10000}("");
        require(r1);
        (bool r2, ) = payable(0x4632Af21FAA0C8Fa52c0D8E3444F1d27bcc16F3A).call{value: balance * 5000/10000}("");
        require(r2);
    }
    
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 1
  },
  "evmVersion": "london",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

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":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","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":"URIQueryForNonexistentToken","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":[],"name":"anOfferYouCantResist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"basePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dontBeGreedy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"enterEventHorizon","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"eventHorizon","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"initiateStartSequence","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"who","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintPrice","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sentinentLife","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setBasePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setGreediness","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setSentinentLife","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setTeamAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSequence","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"teamAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"terraform","outputs":[],"stateMutability":"payable","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":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6115b3600a90815561022b600b556611c37937e08000600c55600d556001600e55600f805461ffff1916905560a0604081905260006080819052620000479160109162000188565b506040518060800160405280604281526020016200262b604291398051620000789160119160209091019062000188565b5060408051808201909152600580825264173539b7b760d91b6020909201918252620000a79160129162000188565b50348015620000b557600080fd5b5060408051808201825260098152684d6f6f6e204661636560b81b60208083019182528351808501909452600484526326a7a7a760e11b908401528151919291620001039160029162000188565b5080516200011990600390602084019062000188565b505060008055506200012b3362000136565b60016009556200026a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000196906200022e565b90600052602060002090601f016020900481019282620001ba576000855562000205565b82601f10620001d557805160ff191683800117855562000205565b8280016001018555821562000205579182015b8281111562000205578251825591602001919060010190620001e8565b506200021392915062000217565b5090565b5b8082111562000213576000815560010162000218565b600181811c908216806200024357607f821691505b6020821081036200026457634e487b7160e01b600052602260045260246000fd5b50919050565b6123b1806200027a6000396000f3fe6080604052600436106101d65760003560e01c806301ffc9a7146101db57806306bba03e1461021057806306fdde031461022f578063081812fc14610251578063081c8c4414610289578063095ea7b31461029e57806316ba10e0146102c057806318160ddd146102e057806323b872dd146103035780633ccfd60b1461032357806342842e0e1461032b5780634a000b051461034b5780635503a0e81461036b57806355f804b314610380578063626354f5146103a05780636352211e146103c05780636c0360eb146103e05780636ea65606146103f5578063704393851461040b57806370a0823114610421578063715018a614610441578063864e08bc1461045657806388004029146104765780638da5cb5b1461048c57806395d89b41146104a157806395e8eff2146104b6578063a22cb465146104d6578063a75f8626146104f6578063ab41205514610516578063add5a4fa14610529578063b88d4fde14610549578063bac7984a14610569578063bb942c7a14610589578063c7876ea41461059f578063c87b56dd146105b5578063dc33e681146105d5578063de4b3262146105f5578063e985e9c514610615578063f2c4ce1e1461065e578063f2fde38b1461067e578063fc3923f21461069e575b600080fd5b3480156101e757600080fd5b506101fb6101f6366004611dbb565b6106b8565b60405190151581526020015b60405180910390f35b34801561021c57600080fd5b50600f546101fb90610100900460ff1681565b34801561023b57600080fd5b5061024461070a565b6040516102079190611e30565b34801561025d57600080fd5b5061027161026c366004611e43565b61079c565b6040516001600160a01b039091168152602001610207565b34801561029557600080fd5b506102446107e0565b3480156102aa57600080fd5b506102be6102b9366004611e78565b61086e565b005b3480156102cc57600080fd5b506102be6102db366004611f2d565b6108f4565b3480156102ec57600080fd5b50600154600054035b604051908152602001610207565b34801561030f57600080fd5b506102be61031e366004611f75565b610943565b6102be61094e565b34801561033757600080fd5b506102be610346366004611f75565b610a7c565b34801561035757600080fd5b506102be610366366004611fc1565b610a97565b34801561037757600080fd5b50610244610ad9565b34801561038c57600080fd5b506102be61039b366004611f2d565b610ae6565b3480156103ac57600080fd5b506102be6103bb366004611e43565b610b28565b3480156103cc57600080fd5b506102716103db366004611e43565b610b5c565b3480156103ec57600080fd5b50610244610b6e565b34801561040157600080fd5b506102f5600a5481565b34801561041757600080fd5b506102f5600b5481565b34801561042d57600080fd5b506102f561043c366004611fdc565b610b7b565b34801561044d57600080fd5b506102be610bc9565b34801561046257600080fd5b506102be610471366004611e43565b610c04565b34801561048257600080fd5b506102f5600d5481565b34801561049857600080fd5b50610271610c5a565b3480156104ad57600080fd5b50610244610c69565b3480156104c257600080fd5b506102f56104d1366004611e78565b610c78565b3480156104e257600080fd5b506102be6104f1366004611ff7565b610d56565b34801561050257600080fd5b506102be610511366004611fc1565b610deb565b6102be610524366004611e43565b610e34565b34801561053557600080fd5b506102be610544366004611e78565b611129565b34801561055557600080fd5b506102be61056436600461202a565b61121d565b34801561057557600080fd5b506102be610584366004611e43565b61126e565b34801561059557600080fd5b506102f5600e5481565b3480156105ab57600080fd5b506102f5600c5481565b3480156105c157600080fd5b506102446105d0366004611e43565b6112c4565b3480156105e157600080fd5b506102f56105f0366004611fdc565b61144a565b34801561060157600080fd5b506102be610610366004611e43565b611478565b34801561062157600080fd5b506101fb6106303660046120a5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561066a57600080fd5b506102be610679366004611f2d565b6114ac565b34801561068a57600080fd5b506102be610699366004611fdc565b6114ee565b3480156106aa57600080fd5b50600f546101fb9060ff1681565b60006001600160e01b031982166380ac58cd60e01b14806106e957506001600160e01b03198216635b5e139f60e01b145b8061070457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610719906120cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610745906120cf565b80156107925780601f1061076757610100808354040283529160200191610792565b820191906000526020600020905b81548152906001019060200180831161077557829003601f168201915b5050505050905090565b60006107a78261158e565b6107c4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b601180546107ed906120cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610819906120cf565b80156108665780601f1061083b57610100808354040283529160200191610866565b820191906000526020600020905b81548152906001019060200180831161084957829003601f168201915b505050505081565b600061087982610b5c565b9050806001600160a01b0316836001600160a01b0316036108ad5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108e4576108c78133610630565b6108e4576040516367d9dca160e11b815260040160405180910390fd5b6108ef8383836115b9565b505050565b336108fd610c5a565b6001600160a01b03161461092c5760405162461bcd60e51b815260040161092390612109565b60405180910390fd5b805161093f906012906020840190611d0c565b5050565b6108ef838383611615565b33610957610c5a565b6001600160a01b03161461097d5760405162461bcd60e51b815260040161092390612109565b476000735898e79586007ad656408c0a01330b934491c9976127106109a484611388612154565b6109ae9190612189565b604051600081818185875af1925050503d80600081146109ea576040519150601f19603f3d011682016040523d82523d6000602084013e6109ef565b606091505b50509050806109fd57600080fd5b6000734632af21faa0c8fa52c0d8e3444f1d27bcc16f3a612710610a2385611388612154565b610a2d9190612189565b604051600081818185875af1925050503d8060008114610a69576040519150601f19603f3d011682016040523d82523d6000602084013e610a6e565b606091505b50509050806108ef57600080fd5b6108ef8383836040518060200160405280600081525061121d565b33610aa0610c5a565b6001600160a01b031614610ac65760405162461bcd60e51b815260040161092390612109565b600f805460ff1916911515919091179055565b601280546107ed906120cf565b33610aef610c5a565b6001600160a01b031614610b155760405162461bcd60e51b815260040161092390612109565b805161093f906010906020840190611d0c565b33610b31610c5a565b6001600160a01b031614610b575760405162461bcd60e51b815260040161092390612109565b600d55565b6000610b67826117ef565b5192915050565b601080546107ed906120cf565b60006001600160a01b038216610ba4576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b33610bd2610c5a565b6001600160a01b031614610bf85760405162461bcd60e51b815260040161092390612109565b610c026000611909565b565b33610c0d610c5a565b6001600160a01b031614610c335760405162461bcd60e51b815260040161092390612109565b600a54811115610c555760405162461bcd60e51b81526004016109239061219d565b600a55565b6008546001600160a01b031690565b606060038054610719906120cf565b600080610c848461144a565b600c549091506000908215610d085760015b838111610cc957600e54811115610cb757600c54610cb490836121cc565b91505b80610cc1816121e4565b915050610c96565b5060015b858111610d0257610cde82846121cc565b9250600c5482610cee91906121cc565b915080610cfa816121e4565b915050610ccd565b50610d4d565b60015b858111610d4b57600e54811115610d3957610d2682846121cc565b9250600c5482610d3691906121cc565b91505b80610d43816121e4565b915050610d0b565b505b50949350505050565b336001600160a01b03831603610d7f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b33610df4610c5a565b6001600160a01b031614610e1a5760405162461bcd60e51b815260040161092390612109565b600f80549115156101000261ff0019909216919091179055565b600260095403610e865760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610923565b60026009556000610e9a6001546000540390565b90506000610ea73361144a565b9050323314610ef85760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610923565b600f54610100900460ff16610f4b5760405162461bcd60e51b81526020600482015260196024820152785075626c69632053616c65204973204e6f742041637469766560381b6044820152606401610923565b600a54600b54610f5b85856121cc565b610f6591906121cc565b1115610fab5760405162461bcd60e51b81526020600482015260156024820152745075626c6963204d696e7420536f6c64204f75742160581b6044820152606401610923565b600d54610fb884836121cc565b11156110045760405162461bcd60e51b815260206004820152601b60248201527a596f75277665204d61786564204f757420596f7572204d696e747360281b6044820152606401610923565b600c5460009082156110855760015b83811161104657600e5481111561103457600c5461103190836121cc565b91505b8061103e816121e4565b915050611013565b5060015b85811161107f5761105b82846121cc565b9250600c548261106b91906121cc565b915080611077816121e4565b91505061104a565b506110ca565b60015b8581116110c857600e548111156110b6576110a382846121cc565b9250600c54826110b391906121cc565b91505b806110c0816121e4565b915050611088565b505b813410156111135760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610923565b61111d338661195b565b50506001600955505050565b33611132610c5a565b6001600160a01b0316146111585760405162461bcd60e51b815260040161092390612109565b60006111676001546000540390565b600a5490915061117783836121cc565b11156111b05760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610923565b600b548211156111f75760405162461bcd60e51b8152602060048201526012602482015271139bc81d19585b481b5a5b9d1cc81b19599d60721b6044820152606401610923565b611201838361195b565b81600b600082825461121391906121fd565b9091555050505050565b611228848484611615565b61123a836001600160a01b0316611975565b156112685761124b84848484611984565b611268576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b33611277610c5a565b6001600160a01b03161461129d5760405162461bcd60e51b815260040161092390612109565b600b548111156112bf5760405162461bcd60e51b81526004016109239061219d565b600b55565b600f5460609060ff16151560000361136857601180546112e3906120cf565b80601f016020809104026020016040519081016040528092919081815260200182805461130f906120cf565b801561135c5780601f106113315761010080835404028352916020019161135c565b820191906000526020600020905b81548152906001019060200180831161133f57829003601f168201915b50505050509050919050565b600060108054611377906120cf565b80601f01602080910402602001604051908101604052809291908181526020018280546113a3906120cf565b80156113f05780601f106113c5576101008083540402835291602001916113f0565b820191906000526020600020905b8154815290600101906020018083116113d357829003601f168201915b5050505050905060008151116114155760405180602001604052806000815250611443565b8061141f84611a70565b601260405160200161143393929190612214565b6040516020818303038152906040525b9392505050565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b0316610704565b33611481610c5a565b6001600160a01b0316146114a75760405162461bcd60e51b815260040161092390612109565b600c55565b336114b5610c5a565b6001600160a01b0316146114db5760405162461bcd60e51b815260040161092390612109565b805161093f906011906020840190611d0c565b336114f7610c5a565b6001600160a01b03161461151d5760405162461bcd60e51b815260040161092390612109565b6001600160a01b0381166115825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610923565b61158b81611909565b50565b6000805482108015610704575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611620826117ef565b9050836001600160a01b031681600001516001600160a01b0316146116575760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061167557506116758533610630565b806116905750336116858461079c565b6001600160a01b0316145b9050806116b057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166116d757604051633a954ecd60e21b815260040160405180910390fd5b6116e3600084876115b9565b6001600160a01b03858116600090815260056020908152604080832080546001600160401b03198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166117b65760005482146117b657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061235c83398151915260405160405180910390a45050505050565b6040805160608101825260008082526020820181905291810191909152816000548110156118f057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906118ee5780516001600160a01b031615611885579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156118e9579392505050565b611885565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61093f828260405180602001604052806000815250611b70565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119b99033908990889088906004016122d7565b6020604051808303816000875af19250505080156119f4575060408051601f3d908101601f191682019092526119f191810190612314565b60015b611a52573d808015611a22576040519150601f19603f3d011682016040523d82523d6000602084013e611a27565b606091505b508051600003611a4a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081600003611a975750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ac15780611aab816121e4565b9150611aba9050600a83612189565b9150611a9b565b6000816001600160401b03811115611adb57611adb611ea2565b6040519080825280601f01601f191660200182016040528015611b05576020820181803683370190505b5090505b8415611a6857611b1a6001836121fd565b9150611b27600a86612331565b611b329060306121cc565b60f81b818381518110611b4757611b47612345565b60200101906001600160f81b031916908160001a905350611b69600a86612189565b9450611b09565b6000546001600160a01b038416611b9957604051622e076360e81b815260040160405180910390fd5b82600003611bba5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546001600160801b031981166001600160401b038083168b018116918217600160401b6001600160401b031990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b4290931692909202919091179055819081850190611c5390611975565b15611cc9575b60405182906001600160a01b0388169060009060008051602061235c833981519152908290a4611c926000878480600101955087611984565b611caf576040516368d2bf6b60e11b815260040160405180910390fd5b808210611c59578260005414611cc457600080fd5b611cfc565b5b6040516001830192906001600160a01b0388169060009060008051602061235c833981519152908290a4808210611cca575b5060009081556112689085838684565b828054611d18906120cf565b90600052602060002090601f016020900481019282611d3a5760008555611d80565b82601f10611d5357805160ff1916838001178555611d80565b82800160010185558215611d80579182015b82811115611d80578251825591602001919060010190611d65565b50611d8c929150611d90565b5090565b5b80821115611d8c5760008155600101611d91565b6001600160e01b03198116811461158b57600080fd5b600060208284031215611dcd57600080fd5b813561144381611da5565b60005b83811015611df3578181015183820152602001611ddb565b838111156112685750506000910152565b60008151808452611e1c816020860160208601611dd8565b601f01601f19169290920160200192915050565b6020815260006114436020830184611e04565b600060208284031215611e5557600080fd5b5035919050565b80356001600160a01b0381168114611e7357600080fd5b919050565b60008060408385031215611e8b57600080fd5b611e9483611e5c565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611ed257611ed2611ea2565b604051601f8501601f19908116603f01168101908282118183101715611efa57611efa611ea2565b81604052809350858152868686011115611f1357600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f3f57600080fd5b81356001600160401b03811115611f5557600080fd5b8201601f81018413611f6657600080fd5b611a6884823560208401611eb8565b600080600060608486031215611f8a57600080fd5b611f9384611e5c565b9250611fa160208501611e5c565b9150604084013590509250925092565b80358015158114611e7357600080fd5b600060208284031215611fd357600080fd5b61144382611fb1565b600060208284031215611fee57600080fd5b61144382611e5c565b6000806040838503121561200a57600080fd5b61201383611e5c565b915061202160208401611fb1565b90509250929050565b6000806000806080858703121561204057600080fd5b61204985611e5c565b935061205760208601611e5c565b92506040850135915060608501356001600160401b0381111561207957600080fd5b8501601f8101871361208a57600080fd5b61209987823560208401611eb8565b91505092959194509250565b600080604083850312156120b857600080fd5b6120c183611e5c565b915061202160208401611e5c565b600181811c908216806120e357607f821691505b60208210810361210357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561216e5761216e61213e565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261219857612198612173565b500490565b60208082526015908201527443616e277420496e63726561736520537570706c7960581b604082015260600190565b600082198211156121df576121df61213e565b500190565b6000600182016121f6576121f661213e565b5060010190565b60008282101561220f5761220f61213e565b500390565b6000845160206122278285838a01611dd8565b85519184019161223a8184848a01611dd8565b8554920191600090600181811c908083168061225757607f831692505b858310810361227457634e487b7160e01b85526022600452602485fd5b8080156122885760018114612299576122c6565b60ff198516885283880195506122c6565b60008b81526020902060005b858110156122be5781548a8201529084019088016122a5565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061230a90830184611e04565b9695505050505050565b60006020828403121561232657600080fd5b815161144381611da5565b60008261234057612340612173565b500690565b634e487b7160e01b600052603260045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212208b3546b3ef79d53b0a3d8971e14b6615075d31b47dfdc2fb6e852b6ca7f83e4e64736f6c634300080d0033697066733a2f2f6261666b72656967743578627a72376a787571736f6e7076656561327171637069617976766363686c666d776f6474786636766b6961376c797565

Deployed Bytecode

0x6080604052600436106101d65760003560e01c806301ffc9a7146101db57806306bba03e1461021057806306fdde031461022f578063081812fc14610251578063081c8c4414610289578063095ea7b31461029e57806316ba10e0146102c057806318160ddd146102e057806323b872dd146103035780633ccfd60b1461032357806342842e0e1461032b5780634a000b051461034b5780635503a0e81461036b57806355f804b314610380578063626354f5146103a05780636352211e146103c05780636c0360eb146103e05780636ea65606146103f5578063704393851461040b57806370a0823114610421578063715018a614610441578063864e08bc1461045657806388004029146104765780638da5cb5b1461048c57806395d89b41146104a157806395e8eff2146104b6578063a22cb465146104d6578063a75f8626146104f6578063ab41205514610516578063add5a4fa14610529578063b88d4fde14610549578063bac7984a14610569578063bb942c7a14610589578063c7876ea41461059f578063c87b56dd146105b5578063dc33e681146105d5578063de4b3262146105f5578063e985e9c514610615578063f2c4ce1e1461065e578063f2fde38b1461067e578063fc3923f21461069e575b600080fd5b3480156101e757600080fd5b506101fb6101f6366004611dbb565b6106b8565b60405190151581526020015b60405180910390f35b34801561021c57600080fd5b50600f546101fb90610100900460ff1681565b34801561023b57600080fd5b5061024461070a565b6040516102079190611e30565b34801561025d57600080fd5b5061027161026c366004611e43565b61079c565b6040516001600160a01b039091168152602001610207565b34801561029557600080fd5b506102446107e0565b3480156102aa57600080fd5b506102be6102b9366004611e78565b61086e565b005b3480156102cc57600080fd5b506102be6102db366004611f2d565b6108f4565b3480156102ec57600080fd5b50600154600054035b604051908152602001610207565b34801561030f57600080fd5b506102be61031e366004611f75565b610943565b6102be61094e565b34801561033757600080fd5b506102be610346366004611f75565b610a7c565b34801561035757600080fd5b506102be610366366004611fc1565b610a97565b34801561037757600080fd5b50610244610ad9565b34801561038c57600080fd5b506102be61039b366004611f2d565b610ae6565b3480156103ac57600080fd5b506102be6103bb366004611e43565b610b28565b3480156103cc57600080fd5b506102716103db366004611e43565b610b5c565b3480156103ec57600080fd5b50610244610b6e565b34801561040157600080fd5b506102f5600a5481565b34801561041757600080fd5b506102f5600b5481565b34801561042d57600080fd5b506102f561043c366004611fdc565b610b7b565b34801561044d57600080fd5b506102be610bc9565b34801561046257600080fd5b506102be610471366004611e43565b610c04565b34801561048257600080fd5b506102f5600d5481565b34801561049857600080fd5b50610271610c5a565b3480156104ad57600080fd5b50610244610c69565b3480156104c257600080fd5b506102f56104d1366004611e78565b610c78565b3480156104e257600080fd5b506102be6104f1366004611ff7565b610d56565b34801561050257600080fd5b506102be610511366004611fc1565b610deb565b6102be610524366004611e43565b610e34565b34801561053557600080fd5b506102be610544366004611e78565b611129565b34801561055557600080fd5b506102be61056436600461202a565b61121d565b34801561057557600080fd5b506102be610584366004611e43565b61126e565b34801561059557600080fd5b506102f5600e5481565b3480156105ab57600080fd5b506102f5600c5481565b3480156105c157600080fd5b506102446105d0366004611e43565b6112c4565b3480156105e157600080fd5b506102f56105f0366004611fdc565b61144a565b34801561060157600080fd5b506102be610610366004611e43565b611478565b34801561062157600080fd5b506101fb6106303660046120a5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561066a57600080fd5b506102be610679366004611f2d565b6114ac565b34801561068a57600080fd5b506102be610699366004611fdc565b6114ee565b3480156106aa57600080fd5b50600f546101fb9060ff1681565b60006001600160e01b031982166380ac58cd60e01b14806106e957506001600160e01b03198216635b5e139f60e01b145b8061070457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610719906120cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610745906120cf565b80156107925780601f1061076757610100808354040283529160200191610792565b820191906000526020600020905b81548152906001019060200180831161077557829003601f168201915b5050505050905090565b60006107a78261158e565b6107c4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b601180546107ed906120cf565b80601f0160208091040260200160405190810160405280929190818152602001828054610819906120cf565b80156108665780601f1061083b57610100808354040283529160200191610866565b820191906000526020600020905b81548152906001019060200180831161084957829003601f168201915b505050505081565b600061087982610b5c565b9050806001600160a01b0316836001600160a01b0316036108ad5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146108e4576108c78133610630565b6108e4576040516367d9dca160e11b815260040160405180910390fd5b6108ef8383836115b9565b505050565b336108fd610c5a565b6001600160a01b03161461092c5760405162461bcd60e51b815260040161092390612109565b60405180910390fd5b805161093f906012906020840190611d0c565b5050565b6108ef838383611615565b33610957610c5a565b6001600160a01b03161461097d5760405162461bcd60e51b815260040161092390612109565b476000735898e79586007ad656408c0a01330b934491c9976127106109a484611388612154565b6109ae9190612189565b604051600081818185875af1925050503d80600081146109ea576040519150601f19603f3d011682016040523d82523d6000602084013e6109ef565b606091505b50509050806109fd57600080fd5b6000734632af21faa0c8fa52c0d8e3444f1d27bcc16f3a612710610a2385611388612154565b610a2d9190612189565b604051600081818185875af1925050503d8060008114610a69576040519150601f19603f3d011682016040523d82523d6000602084013e610a6e565b606091505b50509050806108ef57600080fd5b6108ef8383836040518060200160405280600081525061121d565b33610aa0610c5a565b6001600160a01b031614610ac65760405162461bcd60e51b815260040161092390612109565b600f805460ff1916911515919091179055565b601280546107ed906120cf565b33610aef610c5a565b6001600160a01b031614610b155760405162461bcd60e51b815260040161092390612109565b805161093f906010906020840190611d0c565b33610b31610c5a565b6001600160a01b031614610b575760405162461bcd60e51b815260040161092390612109565b600d55565b6000610b67826117ef565b5192915050565b601080546107ed906120cf565b60006001600160a01b038216610ba4576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b33610bd2610c5a565b6001600160a01b031614610bf85760405162461bcd60e51b815260040161092390612109565b610c026000611909565b565b33610c0d610c5a565b6001600160a01b031614610c335760405162461bcd60e51b815260040161092390612109565b600a54811115610c555760405162461bcd60e51b81526004016109239061219d565b600a55565b6008546001600160a01b031690565b606060038054610719906120cf565b600080610c848461144a565b600c549091506000908215610d085760015b838111610cc957600e54811115610cb757600c54610cb490836121cc565b91505b80610cc1816121e4565b915050610c96565b5060015b858111610d0257610cde82846121cc565b9250600c5482610cee91906121cc565b915080610cfa816121e4565b915050610ccd565b50610d4d565b60015b858111610d4b57600e54811115610d3957610d2682846121cc565b9250600c5482610d3691906121cc565b91505b80610d43816121e4565b915050610d0b565b505b50949350505050565b336001600160a01b03831603610d7f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b33610df4610c5a565b6001600160a01b031614610e1a5760405162461bcd60e51b815260040161092390612109565b600f80549115156101000261ff0019909216919091179055565b600260095403610e865760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610923565b60026009556000610e9a6001546000540390565b90506000610ea73361144a565b9050323314610ef85760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610923565b600f54610100900460ff16610f4b5760405162461bcd60e51b81526020600482015260196024820152785075626c69632053616c65204973204e6f742041637469766560381b6044820152606401610923565b600a54600b54610f5b85856121cc565b610f6591906121cc565b1115610fab5760405162461bcd60e51b81526020600482015260156024820152745075626c6963204d696e7420536f6c64204f75742160581b6044820152606401610923565b600d54610fb884836121cc565b11156110045760405162461bcd60e51b815260206004820152601b60248201527a596f75277665204d61786564204f757420596f7572204d696e747360281b6044820152606401610923565b600c5460009082156110855760015b83811161104657600e5481111561103457600c5461103190836121cc565b91505b8061103e816121e4565b915050611013565b5060015b85811161107f5761105b82846121cc565b9250600c548261106b91906121cc565b915080611077816121e4565b91505061104a565b506110ca565b60015b8581116110c857600e548111156110b6576110a382846121cc565b9250600c54826110b391906121cc565b91505b806110c0816121e4565b915050611088565b505b813410156111135760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610923565b61111d338661195b565b50506001600955505050565b33611132610c5a565b6001600160a01b0316146111585760405162461bcd60e51b815260040161092390612109565b60006111676001546000540390565b600a5490915061117783836121cc565b11156111b05760405162461bcd60e51b815260206004820152600860248201526714dbdb190813dd5d60c21b6044820152606401610923565b600b548211156111f75760405162461bcd60e51b8152602060048201526012602482015271139bc81d19585b481b5a5b9d1cc81b19599d60721b6044820152606401610923565b611201838361195b565b81600b600082825461121391906121fd565b9091555050505050565b611228848484611615565b61123a836001600160a01b0316611975565b156112685761124b84848484611984565b611268576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b33611277610c5a565b6001600160a01b03161461129d5760405162461bcd60e51b815260040161092390612109565b600b548111156112bf5760405162461bcd60e51b81526004016109239061219d565b600b55565b600f5460609060ff16151560000361136857601180546112e3906120cf565b80601f016020809104026020016040519081016040528092919081815260200182805461130f906120cf565b801561135c5780601f106113315761010080835404028352916020019161135c565b820191906000526020600020905b81548152906001019060200180831161133f57829003601f168201915b50505050509050919050565b600060108054611377906120cf565b80601f01602080910402602001604051908101604052809291908181526020018280546113a3906120cf565b80156113f05780601f106113c5576101008083540402835291602001916113f0565b820191906000526020600020905b8154815290600101906020018083116113d357829003601f168201915b5050505050905060008151116114155760405180602001604052806000815250611443565b8061141f84611a70565b601260405160200161143393929190612214565b6040516020818303038152906040525b9392505050565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b0316610704565b33611481610c5a565b6001600160a01b0316146114a75760405162461bcd60e51b815260040161092390612109565b600c55565b336114b5610c5a565b6001600160a01b0316146114db5760405162461bcd60e51b815260040161092390612109565b805161093f906011906020840190611d0c565b336114f7610c5a565b6001600160a01b03161461151d5760405162461bcd60e51b815260040161092390612109565b6001600160a01b0381166115825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610923565b61158b81611909565b50565b6000805482108015610704575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611620826117ef565b9050836001600160a01b031681600001516001600160a01b0316146116575760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061167557506116758533610630565b806116905750336116858461079c565b6001600160a01b0316145b9050806116b057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166116d757604051633a954ecd60e21b815260040160405180910390fd5b6116e3600084876115b9565b6001600160a01b03858116600090815260056020908152604080832080546001600160401b03198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166117b65760005482146117b657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b031660008051602061235c83398151915260405160405180910390a45050505050565b6040805160608101825260008082526020820181905291810191909152816000548110156118f057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906118ee5780516001600160a01b031615611885579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156118e9579392505050565b611885565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61093f828260405180602001604052806000815250611b70565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119b99033908990889088906004016122d7565b6020604051808303816000875af19250505080156119f4575060408051601f3d908101601f191682019092526119f191810190612314565b60015b611a52573d808015611a22576040519150601f19603f3d011682016040523d82523d6000602084013e611a27565b606091505b508051600003611a4a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081600003611a975750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ac15780611aab816121e4565b9150611aba9050600a83612189565b9150611a9b565b6000816001600160401b03811115611adb57611adb611ea2565b6040519080825280601f01601f191660200182016040528015611b05576020820181803683370190505b5090505b8415611a6857611b1a6001836121fd565b9150611b27600a86612331565b611b329060306121cc565b60f81b818381518110611b4757611b47612345565b60200101906001600160f81b031916908160001a905350611b69600a86612189565b9450611b09565b6000546001600160a01b038416611b9957604051622e076360e81b815260040160405180910390fd5b82600003611bba5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546001600160801b031981166001600160401b038083168b018116918217600160401b6001600160401b031990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b4290931692909202919091179055819081850190611c5390611975565b15611cc9575b60405182906001600160a01b0388169060009060008051602061235c833981519152908290a4611c926000878480600101955087611984565b611caf576040516368d2bf6b60e11b815260040160405180910390fd5b808210611c59578260005414611cc457600080fd5b611cfc565b5b6040516001830192906001600160a01b0388169060009060008051602061235c833981519152908290a4808210611cca575b5060009081556112689085838684565b828054611d18906120cf565b90600052602060002090601f016020900481019282611d3a5760008555611d80565b82601f10611d5357805160ff1916838001178555611d80565b82800160010185558215611d80579182015b82811115611d80578251825591602001919060010190611d65565b50611d8c929150611d90565b5090565b5b80821115611d8c5760008155600101611d91565b6001600160e01b03198116811461158b57600080fd5b600060208284031215611dcd57600080fd5b813561144381611da5565b60005b83811015611df3578181015183820152602001611ddb565b838111156112685750506000910152565b60008151808452611e1c816020860160208601611dd8565b601f01601f19169290920160200192915050565b6020815260006114436020830184611e04565b600060208284031215611e5557600080fd5b5035919050565b80356001600160a01b0381168114611e7357600080fd5b919050565b60008060408385031215611e8b57600080fd5b611e9483611e5c565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115611ed257611ed2611ea2565b604051601f8501601f19908116603f01168101908282118183101715611efa57611efa611ea2565b81604052809350858152868686011115611f1357600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f3f57600080fd5b81356001600160401b03811115611f5557600080fd5b8201601f81018413611f6657600080fd5b611a6884823560208401611eb8565b600080600060608486031215611f8a57600080fd5b611f9384611e5c565b9250611fa160208501611e5c565b9150604084013590509250925092565b80358015158114611e7357600080fd5b600060208284031215611fd357600080fd5b61144382611fb1565b600060208284031215611fee57600080fd5b61144382611e5c565b6000806040838503121561200a57600080fd5b61201383611e5c565b915061202160208401611fb1565b90509250929050565b6000806000806080858703121561204057600080fd5b61204985611e5c565b935061205760208601611e5c565b92506040850135915060608501356001600160401b0381111561207957600080fd5b8501601f8101871361208a57600080fd5b61209987823560208401611eb8565b91505092959194509250565b600080604083850312156120b857600080fd5b6120c183611e5c565b915061202160208401611e5c565b600181811c908216806120e357607f821691505b60208210810361210357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561216e5761216e61213e565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261219857612198612173565b500490565b60208082526015908201527443616e277420496e63726561736520537570706c7960581b604082015260600190565b600082198211156121df576121df61213e565b500190565b6000600182016121f6576121f661213e565b5060010190565b60008282101561220f5761220f61213e565b500390565b6000845160206122278285838a01611dd8565b85519184019161223a8184848a01611dd8565b8554920191600090600181811c908083168061225757607f831692505b858310810361227457634e487b7160e01b85526022600452602485fd5b8080156122885760018114612299576122c6565b60ff198516885283880195506122c6565b60008b81526020902060005b858110156122be5781548a8201529084019088016122a5565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061230a90830184611e04565b9695505050505050565b60006020828403121561232657600080fd5b815161144381611da5565b60008261234057612340612173565b500690565b634e487b7160e01b600052603260045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212208b3546b3ef79d53b0a3d8971e14b6615075d31b47dfdc2fb6e852b6ca7f83e4e64736f6c634300080d0033

Deployed Bytecode Sourcemap

1018:5205:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3057:300:10;;;;;;;;;;-1:-1:-1;3057:300:10;;;;;:::i;:::-;;:::i;:::-;;;565:14:13;;558:22;540:41;;528:2;513:18;3057:300:10;;;;;;;;1355:33:12;;;;;;;;;;-1:-1:-1;1355:33:12;;;;;;;;;;;6087:98:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;7544:200::-;;;;;;;;;;-1:-1:-1;7544:200:10;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:13;;;1674:51;;1662:2;1647:18;7544:200:10;1528:203:13;1427:99:12;;;;;;;;;;;;;:::i;7120:363:10:-;;;;;;;;;;-1:-1:-1;7120:363:10;;;;;:::i;:::-;;:::i;:::-;;4055:105:12;;;;;;;;;;-1:-1:-1;4055:105:12;;;;;:::i;:::-;;:::i;2319:306:10:-;;;;;;;;;;-1:-1:-1;2578:12:10;;2372:7;2562:13;:28;2319:306;;;3544:25:13;;;3532:2;3517:18;2319:306:10;3398:177:13;8383:164:10;;;;;;;;;;-1:-1:-1;8383:164:10;;;;;:::i;:::-;;:::i;5846:370:12:-;;;:::i;8613:179:10:-;;;;;;;;;;-1:-1:-1;8613:179:10;;;;;:::i;:::-;;:::i;3606:97:12:-;;;;;;;;;;-1:-1:-1;3606:97:12;;;;;:::i;:::-;;:::i;1532:33::-;;;;;;;;;;;;;:::i;3947:102::-;;;;;;;;;;-1:-1:-1;3947:102:12;;;;;:::i;:::-;;:::i;4270:104::-;;;;;;;;;;-1:-1:-1;4270:104:12;;;;;:::i;:::-;;:::i;5902:123:10:-;;;;;;;;;;-1:-1:-1;5902:123:10;;;;;:::i;:::-;;:::i;1395:26:12:-;;;;;;;;;;;;;:::i;1111:35::-;;;;;;;;;;;;;;;;1152:31;;;;;;;;;;;;;;;;3416:203:10;;;;;;;;;;-1:-1:-1;3416:203:10;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;3218:178:12:-;;;;;;;;;;-1:-1:-1;3218:178:12;;;;;:::i;:::-;;:::i;1233:32::-;;;;;;;;;;;;;;;;1036:85:0;;;;;;;;;;;;;:::i;6249:102:10:-;;;;;;;;;;;;;:::i;4532:797:12:-;;;;;;;;;;-1:-1:-1;4532:797:12;;;;;:::i;:::-;;:::i;7811:282:10:-;;;;;;;;;;-1:-1:-1;7811:282:10;;;;;:::i;:::-;;:::i;3709:102:12:-;;;;;;;;;;-1:-1:-1;3709:102:12;;;;;:::i;:::-;;:::i;1940:1237::-;;;;;;:::i;:::-;;:::i;1643:291::-;;;;;;;;;;-1:-1:-1;1643:291:12;;;;;:::i;:::-;;:::i;8858:360:10:-;;;;;;;;;;-1:-1:-1;8858:360:10;;;;;:::i;:::-;;:::i;3402:169:12:-;;;;;;;;;;-1:-1:-1;3402:169:12;;;;;:::i;:::-;;:::i;1271:39::-;;;;;;;;;;;;;;;;1189:38;;;;;;;;;;;;;;;;5370:436;;;;;;;;;;-1:-1:-1;5370:436:12;;;;;:::i;:::-;;:::i;4415:111::-;;;;;;;;;;-1:-1:-1;4415:111:12;;;;;:::i;:::-;;:::i;4166:98::-;;;;;;;;;;-1:-1:-1;4166:98:12;;;;;:::i;:::-;;:::i;8159:162:10:-;;;;;;;;;;-1:-1:-1;8159:162:10;;;;;:::i;:::-;-1:-1:-1;;;;;8279:25:10;;;8256:4;8279:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;8159:162;3817:124:12;;;;;;;;;;-1:-1:-1;3817:124:12;;;;;:::i;:::-;;:::i;1918:198:0:-;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;1317:32:12:-;;;;;;;;;;-1:-1:-1;1317:32:12;;;;;;;;3057:300:10;3159:4;-1:-1:-1;;;;;;3194:40:10;;-1:-1:-1;;;3194:40:10;;:104;;-1:-1:-1;;;;;;;3250:48:10;;-1:-1:-1;;;3250:48:10;3194:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:8;;;3314:36:10;3175:175;3057:300;-1:-1:-1;;3057:300:10:o;6087:98::-;6141:13;6173:5;6166:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6087:98;:::o;7544:200::-;7612:7;7636:16;7644:7;7636;:16::i;:::-;7631:64;;7661:34;;-1:-1:-1;;;7661:34:10;;;;;;;;;;;7631:64;-1:-1:-1;7713:24:10;;;;:15;:24;;;;;;-1:-1:-1;;;;;7713:24:10;;7544:200::o;1427:99:12:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7120:363:10:-;7192:13;7208:24;7224:7;7208:15;:24::i;:::-;7192:40;;7252:5;-1:-1:-1;;;;;7246:11:10;:2;-1:-1:-1;;;;;7246:11:10;;7242:48;;7266:24;;-1:-1:-1;;;7266:24:10;;;;;;;;;;;7242:48;719:10:6;-1:-1:-1;;;;;7305:21:10;;;7301:137;;7332:37;7349:5;719:10:6;8159:162:10;:::i;7332:37::-;7328:110;;7392:35;;-1:-1:-1;;;7392:35:10;;;;;;;;;;;7328:110;7448:28;7457:2;7461:7;7470:5;7448:8;:28::i;:::-;7182:301;7120:363;;:::o;4055:105:12:-;719:10:6;1248:7:0;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;;;;;;;;;4131:22:12;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;4055:105:::0;:::o;8383:164:10:-;8512:28;8522:4;8528:2;8532:7;8512:9;:28::i;5846:370:12:-;719:10:6;1248:7:0;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;5919:21:12::1;5901:15;5973:42;6044:5;6029:14;5919:21:::0;6039:4:::1;6029:14;:::i;:::-;:20;;;;:::i;:::-;5965:89;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5951:103;;;6072:2;6064:11;;;::::0;::::1;;6086:7;6107:42;6178:5;6163:14;:7:::0;6173:4:::1;6163:14;:::i;:::-;:20;;;;:::i;:::-;6099:89;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6085:103;;;6206:2;6198:11;;;::::0;::::1;8613:179:10::0;8746:39;8763:4;8769:2;8773:7;8746:39;;;;;;;;;;;;:16;:39::i;3606:97:12:-;719:10:6;1248:7:0;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3674:12:12::1;:22:::0;;-1:-1:-1;;3674:22:12::1;::::0;::::1;;::::0;;;::::1;::::0;;3606:97::o;1532:33::-;;;;;;;:::i;3947:102::-;719:10:6;1248:7:0;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;4021:21:12;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;4270:104::-:0;719:10:6;1248:7:0;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;4342:12:12::1;:25:::0;4270:104::o;5902:123:10:-;5966:7;5992:21;6005:7;5992:12;:21::i;:::-;:26;;5902:123;-1:-1:-1;;5902:123:10:o;1395:26:12:-;;;;;;;:::i;3416:203:10:-;3480:7;-1:-1:-1;;;;;3503:19:10;;3499:60;;3531:28;;-1:-1:-1;;;3531:28:10;;;;;;;;;;;3499:60;-1:-1:-1;;;;;;3584:19:10;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;3584:27:10;;3416:203::o;1668:101:0:-;719:10:6;1248:7:0;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;3218:178:12:-;719:10:6;1248:7:0;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3315:13:12::1;;3301:10;:27;;3293:60;;;;-1:-1:-1::0;;;3293:60:12::1;;;;;;;:::i;:::-;3363:13;:26:::0;3218:178::o;1036:85:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;;1036:85::o;6249:102:10:-;6305:13;6337:7;6330:14;;;;;:::i;4532:797:12:-;4600:7;4620:14;4637:17;4650:3;4637:12;:17::i;:::-;4709:9;;4620:34;;-1:-1:-1;4665:13:12;;4732:10;;4728:564;;4772:1;4758:159;4780:6;4775:1;:11;4758:159;;4819:20;;4815:1;:24;4811:92;;;4875:9;;4863:21;;;;:::i;:::-;;;4811:92;4788:3;;;;:::i;:::-;;;;4758:159;;;-1:-1:-1;4944:1:12;4930:124;4952:6;4947:1;:11;4930:124;;4983:17;4990:10;4983:17;;:::i;:::-;;;5030:9;;5018:21;;;;;:::i;:::-;;-1:-1:-1;4960:3:12;;;;:::i;:::-;;;;4930:124;;;;4728:564;;;5098:1;5084:198;5106:6;5101:1;:11;5084:198;;5145:20;;5141:1;:24;5137:131;;;5189:17;5196:10;5189:17;;:::i;:::-;;;5240:9;;5228:21;;;;;:::i;:::-;;;5137:131;5114:3;;;;:::i;:::-;;;;5084:198;;;;4728:564;-1:-1:-1;5308:5:12;4532:797;-1:-1:-1;;;;4532:797:12:o;7811:282:10:-;719:10:6;-1:-1:-1;;;;;7909:24:10;;;7905:54;;7942:17;;-1:-1:-1;;;7942:17:10;;;;;;;;;;;7905:54;719:10:6;7970:32:10;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7970:42:10;;;;;;;;;;;;:53;;-1:-1:-1;;7970:53:10;;;;;;;;;;8038:48;;540:41:13;;;7970:42:10;;719:10:6;8038:48:10;;513:18:13;8038:48:10;;;;;;;7811:282;;:::o;3709:102:12:-;719:10:6;1248:7:0;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3781:13:12::1;:23:::0;;;::::1;;;;-1:-1:-1::0;;3781:23:12;;::::1;::::0;;;::::1;::::0;;3709:102::o;1940:1237::-;1744:1:1;2325:7;;:19;2317:63;;;;-1:-1:-1;;;2317:63:1;;7993:2:13;2317:63:1;;;7975:21:13;8032:2;8012:18;;;8005:30;8071:33;8051:18;;;8044:61;8122:18;;2317:63:1;7791:355:13;2317:63:1;1744:1;2455:7;:18;2015:14:12::1;2032:13;2578:12:10::0;;2372:7;2562:13;:28;;2319:306;2032:13:12::1;2015:30;;2055:14;2072:24;2085:10;2072:12;:24::i;:::-;2055:41:::0;-1:-1:-1;2115:9:12::1;2128:10;2115:23;2107:66;;;::::0;-1:-1:-1;;;2107:66:12;;8353:2:13;2107:66:12::1;::::0;::::1;8335:21:13::0;8392:2;8372:18;;;8365:30;8431:32;8411:18;;;8404:60;8481:18;;2107:66:12::1;8151:354:13::0;2107:66:12::1;2191:13;::::0;::::1;::::0;::::1;;;2183:50;;;::::0;-1:-1:-1;;;2183:50:12;;8712:2:13;2183:50:12::1;::::0;::::1;8694:21:13::0;8751:2;8731:18;;;8724:30;-1:-1:-1;;;8770:18:13;;;8763:55;8835:18;;2183:50:12::1;8510:349:13::0;2183:50:12::1;2283:13;::::0;2269:10:::1;::::0;2251:15:::1;2260:6:::0;2251;:15:::1;:::i;:::-;:28;;;;:::i;:::-;:45;;2243:78;;;::::0;-1:-1:-1;;;2243:78:12;;9066:2:13;2243:78:12::1;::::0;::::1;9048:21:13::0;9105:2;9085:18;;;9078:30;-1:-1:-1;;;9124:18:13;;;9117:51;9185:18;;2243:78:12::1;8864:345:13::0;2243:78:12::1;2358:12;::::0;2339:15:::1;2348:6:::0;2339;:15:::1;:::i;:::-;:31;;2331:70;;;::::0;-1:-1:-1;;;2331:70:12;;9416:2:13;2331:70:12::1;::::0;::::1;9398:21:13::0;9455:2;9435:18;;;9428:30;-1:-1:-1;;;9474:18:13;;;9467:57;9541:18;;2331:70:12::1;9214:351:13::0;2331:70:12::1;2456:9;::::0;2412:13:::1;::::0;2488:10;;2484:564:::1;;2528:1;2514:159;2536:6;2531:1;:11;2514:159;;2575:20;;2571:1;:24;2567:92;;;2631:9;::::0;2619:21:::1;::::0;;::::1;:::i;:::-;;;2567:92;2544:3:::0;::::1;::::0;::::1;:::i;:::-;;;;2514:159;;;-1:-1:-1::0;2700:1:12::1;2686:124;2708:6;2703:1;:11;2686:124;;2739:17;2746:10:::0;2739:17;::::1;:::i;:::-;;;2786:9;;2774:21;;;;;:::i;:::-;::::0;-1:-1:-1;2716:3:12;::::1;::::0;::::1;:::i;:::-;;;;2686:124;;;;2484:564;;;2854:1;2840:198;2862:6;2857:1;:11;2840:198;;2901:20;;2897:1;:24;2893:131;;;2945:17;2952:10:::0;2945:17;::::1;:::i;:::-;;;2996:9;;2984:21;;;;;:::i;:::-;;;2893:131;2870:3:::0;::::1;::::0;::::1;:::i;:::-;;;;2840:198;;;;2484:564;3083:5;3070:9;:18;;3062:53;;;::::0;-1:-1:-1;;;3062:53:12;;9772:2:13;3062:53:12::1;::::0;::::1;9754:21:13::0;9811:2;9791:18;;;9784:30;-1:-1:-1;;;9830:18:13;;;9823:52;9892:18;;3062:53:12::1;9570:346:13::0;3062:53:12::1;3142:28;3152:10;3163:6;3142:9;:28::i;:::-;-1:-1:-1::0;;1701:1:1;2628:7;:22;-1:-1:-1;;;1940:1237:12:o;1643:291::-;719:10:6;1248:7:0;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1717:14:12::1;1734:13;2578:12:10::0;;2372:7;2562:13;:28;;2319:306;1734:13:12::1;1784;::::0;1717:30;;-1:-1:-1;1765:15:12::1;1774:6:::0;1717:30;1765:15:::1;:::i;:::-;:32;;1757:52;;;::::0;-1:-1:-1;;;1757:52:12;;10123:2:13;1757:52:12::1;::::0;::::1;10105:21:13::0;10162:1;10142:18;;;10135:29;-1:-1:-1;;;10180:18:13;;;10173:38;10228:18;;1757:52:12::1;9921:331:13::0;1757:52:12::1;1837:10;;1827:6;:20;;1819:50;;;::::0;-1:-1:-1;;;1819:50:12;;10459:2:13;1819:50:12::1;::::0;::::1;10441:21:13::0;10498:2;10478:18;;;10471:30;-1:-1:-1;;;10517:18:13;;;10510:48;10575:18;;1819:50:12::1;10257:342:13::0;1819:50:12::1;1879:20;1889:2;1892:6;1879:9;:20::i;:::-;1921:6;1909:10;;:18;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;1643:291:12:o;8858:360:10:-;9019:28;9029:4;9035:2;9039:7;9019:9;:28::i;:::-;9061:15;:2;-1:-1:-1;;;;;9061:13:10;;:15::i;:::-;9057:155;;;9082:56;9113:4;9119:2;9123:7;9132:5;9082:30;:56::i;:::-;9078:134;;9161:40;;-1:-1:-1;;;9161:40:10;;;;;;;;;;;9078:134;8858:360;;;;:::o;3402:169:12:-;719:10:6;1248:7:0;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3496:10:12::1;;3482;:24;;3474:57;;;;-1:-1:-1::0;;;3474:57:12::1;;;;;;;:::i;:::-;3541:10;:23:::0;3402:169::o;5370:436::-;5510:12;;5477:13;;5510:12;;:21;;:12;:21;5506:73;;5554:14;5547:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5370:436;;;:::o;5506:73::-;5589:28;5620:7;5589:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5687:1;5662:14;5656:28;:32;:143;;;;;;;;;;;;;;;;;5731:14;5747:19;:8;:17;:19::i;:::-;5767:9;5714:63;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5656:143;5637:162;5370:436;-1:-1:-1;;;5370:436:12:o;4415:111::-;-1:-1:-1;;;;;3791:19:10;;4473:7:12;3791:19:10;;;:12;:19;;;;;:32;-1:-1:-1;;;3791:32:10;;-1:-1:-1;;;;;3791:32:10;4499:20:12;3696:135:10;4166:98:12;719:10:6;1248:7:0;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;4236:9:12::1;:21:::0;4166:98::o;3817:124::-;719:10:6;1248:7:0;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3902:32:12;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;1918:198:0:-:0;719:10:6;1248:7:0;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;12594:2:13;1998:73:0::1;::::0;::::1;12576:21:13::0;12633:2;12613:18;;;12606:30;12672:34;12652:18;;;12645:62;-1:-1:-1;;;12723:18:13;;;12716:36;12769:19;;1998:73:0::1;12392:402:13::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;9464:172:10:-;9521:4;9584:13;;9574:7;:23;9544:85;;;;-1:-1:-1;;9602:20:10;;;;:11;:20;;;;;:27;-1:-1:-1;;;9602:27:10;;;;9601:28;;9464:172::o;18445:189::-;18555:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;18555:29:10;-1:-1:-1;;;;;18555:29:10;;;;;;;;;18599:28;;18555:24;;18599:28;;;;;;;18445:189;;;:::o;13520:2082::-;13630:35;13668:21;13681:7;13668:12;:21::i;:::-;13630:59;;13726:4;-1:-1:-1;;;;;13704:26:10;:13;:18;;;-1:-1:-1;;;;;13704:26:10;;13700:67;;13739:28;;-1:-1:-1;;;13739:28:10;;;;;;;;;;;13700:67;13778:22;719:10:6;-1:-1:-1;;;;;13804:20:10;;;;:72;;-1:-1:-1;13840:36:10;13857:4;719:10:6;8159:162:10;:::i;13840:36::-;13804:124;;;-1:-1:-1;719:10:6;13892:20:10;13904:7;13892:11;:20::i;:::-;-1:-1:-1;;;;;13892:36:10;;13804:124;13778:151;;13945:17;13940:66;;13971:35;;-1:-1:-1;;;13971:35:10;;;;;;;;;;;13940:66;-1:-1:-1;;;;;14020:16:10;;14016:52;;14045:23;;-1:-1:-1;;;14045:23:10;;;;;;;;;;;14016:52;14184:35;14201:1;14205:7;14214:4;14184:8;:35::i;:::-;-1:-1:-1;;;;;14509:18:10;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;14509:31:10;;;-1:-1:-1;;;;;14509:31:10;;;-1:-1:-1;;14509:31:10;;;;;;;14554:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;14554:29:10;;;;;;;;;;;14632:20;;;:11;:20;;;;;;14666:18;;-1:-1:-1;;;;;;14698:49:10;;;;-1:-1:-1;;;14731:15:10;14698:49;;;;;;;;;;15017:11;;15076:24;;;;;15118:13;;14632:20;;15076:24;;15118:13;15114:377;;15325:13;;15310:11;:28;15306:171;;15362:20;;15430:28;;;;-1:-1:-1;;;;;15404:54:10;-1:-1:-1;;;15404:54:10;-1:-1:-1;;;;;;15404:54:10;;;-1:-1:-1;;;;;15362:20:10;;15404:54;;;;15306:171;14485:1016;;;15535:7;15531:2;-1:-1:-1;;;;;15516:27:10;15525:4;-1:-1:-1;;;;;15516:27:10;-1:-1:-1;;;;;;;;;;;15516:27:10;;;;;;;;;13620:1982;;13520:2082;;;:::o;4759:1086::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;4869:7:10;4951:13;;4944:4;:20;4940:841;;;4984:31;5018:17;;;:11;:17;;;;;;;;;4984:51;;;;;;;;;-1:-1:-1;;;;;4984:51:10;;;;-1:-1:-1;;;4984:51:10;;-1:-1:-1;;;;;4984:51:10;;;;;;;;-1:-1:-1;;;4984:51:10;;;;;;;;;;;;;;5053:714;;5102:14;;-1:-1:-1;;;;;5102:28:10;;5098:99;;5165:9;4759:1086;-1:-1:-1;;;4759:1086:10:o;5098:99::-;-1:-1:-1;;;5533:6:10;5577:17;;;;:11;:17;;;;;;;;;5565:29;;;;;;;;;-1:-1:-1;;;;;5565:29:10;;;;;-1:-1:-1;;;5565:29:10;;-1:-1:-1;;;;;5565:29:10;;;;;;;;-1:-1:-1;;;5565:29:10;;;;;;;;;;;;;5624:28;5620:107;;5691:9;4759:1086;-1:-1:-1;;;4759:1086:10:o;5620:107::-;5494:255;;;4966:815;4940:841;5807:31;;-1:-1:-1;;;5807:31:10;;;;;;;;;;;2270:187:0;2362:6;;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;;;;;2378:17:0;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2333:124;2270:187;:::o;9715:102:10:-;9783:27;9793:2;9797:8;9783:27;;;;;;;;;;;;:9;:27::i;1175:320:5:-;-1:-1:-1;;;;;1465:19:5;;:23;;;1175:320::o;19115:650:10:-;19293:72;;-1:-1:-1;;;19293:72:10;;19273:4;;-1:-1:-1;;;;;19293:36:10;;;;;:72;;719:10:6;;19344:4:10;;19350:7;;19359:5;;19293:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19293:72:10;;;;;;;;-1:-1:-1;;19293:72:10;;;;;;;;;;;;:::i;:::-;;;19289:470;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19524:6;:13;19541:1;19524:18;19520:229;;19569:40;;-1:-1:-1;;;19569:40:10;;;;;;;;;;;19520:229;19709:6;19703:13;19694:6;19690:2;19686:15;19679:38;19289:470;-1:-1:-1;;;;;;19411:55:10;-1:-1:-1;;;19411:55:10;;-1:-1:-1;19289:470:10;19115:650;;;;;;:::o;328:703:7:-;384:13;601:5;610:1;601:10;597:51;;-1:-1:-1;;627:10:7;;;;;;;;;;;;-1:-1:-1;;;627:10:7;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:7;;-1:-1:-1;773:2:7;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;-1:-1:-1;;;;;817:17:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:7;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:7;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:7;;;;;;;;-1:-1:-1;972:11:7;981:2;972:11;;:::i;:::-;;;844:150;;10177:1708:10;10295:20;10318:13;-1:-1:-1;;;;;10345:16:10;;10341:48;;10370:19;;-1:-1:-1;;;10370:19:10;;;;;;;;;;;10341:48;10403:8;10415:1;10403:13;10399:44;;10425:18;;-1:-1:-1;;;10425:18:10;;;;;;;;;;;10399:44;-1:-1:-1;;;;;10786:16:10;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;10844:49:10;;-1:-1:-1;;;;;10786:44:10;;;;;;;10844:49;;;-1:-1:-1;;;;;;;;;10786:44:10;;;;;;10844:49;;;;;;;;;;;;;;;;10908:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;10957:66:10;;;-1:-1:-1;;;11007:15:10;10957:66;;;;;;;;;;;;;10908:25;;11101:23;;;;11143:15;;:13;:15::i;:::-;11139:618;;;11178:308;11208:38;;11233:12;;-1:-1:-1;;;;;11208:38:10;;;11225:1;;-1:-1:-1;;;;;;;;;;;11208:38:10;11225:1;;11208:38;11273:69;11312:1;11316:2;11320:14;;;;;;11336:5;11273:30;:69::i;:::-;11268:172;;11377:40;;-1:-1:-1;;;11377:40:10;;;;;;;;;;;11268:172;11481:3;11466:12;:18;11178:308;;11565:12;11548:13;;:29;11544:43;;11579:8;;;11544:43;11139:618;;;11626:117;11656:40;;11681:14;;;;;-1:-1:-1;;;;;11656:40:10;;;11673:1;;-1:-1:-1;;;;;;;;;;;11656:40:10;11673:1;;11656:40;11738:3;11723:12;:18;11626:117;;11139:618;-1:-1:-1;11770:13:10;:28;;;11818:60;;11851:2;11855:12;11869:8;11818:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:13;-1:-1:-1;;;;;;88:32:13;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:13;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:13;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:13:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:13;;1343:180;-1:-1:-1;1343:180:13:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:13;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:13:o;2173:127::-;2234:10;2229:3;2225:20;2222:1;2215:31;2265:4;2262:1;2255:15;2289:4;2286:1;2279:15;2305:632;2370:5;-1:-1:-1;;;;;2430:14:13;;;2427:40;;;2447:18;;:::i;:::-;2522:2;2516:9;2490:2;2576:15;;-1:-1:-1;;2572:24:13;;;2598:2;2568:33;2564:42;2552:55;;;2622:18;;;2642:22;;;2619:46;2616:72;;;2668:18;;:::i;:::-;2708:10;2704:2;2697:22;2737:6;2728:15;;2767:6;2759;2752:22;2807:3;2798:6;2793:3;2789:16;2786:25;2783:45;;;2824:1;2821;2814:12;2783:45;2874:6;2869:3;2862:4;2854:6;2850:17;2837:44;2929:1;2922:4;2913:6;2905;2901:19;2897:30;2890:41;;;;2305:632;;;;;:::o;2942:451::-;3011:6;3064:2;3052:9;3043:7;3039:23;3035:32;3032:52;;;3080:1;3077;3070:12;3032:52;3107:23;;-1:-1:-1;;;;;3142:30:13;;3139:50;;;3185:1;3182;3175:12;3139:50;3208:22;;3261:4;3253:13;;3249:27;-1:-1:-1;3239:55:13;;3290:1;3287;3280:12;3239:55;3313:74;3379:7;3374:2;3361:16;3356:2;3352;3348:11;3313:74;:::i;3580:328::-;3657:6;3665;3673;3726:2;3714:9;3705:7;3701:23;3697:32;3694:52;;;3742:1;3739;3732:12;3694:52;3765:29;3784:9;3765:29;:::i;:::-;3755:39;;3813:38;3847:2;3836:9;3832:18;3813:38;:::i;:::-;3803:48;;3898:2;3887:9;3883:18;3870:32;3860:42;;3580:328;;;;;:::o;3913:160::-;3978:20;;4034:13;;4027:21;4017:32;;4007:60;;4063:1;4060;4053:12;4078:180;4134:6;4187:2;4175:9;4166:7;4162:23;4158:32;4155:52;;;4203:1;4200;4193:12;4155:52;4226:26;4242:9;4226:26;:::i;4263:186::-;4322:6;4375:2;4363:9;4354:7;4350:23;4346:32;4343:52;;;4391:1;4388;4381:12;4343:52;4414:29;4433:9;4414:29;:::i;4454:254::-;4519:6;4527;4580:2;4568:9;4559:7;4555:23;4551:32;4548:52;;;4596:1;4593;4586:12;4548:52;4619:29;4638:9;4619:29;:::i;:::-;4609:39;;4667:35;4698:2;4687:9;4683:18;4667:35;:::i;:::-;4657:45;;4454:254;;;;;:::o;4713:667::-;4808:6;4816;4824;4832;4885:3;4873:9;4864:7;4860:23;4856:33;4853:53;;;4902:1;4899;4892:12;4853:53;4925:29;4944:9;4925:29;:::i;:::-;4915:39;;4973:38;5007:2;4996:9;4992:18;4973:38;:::i;:::-;4963:48;-1:-1:-1;5058:2:13;5043:18;;5030:32;;-1:-1:-1;5113:2:13;5098:18;;5085:32;-1:-1:-1;;;;;5129:30:13;;5126:50;;;5172:1;5169;5162:12;5126:50;5195:22;;5248:4;5240:13;;5236:27;-1:-1:-1;5226:55:13;;5277:1;5274;5267:12;5226:55;5300:74;5366:7;5361:2;5348:16;5343:2;5339;5335:11;5300:74;:::i;:::-;5290:84;;;4713:667;;;;;;;:::o;5385:260::-;5453:6;5461;5514:2;5502:9;5493:7;5489:23;5485:32;5482:52;;;5530:1;5527;5520:12;5482:52;5553:29;5572:9;5553:29;:::i;:::-;5543:39;;5601:38;5635:2;5624:9;5620:18;5601:38;:::i;5650:380::-;5729:1;5725:12;;;;5772;;;5793:61;;5847:4;5839:6;5835:17;5825:27;;5793:61;5900:2;5892:6;5889:14;5869:18;5866:38;5863:161;;5946:10;5941:3;5937:20;5934:1;5927:31;5981:4;5978:1;5971:15;6009:4;6006:1;5999:15;5863:161;;5650:380;;;:::o;6035:356::-;6237:2;6219:21;;;6256:18;;;6249:30;6315:34;6310:2;6295:18;;6288:62;6382:2;6367:18;;6035:356::o;6396:127::-;6457:10;6452:3;6448:20;6445:1;6438:31;6488:4;6485:1;6478:15;6512:4;6509:1;6502:15;6528:168;6568:7;6634:1;6630;6626:6;6622:14;6619:1;6616:21;6611:1;6604:9;6597:17;6593:45;6590:71;;;6641:18;;:::i;:::-;-1:-1:-1;6681:9:13;;6528:168::o;6701:127::-;6762:10;6757:3;6753:20;6750:1;6743:31;6793:4;6790:1;6783:15;6817:4;6814:1;6807:15;6833:120;6873:1;6899;6889:35;;6904:18;;:::i;:::-;-1:-1:-1;6938:9:13;;6833:120::o;7168:345::-;7370:2;7352:21;;;7409:2;7389:18;;;7382:30;-1:-1:-1;;;7443:2:13;7428:18;;7421:51;7504:2;7489:18;;7168:345::o;7518:128::-;7558:3;7589:1;7585:6;7582:1;7579:13;7576:39;;;7595:18;;:::i;:::-;-1:-1:-1;7631:9:13;;7518:128::o;7651:135::-;7690:3;7711:17;;;7708:43;;7731:18;;:::i;:::-;-1:-1:-1;7778:1:13;7767:13;;7651:135::o;10604:125::-;10644:4;10672:1;10669;10666:8;10663:34;;;10677:18;;:::i;:::-;-1:-1:-1;10714:9:13;;10604:125::o;10860:1527::-;11084:3;11122:6;11116:13;11148:4;11161:51;11205:6;11200:3;11195:2;11187:6;11183:15;11161:51;:::i;:::-;11275:13;;11234:16;;;;11297:55;11275:13;11234:16;11319:15;;;11297:55;:::i;:::-;11441:13;;11374:20;;;11414:1;;11501;11523:18;;;;11576;;;;11603:93;;11681:4;11671:8;11667:19;11655:31;;11603:93;11744:2;11734:8;11731:16;11711:18;11708:40;11705:167;;-1:-1:-1;;;11771:33:13;;11827:4;11824:1;11817:15;11857:4;11778:3;11845:17;11705:167;11888:18;11915:110;;;;12039:1;12034:328;;;;11881:481;;11915:110;-1:-1:-1;;11950:24:13;;11936:39;;11995:20;;;;-1:-1:-1;11915:110:13;;12034:328;10807:1;10800:14;;;10844:4;10831:18;;12129:1;12143:169;12157:8;12154:1;12151:15;12143:169;;;12239:14;;12224:13;;;12217:37;12282:16;;;;12174:10;;12143:169;;;12147:3;;12343:8;12336:5;12332:20;12325:27;;11881:481;-1:-1:-1;12378:3:13;;10860:1527;-1:-1:-1;;;;;;;;;;;10860:1527:13:o;12799:489::-;-1:-1:-1;;;;;13068:15:13;;;13050:34;;13120:15;;13115:2;13100:18;;13093:43;13167:2;13152:18;;13145:34;;;13215:3;13210:2;13195:18;;13188:31;;;12993:4;;13236:46;;13262:19;;13254:6;13236:46;:::i;:::-;13228:54;12799:489;-1:-1:-1;;;;;;12799:489:13:o;13293:249::-;13362:6;13415:2;13403:9;13394:7;13390:23;13386:32;13383:52;;;13431:1;13428;13421:12;13383:52;13463:9;13457:16;13482:30;13506:5;13482:30;:::i;13547:112::-;13579:1;13605;13595:35;;13610:18;;:::i;:::-;-1:-1:-1;13644:9:13;;13547:112::o;13664:127::-;13725:10;13720:3;13716:20;13713:1;13706:31;13756:4;13753:1;13746:15;13780:4;13777:1;13770:15

Swarm Source

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