ETH Price: $3,483.99 (+2.82%)
Gas: 2 Gwei

Token

PONZI NFT (PONZI)
 

Overview

Max Total Supply

6,900 PONZI

Holders

993

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 PONZI
0xf6edffd55c1a99fe0ab68b29b960faa15ee0e833
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:
PONZI_NFT

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-13
*/

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


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

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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


// 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: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


// OpenZeppelin Contracts (last updated v4.8.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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: contracts/Ponzi/PonziNFT/PonziNFT.sol


pragma solidity ^0.8.7;








// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol

pragma solidity ^0.8.4;

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @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) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _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 (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public 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 (!_checkOnERC721Received(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 tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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 address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * 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 {}
}

contract PONZI_NFT is ERC721A, Ownable {
    using Strings for uint256;
    
    uint256 public MAX_SUPPLY = 6900;

    string private BASE_URI;
    string private UNREVEAL_URI;

    uint256 public PUBLIC_MINT_LIMIT = 1;

    uint256 public SALE_STEP = 0; // 0 => NONE, 1 => START

    constructor() ERC721A("PONZI NFT", "PONZI") {}

    function setPublicMintLimit(uint256 _publicMintLimit) external onlyOwner {
        PUBLIC_MINT_LIMIT = _publicMintLimit;
    }
    
    function numberMinted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function mintPublic(uint256 _mintAmount) external {
        require(totalSupply() + _mintAmount <= MAX_SUPPLY, "Exceeds Max Supply");

        require(SALE_STEP == 1, "Public Sale is not opened");

        require((numberMinted(msg.sender) + _mintAmount) <= PUBLIC_MINT_LIMIT, "Exceeds Max Mint Amount");

        _mintLoop(msg.sender, _mintAmount);
    }

    function airdrop(address[] memory _airdropAddresses, uint256 _mintAmount) external onlyOwner {
        require(totalSupply() + _airdropAddresses.length * _mintAmount <= MAX_SUPPLY, "Exceeds Max Supply");

        for (uint256 i = 0; i < _airdropAddresses.length; i++) {
            address to = _airdropAddresses[i];
            _mintLoop(to, _mintAmount);
        }
    }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : UNREVEAL_URI;
    }

    function setMaxSupply(uint256 _supply) external onlyOwner {
        MAX_SUPPLY = _supply;
    }

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        BASE_URI = _newBaseURI;
    }

    function setUnrevealURI(string memory _newUnrevealURI) external onlyOwner {
        UNREVEAL_URI = _newUnrevealURI;
    }

    function setSaleStep(uint256 _saleStep) external onlyOwner {
        SALE_STEP = _saleStep;
    }

    function _mintLoop(address _receiver, uint256 _mintAmount) internal {
        _safeMint(_receiver, _mintAmount);
    }

    function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) {
        return ownershipOf(tokenId);
    }

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

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":"MintedQueryForZeroAddress","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"},{"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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_STEP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_airdropAddresses","type":"address[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicMintLimit","type":"uint256"}],"name":"setPublicMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleStep","type":"uint256"}],"name":"setSaleStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUnrevealURI","type":"string"}],"name":"setUnrevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052611af46009556001600c556000600d553480156200002157600080fd5b50604051806040016040528060098152602001681413d396924813919560ba1b81525060405180604001604052806005815260200164504f4e5a4960d81b8152508160029081620000739190620001a0565b506003620000828282620001a0565b5050506200009f62000099620000a560201b60201c565b620000a9565b6200026c565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200012657607f821691505b6020821081036200014757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200019b57600081815260208120601f850160051c81016020861015620001765750805b601f850160051c820191505b81811015620001975782815560010162000182565b5050505b505050565b81516001600160401b03811115620001bc57620001bc620000fb565b620001d481620001cd845462000111565b846200014d565b602080601f8311600181146200020c5760008415620001f35750858301515b600019600386901b1c1916600185901b17855562000197565b600085815260208120601f198616915b828110156200023d578886015182559484019460019091019084016200021c565b50858210156200025c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611af6806200027c6000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806384b9a4a511610104578063bceae77b116100a2578063e985e9c511610071578063e985e9c5146103f6578063ef3e067c14610409578063efd0cbf91461041c578063f2fde38b1461042f57600080fd5b8063bceae77b146103b4578063c204642c146103bd578063c87b56dd146103d0578063dc33e681146103e357600080fd5b806395d89b41116100de57806395d89b411461037357806397bc411c1461037b578063a22cb4651461038e578063b88d4fde146103a157600080fd5b806384b9a4a5146103105780638da5cb5b146103195780639231ab2a1461032a57600080fd5b80633ccfd60b1161017c5780636352211e1161014b5780636352211e146102cf5780636f8b44b0146102e257806370a08231146102f5578063715018a61461030857600080fd5b80633ccfd60b1461028e57806342842e0e1461029657806353e90cbd146102a957806355f804b3146102bc57600080fd5b8063095ea7b3116101b8578063095ea7b31461024757806318160ddd1461025c57806323b872dd1461027257806332cb6b0c1461028557600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed3660046114ca565b610442565b60405190151581526020015b60405180910390f35b61020f610494565b6040516101fe9190611537565b61022f61022a36600461154a565b610526565b6040516001600160a01b0390911681526020016101fe565b61025a61025536600461157f565b61056a565b005b600154600054035b6040519081526020016101fe565b61025a6102803660046115a9565b6105f7565b61026460095481565b61025a610602565b61025a6102a43660046115a9565b61063d565b61025a6102b736600461154a565b610658565b61025a6102ca366004611682565b610665565b61022f6102dd36600461154a565b610679565b61025a6102f036600461154a565b61068b565b6102646103033660046116ca565b610698565b61025a6106e6565b610264600d5481565b6008546001600160a01b031661022f565b61033d61033836600461154a565b6106fa565b6040805182516001600160a01b031681526020808401516001600160401b031690820152918101511515908201526060016101fe565b61020f610720565b61025a610389366004611682565b61072f565b61025a61039c3660046116e5565b610743565b61025a6103af366004611721565b6107d8565b610264600c5481565b61025a6103cb36600461179c565b610812565b61020f6103de36600461154a565b6108ca565b6102646103f13660046116ca565b610a10565b6101f261040436600461184e565b610a1b565b61025a61041736600461154a565b610a49565b61025a61042a36600461154a565b610a56565b61025a61043d3660046116ca565b610b78565b60006001600160e01b031982166380ac58cd60e01b148061047357506001600160e01b03198216635b5e139f60e01b145b8061048e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546104a390611881565b80601f01602080910402602001604051908101604052809291908181526020018280546104cf90611881565b801561051c5780601f106104f15761010080835404028352916020019161051c565b820191906000526020600020905b8154815290600101906020018083116104ff57829003601f168201915b5050505050905090565b600061053182610bee565b61054e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061057582610679565b9050806001600160a01b0316836001600160a01b0316036105a95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906105c957506105c78133610a1b565b155b156105e7576040516367d9dca160e11b815260040160405180910390fd5b6105f2838383610c19565b505050565b6105f2838383610c75565b61060a610e89565b6040514790339082156108fc029083906000818181858888f19350505050158015610639573d6000803e3d6000fd5b5050565b6105f2838383604051806020016040528060008152506107d8565b610660610e89565b600d55565b61066d610e89565b600a6106398282611909565b600061068482610ee3565b5192915050565b610693610e89565b600955565b60006001600160a01b0382166106c1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6106ee610e89565b6106f86000610ffc565b565b604080516060810182526000808252602082018190529181019190915261048e82610ee3565b6060600380546104a390611881565b610737610e89565b600b6106398282611909565b336001600160a01b0383160361076c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6107e3848484610c75565b6107ef8484848461104e565b61080c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b61081a610e89565b60095481835161082a91906119de565b6001546000540361083b91906119f5565b11156108835760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b60448201526064015b60405180910390fd5b60005b82518110156105f25760008382815181106108a3576108a3611a08565b602002602001015190506108b78184611151565b50806108c281611a1e565b915050610886565b60606108d582610bee565b6109395760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161087a565b600061094361115b565b905060008151116109de57600b805461095b90611881565b80601f016020809104026020016040519081016040528092919081815260200182805461098790611881565b80156109d45780601f106109a9576101008083540402835291602001916109d4565b820191906000526020600020905b8154815290600101906020018083116109b757829003601f168201915b5050505050610a09565b806109e88461116a565b6040516020016109f9929190611a37565b6040516020818303038152906040525b9392505050565b600061048e826111fc565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610a51610e89565b600c55565b60095481610a676001546000540390565b610a7191906119f5565b1115610ab45760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b604482015260640161087a565b600d54600114610b065760405162461bcd60e51b815260206004820152601960248201527f5075626c69632053616c65206973206e6f74206f70656e656400000000000000604482015260640161087a565b600c5481610b1333610a10565b610b1d91906119f5565b1115610b6b5760405162461bcd60e51b815260206004820152601760248201527f45786365656473204d6178204d696e7420416d6f756e74000000000000000000604482015260640161087a565b610b753382611151565b50565b610b80610e89565b6001600160a01b038116610be55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161087a565b610b7581610ffc565b600080548210801561048e575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610c8082610ee3565b80519091506000906001600160a01b0316336001600160a01b03161480610cae57508151610cae9033610a1b565b80610cc9575033610cbe84610526565b6001600160a01b0316145b905080610ce957604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610d1e5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610d4557604051633a954ecd60e21b815260040160405180910390fd5b610d556000848460000151610c19565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610e3f57600054811015610e3f57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6008546001600160a01b031633146106f85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161087a565b6040805160608101825260008082526020820181905291810182905290548290811015610fe357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610fe15780516001600160a01b031615610f78579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215610fdc579392505050565b610f78565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561114557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611092903390899088908890600401611a66565b6020604051808303816000875af19250505080156110cd575060408051601f3d908101601f191682019092526110ca91810190611aa3565b60015b61112b573d8080156110fb576040519150601f19603f3d011682016040523d82523d6000602084013e611100565b606091505b508051600003611123576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611149565b5060015b949350505050565b6106398282611251565b6060600a80546104a390611881565b606060006111778361126b565b60010190506000816001600160401b03811115611196576111966115e5565b6040519080825280601f01601f1916602001820160405280156111c0576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846111ca57509392505050565b60006001600160a01b038216611225576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b610639828260405180602001604052806000815250611343565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106112aa5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106112d6576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106112f457662386f26fc10000830492506010015b6305f5e100831061130c576305f5e100830492506008015b612710831061132057612710830492506004015b60648310611332576064830492506002015b600a831061048e5760010192915050565b6105f283838360016000546001600160a01b03851661137457604051622e076360e81b815260040160405180910390fd5b836000036113955760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156114ab5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611481575061147f600088848861104e565b155b1561149f576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161142a565b50600055610e82565b6001600160e01b031981168114610b7557600080fd5b6000602082840312156114dc57600080fd5b8135610a09816114b4565b60005b838110156115025781810151838201526020016114ea565b50506000910152565b600081518084526115238160208601602086016114e7565b601f01601f19169290920160200192915050565b602081526000610a09602083018461150b565b60006020828403121561155c57600080fd5b5035919050565b80356001600160a01b038116811461157a57600080fd5b919050565b6000806040838503121561159257600080fd5b61159b83611563565b946020939093013593505050565b6000806000606084860312156115be57600080fd5b6115c784611563565b92506115d560208501611563565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611623576116236115e5565b604052919050565b60006001600160401b03831115611644576116446115e5565b611657601f8401601f19166020016115fb565b905082815283838301111561166b57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561169457600080fd5b81356001600160401b038111156116aa57600080fd5b8201601f810184136116bb57600080fd5b6111498482356020840161162b565b6000602082840312156116dc57600080fd5b610a0982611563565b600080604083850312156116f857600080fd5b61170183611563565b91506020830135801515811461171657600080fd5b809150509250929050565b6000806000806080858703121561173757600080fd5b61174085611563565b935061174e60208601611563565b92506040850135915060608501356001600160401b0381111561177057600080fd5b8501601f8101871361178157600080fd5b6117908782356020840161162b565b91505092959194509250565b600080604083850312156117af57600080fd5b82356001600160401b03808211156117c657600080fd5b818501915085601f8301126117da57600080fd5b81356020828211156117ee576117ee6115e5565b8160051b92506117ff8184016115fb565b828152928401810192818101908985111561181957600080fd5b948201945b8486101561183e5761182f86611563565b8252948201949082019061181e565b9997909101359750505050505050565b6000806040838503121561186157600080fd5b61186a83611563565b915061187860208401611563565b90509250929050565b600181811c9082168061189557607f821691505b6020821081036118b557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156105f257600081815260208120601f850160051c810160208610156118e25750805b601f850160051c820191505b81811015611901578281556001016118ee565b505050505050565b81516001600160401b03811115611922576119226115e5565b611936816119308454611881565b846118bb565b602080601f83116001811461196b57600084156119535750858301515b600019600386901b1c1916600185901b178555611901565b600085815260208120601f198616915b8281101561199a5788860151825594840194600190910190840161197b565b50858210156119b85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761048e5761048e6119c8565b8082018082111561048e5761048e6119c8565b634e487b7160e01b600052603260045260246000fd5b600060018201611a3057611a306119c8565b5060010190565b60008351611a498184602088016114e7565b835190830190611a5d8183602088016114e7565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a999083018461150b565b9695505050505050565b600060208284031215611ab557600080fd5b8151610a09816114b456fea2646970667358221220ad48bae87ab3b9023bdf07f5e7595942083fcbb3274da626667a2845da0096df64736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806384b9a4a511610104578063bceae77b116100a2578063e985e9c511610071578063e985e9c5146103f6578063ef3e067c14610409578063efd0cbf91461041c578063f2fde38b1461042f57600080fd5b8063bceae77b146103b4578063c204642c146103bd578063c87b56dd146103d0578063dc33e681146103e357600080fd5b806395d89b41116100de57806395d89b411461037357806397bc411c1461037b578063a22cb4651461038e578063b88d4fde146103a157600080fd5b806384b9a4a5146103105780638da5cb5b146103195780639231ab2a1461032a57600080fd5b80633ccfd60b1161017c5780636352211e1161014b5780636352211e146102cf5780636f8b44b0146102e257806370a08231146102f5578063715018a61461030857600080fd5b80633ccfd60b1461028e57806342842e0e1461029657806353e90cbd146102a957806355f804b3146102bc57600080fd5b8063095ea7b3116101b8578063095ea7b31461024757806318160ddd1461025c57806323b872dd1461027257806332cb6b0c1461028557600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed3660046114ca565b610442565b60405190151581526020015b60405180910390f35b61020f610494565b6040516101fe9190611537565b61022f61022a36600461154a565b610526565b6040516001600160a01b0390911681526020016101fe565b61025a61025536600461157f565b61056a565b005b600154600054035b6040519081526020016101fe565b61025a6102803660046115a9565b6105f7565b61026460095481565b61025a610602565b61025a6102a43660046115a9565b61063d565b61025a6102b736600461154a565b610658565b61025a6102ca366004611682565b610665565b61022f6102dd36600461154a565b610679565b61025a6102f036600461154a565b61068b565b6102646103033660046116ca565b610698565b61025a6106e6565b610264600d5481565b6008546001600160a01b031661022f565b61033d61033836600461154a565b6106fa565b6040805182516001600160a01b031681526020808401516001600160401b031690820152918101511515908201526060016101fe565b61020f610720565b61025a610389366004611682565b61072f565b61025a61039c3660046116e5565b610743565b61025a6103af366004611721565b6107d8565b610264600c5481565b61025a6103cb36600461179c565b610812565b61020f6103de36600461154a565b6108ca565b6102646103f13660046116ca565b610a10565b6101f261040436600461184e565b610a1b565b61025a61041736600461154a565b610a49565b61025a61042a36600461154a565b610a56565b61025a61043d3660046116ca565b610b78565b60006001600160e01b031982166380ac58cd60e01b148061047357506001600160e01b03198216635b5e139f60e01b145b8061048e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546104a390611881565b80601f01602080910402602001604051908101604052809291908181526020018280546104cf90611881565b801561051c5780601f106104f15761010080835404028352916020019161051c565b820191906000526020600020905b8154815290600101906020018083116104ff57829003601f168201915b5050505050905090565b600061053182610bee565b61054e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061057582610679565b9050806001600160a01b0316836001600160a01b0316036105a95760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906105c957506105c78133610a1b565b155b156105e7576040516367d9dca160e11b815260040160405180910390fd5b6105f2838383610c19565b505050565b6105f2838383610c75565b61060a610e89565b6040514790339082156108fc029083906000818181858888f19350505050158015610639573d6000803e3d6000fd5b5050565b6105f2838383604051806020016040528060008152506107d8565b610660610e89565b600d55565b61066d610e89565b600a6106398282611909565b600061068482610ee3565b5192915050565b610693610e89565b600955565b60006001600160a01b0382166106c1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6106ee610e89565b6106f86000610ffc565b565b604080516060810182526000808252602082018190529181019190915261048e82610ee3565b6060600380546104a390611881565b610737610e89565b600b6106398282611909565b336001600160a01b0383160361076c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6107e3848484610c75565b6107ef8484848461104e565b61080c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b61081a610e89565b60095481835161082a91906119de565b6001546000540361083b91906119f5565b11156108835760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b60448201526064015b60405180910390fd5b60005b82518110156105f25760008382815181106108a3576108a3611a08565b602002602001015190506108b78184611151565b50806108c281611a1e565b915050610886565b60606108d582610bee565b6109395760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161087a565b600061094361115b565b905060008151116109de57600b805461095b90611881565b80601f016020809104026020016040519081016040528092919081815260200182805461098790611881565b80156109d45780601f106109a9576101008083540402835291602001916109d4565b820191906000526020600020905b8154815290600101906020018083116109b757829003601f168201915b5050505050610a09565b806109e88461116a565b6040516020016109f9929190611a37565b6040516020818303038152906040525b9392505050565b600061048e826111fc565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610a51610e89565b600c55565b60095481610a676001546000540390565b610a7191906119f5565b1115610ab45760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b604482015260640161087a565b600d54600114610b065760405162461bcd60e51b815260206004820152601960248201527f5075626c69632053616c65206973206e6f74206f70656e656400000000000000604482015260640161087a565b600c5481610b1333610a10565b610b1d91906119f5565b1115610b6b5760405162461bcd60e51b815260206004820152601760248201527f45786365656473204d6178204d696e7420416d6f756e74000000000000000000604482015260640161087a565b610b753382611151565b50565b610b80610e89565b6001600160a01b038116610be55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161087a565b610b7581610ffc565b600080548210801561048e575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610c8082610ee3565b80519091506000906001600160a01b0316336001600160a01b03161480610cae57508151610cae9033610a1b565b80610cc9575033610cbe84610526565b6001600160a01b0316145b905080610ce957604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610d1e5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610d4557604051633a954ecd60e21b815260040160405180910390fd5b610d556000848460000151610c19565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610e3f57600054811015610e3f57825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6008546001600160a01b031633146106f85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161087a565b6040805160608101825260008082526020820181905291810182905290548290811015610fe357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610fe15780516001600160a01b031615610f78579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215610fdc579392505050565b610f78565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561114557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611092903390899088908890600401611a66565b6020604051808303816000875af19250505080156110cd575060408051601f3d908101601f191682019092526110ca91810190611aa3565b60015b61112b573d8080156110fb576040519150601f19603f3d011682016040523d82523d6000602084013e611100565b606091505b508051600003611123576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611149565b5060015b949350505050565b6106398282611251565b6060600a80546104a390611881565b606060006111778361126b565b60010190506000816001600160401b03811115611196576111966115e5565b6040519080825280601f01601f1916602001820160405280156111c0576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846111ca57509392505050565b60006001600160a01b038216611225576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b610639828260405180602001604052806000815250611343565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106112aa5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef810000000083106112d6576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106112f457662386f26fc10000830492506010015b6305f5e100831061130c576305f5e100830492506008015b612710831061132057612710830492506004015b60648310611332576064830492506002015b600a831061048e5760010192915050565b6105f283838360016000546001600160a01b03851661137457604051622e076360e81b815260040160405180910390fd5b836000036113955760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156114ab5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611481575061147f600088848861104e565b155b1561149f576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161142a565b50600055610e82565b6001600160e01b031981168114610b7557600080fd5b6000602082840312156114dc57600080fd5b8135610a09816114b4565b60005b838110156115025781810151838201526020016114ea565b50506000910152565b600081518084526115238160208601602086016114e7565b601f01601f19169290920160200192915050565b602081526000610a09602083018461150b565b60006020828403121561155c57600080fd5b5035919050565b80356001600160a01b038116811461157a57600080fd5b919050565b6000806040838503121561159257600080fd5b61159b83611563565b946020939093013593505050565b6000806000606084860312156115be57600080fd5b6115c784611563565b92506115d560208501611563565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715611623576116236115e5565b604052919050565b60006001600160401b03831115611644576116446115e5565b611657601f8401601f19166020016115fb565b905082815283838301111561166b57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561169457600080fd5b81356001600160401b038111156116aa57600080fd5b8201601f810184136116bb57600080fd5b6111498482356020840161162b565b6000602082840312156116dc57600080fd5b610a0982611563565b600080604083850312156116f857600080fd5b61170183611563565b91506020830135801515811461171657600080fd5b809150509250929050565b6000806000806080858703121561173757600080fd5b61174085611563565b935061174e60208601611563565b92506040850135915060608501356001600160401b0381111561177057600080fd5b8501601f8101871361178157600080fd5b6117908782356020840161162b565b91505092959194509250565b600080604083850312156117af57600080fd5b82356001600160401b03808211156117c657600080fd5b818501915085601f8301126117da57600080fd5b81356020828211156117ee576117ee6115e5565b8160051b92506117ff8184016115fb565b828152928401810192818101908985111561181957600080fd5b948201945b8486101561183e5761182f86611563565b8252948201949082019061181e565b9997909101359750505050505050565b6000806040838503121561186157600080fd5b61186a83611563565b915061187860208401611563565b90509250929050565b600181811c9082168061189557607f821691505b6020821081036118b557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156105f257600081815260208120601f850160051c810160208610156118e25750805b601f850160051c820191505b81811015611901578281556001016118ee565b505050505050565b81516001600160401b03811115611922576119226115e5565b611936816119308454611881565b846118bb565b602080601f83116001811461196b57600084156119535750858301515b600019600386901b1c1916600185901b178555611901565b600085815260208120601f198616915b8281101561199a5788860151825594840194600190910190840161197b565b50858210156119b85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761048e5761048e6119c8565b8082018082111561048e5761048e6119c8565b634e487b7160e01b600052603260045260246000fd5b600060018201611a3057611a306119c8565b5060010190565b60008351611a498184602088016114e7565b835190830190611a5d8183602088016114e7565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a999083018461150b565b9695505050505050565b600060208284031215611ab557600080fd5b8151610a09816114b456fea2646970667358221220ad48bae87ab3b9023bdf07f5e7595942083fcbb3274da626667a2845da0096df64736f6c63430008110033

Deployed Bytecode Sourcemap

59223:2744:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42021:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;42021:305:0;;;;;;;;45381:100;;;:::i;:::-;;;;;;;:::i;46884:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;46884:204:0;1533:203:1;46447:371:0;;;;;;:::i;:::-;;:::i;:::-;;41678:271;41914:12;;41722:7;41898:13;:28;41678:271;;;2324:25:1;;;2312:2;2297:18;41678:271:0;2178:177:1;47741:170:0;;;;;;:::i;:::-;;:::i;59307:32::-;;;;;;61813:151;;;:::i;47982:185::-;;;;;;:::i;:::-;;:::i;61435:99::-;;;;;;:::i;:::-;;:::i;61189:107::-;;;;;;:::i;:::-;;:::i;45190:124::-;;;;;;:::i;:::-;;:::i;61084:97::-;;;;;;:::i;:::-;;:::i;42390:206::-;;;;;;:::i;:::-;;:::i;12773:103::-;;;:::i;59459:28::-;;;;;;12125:87;12198:6;;-1:-1:-1;;;;;12198:6:0;12125:87;;61670:135;;;;;;:::i;:::-;;:::i;:::-;;;;4396:13:1;;-1:-1:-1;;;;;4392:39:1;4374:58;;4492:4;4480:17;;;4474:24;-1:-1:-1;;;;;4470:49:1;4448:20;;;4441:79;4578:17;;;4572:24;4565:32;4558:40;4536:20;;;4529:70;4362:2;4347:18;61670:135:0;4164:441:1;45550:104:0;;;:::i;61304:123::-;;;;;;:::i;:::-;;:::i;47160:279::-;;;;;;:::i;:::-;;:::i;48238:342::-;;;;;;:::i;:::-;;:::i;59414:36::-;;;;;;60209:379;;;;;;:::i;:::-;;:::i;60713:363::-;;;;;;:::i;:::-;;:::i;59715:115::-;;;;;;:::i;:::-;;:::i;47510:164::-;;;;;;:::i;:::-;;:::i;59575:128::-;;;;;;:::i;:::-;;:::i;59838:363::-;;;;;;:::i;:::-;;:::i;13031:201::-;;;;;;:::i;:::-;;:::i;42021:305::-;42123:4;-1:-1:-1;;;;;;42160:40:0;;-1:-1:-1;;;42160:40:0;;:105;;-1:-1:-1;;;;;;;42217:48:0;;-1:-1:-1;;;42217:48:0;42160:105;:158;;;-1:-1:-1;;;;;;;;;;8888:40:0;;;42282:36;42140:178;42021:305;-1:-1:-1;;42021:305:0:o;45381:100::-;45435:13;45468:5;45461:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45381:100;:::o;46884:204::-;46952:7;46977:16;46985:7;46977;:16::i;:::-;46972:64;;47002:34;;-1:-1:-1;;;47002:34:0;;;;;;;;;;;46972:64;-1:-1:-1;47056:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;47056:24:0;;46884:204::o;46447:371::-;46520:13;46536:24;46552:7;46536:15;:24::i;:::-;46520:40;;46581:5;-1:-1:-1;;;;;46575:11:0;:2;-1:-1:-1;;;;;46575:11:0;;46571:48;;46595:24;;-1:-1:-1;;;46595:24:0;;;;;;;;;;;46571:48;10756:10;-1:-1:-1;;;;;46636:21:0;;;;;;:63;;-1:-1:-1;46662:37:0;46679:5;10756:10;47510:164;:::i;46662:37::-;46661:38;46636:63;46632:138;;;46723:35;;-1:-1:-1;;;46723:35:0;;;;;;;;;;;46632:138;46782:28;46791:2;46795:7;46804:5;46782:8;:28::i;:::-;46509:309;46447:371;;:::o;47741:170::-;47875:28;47885:4;47891:2;47895:7;47875:9;:28::i;61813:151::-;12011:13;:11;:13::i;:::-;61916:40:::1;::::0;61884:21:::1;::::0;61924:10:::1;::::0;61916:40;::::1;;;::::0;61884:21;;61863:18:::1;61916:40:::0;61863:18;61916:40;61884:21;61924:10;61916:40;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;61852:112;61813:151::o:0;47982:185::-;48120:39;48137:4;48143:2;48147:7;48120:39;;;;;;;;;;;;:16;:39::i;61435:99::-;12011:13;:11;:13::i;:::-;61505:9:::1;:21:::0;61435:99::o;61189:107::-;12011:13;:11;:13::i;:::-;61266:8:::1;:22;61277:11:::0;61266:8;:22:::1;:::i;45190:124::-:0;45254:7;45281:20;45293:7;45281:11;:20::i;:::-;:25;;45190:124;-1:-1:-1;;45190:124:0:o;61084:97::-;12011:13;:11;:13::i;:::-;61153:10:::1;:20:::0;61084:97::o;42390:206::-;42454:7;-1:-1:-1;;;;;42478:19:0;;42474:60;;42506:28;;-1:-1:-1;;;42506:28:0;;;;;;;;;;;42474:60;-1:-1:-1;;;;;;42560:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;42560:27:0;;42390:206::o;12773:103::-;12011:13;:11;:13::i;:::-;12838:30:::1;12865:1;12838:18;:30::i;:::-;12773:103::o:0;61670:135::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;61777:20:0;61789:7;61777:11;:20::i;45550:104::-;45606:13;45639:7;45632:14;;;;;:::i;61304:123::-;12011:13;:11;:13::i;:::-;61389:12:::1;:30;61404:15:::0;61389:12;:30:::1;:::i;47160:279::-:0;10756:10;-1:-1:-1;;;;;47251:24:0;;;47247:54;;47284:17;;-1:-1:-1;;;47284:17:0;;;;;;;;;;;47247:54;10756:10;47314:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;47314:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;47314:53:0;;;;;;;;;;47383:48;;540:41:1;;;47314:42:0;;10756:10;47383:48;;513:18:1;47383:48:0;;;;;;;47160:279;;:::o;48238:342::-;48405:28;48415:4;48421:2;48425:7;48405:9;:28::i;:::-;48449:48;48472:4;48478:2;48482:7;48491:5;48449:22;:48::i;:::-;48444:129;;48521:40;;-1:-1:-1;;;48521:40:0;;;;;;;;;;;48444:129;48238:342;;;;:::o;60209:379::-;12011:13;:11;:13::i;:::-;60379:10:::1;;60364:11;60337:17;:24;:38;;;;:::i;:::-;41914:12:::0;;41722:7;41898:13;:28;60321:54:::1;;;;:::i;:::-;:68;;60313:99;;;::::0;-1:-1:-1;;;60313:99:0;;10152:2:1;60313:99:0::1;::::0;::::1;10134:21:1::0;10191:2;10171:18;;;10164:30;-1:-1:-1;;;10210:18:1;;;10203:48;10268:18;;60313:99:0::1;;;;;;;;;60430:9;60425:156;60449:17;:24;60445:1;:28;60425:156;;;60495:10;60508:17;60526:1;60508:20;;;;;;;;:::i;:::-;;;;;;;60495:33;;60543:26;60553:2;60557:11;60543:9;:26::i;:::-;-1:-1:-1::0;60475:3:0;::::1;::::0;::::1;:::i;:::-;;;;60425:156;;60713:363:::0;60786:13;60820:16;60828:7;60820;:16::i;:::-;60812:76;;;;-1:-1:-1;;;60812:76:0;;10771:2:1;60812:76:0;;;10753:21:1;10810:2;10790:18;;;10783:30;10849:34;10829:18;;;10822:62;-1:-1:-1;;;10900:18:1;;;10893:45;10955:19;;60812:76:0;10569:411:1;60812:76:0;60899:28;60930:10;:8;:10::i;:::-;60899:41;;60989:1;60964:14;60958:28;:32;:110;;61056:12;60958:110;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61017:14;61033:18;:7;:16;:18::i;:::-;61000:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60958:110;60951:117;60713:363;-1:-1:-1;;;60713:363:0:o;59715:115::-;59774:7;59801:21;59815:6;59801:13;:21::i;47510:164::-;-1:-1:-1;;;;;47631:25:0;;;47607:4;47631:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;47510:164::o;59575:128::-;12011:13;:11;:13::i;:::-;59659:17:::1;:36:::0;59575:128::o;59838:363::-;59938:10;;59923:11;59907:13;41914:12;;41722:7;41898:13;:28;;41678:271;59907:13;:27;;;;:::i;:::-;:41;;59899:72;;;;-1:-1:-1;;;59899:72:0;;10152:2:1;59899:72:0;;;10134:21:1;10191:2;10171:18;;;10164:30;-1:-1:-1;;;10210:18:1;;;10203:48;10268:18;;59899:72:0;9950:342:1;59899:72:0;59992:9;;60005:1;59992:14;59984:52;;;;-1:-1:-1;;;59984:52:0;;11688:2:1;59984:52:0;;;11670:21:1;11727:2;11707:18;;;11700:30;11766:27;11746:18;;;11739:55;11811:18;;59984:52:0;11486:349:1;59984:52:0;60101:17;;60085:11;60058:24;60071:10;60058:12;:24::i;:::-;:38;;;;:::i;:::-;60057:61;;60049:97;;;;-1:-1:-1;;;60049:97:0;;12042:2:1;60049:97:0;;;12024:21:1;12081:2;12061:18;;;12054:30;12120:25;12100:18;;;12093:53;12163:18;;60049:97:0;11840:347:1;60049:97:0;60159:34;60169:10;60181:11;60159:9;:34::i;:::-;59838:363;:::o;13031:201::-;12011:13;:11;:13::i;:::-;-1:-1:-1;;;;;13120:22:0;::::1;13112:73;;;::::0;-1:-1:-1;;;13112:73:0;;12394:2:1;13112:73:0::1;::::0;::::1;12376:21:1::0;12433:2;12413:18;;;12406:30;12472:34;12452:18;;;12445:62;-1:-1:-1;;;12523:18:1;;;12516:36;12569:19;;13112:73:0::1;12192:402:1::0;13112:73:0::1;13196:28;13215:8;13196:18;:28::i;48835:144::-:0;48892:4;48926:13;;48916:7;:23;:55;;;;-1:-1:-1;;48944:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;48944:27:0;;;;48943:28;;48835:144::o;56041:196::-;56156:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;56156:29:0;-1:-1:-1;;;;;56156:29:0;;;;;;;;;56201:28;;56156:24;;56201:28;;;;;;;56041:196;;;:::o;51542:2112::-;51657:35;51695:20;51707:7;51695:11;:20::i;:::-;51770:18;;51657:58;;-1:-1:-1;51728:22:0;;-1:-1:-1;;;;;51754:34:0;10756:10;-1:-1:-1;;;;;51754:34:0;;:101;;;-1:-1:-1;51822:18:0;;51805:50;;10756:10;47510:164;:::i;51805:50::-;51754:154;;;-1:-1:-1;10756:10:0;51872:20;51884:7;51872:11;:20::i;:::-;-1:-1:-1;;;;;51872:36:0;;51754:154;51728:181;;51927:17;51922:66;;51953:35;;-1:-1:-1;;;51953:35:0;;;;;;;;;;;51922:66;52025:4;-1:-1:-1;;;;;52003:26:0;:13;:18;;;-1:-1:-1;;;;;52003:26:0;;51999:67;;52038:28;;-1:-1:-1;;;52038:28:0;;;;;;;;;;;51999:67;-1:-1:-1;;;;;52081:16:0;;52077:52;;52106:23;;-1:-1:-1;;;52106:23:0;;;;;;;;;;;52077:52;52250:49;52267:1;52271:7;52280:13;:18;;;52250:8;:49::i;:::-;-1:-1:-1;;;;;52595:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;52595:31:0;;;-1:-1:-1;;;;;52595:31:0;;;-1:-1:-1;;52595:31:0;;;;;;;52641:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;52641:29:0;;;;;;;;;;;52687:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;52732:61:0;;;;-1:-1:-1;;;52777:15:0;52732:61;;;;;;;;;;;53067:11;;;53097:24;;;;;:29;53067:11;;53097:29;53093:445;;53322:13;;53308:11;:27;53304:219;;;53392:18;;;53360:24;;;:11;:24;;;;;;;;:50;;53475:28;;;;-1:-1:-1;;;;;53433:70:0;-1:-1:-1;;;53433:70:0;-1:-1:-1;;;;;;53433:70:0;;;-1:-1:-1;;;;;53360:50:0;;;53433:70;;;;;;;53304:219;52570:979;53585:7;53581:2;-1:-1:-1;;;;;53566:27:0;53575:4;-1:-1:-1;;;;;53566:27:0;;;;;;;;;;;53604:42;51646:2008;;51542:2112;;;:::o;12290:132::-;12198:6;;-1:-1:-1;;;;;12198:6:0;10756:10;12354:23;12346:68;;;;-1:-1:-1;;;12346:68:0;;12801:2:1;12346:68:0;;;12783:21:1;;;12820:18;;;12813:30;12879:34;12859:18;;;12852:62;12931:18;;12346:68:0;12599:356:1;44045:1083:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;44211:13:0;;44155:7;;44204:20;;44200:861;;;44245:31;44279:17;;;:11;:17;;;;;;;;;44245:51;;;;;;;;;-1:-1:-1;;;;;44245:51:0;;;;-1:-1:-1;;;44245:51:0;;-1:-1:-1;;;;;44245:51:0;;;;;;;;-1:-1:-1;;;44245:51:0;;;;;;;;;;;;;;44315:731;;44365:14;;-1:-1:-1;;;;;44365:28:0;;44361:101;;44429:9;44045:1083;-1:-1:-1;;;44045:1083:0:o;44361:101::-;-1:-1:-1;;;44806:6:0;44851:17;;;;:11;:17;;;;;;;;;44839:29;;;;;;;;;-1:-1:-1;;;;;44839:29:0;;;;;-1:-1:-1;;;44839:29:0;;-1:-1:-1;;;;;44839:29:0;;;;;;;;-1:-1:-1;;;44839:29:0;;;;;;;;;;;;;44899:28;44895:109;;44967:9;44045:1083;-1:-1:-1;;;44045:1083:0:o;44895:109::-;44766:261;;;44226:835;44200:861;45089:31;;-1:-1:-1;;;45089:31:0;;;;;;;;;;;13392:191;13485:6;;;-1:-1:-1;;;;;13502:17:0;;;-1:-1:-1;;;;;;13502:17:0;;;;;;;13535:40;;13485:6;;;13502:17;13485:6;;13535:40;;13466:16;;13535:40;13455:128;13392:191;:::o;56802:790::-;56957:4;-1:-1:-1;;;;;56978:13:0;;15118:19;:23;56974:611;;57014:72;;-1:-1:-1;;;57014:72:0;;-1:-1:-1;;;;;57014:36:0;;;;;:72;;10756:10;;57065:4;;57071:7;;57080:5;;57014:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57014:72:0;;;;;;;;-1:-1:-1;;57014:72:0;;;;;;;;;;;;:::i;:::-;;;57010:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57260:6;:13;57277:1;57260:18;57256:259;;57310:40;;-1:-1:-1;;;57310:40:0;;;;;;;;;;;57256:259;57465:6;57459:13;57450:6;57446:2;57442:15;57435:38;57010:520;-1:-1:-1;;;;;;57137:55:0;-1:-1:-1;;;57137:55:0;;-1:-1:-1;57130:62:0;;56974:611;-1:-1:-1;57569:4:0;56974:611;56802:790;;;;;;:::o;61542:120::-;61621:33;61631:9;61642:11;61621:9;:33::i;60596:109::-;60656:13;60689:8;60682:15;;;;;:::i;36323:716::-;36379:13;36430:14;36447:17;36458:5;36447:10;:17::i;:::-;36467:1;36447:21;36430:38;;36483:20;36517:6;-1:-1:-1;;;;;36506:18:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36506:18:0;-1:-1:-1;36483:41:0;-1:-1:-1;36648:28:0;;;36664:2;36648:28;36705:288;-1:-1:-1;;36737:5:0;-1:-1:-1;;;36874:2:0;36863:14;;36858:30;36737:5;36845:44;36935:2;36926:11;;;-1:-1:-1;36956:21:0;36705:288;36956:21;-1:-1:-1;37014:6:0;36323:716;-1:-1:-1;;;36323:716:0:o;42678:207::-;42739:7;-1:-1:-1;;;;;42763:19:0;;42759:59;;42791:27;;-1:-1:-1;;;42791:27:0;;;;;;;;;;;42759:59;-1:-1:-1;;;;;;42844:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;42844:32:0;;-1:-1:-1;;;;;42844:32:0;;42678:207::o;48987:104::-;49056:27;49066:2;49070:8;49056:27;;;;;;;;;;;;:9;:27::i;33189:922::-;33242:7;;-1:-1:-1;;;33320:15:0;;33316:102;;-1:-1:-1;;;33356:15:0;;;-1:-1:-1;33400:2:0;33390:12;33316:102;33445:6;33436:5;:15;33432:102;;33481:6;33472:15;;;-1:-1:-1;33516:2:0;33506:12;33432:102;33561:6;33552:5;:15;33548:102;;33597:6;33588:15;;;-1:-1:-1;33632:2:0;33622:12;33548:102;33677:5;33668;:14;33664:99;;33712:5;33703:14;;;-1:-1:-1;33746:1:0;33736:11;33664:99;33790:5;33781;:14;33777:99;;33825:5;33816:14;;;-1:-1:-1;33859:1:0;33849:11;33777:99;33903:5;33894;:14;33890:99;;33938:5;33929:14;;;-1:-1:-1;33972:1:0;33962:11;33890:99;34016:5;34007;:14;34003:66;;34052:1;34042:11;34097:6;33189:922;-1:-1:-1;;33189:922:0:o;49454:163::-;49577:32;49583:2;49587:8;49597:5;49604:4;50015:20;50038:13;-1:-1:-1;;;;;50066:16:0;;50062:48;;50091:19;;-1:-1:-1;;;50091:19:0;;;;;;;;;;;50062:48;50125:8;50137:1;50125:13;50121:44;;50147:18;;-1:-1:-1;;;50147:18:0;;;;;;;;;;;50121:44;-1:-1:-1;;;;;50516:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;50575:49:0;;-1:-1:-1;;;;;50516:44:0;;;;;;;50575:49;;;-1:-1:-1;;;;;50516:44:0;;;;;;50575:49;;;;;;;;;;;;;;;;50641:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;50691:66:0;;;;-1:-1:-1;;;50741:15:0;50691:66;;;;;;;;;;;50641:25;;50826:328;50846:8;50842:1;:12;50826:328;;;50885:38;;50910:12;;-1:-1:-1;;;;;50885:38:0;;;50902:1;;50885:38;;50902:1;;50885:38;50946:4;:68;;;;;50955:59;50986:1;50990:2;50994:12;51008:5;50955:22;:59::i;:::-;50954:60;50946:68;50942:164;;;51046:40;;-1:-1:-1;;;51046:40:0;;;;;;;;;;;50942:164;51124:14;;;;;50856:3;50826:328;;;-1:-1:-1;51170:13:0;:28;51220:60;48238:342;14:131:1;-1:-1:-1;;;;;;88:32:1;;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:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:127::-;2754:10;2749:3;2745:20;2742:1;2735:31;2785:4;2782:1;2775:15;2809:4;2806:1;2799:15;2825:275;2896:2;2890:9;2961:2;2942:13;;-1:-1:-1;;2938:27:1;2926:40;;-1:-1:-1;;;;;2981:34:1;;3017:22;;;2978:62;2975:88;;;3043:18;;:::i;:::-;3079:2;3072:22;2825:275;;-1:-1:-1;2825:275:1:o;3105:407::-;3170:5;-1:-1:-1;;;;;3196:6:1;3193:30;3190:56;;;3226:18;;:::i;:::-;3264:57;3309:2;3288:15;;-1:-1:-1;;3284:29:1;3315:4;3280:40;3264:57;:::i;:::-;3255:66;;3344:6;3337:5;3330:21;3384:3;3375:6;3370:3;3366:16;3363:25;3360:45;;;3401:1;3398;3391:12;3360:45;3450:6;3445:3;3438:4;3431:5;3427:16;3414:43;3504:1;3497:4;3488:6;3481:5;3477:18;3473:29;3466:40;3105:407;;;;;:::o;3517:451::-;3586:6;3639:2;3627:9;3618:7;3614:23;3610:32;3607:52;;;3655:1;3652;3645:12;3607:52;3695:9;3682:23;-1:-1:-1;;;;;3720:6:1;3717:30;3714:50;;;3760:1;3757;3750:12;3714:50;3783:22;;3836:4;3828:13;;3824:27;-1:-1:-1;3814:55:1;;3865:1;3862;3855:12;3814:55;3888:74;3954:7;3949:2;3936:16;3931:2;3927;3923:11;3888:74;:::i;3973:186::-;4032:6;4085:2;4073:9;4064:7;4060:23;4056:32;4053:52;;;4101:1;4098;4091:12;4053:52;4124:29;4143:9;4124:29;:::i;4610:347::-;4675:6;4683;4736:2;4724:9;4715:7;4711:23;4707:32;4704:52;;;4752:1;4749;4742:12;4704:52;4775:29;4794:9;4775:29;:::i;:::-;4765:39;;4854:2;4843:9;4839:18;4826:32;4901:5;4894:13;4887:21;4880:5;4877:32;4867:60;;4923:1;4920;4913:12;4867:60;4946:5;4936:15;;;4610:347;;;;;:::o;4962:667::-;5057:6;5065;5073;5081;5134:3;5122:9;5113:7;5109:23;5105:33;5102:53;;;5151:1;5148;5141:12;5102:53;5174:29;5193:9;5174:29;:::i;:::-;5164:39;;5222:38;5256:2;5245:9;5241:18;5222:38;:::i;:::-;5212:48;;5307:2;5296:9;5292:18;5279:32;5269:42;;5362:2;5351:9;5347:18;5334:32;-1:-1:-1;;;;;5381:6:1;5378:30;5375:50;;;5421:1;5418;5411:12;5375:50;5444:22;;5497:4;5489:13;;5485:27;-1:-1:-1;5475:55:1;;5526:1;5523;5516:12;5475:55;5549:74;5615:7;5610:2;5597:16;5592:2;5588;5584:11;5549:74;:::i;:::-;5539:84;;;4962:667;;;;;;;:::o;5634:1022::-;5727:6;5735;5788:2;5776:9;5767:7;5763:23;5759:32;5756:52;;;5804:1;5801;5794:12;5756:52;5844:9;5831:23;-1:-1:-1;;;;;5914:2:1;5906:6;5903:14;5900:34;;;5930:1;5927;5920:12;5900:34;5968:6;5957:9;5953:22;5943:32;;6013:7;6006:4;6002:2;5998:13;5994:27;5984:55;;6035:1;6032;6025:12;5984:55;6071:2;6058:16;6093:4;6116:2;6112;6109:10;6106:36;;;6122:18;;:::i;:::-;6168:2;6165:1;6161:10;6151:20;;6191:28;6215:2;6211;6207:11;6191:28;:::i;:::-;6253:15;;;6323:11;;;6319:20;;;6284:12;;;;6351:19;;;6348:39;;;6383:1;6380;6373:12;6348:39;6407:11;;;;6427:148;6443:6;6438:3;6435:15;6427:148;;;6509:23;6528:3;6509:23;:::i;:::-;6497:36;;6460:12;;;;6553;;;;6427:148;;;6594:5;6631:18;;;;6618:32;;-1:-1:-1;;;;;;;5634:1022:1:o;6661:260::-;6729:6;6737;6790:2;6778:9;6769:7;6765:23;6761:32;6758:52;;;6806:1;6803;6796:12;6758:52;6829:29;6848:9;6829:29;:::i;:::-;6819:39;;6877:38;6911:2;6900:9;6896:18;6877:38;:::i;:::-;6867:48;;6661:260;;;;;:::o;6926:380::-;7005:1;7001:12;;;;7048;;;7069:61;;7123:4;7115:6;7111:17;7101:27;;7069:61;7176:2;7168:6;7165:14;7145:18;7142:38;7139:161;;7222:10;7217:3;7213:20;7210:1;7203:31;7257:4;7254:1;7247:15;7285:4;7282:1;7275:15;7139:161;;6926:380;;;:::o;7437:545::-;7539:2;7534:3;7531:11;7528:448;;;7575:1;7600:5;7596:2;7589:17;7645:4;7641:2;7631:19;7715:2;7703:10;7699:19;7696:1;7692:27;7686:4;7682:38;7751:4;7739:10;7736:20;7733:47;;;-1:-1:-1;7774:4:1;7733:47;7829:2;7824:3;7820:12;7817:1;7813:20;7807:4;7803:31;7793:41;;7884:82;7902:2;7895:5;7892:13;7884:82;;;7947:17;;;7928:1;7917:13;7884:82;;;7888:3;;;7437:545;;;:::o;8158:1352::-;8284:3;8278:10;-1:-1:-1;;;;;8303:6:1;8300:30;8297:56;;;8333:18;;:::i;:::-;8362:97;8452:6;8412:38;8444:4;8438:11;8412:38;:::i;:::-;8406:4;8362:97;:::i;:::-;8514:4;;8578:2;8567:14;;8595:1;8590:663;;;;9297:1;9314:6;9311:89;;;-1:-1:-1;9366:19:1;;;9360:26;9311:89;-1:-1:-1;;8115:1:1;8111:11;;;8107:24;8103:29;8093:40;8139:1;8135:11;;;8090:57;9413:81;;8560:944;;8590:663;7384:1;7377:14;;;7421:4;7408:18;;-1:-1:-1;;8626:20:1;;;8744:236;8758:7;8755:1;8752:14;8744:236;;;8847:19;;;8841:26;8826:42;;8939:27;;;;8907:1;8895:14;;;;8774:19;;8744:236;;;8748:3;9008:6;8999:7;8996:19;8993:201;;;9069:19;;;9063:26;-1:-1:-1;;9152:1:1;9148:14;;;9164:3;9144:24;9140:37;9136:42;9121:58;9106:74;;8993:201;-1:-1:-1;;;;;9240:1:1;9224:14;;;9220:22;9207:36;;-1:-1:-1;8158:1352:1:o;9515:127::-;9576:10;9571:3;9567:20;9564:1;9557:31;9607:4;9604:1;9597:15;9631:4;9628:1;9621:15;9647:168;9720:9;;;9751;;9768:15;;;9762:22;;9748:37;9738:71;;9789:18;;:::i;9820:125::-;9885:9;;;9906:10;;;9903:36;;;9919:18;;:::i;10297:127::-;10358:10;10353:3;10349:20;10346:1;10339:31;10389:4;10386:1;10379:15;10413:4;10410:1;10403:15;10429:135;10468:3;10489:17;;;10486:43;;10509:18;;:::i;:::-;-1:-1:-1;10556:1:1;10545:13;;10429:135::o;10985:496::-;11164:3;11202:6;11196:13;11218:66;11277:6;11272:3;11265:4;11257:6;11253:17;11218:66;:::i;:::-;11347:13;;11306:16;;;;11369:70;11347:13;11306:16;11416:4;11404:17;;11369:70;:::i;:::-;11455:20;;10985:496;-1:-1:-1;;;;10985:496:1:o;12960:489::-;-1:-1:-1;;;;;13229:15:1;;;13211:34;;13281:15;;13276:2;13261:18;;13254:43;13328:2;13313:18;;13306:34;;;13376:3;13371:2;13356:18;;13349:31;;;13154:4;;13397:46;;13423:19;;13415:6;13397:46;:::i;:::-;13389:54;12960:489;-1:-1:-1;;;;;;12960:489:1:o;13454:249::-;13523:6;13576:2;13564:9;13555:7;13551:23;13547:32;13544:52;;;13592:1;13589;13582:12;13544:52;13624:9;13618:16;13643:30;13667:5;13643:30;:::i

Swarm Source

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