ETH Price: $3,288.56 (-3.12%)
 

Overview

Max Total Supply

57 PPMMG

Holders

33

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PPMMG
0x0af605f9b98ca01f01923f697a900c6cb65aa316
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:
PepesMemesGO

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

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


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

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

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

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _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 {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary 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 virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, 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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// 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: PepesMemesGO.sol



        pragma solidity >=0.8.13 <0.9.0;




        

        contract PepesMemesGO is ERC721A, Ownable, ReentrancyGuard  {
            using Strings for uint256;
            uint256 public _maxSupply = 2222;
            uint256 public maxMintAmountPerWallet = 5;
            uint256 public maxMintAmountPerTx = 5;
            string baseURL = "";
            string ExtensionURL = ".json";
            uint256 _initalPrice = 0 ether;
            uint256 public costOfNFT = 0.003 ether;
            uint256 public numberOfFreeNFTs = 1;
            
            string HiddenURL;
            bool public revealed = false;
            bool public paused = true;
           uint256 public ServiceFee = 0 ether  ;


            error ContractPaused();
            error MaxMintWalletExceeded();
            error MaxSupply();
            error InvalidMintAmount();
            error InsufficientFund();
            error NoSmartContract();
            error TokenNotExisting();

        constructor(string memory _initBaseURI) ERC721A("PepesMemesGO", "PPMMG") {
            baseURL = _initBaseURI;
            
  
        }

        // ================== Mint Function =======================

        modifier mintCompliance(uint256 _mintAmount) {
            if (msg.sender != tx.origin) revert NoSmartContract();
            if (totalSupply()  + _mintAmount > _maxSupply) revert MaxSupply();
            if (_mintAmount > maxMintAmountPerTx) revert InvalidMintAmount();
            if(paused) revert ContractPaused();
            _;
        }

        modifier mintPriceCompliance(uint256 _mintAmount) {
            if(balanceOf(msg.sender) + _mintAmount > maxMintAmountPerWallet) revert MaxMintWalletExceeded();
            if (_mintAmount < 0 || _mintAmount > maxMintAmountPerWallet) revert InvalidMintAmount();
            if (msg.value < checkCost(_mintAmount) + (ServiceFee * _mintAmount) ) revert InsufficientFund();
            
            _;
        }
        
        /// @notice compliance of minting
        /// @dev user (msg.sender) mint
        /// @param _mintAmount the amount of tokens to mint
        function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
        _safeMint(msg.sender, _mintAmount);
        }


        /// @dev user (msg.sender) mint
        /// @param _mintAmount the amount of tokens to mint 
        /// @return value from number to mint
        function checkCost(uint256 _mintAmount) public view returns (uint256) {
          uint256 totalMints = _mintAmount + balanceOf(msg.sender);
          if ((totalMints <= numberOfFreeNFTs) ) {
          return _initalPrice;
          } else if ((balanceOf(msg.sender) < numberOfFreeNFTs) && (totalMints > numberOfFreeNFTs) ) { 
          uint256 total = costOfNFT * (_mintAmount - numberOfFreeNFTs);
          return total;
          } 
          else {
          uint256 total2 = costOfNFT * _mintAmount;
          return total2;
            }
        }
        


        /// @notice airdrop function to airdrop same amount of tokens to addresses
        /// @dev only owner function
        /// @param accounts  array of addresses
        /// @param amount the amount of tokens to airdrop users
        function airdrop(address[] memory accounts, uint256 amount)public onlyOwner mintCompliance(amount) {
          for(uint256 i = 0; i < accounts.length; i++){
          _safeMint(accounts[i], amount);
          }
        }

        // =================== Orange Functions (Owner Only) ===============

        /// @dev pause/unpause minting
        function pause() public onlyOwner {
          paused = !paused;
        }

        

        /// @dev set URI
        /// @param uri  new URI
        function setbaseURL(string memory uri) public onlyOwner{
          baseURL = uri;
        }

        /// @dev extension URI like 'json'
        function setExtensionURL(string memory uri) public onlyOwner{
          ExtensionURL = uri;
        }
        
        /// @dev set new cost of tokenId in WEI
        /// @param _cost  new price in wei
        function setCostPrice(uint256 _cost) public onlyOwner{
          costOfNFT = _cost;
        } 

        /// @dev only owner
        /// @param supply  new max supply
        function setMaxSupply(uint256 supply) public onlyOwner{
          _maxSupply = supply;
        }

        /// @dev only owner
        /// @param perTx  new max mint per transaction
        function setMaxMintAmountPerTx(uint256 perTx) public onlyOwner{
          maxMintAmountPerTx = perTx;
        }

        /// @dev only owner
        /// @param perWallet  new max mint per wallet
        function setMaxMintAmountPerWallet(uint256 perWallet) public onlyOwner{
          maxMintAmountPerWallet = perWallet;
        }  
        
        /// @dev only owner
        /// @param perWallet set free number of nft per wallet
        function setnumberOfFreeNFTs(uint256 perWallet) public onlyOwner{
          numberOfFreeNFTs = perWallet;
        }            

        // ================================ Withdraw Function ====================

        /// @notice withdraw ether from contract.
        /// @dev only owner function
        function withdraw() public onlyOwner nonReentrant{
          

          

        (bool owner, ) = payable(owner()).call{value: address(this).balance}('');
        require(owner);
        }
        // =================== Blue Functions (View Only) ====================

        /// @dev return uri of token ID
        /// @param tokenId  token ID to find uri for
        ///@return value for 'tokenId uri'
        function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory) {
          if (!_exists(tokenId)) revert TokenNotExisting();   

        

        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), ExtensionURL))
        : '';
        }
        
        /// @dev tokenId to start (1)
        function _startTokenId() internal view virtual override returns (uint256) {
          return 1;
        }

        ///@dev maxSupply of token
        /// @return max supply
        function _baseURI() internal view virtual override returns (string memory) {
          return baseURL;
        }

  //internal
        function payFee(
          address to,
          uint256 amount
        ) internal {
          
        (bool success, ) = payable(to).call{value: amount}('');
        require(success, "Payment failed");
        }

    

    

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"ContractPaused","type":"error"},{"inputs":[],"name":"InsufficientFund","type":"error"},{"inputs":[],"name":"InvalidMintAmount","type":"error"},{"inputs":[],"name":"MaxMintWalletExceeded","type":"error"},{"inputs":[],"name":"MaxSupply","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NoSmartContract","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TokenNotExisting","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"ServiceFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256","name":"amount","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":"payable","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":"_mintAmount","type":"uint256"}],"name":"checkCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costOfNFT","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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfFreeNFTs","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCostPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setExtensionURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perWallet","type":"uint256"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setbaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"perWallet","type":"uint256"}],"name":"setnumberOfFreeNFTs","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526108ae600a556005600b556005600c5560405180602001604052806000815250600d908162000034919062000539565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600e90816200007b919062000539565b506000600f55660aa87bee53800060105560016011556000601360006101000a81548160ff0219169083151502179055506001601360016101000a81548160ff0219169083151502179055506000601455348015620000d957600080fd5b5060405162003b4038038062003b408339818101604052810190620000ff919062000784565b6040518060400160405280600c81526020017f50657065734d656d6573474f00000000000000000000000000000000000000008152506040518060400160405280600581526020017f50504d4d4700000000000000000000000000000000000000000000000000000081525081600290816200017c919062000539565b5080600390816200018e919062000539565b506200019f620001e860201b60201c565b6000819055505050620001c7620001bb620001f160201b60201c565b620001f960201b60201c565b600160098190555080600d9081620001e0919062000539565b5050620007d5565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200034157607f821691505b602082108103620003575762000356620002f9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003c17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000382565b620003cd868362000382565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200041a620004146200040e84620003e5565b620003ef565b620003e5565b9050919050565b6000819050919050565b6200043683620003f9565b6200044e620004458262000421565b8484546200038f565b825550505050565b600090565b6200046562000456565b620004728184846200042b565b505050565b5b818110156200049a576200048e6000826200045b565b60018101905062000478565b5050565b601f821115620004e957620004b3816200035d565b620004be8462000372565b81016020851015620004ce578190505b620004e6620004dd8562000372565b83018262000477565b50505b505050565b600082821c905092915050565b60006200050e60001984600802620004ee565b1980831691505092915050565b6000620005298383620004fb565b9150826002028217905092915050565b6200054482620002bf565b67ffffffffffffffff81111562000560576200055f620002ca565b5b6200056c825462000328565b620005798282856200049e565b600060209050601f831160018114620005b157600084156200059c578287015190505b620005a885826200051b565b86555062000618565b601f198416620005c1866200035d565b60005b82811015620005eb57848901518255600182019150602085019450602081019050620005c4565b868310156200060b578489015162000607601f891682620004fb565b8355505b6001600288020188555050505b505050505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200065a826200063e565b810181811067ffffffffffffffff821117156200067c576200067b620002ca565b5b80604052505050565b60006200069162000620565b90506200069f82826200064f565b919050565b600067ffffffffffffffff821115620006c257620006c1620002ca565b5b620006cd826200063e565b9050602081019050919050565b60005b83811015620006fa578082015181840152602081019050620006dd565b60008484015250505050565b60006200071d6200071784620006a4565b62000685565b9050828152602081018484840111156200073c576200073b62000639565b5b62000749848285620006da565b509392505050565b600082601f83011262000769576200076862000634565b5b81516200077b84826020860162000706565b91505092915050565b6000602082840312156200079d576200079c6200062a565b5b600082015167ffffffffffffffff811115620007be57620007bd6200062f565b5b620007cc8482850162000751565b91505092915050565b61335b80620007e56000396000f3fe60806040526004361061021a5760003560e01c8063715018a611610123578063aadb5b37116100ab578063c204642c1161006f578063c204642c14610742578063c87b56dd1461076b578063e098ff73146107a8578063e985e9c5146107d3578063f2fde38b146108105761021a565b8063aadb5b371461067c578063b071401b146106a7578063b0fe6414146106d0578063b88d4fde146106fb578063bc951b91146107175761021a565b806393e90b23116100f257806393e90b23146105b857806394354fd0146105e157806395d89b411461060c578063a0712d6814610637578063a22cb465146106535761021a565b8063715018a614610536578063766b7d091461054d5780638456cb59146105765780638da5cb5b1461058d5761021a565b806342842e0e116101a6578063626ab3b811610175578063626ab3b8146104415780636352211e1461046a578063676f2602146104a75780636f8b44b0146104d057806370a08231146104f95761021a565b806342842e0e146103a65780634d534a7d146103c257806351830227146103eb5780635c975abb146104165761021a565b806311b4a832116101ed57806311b4a832146102e057806318160ddd1461031d57806322f4596f1461034857806323b872dd146103735780633ccfd60b1461038f5761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906123e9565b610839565b6040516102539190612431565b60405180910390f35b34801561026857600080fd5b506102716108cb565b60405161027e91906124dc565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612534565b61095d565b6040516102bb91906125a2565b60405180910390f35b6102de60048036038101906102d991906125e9565b6109dc565b005b3480156102ec57600080fd5b5061030760048036038101906103029190612534565b610b20565b6040516103149190612638565b60405180910390f35b34801561032957600080fd5b50610332610bb2565b60405161033f9190612638565b60405180910390f35b34801561035457600080fd5b5061035d610bc9565b60405161036a9190612638565b60405180910390f35b61038d60048036038101906103889190612653565b610bcf565b005b34801561039b57600080fd5b506103a4610ef1565b005b6103c060048036038101906103bb9190612653565b610f89565b005b3480156103ce57600080fd5b506103e960048036038101906103e491906127db565b610fa9565b005b3480156103f757600080fd5b50610400610fc4565b60405161040d9190612431565b60405180910390f35b34801561042257600080fd5b5061042b610fd7565b6040516104389190612431565b60405180910390f35b34801561044d57600080fd5b50610468600480360381019061046391906127db565b610fea565b005b34801561047657600080fd5b50610491600480360381019061048c9190612534565b611005565b60405161049e91906125a2565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190612534565b611017565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190612534565b611029565b005b34801561050557600080fd5b50610520600480360381019061051b9190612824565b61103b565b60405161052d9190612638565b60405180910390f35b34801561054257600080fd5b5061054b6110f3565b005b34801561055957600080fd5b50610574600480360381019061056f9190612534565b611107565b005b34801561058257600080fd5b5061058b611119565b005b34801561059957600080fd5b506105a261114d565b6040516105af91906125a2565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da9190612534565b611177565b005b3480156105ed57600080fd5b506105f6611189565b6040516106039190612638565b60405180910390f35b34801561061857600080fd5b5061062161118f565b60405161062e91906124dc565b60405180910390f35b610651600480360381019061064c9190612534565b611221565b005b34801561065f57600080fd5b5061067a6004803603810190610675919061287d565b611458565b005b34801561068857600080fd5b50610691611563565b60405161069e9190612638565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190612534565b611569565b005b3480156106dc57600080fd5b506106e561157b565b6040516106f29190612638565b60405180910390f35b6107156004803603810190610710919061295e565b611581565b005b34801561072357600080fd5b5061072c6115f4565b6040516107399190612638565b60405180910390f35b34801561074e57600080fd5b5061076960048036038101906107649190612aa9565b6115fa565b005b34801561077757600080fd5b50610792600480360381019061078d9190612534565b611782565b60405161079f91906124dc565b60405180910390f35b3480156107b457600080fd5b506107bd611823565b6040516107ca9190612638565b60405180910390f35b3480156107df57600080fd5b506107fa60048036038101906107f59190612b05565b611829565b6040516108079190612431565b60405180910390f35b34801561081c57600080fd5b5061083760048036038101906108329190612824565b6118bd565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108da90612b74565b80601f016020809104026020016040519081016040528092919081815260200182805461090690612b74565b80156109535780601f1061092857610100808354040283529160200191610953565b820191906000526020600020905b81548152906001019060200180831161093657829003601f168201915b5050505050905090565b600061096882611940565b61099e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e782611005565b90508073ffffffffffffffffffffffffffffffffffffffff16610a0861199f565b73ffffffffffffffffffffffffffffffffffffffff1614610a6b57610a3481610a2f61199f565b611829565b610a6a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080610b2c3361103b565b83610b379190612bd4565b90506011548111610b4d57600f54915050610bad565b601154610b593361103b565b108015610b67575060115481115b15610b9557600060115484610b7c9190612c08565b601054610b899190612c3c565b90508092505050610bad565b600083601054610ba59190612c3c565b905080925050505b919050565b6000610bbc6119a7565b6001546000540303905090565b600a5481565b6000610bda826119b0565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c41576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c4d84611a7c565b91509150610c638187610c5e61199f565b611aa3565b610caf57610c7886610c7361199f565b611829565b610cae576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d15576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d228686866001611ae7565b8015610d2d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610dfb85610dd7888887611aed565b7c020000000000000000000000000000000000000000000000000000000017611b15565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e815760006001850190506000600460008381526020019081526020016000205403610e7f576000548114610e7e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ee98686866001611b40565b505050505050565b610ef9611b46565b610f01611bc4565b6000610f0b61114d565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f2e90612caf565b60006040518083038185875af1925050503d8060008114610f6b576040519150601f19603f3d011682016040523d82523d6000602084013e610f70565b606091505b5050905080610f7e57600080fd5b50610f87611c13565b565b610fa483838360405180602001604052806000815250611581565b505050565b610fb1611b46565b80600e9081610fc09190612e70565b5050565b601360009054906101000a900460ff1681565b601360019054906101000a900460ff1681565b610ff2611b46565b80600d90816110019190612e70565b5050565b6000611010826119b0565b9050919050565b61101f611b46565b8060108190555050565b611031611b46565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110a2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110fb611b46565b6111056000611c1d565b565b61110f611b46565b80600b8190555050565b611121611b46565b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61117f611b46565b8060118190555050565b600c5481565b60606003805461119e90612b74565b80601f01602080910402602001604051908101604052809291908181526020018280546111ca90612b74565b80156112175780601f106111ec57610100808354040283529160200191611217565b820191906000526020600020905b8154815290600101906020018083116111fa57829003601f168201915b5050505050905090565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611287576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481611293610bb2565b61129d9190612bd4565b11156112d5576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115611311576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff1615611358576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600b54816113663361103b565b6113709190612bd4565b11156113a8576040517f6a3eaa7b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008110806113b85750600b5481115b156113ef576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806014546113fd9190612c3c565b61140682610b20565b6114109190612bd4565b341015611449576040517fd44b3c6200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114533384611ce3565b505050565b806007600061146561199f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661151261199f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115579190612431565b60405180910390a35050565b60145481565b611571611b46565b80600c8190555050565b60115481565b61158c848484610bcf565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115ee576115b784848484611d01565b6115ed576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b5481565b611602611b46565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611668576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481611674610bb2565b61167e9190612bd4565b11156116b6576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c548111156116f2576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff1615611739576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b835181101561177c5761176984828151811061175b5761175a612f42565b5b602002602001015184611ce3565b808061177490612f71565b91505061173c565b50505050565b606061178d82611940565b6117c3576040517f2f9aab5800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006117cd611e51565b905060008151116117ed576040518060200160405280600081525061181b565b806117f784611ee3565b600e60405160200161180b93929190613078565b6040516020818303038152906040525b915050919050565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118c5611b46565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b9061311b565b60405180910390fd5b61193d81611c1d565b50565b60008161194b6119a7565b1115801561195a575060005482105b8015611998575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806119bf6119a7565b11611a4557600054811015611a445760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611a42575b60008103611a38576004600083600190039350838152602001908152602001600020549050611a0e565b8092505050611a77565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b04868684611fb1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611b4e611fba565b73ffffffffffffffffffffffffffffffffffffffff16611b6c61114d565b73ffffffffffffffffffffffffffffffffffffffff1614611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb990613187565b60405180910390fd5b565b600260095403611c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c00906131f3565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611cfd828260405180602001604052806000815250611fc2565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d2761199f565b8786866040518563ffffffff1660e01b8152600401611d499493929190613268565b6020604051808303816000875af1925050508015611d8557506040513d601f19601f82011682018060405250810190611d8291906132c9565b60015b611dfe573d8060008114611db5576040519150601f19603f3d011682016040523d82523d6000602084013e611dba565b606091505b506000815103611df6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611e6090612b74565b80601f0160208091040260200160405190810160405280929190818152602001828054611e8c90612b74565b8015611ed95780601f10611eae57610100808354040283529160200191611ed9565b820191906000526020600020905b815481529060010190602001808311611ebc57829003601f168201915b5050505050905090565b606060006001611ef28461205f565b01905060008167ffffffffffffffff811115611f1157611f106126b0565b5b6040519080825280601f01601f191660200182016040528015611f435781602001600182028036833780820191505090505b509050600082602001820190505b600115611fa6578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611f9a57611f996132f6565b5b04945060008503611f51575b819350505050919050565b60009392505050565b600033905090565b611fcc83836121b2565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461205a57600080549050600083820390505b61200c6000868380600101945086611d01565b612042576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ff957816000541461205757600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106120bd577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816120b3576120b26132f6565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106120fa576d04ee2d6d415b85acef810000000083816120f0576120ef6132f6565b5b0492506020810190505b662386f26fc10000831061212957662386f26fc10000838161211f5761211e6132f6565b5b0492506010810190505b6305f5e1008310612152576305f5e1008381612148576121476132f6565b5b0492506008810190505b612710831061217757612710838161216d5761216c6132f6565b5b0492506004810190505b6064831061219a57606483816121905761218f6132f6565b5b0492506002810190505b600a83106121a9576001810190505b80915050919050565b600080549050600082036121f2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121ff6000848385611ae7565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612276836122676000866000611aed565b6122708561236d565b17611b15565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461231757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122dc565b5060008203612352576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123686000848385611b40565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123c681612391565b81146123d157600080fd5b50565b6000813590506123e3816123bd565b92915050565b6000602082840312156123ff576123fe612387565b5b600061240d848285016123d4565b91505092915050565b60008115159050919050565b61242b81612416565b82525050565b60006020820190506124466000830184612422565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561248657808201518184015260208101905061246b565b60008484015250505050565b6000601f19601f8301169050919050565b60006124ae8261244c565b6124b88185612457565b93506124c8818560208601612468565b6124d181612492565b840191505092915050565b600060208201905081810360008301526124f681846124a3565b905092915050565b6000819050919050565b612511816124fe565b811461251c57600080fd5b50565b60008135905061252e81612508565b92915050565b60006020828403121561254a57612549612387565b5b60006125588482850161251f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061258c82612561565b9050919050565b61259c81612581565b82525050565b60006020820190506125b76000830184612593565b92915050565b6125c681612581565b81146125d157600080fd5b50565b6000813590506125e3816125bd565b92915050565b60008060408385031215612600576125ff612387565b5b600061260e858286016125d4565b925050602061261f8582860161251f565b9150509250929050565b612632816124fe565b82525050565b600060208201905061264d6000830184612629565b92915050565b60008060006060848603121561266c5761266b612387565b5b600061267a868287016125d4565b935050602061268b868287016125d4565b925050604061269c8682870161251f565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126e882612492565b810181811067ffffffffffffffff82111715612707576127066126b0565b5b80604052505050565b600061271a61237d565b905061272682826126df565b919050565b600067ffffffffffffffff821115612746576127456126b0565b5b61274f82612492565b9050602081019050919050565b82818337600083830152505050565b600061277e6127798461272b565b612710565b90508281526020810184848401111561279a576127996126ab565b5b6127a584828561275c565b509392505050565b600082601f8301126127c2576127c16126a6565b5b81356127d284826020860161276b565b91505092915050565b6000602082840312156127f1576127f0612387565b5b600082013567ffffffffffffffff81111561280f5761280e61238c565b5b61281b848285016127ad565b91505092915050565b60006020828403121561283a57612839612387565b5b6000612848848285016125d4565b91505092915050565b61285a81612416565b811461286557600080fd5b50565b60008135905061287781612851565b92915050565b6000806040838503121561289457612893612387565b5b60006128a2858286016125d4565b92505060206128b385828601612868565b9150509250929050565b600067ffffffffffffffff8211156128d8576128d76126b0565b5b6128e182612492565b9050602081019050919050565b60006129016128fc846128bd565b612710565b90508281526020810184848401111561291d5761291c6126ab565b5b61292884828561275c565b509392505050565b600082601f830112612945576129446126a6565b5b81356129558482602086016128ee565b91505092915050565b6000806000806080858703121561297857612977612387565b5b6000612986878288016125d4565b9450506020612997878288016125d4565b93505060406129a88782880161251f565b925050606085013567ffffffffffffffff8111156129c9576129c861238c565b5b6129d587828801612930565b91505092959194509250565b600067ffffffffffffffff8211156129fc576129fb6126b0565b5b602082029050602081019050919050565b600080fd5b6000612a25612a20846129e1565b612710565b90508083825260208201905060208402830185811115612a4857612a47612a0d565b5b835b81811015612a715780612a5d88826125d4565b845260208401935050602081019050612a4a565b5050509392505050565b600082601f830112612a9057612a8f6126a6565b5b8135612aa0848260208601612a12565b91505092915050565b60008060408385031215612ac057612abf612387565b5b600083013567ffffffffffffffff811115612ade57612add61238c565b5b612aea85828601612a7b565b9250506020612afb8582860161251f565b9150509250929050565b60008060408385031215612b1c57612b1b612387565b5b6000612b2a858286016125d4565b9250506020612b3b858286016125d4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b8c57607f821691505b602082108103612b9f57612b9e612b45565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612bdf826124fe565b9150612bea836124fe565b9250828201905080821115612c0257612c01612ba5565b5b92915050565b6000612c13826124fe565b9150612c1e836124fe565b9250828203905081811115612c3657612c35612ba5565b5b92915050565b6000612c47826124fe565b9150612c52836124fe565b9250828202612c60816124fe565b91508282048414831517612c7757612c76612ba5565b5b5092915050565b600081905092915050565b50565b6000612c99600083612c7e565b9150612ca482612c89565b600082019050919050565b6000612cba82612c8c565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d267fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612ce9565b612d308683612ce9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612d6d612d68612d63846124fe565b612d48565b6124fe565b9050919050565b6000819050919050565b612d8783612d52565b612d9b612d9382612d74565b848454612cf6565b825550505050565b600090565b612db0612da3565b612dbb818484612d7e565b505050565b5b81811015612ddf57612dd4600082612da8565b600181019050612dc1565b5050565b601f821115612e2457612df581612cc4565b612dfe84612cd9565b81016020851015612e0d578190505b612e21612e1985612cd9565b830182612dc0565b50505b505050565b600082821c905092915050565b6000612e4760001984600802612e29565b1980831691505092915050565b6000612e608383612e36565b9150826002028217905092915050565b612e798261244c565b67ffffffffffffffff811115612e9257612e916126b0565b5b612e9c8254612b74565b612ea7828285612de3565b600060209050601f831160018114612eda5760008415612ec8578287015190505b612ed28582612e54565b865550612f3a565b601f198416612ee886612cc4565b60005b82811015612f1057848901518255600182019150602085019450602081019050612eeb565b86831015612f2d5784890151612f29601f891682612e36565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612f7c826124fe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612fae57612fad612ba5565b5b600182019050919050565b600081905092915050565b6000612fcf8261244c565b612fd98185612fb9565b9350612fe9818560208601612468565b80840191505092915050565b6000815461300281612b74565b61300c8186612fb9565b94506001821660008114613027576001811461303c5761306f565b60ff198316865281151582028601935061306f565b61304585612cc4565b60005b8381101561306757815481890152600182019150602081019050613048565b838801955050505b50505092915050565b60006130848286612fc4565b91506130908285612fc4565b915061309c8284612ff5565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613105602683612457565b9150613110826130a9565b604082019050919050565b60006020820190508181036000830152613134816130f8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613171602083612457565b915061317c8261313b565b602082019050919050565b600060208201905081810360008301526131a081613164565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006131dd601f83612457565b91506131e8826131a7565b602082019050919050565b6000602082019050818103600083015261320c816131d0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061323a82613213565b613244818561321e565b9350613254818560208601612468565b61325d81612492565b840191505092915050565b600060808201905061327d6000830187612593565b61328a6020830186612593565b6132976040830185612629565b81810360608301526132a9818461322f565b905095945050505050565b6000815190506132c3816123bd565b92915050565b6000602082840312156132df576132de612387565b5b60006132ed848285016132b4565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea26469706673582212206370c8d35994155d3ef881ce87f9647a20fb0fba859236c4e655e9152852c8f664736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e657161665068687a706263563538336d6f6d3366466f77785051397945584d69706d4e4e474d793779524b2f00000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c8063715018a611610123578063aadb5b37116100ab578063c204642c1161006f578063c204642c14610742578063c87b56dd1461076b578063e098ff73146107a8578063e985e9c5146107d3578063f2fde38b146108105761021a565b8063aadb5b371461067c578063b071401b146106a7578063b0fe6414146106d0578063b88d4fde146106fb578063bc951b91146107175761021a565b806393e90b23116100f257806393e90b23146105b857806394354fd0146105e157806395d89b411461060c578063a0712d6814610637578063a22cb465146106535761021a565b8063715018a614610536578063766b7d091461054d5780638456cb59146105765780638da5cb5b1461058d5761021a565b806342842e0e116101a6578063626ab3b811610175578063626ab3b8146104415780636352211e1461046a578063676f2602146104a75780636f8b44b0146104d057806370a08231146104f95761021a565b806342842e0e146103a65780634d534a7d146103c257806351830227146103eb5780635c975abb146104165761021a565b806311b4a832116101ed57806311b4a832146102e057806318160ddd1461031d57806322f4596f1461034857806323b872dd146103735780633ccfd60b1461038f5761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906123e9565b610839565b6040516102539190612431565b60405180910390f35b34801561026857600080fd5b506102716108cb565b60405161027e91906124dc565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190612534565b61095d565b6040516102bb91906125a2565b60405180910390f35b6102de60048036038101906102d991906125e9565b6109dc565b005b3480156102ec57600080fd5b5061030760048036038101906103029190612534565b610b20565b6040516103149190612638565b60405180910390f35b34801561032957600080fd5b50610332610bb2565b60405161033f9190612638565b60405180910390f35b34801561035457600080fd5b5061035d610bc9565b60405161036a9190612638565b60405180910390f35b61038d60048036038101906103889190612653565b610bcf565b005b34801561039b57600080fd5b506103a4610ef1565b005b6103c060048036038101906103bb9190612653565b610f89565b005b3480156103ce57600080fd5b506103e960048036038101906103e491906127db565b610fa9565b005b3480156103f757600080fd5b50610400610fc4565b60405161040d9190612431565b60405180910390f35b34801561042257600080fd5b5061042b610fd7565b6040516104389190612431565b60405180910390f35b34801561044d57600080fd5b50610468600480360381019061046391906127db565b610fea565b005b34801561047657600080fd5b50610491600480360381019061048c9190612534565b611005565b60405161049e91906125a2565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190612534565b611017565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190612534565b611029565b005b34801561050557600080fd5b50610520600480360381019061051b9190612824565b61103b565b60405161052d9190612638565b60405180910390f35b34801561054257600080fd5b5061054b6110f3565b005b34801561055957600080fd5b50610574600480360381019061056f9190612534565b611107565b005b34801561058257600080fd5b5061058b611119565b005b34801561059957600080fd5b506105a261114d565b6040516105af91906125a2565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da9190612534565b611177565b005b3480156105ed57600080fd5b506105f6611189565b6040516106039190612638565b60405180910390f35b34801561061857600080fd5b5061062161118f565b60405161062e91906124dc565b60405180910390f35b610651600480360381019061064c9190612534565b611221565b005b34801561065f57600080fd5b5061067a6004803603810190610675919061287d565b611458565b005b34801561068857600080fd5b50610691611563565b60405161069e9190612638565b60405180910390f35b3480156106b357600080fd5b506106ce60048036038101906106c99190612534565b611569565b005b3480156106dc57600080fd5b506106e561157b565b6040516106f29190612638565b60405180910390f35b6107156004803603810190610710919061295e565b611581565b005b34801561072357600080fd5b5061072c6115f4565b6040516107399190612638565b60405180910390f35b34801561074e57600080fd5b5061076960048036038101906107649190612aa9565b6115fa565b005b34801561077757600080fd5b50610792600480360381019061078d9190612534565b611782565b60405161079f91906124dc565b60405180910390f35b3480156107b457600080fd5b506107bd611823565b6040516107ca9190612638565b60405180910390f35b3480156107df57600080fd5b506107fa60048036038101906107f59190612b05565b611829565b6040516108079190612431565b60405180910390f35b34801561081c57600080fd5b5061083760048036038101906108329190612824565b6118bd565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108da90612b74565b80601f016020809104026020016040519081016040528092919081815260200182805461090690612b74565b80156109535780601f1061092857610100808354040283529160200191610953565b820191906000526020600020905b81548152906001019060200180831161093657829003601f168201915b5050505050905090565b600061096882611940565b61099e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e782611005565b90508073ffffffffffffffffffffffffffffffffffffffff16610a0861199f565b73ffffffffffffffffffffffffffffffffffffffff1614610a6b57610a3481610a2f61199f565b611829565b610a6a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600080610b2c3361103b565b83610b379190612bd4565b90506011548111610b4d57600f54915050610bad565b601154610b593361103b565b108015610b67575060115481115b15610b9557600060115484610b7c9190612c08565b601054610b899190612c3c565b90508092505050610bad565b600083601054610ba59190612c3c565b905080925050505b919050565b6000610bbc6119a7565b6001546000540303905090565b600a5481565b6000610bda826119b0565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c41576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c4d84611a7c565b91509150610c638187610c5e61199f565b611aa3565b610caf57610c7886610c7361199f565b611829565b610cae576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d15576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d228686866001611ae7565b8015610d2d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610dfb85610dd7888887611aed565b7c020000000000000000000000000000000000000000000000000000000017611b15565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e815760006001850190506000600460008381526020019081526020016000205403610e7f576000548114610e7e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ee98686866001611b40565b505050505050565b610ef9611b46565b610f01611bc4565b6000610f0b61114d565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f2e90612caf565b60006040518083038185875af1925050503d8060008114610f6b576040519150601f19603f3d011682016040523d82523d6000602084013e610f70565b606091505b5050905080610f7e57600080fd5b50610f87611c13565b565b610fa483838360405180602001604052806000815250611581565b505050565b610fb1611b46565b80600e9081610fc09190612e70565b5050565b601360009054906101000a900460ff1681565b601360019054906101000a900460ff1681565b610ff2611b46565b80600d90816110019190612e70565b5050565b6000611010826119b0565b9050919050565b61101f611b46565b8060108190555050565b611031611b46565b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110a2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6110fb611b46565b6111056000611c1d565b565b61110f611b46565b80600b8190555050565b611121611b46565b601360019054906101000a900460ff1615601360016101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61117f611b46565b8060118190555050565b600c5481565b60606003805461119e90612b74565b80601f01602080910402602001604051908101604052809291908181526020018280546111ca90612b74565b80156112175780601f106111ec57610100808354040283529160200191611217565b820191906000526020600020905b8154815290600101906020018083116111fa57829003601f168201915b5050505050905090565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611287576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481611293610bb2565b61129d9190612bd4565b11156112d5576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c54811115611311576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff1615611358576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600b54816113663361103b565b6113709190612bd4565b11156113a8576040517f6a3eaa7b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008110806113b85750600b5481115b156113ef576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806014546113fd9190612c3c565b61140682610b20565b6114109190612bd4565b341015611449576040517fd44b3c6200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114533384611ce3565b505050565b806007600061146561199f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661151261199f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115579190612431565b60405180910390a35050565b60145481565b611571611b46565b80600c8190555050565b60115481565b61158c848484610bcf565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115ee576115b784848484611d01565b6115ed576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b5481565b611602611b46565b803273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611668576040517f4af0169e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a5481611674610bb2565b61167e9190612bd4565b11156116b6576040517fb36c128400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c548111156116f2576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601360019054906101000a900460ff1615611739576040517fab35696f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b835181101561177c5761176984828151811061175b5761175a612f42565b5b602002602001015184611ce3565b808061177490612f71565b91505061173c565b50505050565b606061178d82611940565b6117c3576040517f2f9aab5800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006117cd611e51565b905060008151116117ed576040518060200160405280600081525061181b565b806117f784611ee3565b600e60405160200161180b93929190613078565b6040516020818303038152906040525b915050919050565b60105481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118c5611b46565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b9061311b565b60405180910390fd5b61193d81611c1d565b50565b60008161194b6119a7565b1115801561195a575060005482105b8015611998575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806119bf6119a7565b11611a4557600054811015611a445760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611a42575b60008103611a38576004600083600190039350838152602001908152602001600020549050611a0e565b8092505050611a77565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b04868684611fb1565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611b4e611fba565b73ffffffffffffffffffffffffffffffffffffffff16611b6c61114d565b73ffffffffffffffffffffffffffffffffffffffff1614611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb990613187565b60405180910390fd5b565b600260095403611c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c00906131f3565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611cfd828260405180602001604052806000815250611fc2565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d2761199f565b8786866040518563ffffffff1660e01b8152600401611d499493929190613268565b6020604051808303816000875af1925050508015611d8557506040513d601f19601f82011682018060405250810190611d8291906132c9565b60015b611dfe573d8060008114611db5576040519150601f19603f3d011682016040523d82523d6000602084013e611dba565b606091505b506000815103611df6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054611e6090612b74565b80601f0160208091040260200160405190810160405280929190818152602001828054611e8c90612b74565b8015611ed95780601f10611eae57610100808354040283529160200191611ed9565b820191906000526020600020905b815481529060010190602001808311611ebc57829003601f168201915b5050505050905090565b606060006001611ef28461205f565b01905060008167ffffffffffffffff811115611f1157611f106126b0565b5b6040519080825280601f01601f191660200182016040528015611f435781602001600182028036833780820191505090505b509050600082602001820190505b600115611fa6578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611f9a57611f996132f6565b5b04945060008503611f51575b819350505050919050565b60009392505050565b600033905090565b611fcc83836121b2565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461205a57600080549050600083820390505b61200c6000868380600101945086611d01565b612042576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ff957816000541461205757600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106120bd577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816120b3576120b26132f6565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106120fa576d04ee2d6d415b85acef810000000083816120f0576120ef6132f6565b5b0492506020810190505b662386f26fc10000831061212957662386f26fc10000838161211f5761211e6132f6565b5b0492506010810190505b6305f5e1008310612152576305f5e1008381612148576121476132f6565b5b0492506008810190505b612710831061217757612710838161216d5761216c6132f6565b5b0492506004810190505b6064831061219a57606483816121905761218f6132f6565b5b0492506002810190505b600a83106121a9576001810190505b80915050919050565b600080549050600082036121f2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121ff6000848385611ae7565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612276836122676000866000611aed565b6122708561236d565b17611b15565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461231757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122dc565b5060008203612352576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123686000848385611b40565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123c681612391565b81146123d157600080fd5b50565b6000813590506123e3816123bd565b92915050565b6000602082840312156123ff576123fe612387565b5b600061240d848285016123d4565b91505092915050565b60008115159050919050565b61242b81612416565b82525050565b60006020820190506124466000830184612422565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561248657808201518184015260208101905061246b565b60008484015250505050565b6000601f19601f8301169050919050565b60006124ae8261244c565b6124b88185612457565b93506124c8818560208601612468565b6124d181612492565b840191505092915050565b600060208201905081810360008301526124f681846124a3565b905092915050565b6000819050919050565b612511816124fe565b811461251c57600080fd5b50565b60008135905061252e81612508565b92915050565b60006020828403121561254a57612549612387565b5b60006125588482850161251f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061258c82612561565b9050919050565b61259c81612581565b82525050565b60006020820190506125b76000830184612593565b92915050565b6125c681612581565b81146125d157600080fd5b50565b6000813590506125e3816125bd565b92915050565b60008060408385031215612600576125ff612387565b5b600061260e858286016125d4565b925050602061261f8582860161251f565b9150509250929050565b612632816124fe565b82525050565b600060208201905061264d6000830184612629565b92915050565b60008060006060848603121561266c5761266b612387565b5b600061267a868287016125d4565b935050602061268b868287016125d4565b925050604061269c8682870161251f565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126e882612492565b810181811067ffffffffffffffff82111715612707576127066126b0565b5b80604052505050565b600061271a61237d565b905061272682826126df565b919050565b600067ffffffffffffffff821115612746576127456126b0565b5b61274f82612492565b9050602081019050919050565b82818337600083830152505050565b600061277e6127798461272b565b612710565b90508281526020810184848401111561279a576127996126ab565b5b6127a584828561275c565b509392505050565b600082601f8301126127c2576127c16126a6565b5b81356127d284826020860161276b565b91505092915050565b6000602082840312156127f1576127f0612387565b5b600082013567ffffffffffffffff81111561280f5761280e61238c565b5b61281b848285016127ad565b91505092915050565b60006020828403121561283a57612839612387565b5b6000612848848285016125d4565b91505092915050565b61285a81612416565b811461286557600080fd5b50565b60008135905061287781612851565b92915050565b6000806040838503121561289457612893612387565b5b60006128a2858286016125d4565b92505060206128b385828601612868565b9150509250929050565b600067ffffffffffffffff8211156128d8576128d76126b0565b5b6128e182612492565b9050602081019050919050565b60006129016128fc846128bd565b612710565b90508281526020810184848401111561291d5761291c6126ab565b5b61292884828561275c565b509392505050565b600082601f830112612945576129446126a6565b5b81356129558482602086016128ee565b91505092915050565b6000806000806080858703121561297857612977612387565b5b6000612986878288016125d4565b9450506020612997878288016125d4565b93505060406129a88782880161251f565b925050606085013567ffffffffffffffff8111156129c9576129c861238c565b5b6129d587828801612930565b91505092959194509250565b600067ffffffffffffffff8211156129fc576129fb6126b0565b5b602082029050602081019050919050565b600080fd5b6000612a25612a20846129e1565b612710565b90508083825260208201905060208402830185811115612a4857612a47612a0d565b5b835b81811015612a715780612a5d88826125d4565b845260208401935050602081019050612a4a565b5050509392505050565b600082601f830112612a9057612a8f6126a6565b5b8135612aa0848260208601612a12565b91505092915050565b60008060408385031215612ac057612abf612387565b5b600083013567ffffffffffffffff811115612ade57612add61238c565b5b612aea85828601612a7b565b9250506020612afb8582860161251f565b9150509250929050565b60008060408385031215612b1c57612b1b612387565b5b6000612b2a858286016125d4565b9250506020612b3b858286016125d4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b8c57607f821691505b602082108103612b9f57612b9e612b45565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612bdf826124fe565b9150612bea836124fe565b9250828201905080821115612c0257612c01612ba5565b5b92915050565b6000612c13826124fe565b9150612c1e836124fe565b9250828203905081811115612c3657612c35612ba5565b5b92915050565b6000612c47826124fe565b9150612c52836124fe565b9250828202612c60816124fe565b91508282048414831517612c7757612c76612ba5565b5b5092915050565b600081905092915050565b50565b6000612c99600083612c7e565b9150612ca482612c89565b600082019050919050565b6000612cba82612c8c565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612d267fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612ce9565b612d308683612ce9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612d6d612d68612d63846124fe565b612d48565b6124fe565b9050919050565b6000819050919050565b612d8783612d52565b612d9b612d9382612d74565b848454612cf6565b825550505050565b600090565b612db0612da3565b612dbb818484612d7e565b505050565b5b81811015612ddf57612dd4600082612da8565b600181019050612dc1565b5050565b601f821115612e2457612df581612cc4565b612dfe84612cd9565b81016020851015612e0d578190505b612e21612e1985612cd9565b830182612dc0565b50505b505050565b600082821c905092915050565b6000612e4760001984600802612e29565b1980831691505092915050565b6000612e608383612e36565b9150826002028217905092915050565b612e798261244c565b67ffffffffffffffff811115612e9257612e916126b0565b5b612e9c8254612b74565b612ea7828285612de3565b600060209050601f831160018114612eda5760008415612ec8578287015190505b612ed28582612e54565b865550612f3a565b601f198416612ee886612cc4565b60005b82811015612f1057848901518255600182019150602085019450602081019050612eeb565b86831015612f2d5784890151612f29601f891682612e36565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612f7c826124fe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612fae57612fad612ba5565b5b600182019050919050565b600081905092915050565b6000612fcf8261244c565b612fd98185612fb9565b9350612fe9818560208601612468565b80840191505092915050565b6000815461300281612b74565b61300c8186612fb9565b94506001821660008114613027576001811461303c5761306f565b60ff198316865281151582028601935061306f565b61304585612cc4565b60005b8381101561306757815481890152600182019150602081019050613048565b838801955050505b50505092915050565b60006130848286612fc4565b91506130908285612fc4565b915061309c8284612ff5565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613105602683612457565b9150613110826130a9565b604082019050919050565b60006020820190508181036000830152613134816130f8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613171602083612457565b915061317c8261313b565b602082019050919050565b600060208201905081810360008301526131a081613164565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006131dd601f83612457565b91506131e8826131a7565b602082019050919050565b6000602082019050818103600083015261320c816131d0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061323a82613213565b613244818561321e565b9350613254818560208601612468565b61325d81612492565b840191505092915050565b600060808201905061327d6000830187612593565b61328a6020830186612593565b6132976040830185612629565b81810360608301526132a9818461322f565b905095945050505050565b6000815190506132c3816123bd565b92915050565b6000602082840312156132df576132de612387565b5b60006132ed848285016132b4565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea26469706673582212206370c8d35994155d3ef881ce87f9647a20fb0fba859236c4e655e9152852c8f664736f6c63430008120033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d4e657161665068687a706263563538336d6f6d3366466f77785051397945584d69706d4e4e474d793779524b2f00000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmNeqafPhhzpbcV583mom3fFowxPQ9yEXMipmNNGMy7yRK/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d4e657161665068687a706263563538336d6f6d3366466f
Arg [3] : 77785051397945584d69706d4e4e474d793779524b2f00000000000000000000


Deployed Bytecode Sourcemap

73276:6724:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36549:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37451:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43942:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43375:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75717:564;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33202:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73391:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47581:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78564:197;;;;;;;;;;;;;:::i;:::-;;50502:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77204:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73817:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73860:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77055:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38844:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77420:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77600:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34386:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72356:103;;;;;;;;;;;;;:::i;:::-;;78004:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;76897:75;;;;;;;;;;;;;:::i;:::-;;71708:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78248:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73494:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37627:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75385:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44500:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73899:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77795:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73722:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51293:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73438:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76541:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78992:381;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73669:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44891:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72614:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36549:639;36634:4;36973:10;36958:25;;:11;:25;;;;:102;;;;37050:10;37035:25;;:11;:25;;;;36958:102;:179;;;;37127:10;37112:25;;:11;:25;;;;36958:179;36938:199;;36549:639;;;:::o;37451:100::-;37505:13;37538:5;37531:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37451:100;:::o;43942:218::-;44018:7;44043:16;44051:7;44043;:16::i;:::-;44038:64;;44068:34;;;;;;;;;;;;;;44038:64;44122:15;:24;44138:7;44122:24;;;;;;;;;;;:30;;;;;;;;;;;;44115:37;;43942:218;;;:::o;43375:408::-;43464:13;43480:16;43488:7;43480;:16::i;:::-;43464:32;;43536:5;43513:28;;:19;:17;:19::i;:::-;:28;;;43509:175;;43561:44;43578:5;43585:19;:17;:19::i;:::-;43561:16;:44::i;:::-;43556:128;;43633:35;;;;;;;;;;;;;;43556:128;43509:175;43729:2;43696:15;:24;43712:7;43696:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;43767:7;43763:2;43747:28;;43756:5;43747:28;;;;;;;;;;;;43453:330;43375:408;;:::o;75717:564::-;75778:7;75800:18;75835:21;75845:10;75835:9;:21::i;:::-;75821:11;:35;;;;:::i;:::-;75800:56;;75888:16;;75874:10;:30;75869:401;;75928:12;;75921:19;;;;;75869:401;75989:16;;75965:21;75975:10;75965:9;:21::i;:::-;:40;75964:77;;;;;76024:16;;76011:10;:29;75964:77;75960:310;;;76058:13;76101:16;;76087:11;:30;;;;:::i;:::-;76074:9;;:44;;;;:::i;:::-;76058:60;;76138:5;76131:12;;;;;;75960:310;76188:14;76217:11;76205:9;;:23;;;;:::i;:::-;76188:40;;76248:6;76241:13;;;;75717:564;;;;:::o;33202:323::-;33263:7;33491:15;:13;:15::i;:::-;33476:12;;33460:13;;:28;:46;33453:53;;33202:323;:::o;73391:32::-;;;;:::o;47581:2825::-;47723:27;47753;47772:7;47753:18;:27::i;:::-;47723:57;;47838:4;47797:45;;47813:19;47797:45;;;47793:86;;47851:28;;;;;;;;;;;;;;47793:86;47893:27;47922:23;47949:35;47976:7;47949:26;:35::i;:::-;47892:92;;;;48084:68;48109:15;48126:4;48132:19;:17;:19::i;:::-;48084:24;:68::i;:::-;48079:180;;48172:43;48189:4;48195:19;:17;:19::i;:::-;48172:16;:43::i;:::-;48167:92;;48224:35;;;;;;;;;;;;;;48167:92;48079:180;48290:1;48276:16;;:2;:16;;;48272:52;;48301:23;;;;;;;;;;;;;;48272:52;48337:43;48359:4;48365:2;48369:7;48378:1;48337:21;:43::i;:::-;48473:15;48470:160;;;48613:1;48592:19;48585:30;48470:160;49010:18;:24;49029:4;49010:24;;;;;;;;;;;;;;;;49008:26;;;;;;;;;;;;49079:18;:22;49098:2;49079:22;;;;;;;;;;;;;;;;49077:24;;;;;;;;;;;49401:146;49438:2;49487:45;49502:4;49508:2;49512:19;49487:14;:45::i;:::-;29601:8;49459:73;49401:18;:146::i;:::-;49372:17;:26;49390:7;49372:26;;;;;;;;;;;:175;;;;49718:1;29601:8;49667:19;:47;:52;49663:627;;49740:19;49772:1;49762:7;:11;49740:33;;49929:1;49895:17;:30;49913:11;49895:30;;;;;;;;;;;;:35;49891:384;;50033:13;;50018:11;:28;50014:242;;50213:19;50180:17;:30;50198:11;50180:30;;;;;;;;;;;:52;;;;50014:242;49891:384;49721:569;49663:627;50337:7;50333:2;50318:27;;50327:4;50318:27;;;;;;;;;;;;50356:42;50377:4;50383:2;50387:7;50396:1;50356:20;:42::i;:::-;47712:2694;;;47581:2825;;;:::o;78564:197::-;71594:13;:11;:13::i;:::-;2345:21:::1;:19;:21::i;:::-;78653:10:::2;78677:7;:5;:7::i;:::-;78669:21;;78698;78669:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78652:72;;;78743:5;78735:14;;;::::0;::::2;;78613:148;2389:20:::1;:18;:20::i;:::-;78564:197::o:0;50502:193::-;50648:39;50665:4;50671:2;50675:7;50648:39;;;;;;;;;;;;:16;:39::i;:::-;50502:193;;;:::o;77204:103::-;71594:13;:11;:13::i;:::-;77292:3:::1;77277:12;:18;;;;;;:::i;:::-;;77204:103:::0;:::o;73817:28::-;;;;;;;;;;;;;:::o;73860:25::-;;;;;;;;;;;;;:::o;77055:93::-;71594:13;:11;:13::i;:::-;77133:3:::1;77123:7;:13;;;;;;:::i;:::-;;77055:93:::0;:::o;38844:152::-;38916:7;38959:27;38978:7;38959:18;:27::i;:::-;38936:52;;38844:152;;;:::o;77420:95::-;71594:13;:11;:13::i;:::-;77498:5:::1;77486:9;:17;;;;77420:95:::0;:::o;77600:98::-;71594:13;:11;:13::i;:::-;77680:6:::1;77667:10;:19;;;;77600:98:::0;:::o;34386:233::-;34458:7;34499:1;34482:19;;:5;:19;;;34478:60;;34510:28;;;;;;;;;;;;;;34478:60;28545:13;34556:18;:25;34575:5;34556:25;;;;;;;;;;;;;;;;:55;34549:62;;34386:233;;;:::o;72356:103::-;71594:13;:11;:13::i;:::-;72421:30:::1;72448:1;72421:18;:30::i;:::-;72356:103::o:0;78004:129::-;71594:13;:11;:13::i;:::-;78112:9:::1;78087:22;:34;;;;78004:129:::0;:::o;76897:75::-;71594:13;:11;:13::i;:::-;76954:6:::1;;;;;;;;;;;76953:7;76944:6;;:16;;;;;;;;;;;;;;;;;;76897:75::o:0;71708:87::-;71754:7;71781:6;;;;;;;;;;;71774:13;;71708:87;:::o;78248:117::-;71594:13;:11;:13::i;:::-;78344:9:::1;78325:16;:28;;;;78248:117:::0;:::o;73494:37::-;;;;:::o;37627:104::-;37683:13;37716:7;37709:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37627:104;:::o;75385:168::-;75450:11;74523:9;74509:23;;:10;:23;;;74505:53;;74541:17;;;;;;;;;;;;;;74505:53;74608:10;;74594:11;74577:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:41;74573:65;;;74627:11;;;;;;;;;;;;;;74573:65;74671:18;;74657:11;:32;74653:64;;;74698:19;;;;;;;;;;;;;;74653:64;74735:6;;;;;;;;;;;74732:34;;;74750:16;;;;;;;;;;;;;;74732:34;75483:11:::1;74912:22;;74898:11;74874:21;74884:10;74874:9;:21::i;:::-;:35;;;;:::i;:::-;:60;74871:95;;;74943:23;;;;;;;;;;;;;;74871:95;74999:1;74985:11;:15;:55;;;;75018:22;;75004:11;:36;74985:55;74981:87;;;75049:19;;;;;;;;;;;;;;74981:87;75138:11;75125:10;;:24;;;;:::i;:::-;75099:22;75109:11;75099:9;:22::i;:::-;:51;;;;:::i;:::-;75087:9;:63;75083:95;;;75160:18;;;;;;;;;;;;;;75083:95;75507:34:::2;75517:10;75529:11;75507:9;:34::i;:::-;74781:1:::1;75385:168:::0;;:::o;44500:234::-;44647:8;44595:18;:39;44614:19;:17;:19::i;:::-;44595:39;;;;;;;;;;;;;;;:49;44635:8;44595:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;44707:8;44671:55;;44686:19;:17;:19::i;:::-;44671:55;;;44717:8;44671:55;;;;;;:::i;:::-;;;;;;;;44500:234;;:::o;73899:35::-;;;;:::o;77795:113::-;71594:13;:11;:13::i;:::-;77891:5:::1;77870:18;:26;;;;77795:113:::0;:::o;73722:35::-;;;;:::o;51293:407::-;51468:31;51481:4;51487:2;51491:7;51468:12;:31::i;:::-;51532:1;51514:2;:14;;;:19;51510:183;;51553:56;51584:4;51590:2;51594:7;51603:5;51553:30;:56::i;:::-;51548:145;;51637:40;;;;;;;;;;;;;;51548:145;51510:183;51293:407;;;;:::o;73438:41::-;;;;:::o;76541:224::-;71594:13;:11;:13::i;:::-;76632:6:::1;74523:9;74509:23;;:10;:23;;;74505:53;;74541:17;;;;;;;;;;;;;;74505:53;74608:10;;74594:11;74577:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:41;74573:65;;;74627:11;;;;;;;;;;;;;;74573:65;74671:18;;74657:11;:32;74653:64;;;74698:19;;;;;;;;;;;;;;74653:64;74735:6;;;;;;;;;;;74732:34;;;74750:16;;;;;;;;;;;;;;74732:34;76657:9:::2;76653:101;76676:8;:15;76672:1;:19;76653:101;;;76710:30;76720:8;76729:1;76720:11;;;;;;;;:::i;:::-;;;;;;;;76733:6;76710:9;:30::i;:::-;76693:3;;;;;:::i;:::-;;;;76653:101;;;;71618:1:::1;76541:224:::0;;:::o;78992:381::-;79066:13;79099:16;79107:7;79099;:16::i;:::-;79094:48;;79124:18;;;;;;;;;;;;;;79094:48;79170:28;79201:10;:8;:10::i;:::-;79170:41;;79260:1;79235:14;79229:28;:32;:132;;;;;;;;;;;;;;;;;79297:14;79313:18;:7;:16;:18::i;:::-;79333:12;79280:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;79229:132;79222:139;;;78992:381;;;:::o;73669:38::-;;;;:::o;44891:164::-;44988:4;45012:18;:25;45031:5;45012:25;;;;;;;;;;;;;;;:35;45038:8;45012:35;;;;;;;;;;;;;;;;;;;;;;;;;45005:42;;44891:164;;;;:::o;72614:201::-;71594:13;:11;:13::i;:::-;72723:1:::1;72703:22;;:8;:22;;::::0;72695:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;72779:28;72798:8;72779:18;:28::i;:::-;72614:201:::0;:::o;45313:282::-;45378:4;45434:7;45415:15;:13;:15::i;:::-;:26;;:66;;;;;45468:13;;45458:7;:23;45415:66;:153;;;;;45567:1;29321:8;45519:17;:26;45537:7;45519:26;;;;;;;;;;;;:44;:49;45415:153;45395:173;;45313:282;;;:::o;67621:105::-;67681:7;67708:10;67701:17;;67621:105;:::o;79432:107::-;79497:7;79526:1;79519:8;;79432:107;:::o;39999:1275::-;40066:7;40086:12;40101:7;40086:22;;40169:4;40150:15;:13;:15::i;:::-;:23;40146:1061;;40203:13;;40196:4;:20;40192:1015;;;40241:14;40258:17;:23;40276:4;40258:23;;;;;;;;;;;;40241:40;;40375:1;29321:8;40347:6;:24;:29;40343:845;;41012:113;41029:1;41019:6;:11;41012:113;;41072:17;:25;41090:6;;;;;;;41072:25;;;;;;;;;;;;41063:34;;41012:113;;;41158:6;41151:13;;;;;;40343:845;40218:989;40192:1015;40146:1061;41235:31;;;;;;;;;;;;;;39999:1275;;;;:::o;46476:485::-;46578:27;46607:23;46648:38;46689:15;:24;46705:7;46689:24;;;;;;;;;;;46648:65;;46866:18;46843:41;;46923:19;46917:26;46898:45;;46828:126;46476:485;;;:::o;45704:659::-;45853:11;46018:16;46011:5;46007:28;45998:37;;46178:16;46167:9;46163:32;46150:45;;46328:15;46317:9;46314:30;46306:5;46295:9;46292:20;46289:56;46279:66;;45704:659;;;;;:::o;52362:159::-;;;;;:::o;66930:311::-;67065:7;67085:16;29725:3;67111:19;:41;;67085:68;;29725:3;67179:31;67190:4;67196:2;67200:9;67179:10;:31::i;:::-;67171:40;;:62;;67164:69;;;66930:311;;;;;:::o;41822:450::-;41902:14;42070:16;42063:5;42059:28;42050:37;;42247:5;42233:11;42208:23;42204:41;42201:52;42194:5;42191:63;42181:73;;41822:450;;;;:::o;53186:158::-;;;;;:::o;71873:132::-;71948:12;:10;:12::i;:::-;71937:23;;:7;:5;:7::i;:::-;:23;;;71929:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71873:132::o;2425:293::-;1827:1;2559:7;;:19;2551:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1827:1;2692:7;:18;;;;2425:293::o;2726:213::-;1783:1;2909:7;:22;;;;2726:213::o;72975:191::-;73049:16;73068:6;;;;;;;;;;;73049:25;;73094:8;73085:6;;:17;;;;;;;;;;;;;;;;;;73149:8;73118:40;;73139:8;73118:40;;;;;;;;;;;;73038:128;72975:191;:::o;61453:112::-;61530:27;61540:2;61544:8;61530:27;;;;;;;;;;;;:9;:27::i;:::-;61453:112;;:::o;53784:716::-;53947:4;53993:2;53968:45;;;54014:19;:17;:19::i;:::-;54035:4;54041:7;54050:5;53968:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53964:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54268:1;54251:6;:13;:18;54247:235;;54297:40;;;;;;;;;;;;;;54247:235;54440:6;54434:13;54425:6;54421:2;54417:15;54410:38;53964:529;54137:54;;;54127:64;;;:6;:64;;;;54120:71;;;53784:716;;;;;;:::o;79619:114::-;79679:13;79714:7;79707:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79619:114;:::o;16251:716::-;16307:13;16358:14;16395:1;16375:17;16386:5;16375:10;:17::i;:::-;:21;16358:38;;16411:20;16445:6;16434:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16411:41;;16467:11;16596:6;16592:2;16588:15;16580:6;16576:28;16569:35;;16633:288;16640:4;16633:288;;;16665:5;;;;;;;;16807:8;16802:2;16795:5;16791:14;16786:30;16781:3;16773:44;16863:2;16854:11;;;;;;:::i;:::-;;;;;16897:1;16888:5;:10;16633:288;16884:21;16633:288;16942:6;16935:13;;;;;16251:716;;;:::o;66631:147::-;66768:6;66631:147;;;;;:::o;70259:98::-;70312:7;70339:10;70332:17;;70259:98;:::o;60680:689::-;60811:19;60817:2;60821:8;60811:5;:19::i;:::-;60890:1;60872:2;:14;;;:19;60868:483;;60912:11;60926:13;;60912:27;;60958:13;60980:8;60974:3;:14;60958:30;;61007:233;61038:62;61077:1;61081:2;61085:7;;;;;;61094:5;61038:30;:62::i;:::-;61033:167;;61136:40;;;;;;;;;;;;;;61033:167;61235:3;61227:5;:11;61007:233;;61322:3;61305:13;;:20;61301:34;;61327:8;;;61301:34;60893:458;;60868:483;60680:689;;;:::o;13117:922::-;13170:7;13190:14;13207:1;13190:18;;13257:6;13248:5;:15;13244:102;;13293:6;13284:15;;;;;;:::i;:::-;;;;;13328:2;13318:12;;;;13244:102;13373:6;13364:5;:15;13360:102;;13409:6;13400:15;;;;;;:::i;:::-;;;;;13444:2;13434:12;;;;13360:102;13489:6;13480:5;:15;13476:102;;13525:6;13516:15;;;;;;:::i;:::-;;;;;13560:2;13550:12;;;;13476:102;13605:5;13596;:14;13592:99;;13640:5;13631:14;;;;;;:::i;:::-;;;;;13674:1;13664:11;;;;13592:99;13718:5;13709;:14;13705:99;;13753:5;13744:14;;;;;;:::i;:::-;;;;;13787:1;13777:11;;;;13705:99;13831:5;13822;:14;13818:99;;13866:5;13857:14;;;;;;:::i;:::-;;;;;13900:1;13890:11;;;;13818:99;13944:5;13935;:14;13931:66;;13980:1;13970:11;;;;13931:66;14025:6;14018:13;;;13117:922;;;:::o;54962:2966::-;55035:20;55058:13;;55035:36;;55098:1;55086:8;:13;55082:44;;55108:18;;;;;;;;;;;;;;55082:44;55139:61;55169:1;55173:2;55177:12;55191:8;55139:21;:61::i;:::-;55683:1;28683:2;55653:1;:26;;55652:32;55640:8;:45;55614:18;:22;55633:2;55614:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;55962:139;55999:2;56053:33;56076:1;56080:2;56084:1;56053:14;:33::i;:::-;56020:30;56041:8;56020:20;:30::i;:::-;:66;55962:18;:139::i;:::-;55928:17;:31;55946:12;55928:31;;;;;;;;;;;:173;;;;56118:16;56149:11;56178:8;56163:12;:23;56149:37;;56699:16;56695:2;56691:25;56679:37;;57071:12;57031:8;56990:1;56928:25;56869:1;56808;56781:335;57442:1;57428:12;57424:20;57382:346;57483:3;57474:7;57471:16;57382:346;;57701:7;57691:8;57688:1;57661:25;57658:1;57655;57650:59;57536:1;57527:7;57523:15;57512:26;;57382:346;;;57386:77;57773:1;57761:8;:13;57757:45;;57783:19;;;;;;;;;;;;;;57757:45;57835:3;57819:13;:19;;;;55388:2462;;57860:60;57889:1;57893:2;57897:12;57911:8;57860:20;:60::i;:::-;55024:2904;54962:2966;;:::o;42374:324::-;42444:14;42677:1;42667:8;42664:15;42638:24;42634:46;42624:56;;42374:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:180;6161:77;6158:1;6151:88;6258:4;6255:1;6248:15;6282:4;6279:1;6272:15;6299:281;6382:27;6404:4;6382:27;:::i;:::-;6374:6;6370:40;6512:6;6500:10;6497:22;6476:18;6464:10;6461:34;6458:62;6455:88;;;6523:18;;:::i;:::-;6455:88;6563:10;6559:2;6552:22;6342:238;6299:281;;:::o;6586:129::-;6620:6;6647:20;;:::i;:::-;6637:30;;6676:33;6704:4;6696:6;6676:33;:::i;:::-;6586:129;;;:::o;6721:308::-;6783:4;6873:18;6865:6;6862:30;6859:56;;;6895:18;;:::i;:::-;6859:56;6933:29;6955:6;6933:29;:::i;:::-;6925:37;;7017:4;7011;7007:15;6999:23;;6721:308;;;:::o;7035:146::-;7132:6;7127:3;7122;7109:30;7173:1;7164:6;7159:3;7155:16;7148:27;7035:146;;;:::o;7187:425::-;7265:5;7290:66;7306:49;7348:6;7306:49;:::i;:::-;7290:66;:::i;:::-;7281:75;;7379:6;7372:5;7365:21;7417:4;7410:5;7406:16;7455:3;7446:6;7441:3;7437:16;7434:25;7431:112;;;7462:79;;:::i;:::-;7431:112;7552:54;7599:6;7594:3;7589;7552:54;:::i;:::-;7271:341;7187:425;;;;;:::o;7632:340::-;7688:5;7737:3;7730:4;7722:6;7718:17;7714:27;7704:122;;7745:79;;:::i;:::-;7704:122;7862:6;7849:20;7887:79;7962:3;7954:6;7947:4;7939:6;7935:17;7887:79;:::i;:::-;7878:88;;7694:278;7632:340;;;;:::o;7978:509::-;8047:6;8096:2;8084:9;8075:7;8071:23;8067:32;8064:119;;;8102:79;;:::i;:::-;8064:119;8250:1;8239:9;8235:17;8222:31;8280:18;8272:6;8269:30;8266:117;;;8302:79;;:::i;:::-;8266:117;8407:63;8462:7;8453:6;8442:9;8438:22;8407:63;:::i;:::-;8397:73;;8193:287;7978:509;;;;:::o;8493:329::-;8552:6;8601:2;8589:9;8580:7;8576:23;8572:32;8569:119;;;8607:79;;:::i;:::-;8569:119;8727:1;8752:53;8797:7;8788:6;8777:9;8773:22;8752:53;:::i;:::-;8742:63;;8698:117;8493:329;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:311::-;11688:4;11778:18;11770:6;11767:30;11764:56;;;11800:18;;:::i;:::-;11764:56;11850:4;11842:6;11838:17;11830:25;;11910:4;11904;11900:15;11892:23;;11611:311;;;:::o;11928:117::-;12037:1;12034;12027:12;12068:710;12164:5;12189:81;12205:64;12262:6;12205:64;:::i;:::-;12189:81;:::i;:::-;12180:90;;12290:5;12319:6;12312:5;12305:21;12353:4;12346:5;12342:16;12335:23;;12406:4;12398:6;12394:17;12386:6;12382:30;12435:3;12427:6;12424:15;12421:122;;;12454:79;;:::i;:::-;12421:122;12569:6;12552:220;12586:6;12581:3;12578:15;12552:220;;;12661:3;12690:37;12723:3;12711:10;12690:37;:::i;:::-;12685:3;12678:50;12757:4;12752:3;12748:14;12741:21;;12628:144;12612:4;12607:3;12603:14;12596:21;;12552:220;;;12556:21;12170:608;;12068:710;;;;;:::o;12801:370::-;12872:5;12921:3;12914:4;12906:6;12902:17;12898:27;12888:122;;12929:79;;:::i;:::-;12888:122;13046:6;13033:20;13071:94;13161:3;13153:6;13146:4;13138:6;13134:17;13071:94;:::i;:::-;13062:103;;12878:293;12801:370;;;;:::o;13177:684::-;13270:6;13278;13327:2;13315:9;13306:7;13302:23;13298:32;13295:119;;;13333:79;;:::i;:::-;13295:119;13481:1;13470:9;13466:17;13453:31;13511:18;13503:6;13500:30;13497:117;;;13533:79;;:::i;:::-;13497:117;13638:78;13708:7;13699:6;13688:9;13684:22;13638:78;:::i;:::-;13628:88;;13424:302;13765:2;13791:53;13836:7;13827:6;13816:9;13812:22;13791:53;:::i;:::-;13781:63;;13736:118;13177:684;;;;;:::o;13867:474::-;13935:6;13943;13992:2;13980:9;13971:7;13967:23;13963:32;13960:119;;;13998:79;;:::i;:::-;13960:119;14118:1;14143:53;14188:7;14179:6;14168:9;14164:22;14143:53;:::i;:::-;14133:63;;14089:117;14245:2;14271:53;14316:7;14307:6;14296:9;14292:22;14271:53;:::i;:::-;14261:63;;14216:118;13867:474;;;;;:::o;14347:180::-;14395:77;14392:1;14385:88;14492:4;14489:1;14482:15;14516:4;14513:1;14506:15;14533:320;14577:6;14614:1;14608:4;14604:12;14594:22;;14661:1;14655:4;14651:12;14682:18;14672:81;;14738:4;14730:6;14726:17;14716:27;;14672:81;14800:2;14792:6;14789:14;14769:18;14766:38;14763:84;;14819:18;;:::i;:::-;14763:84;14584:269;14533:320;;;:::o;14859:180::-;14907:77;14904:1;14897:88;15004:4;15001:1;14994:15;15028:4;15025:1;15018:15;15045:191;15085:3;15104:20;15122:1;15104:20;:::i;:::-;15099:25;;15138:20;15156:1;15138:20;:::i;:::-;15133:25;;15181:1;15178;15174:9;15167:16;;15202:3;15199:1;15196:10;15193:36;;;15209:18;;:::i;:::-;15193:36;15045:191;;;;:::o;15242:194::-;15282:4;15302:20;15320:1;15302:20;:::i;:::-;15297:25;;15336:20;15354:1;15336:20;:::i;:::-;15331:25;;15380:1;15377;15373:9;15365:17;;15404:1;15398:4;15395:11;15392:37;;;15409:18;;:::i;:::-;15392:37;15242:194;;;;:::o;15442:410::-;15482:7;15505:20;15523:1;15505:20;:::i;:::-;15500:25;;15539:20;15557:1;15539:20;:::i;:::-;15534:25;;15594:1;15591;15587:9;15616:30;15634:11;15616:30;:::i;:::-;15605:41;;15795:1;15786:7;15782:15;15779:1;15776:22;15756:1;15749:9;15729:83;15706:139;;15825:18;;:::i;:::-;15706:139;15490:362;15442:410;;;;:::o;15858:147::-;15959:11;15996:3;15981:18;;15858:147;;;;:::o;16011:114::-;;:::o;16131:398::-;16290:3;16311:83;16392:1;16387:3;16311:83;:::i;:::-;16304:90;;16403:93;16492:3;16403:93;:::i;:::-;16521:1;16516:3;16512:11;16505:18;;16131:398;;;:::o;16535:379::-;16719:3;16741:147;16884:3;16741:147;:::i;:::-;16734:154;;16905:3;16898:10;;16535:379;;;:::o;16920:141::-;16969:4;16992:3;16984:11;;17015:3;17012:1;17005:14;17049:4;17046:1;17036:18;17028:26;;16920:141;;;:::o;17067:93::-;17104:6;17151:2;17146;17139:5;17135:14;17131:23;17121:33;;17067:93;;;:::o;17166:107::-;17210:8;17260:5;17254:4;17250:16;17229:37;;17166:107;;;;:::o;17279:393::-;17348:6;17398:1;17386:10;17382:18;17421:97;17451:66;17440:9;17421:97;:::i;:::-;17539:39;17569:8;17558:9;17539:39;:::i;:::-;17527:51;;17611:4;17607:9;17600:5;17596:21;17587:30;;17660:4;17650:8;17646:19;17639:5;17636:30;17626:40;;17355:317;;17279:393;;;;;:::o;17678:60::-;17706:3;17727:5;17720:12;;17678:60;;;:::o;17744:142::-;17794:9;17827:53;17845:34;17854:24;17872:5;17854:24;:::i;:::-;17845:34;:::i;:::-;17827:53;:::i;:::-;17814:66;;17744:142;;;:::o;17892:75::-;17935:3;17956:5;17949:12;;17892:75;;;:::o;17973:269::-;18083:39;18114:7;18083:39;:::i;:::-;18144:91;18193:41;18217:16;18193:41;:::i;:::-;18185:6;18178:4;18172:11;18144:91;:::i;:::-;18138:4;18131:105;18049:193;17973:269;;;:::o;18248:73::-;18293:3;18248:73;:::o;18327:189::-;18404:32;;:::i;:::-;18445:65;18503:6;18495;18489:4;18445:65;:::i;:::-;18380:136;18327:189;;:::o;18522:186::-;18582:120;18599:3;18592:5;18589:14;18582:120;;;18653:39;18690:1;18683:5;18653:39;:::i;:::-;18626:1;18619:5;18615:13;18606:22;;18582:120;;;18522:186;;:::o;18714:543::-;18815:2;18810:3;18807:11;18804:446;;;18849:38;18881:5;18849:38;:::i;:::-;18933:29;18951:10;18933:29;:::i;:::-;18923:8;18919:44;19116:2;19104:10;19101:18;19098:49;;;19137:8;19122:23;;19098:49;19160:80;19216:22;19234:3;19216:22;:::i;:::-;19206:8;19202:37;19189:11;19160:80;:::i;:::-;18819:431;;18804:446;18714:543;;;:::o;19263:117::-;19317:8;19367:5;19361:4;19357:16;19336:37;;19263:117;;;;:::o;19386:169::-;19430:6;19463:51;19511:1;19507:6;19499:5;19496:1;19492:13;19463:51;:::i;:::-;19459:56;19544:4;19538;19534:15;19524:25;;19437:118;19386:169;;;;:::o;19560:295::-;19636:4;19782:29;19807:3;19801:4;19782:29;:::i;:::-;19774:37;;19844:3;19841:1;19837:11;19831:4;19828:21;19820:29;;19560:295;;;;:::o;19860:1395::-;19977:37;20010:3;19977:37;:::i;:::-;20079:18;20071:6;20068:30;20065:56;;;20101:18;;:::i;:::-;20065:56;20145:38;20177:4;20171:11;20145:38;:::i;:::-;20230:67;20290:6;20282;20276:4;20230:67;:::i;:::-;20324:1;20348:4;20335:17;;20380:2;20372:6;20369:14;20397:1;20392:618;;;;21054:1;21071:6;21068:77;;;21120:9;21115:3;21111:19;21105:26;21096:35;;21068:77;21171:67;21231:6;21224:5;21171:67;:::i;:::-;21165:4;21158:81;21027:222;20362:887;;20392:618;20444:4;20440:9;20432:6;20428:22;20478:37;20510:4;20478:37;:::i;:::-;20537:1;20551:208;20565:7;20562:1;20559:14;20551:208;;;20644:9;20639:3;20635:19;20629:26;20621:6;20614:42;20695:1;20687:6;20683:14;20673:24;;20742:2;20731:9;20727:18;20714:31;;20588:4;20585:1;20581:12;20576:17;;20551:208;;;20787:6;20778:7;20775:19;20772:179;;;20845:9;20840:3;20836:19;20830:26;20888:48;20930:4;20922:6;20918:17;20907:9;20888:48;:::i;:::-;20880:6;20873:64;20795:156;20772:179;20997:1;20993;20985:6;20981:14;20977:22;20971:4;20964:36;20399:611;;;20362:887;;19952:1303;;;19860:1395;;:::o;21261:180::-;21309:77;21306:1;21299:88;21406:4;21403:1;21396:15;21430:4;21427:1;21420:15;21447:233;21486:3;21509:24;21527:5;21509:24;:::i;:::-;21500:33;;21555:66;21548:5;21545:77;21542:103;;21625:18;;:::i;:::-;21542:103;21672:1;21665:5;21661:13;21654:20;;21447:233;;;:::o;21686:148::-;21788:11;21825:3;21810:18;;21686:148;;;;:::o;21840:390::-;21946:3;21974:39;22007:5;21974:39;:::i;:::-;22029:89;22111:6;22106:3;22029:89;:::i;:::-;22022:96;;22127:65;22185:6;22180:3;22173:4;22166:5;22162:16;22127:65;:::i;:::-;22217:6;22212:3;22208:16;22201:23;;21950:280;21840:390;;;;:::o;22260:874::-;22363:3;22400:5;22394:12;22429:36;22455:9;22429:36;:::i;:::-;22481:89;22563:6;22558:3;22481:89;:::i;:::-;22474:96;;22601:1;22590:9;22586:17;22617:1;22612:166;;;;22792:1;22787:341;;;;22579:549;;22612:166;22696:4;22692:9;22681;22677:25;22672:3;22665:38;22758:6;22751:14;22744:22;22736:6;22732:35;22727:3;22723:45;22716:52;;22612:166;;22787:341;22854:38;22886:5;22854:38;:::i;:::-;22914:1;22928:154;22942:6;22939:1;22936:13;22928:154;;;23016:7;23010:14;23006:1;23001:3;22997:11;22990:35;23066:1;23057:7;23053:15;23042:26;;22964:4;22961:1;22957:12;22952:17;;22928:154;;;23111:6;23106:3;23102:16;23095:23;;22794:334;;22579:549;;22367:767;;22260:874;;;;:::o;23140:589::-;23365:3;23387:95;23478:3;23469:6;23387:95;:::i;:::-;23380:102;;23499:95;23590:3;23581:6;23499:95;:::i;:::-;23492:102;;23611:92;23699:3;23690:6;23611:92;:::i;:::-;23604:99;;23720:3;23713:10;;23140:589;;;;;;:::o;23735:225::-;23875:34;23871:1;23863:6;23859:14;23852:58;23944:8;23939:2;23931:6;23927:15;23920:33;23735:225;:::o;23966:366::-;24108:3;24129:67;24193:2;24188:3;24129:67;:::i;:::-;24122:74;;24205:93;24294:3;24205:93;:::i;:::-;24323:2;24318:3;24314:12;24307:19;;23966:366;;;:::o;24338:419::-;24504:4;24542:2;24531:9;24527:18;24519:26;;24591:9;24585:4;24581:20;24577:1;24566:9;24562:17;24555:47;24619:131;24745:4;24619:131;:::i;:::-;24611:139;;24338:419;;;:::o;24763:182::-;24903:34;24899:1;24891:6;24887:14;24880:58;24763:182;:::o;24951:366::-;25093:3;25114:67;25178:2;25173:3;25114:67;:::i;:::-;25107:74;;25190:93;25279:3;25190:93;:::i;:::-;25308:2;25303:3;25299:12;25292:19;;24951:366;;;:::o;25323:419::-;25489:4;25527:2;25516:9;25512:18;25504:26;;25576:9;25570:4;25566:20;25562:1;25551:9;25547:17;25540:47;25604:131;25730:4;25604:131;:::i;:::-;25596:139;;25323:419;;;:::o;25748:181::-;25888:33;25884:1;25876:6;25872:14;25865:57;25748:181;:::o;25935:366::-;26077:3;26098:67;26162:2;26157:3;26098:67;:::i;:::-;26091:74;;26174:93;26263:3;26174:93;:::i;:::-;26292:2;26287:3;26283:12;26276:19;;25935:366;;;:::o;26307:419::-;26473:4;26511:2;26500:9;26496:18;26488:26;;26560:9;26554:4;26550:20;26546:1;26535:9;26531:17;26524:47;26588:131;26714:4;26588:131;:::i;:::-;26580:139;;26307:419;;;:::o;26732:98::-;26783:6;26817:5;26811:12;26801:22;;26732:98;;;:::o;26836:168::-;26919:11;26953:6;26948:3;26941:19;26993:4;26988:3;26984:14;26969:29;;26836:168;;;;:::o;27010:373::-;27096:3;27124:38;27156:5;27124:38;:::i;:::-;27178:70;27241:6;27236:3;27178:70;:::i;:::-;27171:77;;27257:65;27315:6;27310:3;27303:4;27296:5;27292:16;27257:65;:::i;:::-;27347:29;27369:6;27347:29;:::i;:::-;27342:3;27338:39;27331:46;;27100:283;27010:373;;;;:::o;27389:640::-;27584:4;27622:3;27611:9;27607:19;27599:27;;27636:71;27704:1;27693:9;27689:17;27680:6;27636:71;:::i;:::-;27717:72;27785:2;27774:9;27770:18;27761:6;27717:72;:::i;:::-;27799;27867:2;27856:9;27852:18;27843:6;27799:72;:::i;:::-;27918:9;27912:4;27908:20;27903:2;27892:9;27888:18;27881:48;27946:76;28017:4;28008:6;27946:76;:::i;:::-;27938:84;;27389:640;;;;;;;:::o;28035:141::-;28091:5;28122:6;28116:13;28107:22;;28138:32;28164:5;28138:32;:::i;:::-;28035:141;;;;:::o;28182:349::-;28251:6;28300:2;28288:9;28279:7;28275:23;28271:32;28268:119;;;28306:79;;:::i;:::-;28268:119;28426:1;28451:63;28506:7;28497:6;28486:9;28482:22;28451:63;:::i;:::-;28441:73;;28397:127;28182:349;;;;:::o;28537:180::-;28585:77;28582:1;28575:88;28682:4;28679:1;28672:15;28706:4;28703:1;28696:15

Swarm Source

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