ETH Price: $2,811.05 (+8.79%)
 

Overview

Max Total Supply

146 AMAZON

Holders

60

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 AMAZON
0x464f77e540202479a0e94e64d1f2c8b8c778b591
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:
AMAZON

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: operator-filter-registry/src/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: operator-filter-registry/src/OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: operator-filter-registry/src/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

// 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: @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/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: 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: 无团队.sol


pragma solidity ^0.8.9;






 
 
 
contract AMAZON is ERC721A, DefaultOperatorFilterer, Ownable, ReentrancyGuard { 
event DevMintEvent(address ownerAddress, uint256 startWith, uint256 amountMinted);
uint256 public devTotal;
    uint256 public _maxSupply = 2222;
    uint256 public _mintPrice = 0.003 ether;
    uint256 public _maxMintPerTx = 20;
 
    uint256 public _maxFreeMintPerAddr = 2;
    uint256 public _maxFreeMintSupply = 500;
    
 
    using Strings for uint256;
    string public baseURI;
 
    mapping(address => uint256) private _mintedFreeAmount;
 
 
    constructor(string memory initBaseURI) ERC721A("AMAZON NFT", "AMAZON") {
        baseURI = initBaseURI;
    }
 
    function mint(uint256 count) external payable {
        uint256 cost = _mintPrice;
        bool isFree = ((totalSupply() + count < _maxFreeMintSupply + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= _maxFreeMintPerAddr)) ||
            (msg.sender == owner());
 
        if (isFree) {
            cost = 0;
        }
 
        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count < _maxSupply + 1, "Sold out!");
        require(count < _maxMintPerTx + 1, "Max per TX reached.");
 
        if (isFree) {
            _mintedFreeAmount[msg.sender] += count;
        }
 
        _safeMint(msg.sender, count);
    }
 
    
 
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
 
 
function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Block X2Y2
        if (operator == 0xF849de01B080aDC3A814FaBE1E2087475cF2E354) {
            return false;
        }
 
 
        return super.isApprovedForAll(owner, operator);
    }
 
 
 
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }
 
    function setBaseURI(string memory uri) public onlyOwner {
        baseURI = uri;
    }

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public payable  override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public payable
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
 
    function setFreeAmount(uint256 amount) external onlyOwner {
        _maxFreeMintSupply = amount;
    }
 
    function setPrice(uint256 _newPrice) external onlyOwner {
        _mintPrice = _newPrice;
    }
 
    function withdraw() public payable onlyOwner nonReentrant {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }
}

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":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":false,"internalType":"address","name":"ownerAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountMinted","type":"uint256"}],"name":"DevMintEvent","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":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxFreeMintPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxFreeMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devTotal","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":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":"payable","type":"function"}]

60806040526108ae600b55660aa87bee538000600c556014600d556002600e556101f4600f553480156200003257600080fd5b5060405162003c8238038062003c828339818101604052810190620000589190620005b5565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600a81526020017f414d415a4f4e204e4654000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f414d415a4f4e00000000000000000000000000000000000000000000000000008152508160029081620000ec919062000851565b508060039081620000fe919062000851565b506200010f6200034f60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200030c578015620001d2576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001989291906200097d565b600060405180830381600087803b158015620001b357600080fd5b505af1158015620001c8573d6000803e3d6000fd5b505050506200030b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200028c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002529291906200097d565b600060405180830381600087803b1580156200026d57600080fd5b505af115801562000282573d6000803e3d6000fd5b505050506200030a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002d59190620009aa565b600060405180830381600087803b158015620002f057600080fd5b505af115801562000305573d6000803e3d6000fd5b505050505b5b5b50506200032e620003226200035460201b60201c565b6200035c60201b60201c565b6001600981905550806010908162000347919062000851565b5050620009c7565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200048b8262000440565b810181811067ffffffffffffffff82111715620004ad57620004ac62000451565b5b80604052505050565b6000620004c262000422565b9050620004d0828262000480565b919050565b600067ffffffffffffffff821115620004f357620004f262000451565b5b620004fe8262000440565b9050602081019050919050565b60005b838110156200052b5780820151818401526020810190506200050e565b60008484015250505050565b60006200054e6200054884620004d5565b620004b6565b9050828152602081018484840111156200056d576200056c6200043b565b5b6200057a8482856200050b565b509392505050565b600082601f8301126200059a576200059962000436565b5b8151620005ac84826020860162000537565b91505092915050565b600060208284031215620005ce57620005cd6200042c565b5b600082015167ffffffffffffffff811115620005ef57620005ee62000431565b5b620005fd8482850162000582565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200065957607f821691505b6020821081036200066f576200066e62000611565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006d97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200069a565b620006e586836200069a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007326200072c6200072684620006fd565b62000707565b620006fd565b9050919050565b6000819050919050565b6200074e8362000711565b620007666200075d8262000739565b848454620006a7565b825550505050565b600090565b6200077d6200076e565b6200078a81848462000743565b505050565b5b81811015620007b257620007a660008262000773565b60018101905062000790565b5050565b601f8211156200080157620007cb8162000675565b620007d6846200068a565b81016020851015620007e6578190505b620007fe620007f5856200068a565b8301826200078f565b50505b505050565b600082821c905092915050565b6000620008266000198460080262000806565b1980831691505092915050565b600062000841838362000813565b9150826002028217905092915050565b6200085c8262000606565b67ffffffffffffffff81111562000878576200087762000451565b5b62000884825462000640565b62000891828285620007b6565b600060209050601f831160018114620008c95760008415620008b4578287015190505b620008c0858262000833565b86555062000930565b601f198416620008d98662000675565b60005b828110156200090357848901518255600182019150602085019450602081019050620008dc565b868310156200092357848901516200091f601f89168262000813565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009658262000938565b9050919050565b620009778162000958565b82525050565b60006040820190506200099460008301856200096c565b620009a360208301846200096c565b9392505050565b6000602082019050620009c160008301846200096c565b92915050565b6132ab80620009d76000396000f3fe6080604052600436106101cd5760003560e01c80636c0360eb116100f75780639cb57d2011610095578063c87b56dd11610064578063c87b56dd146105f0578063de314a591461062d578063e985e9c514610658578063f2fde38b14610695576101cd565b80639cb57d2014610564578063a0712d681461058f578063a22cb465146105ab578063b88d4fde146105d4576101cd565b80638da5cb5b116100d15780638da5cb5b146104bc57806391b7f5ed146104e757806392910eec1461051057806395d89b4114610539576101cd565b80636c0360eb1461043d57806370a0823114610468578063715018a6146104a5576101cd565b806322f4596f1161016f57806342842e0e1161013e57806342842e0e1461039057806355f804b3146103ac5780635e1c4b60146103d55780636352211e14610400576101cd565b806322f4596f1461031457806323b872dd1461033f5780633ccfd60b1461035b57806341f4343414610365576101cd565b8063081812fc116101ab578063081812fc14610265578063095ea7b3146102a25780630afb04db146102be57806318160ddd146102e9576101cd565b806301ffc9a7146101d25780630387da421461020f57806306fdde031461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f4919061220d565b6106be565b6040516102069190612255565b60405180910390f35b34801561021b57600080fd5b50610224610750565b6040516102319190612289565b60405180910390f35b34801561024657600080fd5b5061024f610756565b60405161025c9190612334565b60405180910390f35b34801561027157600080fd5b5061028c60048036038101906102879190612382565b6107e8565b60405161029991906123f0565b60405180910390f35b6102bc60048036038101906102b79190612437565b610867565b005b3480156102ca57600080fd5b506102d3610880565b6040516102e09190612289565b60405180910390f35b3480156102f557600080fd5b506102fe610886565b60405161030b9190612289565b60405180910390f35b34801561032057600080fd5b5061032961089d565b6040516103369190612289565b60405180910390f35b61035960048036038101906103549190612477565b6108a3565b005b6103636108f2565b005b34801561037157600080fd5b5061037a610983565b6040516103879190612529565b60405180910390f35b6103aa60048036038101906103a59190612477565b610995565b005b3480156103b857600080fd5b506103d360048036038101906103ce9190612679565b6109e4565b005b3480156103e157600080fd5b506103ea6109ff565b6040516103f79190612289565b60405180910390f35b34801561040c57600080fd5b5061042760048036038101906104229190612382565b610a05565b60405161043491906123f0565b60405180910390f35b34801561044957600080fd5b50610452610a17565b60405161045f9190612334565b60405180910390f35b34801561047457600080fd5b5061048f600480360381019061048a91906126c2565b610aa5565b60405161049c9190612289565b60405180910390f35b3480156104b157600080fd5b506104ba610b5d565b005b3480156104c857600080fd5b506104d1610b71565b6040516104de91906123f0565b60405180910390f35b3480156104f357600080fd5b5061050e60048036038101906105099190612382565b610b9b565b005b34801561051c57600080fd5b5061053760048036038101906105329190612382565b610bad565b005b34801561054557600080fd5b5061054e610bbf565b60405161055b9190612334565b60405180910390f35b34801561057057600080fd5b50610579610c51565b6040516105869190612289565b60405180910390f35b6105a960048036038101906105a49190612382565b610c57565b005b3480156105b757600080fd5b506105d260048036038101906105cd919061271b565b610e91565b005b6105ee60048036038101906105e991906127fc565b610eaa565b005b3480156105fc57600080fd5b5061061760048036038101906106129190612382565b610efb565b6040516106249190612334565b60405180910390f35b34801561063957600080fd5b50610642610f77565b60405161064f9190612289565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a919061287f565b610f7d565b60405161068c9190612255565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b791906126c2565b610fe2565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107495750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b606060028054610765906128ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610791906128ee565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f382611065565b610829576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610871816110c4565b61087b83836111c1565b505050565b600a5481565b6000610890611305565b6001546000540303905090565b600b5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108e1576108e0336110c4565b5b6108ec84848461130a565b50505050565b6108fa61162c565b6109026116aa565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161092890612950565b60006040518083038185875af1925050503d8060008114610965576040519150601f19603f3d011682016040523d82523d6000602084013e61096a565b606091505b505090508061097857600080fd5b506109816116f9565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109d3576109d2336110c4565b5b6109de848484611703565b50505050565b6109ec61162c565b80601090816109fb9190612b07565b5050565b600f5481565b6000610a1082611723565b9050919050565b60108054610a24906128ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610a50906128ee565b8015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b0c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610b6561162c565b610b6f60006117ef565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ba361162c565b80600c8190555050565b610bb561162c565b80600f8190555050565b606060038054610bce906128ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfa906128ee565b8015610c475780601f10610c1c57610100808354040283529160200191610c47565b820191906000526020600020905b815481529060010190602001808311610c2a57829003601f168201915b5050505050905090565b600e5481565b6000600c54905060006001600f54610c6f9190612c08565b83610c78610886565b610c829190612c08565b108015610cdb5750600e5483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cd89190612c08565b11155b80610d185750610ce9610b71565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b90508015610d2557600091505b8183610d319190612c3c565b341015610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a90612cca565b60405180910390fd5b6001600b54610d829190612c08565b83610d8b610886565b610d959190612c08565b10610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc90612d36565b60405180910390fd5b6001600d54610de49190612c08565b8310610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c90612da2565b60405180910390fd5b8015610e825782601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e7a9190612c08565b925050819055505b610e8c33846118b5565b505050565b81610e9b816110c4565b610ea583836118d3565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ee857610ee7336110c4565b5b610ef4858585856119de565b5050505050565b6060610f0682611065565b610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c90612e34565b60405180910390fd5b6010610f5083611a51565b604051602001610f61929190612f5f565b6040516020818303038152906040529050919050565b600d5481565b600073f849de01b080adc3a814fabe1e2087475cf2e35473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fcf5760009050610fdc565b610fd98383611b1f565b90505b92915050565b610fea61162c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105090613000565b60405180910390fd5b611062816117ef565b50565b600081611070611305565b1115801561107f575060005482105b80156110bd575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156111be576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161113b929190613020565b602060405180830381865afa158015611158573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117c919061305e565b6111bd57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016111b491906123f0565b60405180910390fd5b5b50565b60006111cc82610a05565b90508073ffffffffffffffffffffffffffffffffffffffff166111ed611bb3565b73ffffffffffffffffffffffffffffffffffffffff16146112505761121981611214611bb3565b610f7d565b61124f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061131582611723565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461137c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061138884611bbb565b9150915061139e8187611399611bb3565b611be2565b6113ea576113b3866113ae611bb3565b610f7d565b6113e9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611450576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61145d8686866001611c26565b801561146857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061153685611512888887611c2c565b7c020000000000000000000000000000000000000000000000000000000017611c54565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036115bc57600060018501905060006004600083815260200190815260200160002054036115ba5760005481146115b9578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116248686866001611c7f565b505050505050565b611634611c85565b73ffffffffffffffffffffffffffffffffffffffff16611652610b71565b73ffffffffffffffffffffffffffffffffffffffff16146116a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169f906130d7565b60405180910390fd5b565b6002600954036116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e690613143565b60405180910390fd5b6002600981905550565b6001600981905550565b61171e83838360405180602001604052806000815250610eaa565b505050565b60008082905080611732611305565b116117b8576000548110156117b75760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036117b5575b600081036117ab576004600083600190039350838152602001908152602001600020549050611781565b80925050506117ea565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6118cf828260405180602001604052806000815250611c8d565b5050565b80600760006118e0611bb3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661198d611bb3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119d29190612255565b60405180910390a35050565b6119e98484846108a3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a4b57611a1484848484611d2a565b611a4a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060006001611a6084611e7a565b01905060008167ffffffffffffffff811115611a7f57611a7e61254e565b5b6040519080825280601f01601f191660200182016040528015611ab15781602001600182028036833780820191505090505b509050600082602001820190505b600115611b14578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611b0857611b07613163565b5b04945060008503611abf575b819350505050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c43868684611fcd565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b611c978383611fd6565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d2557600080549050600083820390505b611cd76000868380600101945086611d2a565b611d0d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611cc4578160005414611d2257600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d50611bb3565b8786866040518563ffffffff1660e01b8152600401611d7294939291906131e7565b6020604051808303816000875af1925050508015611dae57506040513d601f19601f82011682018060405250810190611dab9190613248565b60015b611e27573d8060008114611dde576040519150601f19603f3d011682016040523d82523d6000602084013e611de3565b606091505b506000815103611e1f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611ed8577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611ece57611ecd613163565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611f15576d04ee2d6d415b85acef81000000008381611f0b57611f0a613163565b5b0492506020810190505b662386f26fc100008310611f4457662386f26fc100008381611f3a57611f39613163565b5b0492506010810190505b6305f5e1008310611f6d576305f5e1008381611f6357611f62613163565b5b0492506008810190505b6127108310611f92576127108381611f8857611f87613163565b5b0492506004810190505b60648310611fb55760648381611fab57611faa613163565b5b0492506002810190505b600a8310611fc4576001810190505b80915050919050565b60009392505050565b60008054905060008203612016576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120236000848385611c26565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061209a8361208b6000866000611c2c565b61209485612191565b17611c54565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461213b57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612100565b5060008203612176576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061218c6000848385611c7f565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6121ea816121b5565b81146121f557600080fd5b50565b600081359050612207816121e1565b92915050565b600060208284031215612223576122226121ab565b5b6000612231848285016121f8565b91505092915050565b60008115159050919050565b61224f8161223a565b82525050565b600060208201905061226a6000830184612246565b92915050565b6000819050919050565b61228381612270565b82525050565b600060208201905061229e600083018461227a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122de5780820151818401526020810190506122c3565b60008484015250505050565b6000601f19601f8301169050919050565b6000612306826122a4565b61231081856122af565b93506123208185602086016122c0565b612329816122ea565b840191505092915050565b6000602082019050818103600083015261234e81846122fb565b905092915050565b61235f81612270565b811461236a57600080fd5b50565b60008135905061237c81612356565b92915050565b600060208284031215612398576123976121ab565b5b60006123a68482850161236d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123da826123af565b9050919050565b6123ea816123cf565b82525050565b600060208201905061240560008301846123e1565b92915050565b612414816123cf565b811461241f57600080fd5b50565b6000813590506124318161240b565b92915050565b6000806040838503121561244e5761244d6121ab565b5b600061245c85828601612422565b925050602061246d8582860161236d565b9150509250929050565b6000806000606084860312156124905761248f6121ab565b5b600061249e86828701612422565b93505060206124af86828701612422565b92505060406124c08682870161236d565b9150509250925092565b6000819050919050565b60006124ef6124ea6124e5846123af565b6124ca565b6123af565b9050919050565b6000612501826124d4565b9050919050565b6000612513826124f6565b9050919050565b61252381612508565b82525050565b600060208201905061253e600083018461251a565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612586826122ea565b810181811067ffffffffffffffff821117156125a5576125a461254e565b5b80604052505050565b60006125b86121a1565b90506125c4828261257d565b919050565b600067ffffffffffffffff8211156125e4576125e361254e565b5b6125ed826122ea565b9050602081019050919050565b82818337600083830152505050565b600061261c612617846125c9565b6125ae565b90508281526020810184848401111561263857612637612549565b5b6126438482856125fa565b509392505050565b600082601f8301126126605761265f612544565b5b8135612670848260208601612609565b91505092915050565b60006020828403121561268f5761268e6121ab565b5b600082013567ffffffffffffffff8111156126ad576126ac6121b0565b5b6126b98482850161264b565b91505092915050565b6000602082840312156126d8576126d76121ab565b5b60006126e684828501612422565b91505092915050565b6126f88161223a565b811461270357600080fd5b50565b600081359050612715816126ef565b92915050565b60008060408385031215612732576127316121ab565b5b600061274085828601612422565b925050602061275185828601612706565b9150509250929050565b600067ffffffffffffffff8211156127765761277561254e565b5b61277f826122ea565b9050602081019050919050565b600061279f61279a8461275b565b6125ae565b9050828152602081018484840111156127bb576127ba612549565b5b6127c68482856125fa565b509392505050565b600082601f8301126127e3576127e2612544565b5b81356127f384826020860161278c565b91505092915050565b60008060008060808587031215612816576128156121ab565b5b600061282487828801612422565b945050602061283587828801612422565b93505060406128468782880161236d565b925050606085013567ffffffffffffffff811115612867576128666121b0565b5b612873878288016127ce565b91505092959194509250565b60008060408385031215612896576128956121ab565b5b60006128a485828601612422565b92505060206128b585828601612422565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061290657607f821691505b602082108103612919576129186128bf565b5b50919050565b600081905092915050565b50565b600061293a60008361291f565b91506129458261292a565b600082019050919050565b600061295b8261292d565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026129c77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261298a565b6129d1868361298a565b95508019841693508086168417925050509392505050565b6000612a046129ff6129fa84612270565b6124ca565b612270565b9050919050565b6000819050919050565b612a1e836129e9565b612a32612a2a82612a0b565b848454612997565b825550505050565b600090565b612a47612a3a565b612a52818484612a15565b505050565b5b81811015612a7657612a6b600082612a3f565b600181019050612a58565b5050565b601f821115612abb57612a8c81612965565b612a958461297a565b81016020851015612aa4578190505b612ab8612ab08561297a565b830182612a57565b50505b505050565b600082821c905092915050565b6000612ade60001984600802612ac0565b1980831691505092915050565b6000612af78383612acd565b9150826002028217905092915050565b612b10826122a4565b67ffffffffffffffff811115612b2957612b2861254e565b5b612b3382546128ee565b612b3e828285612a7a565b600060209050601f831160018114612b715760008415612b5f578287015190505b612b698582612aeb565b865550612bd1565b601f198416612b7f86612965565b60005b82811015612ba757848901518255600182019150602085019450602081019050612b82565b86831015612bc45784890151612bc0601f891682612acd565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c1382612270565b9150612c1e83612270565b9250828201905080821115612c3657612c35612bd9565b5b92915050565b6000612c4782612270565b9150612c5283612270565b9250828202612c6081612270565b91508282048414831517612c7757612c76612bd9565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612cb4601d836122af565b9150612cbf82612c7e565b602082019050919050565b60006020820190508181036000830152612ce381612ca7565b9050919050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6000612d206009836122af565b9150612d2b82612cea565b602082019050919050565b60006020820190508181036000830152612d4f81612d13565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612d8c6013836122af565b9150612d9782612d56565b602082019050919050565b60006020820190508181036000830152612dbb81612d7f565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612e1e602f836122af565b9150612e2982612dc2565b604082019050919050565b60006020820190508181036000830152612e4d81612e11565b9050919050565b600081905092915050565b60008154612e6c816128ee565b612e768186612e54565b94506001821660008114612e915760018114612ea657612ed9565b60ff1983168652811515820286019350612ed9565b612eaf85612965565b60005b83811015612ed157815481890152600182019150602081019050612eb2565b838801955050505b50505092915050565b6000612eed826122a4565b612ef78185612e54565b9350612f078185602086016122c0565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612f49600583612e54565b9150612f5482612f13565b600582019050919050565b6000612f6b8285612e5f565b9150612f778284612ee2565b9150612f8282612f3c565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fea6026836122af565b9150612ff582612f8e565b604082019050919050565b6000602082019050818103600083015261301981612fdd565b9050919050565b600060408201905061303560008301856123e1565b61304260208301846123e1565b9392505050565b600081519050613058816126ef565b92915050565b600060208284031215613074576130736121ab565b5b600061308284828501613049565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130c16020836122af565b91506130cc8261308b565b602082019050919050565b600060208201905081810360008301526130f0816130b4565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061312d601f836122af565b9150613138826130f7565b602082019050919050565b6000602082019050818103600083015261315c81613120565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006131b982613192565b6131c3818561319d565b93506131d38185602086016122c0565b6131dc816122ea565b840191505092915050565b60006080820190506131fc60008301876123e1565b61320960208301866123e1565b613216604083018561227a565b818103606083015261322881846131ae565b905095945050505050565b600081519050613242816121e1565b92915050565b60006020828403121561325e5761325d6121ab565b5b600061326c84828501613233565b9150509291505056fea26469706673582212206d0d6d16439d7578dc5b293b395258adbe25e3025485c033de27bce677d4dd8664736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d50626b5247667366754a5344645577784b715a46624471376747333875444b514662465663397564685a42442f00000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80636c0360eb116100f75780639cb57d2011610095578063c87b56dd11610064578063c87b56dd146105f0578063de314a591461062d578063e985e9c514610658578063f2fde38b14610695576101cd565b80639cb57d2014610564578063a0712d681461058f578063a22cb465146105ab578063b88d4fde146105d4576101cd565b80638da5cb5b116100d15780638da5cb5b146104bc57806391b7f5ed146104e757806392910eec1461051057806395d89b4114610539576101cd565b80636c0360eb1461043d57806370a0823114610468578063715018a6146104a5576101cd565b806322f4596f1161016f57806342842e0e1161013e57806342842e0e1461039057806355f804b3146103ac5780635e1c4b60146103d55780636352211e14610400576101cd565b806322f4596f1461031457806323b872dd1461033f5780633ccfd60b1461035b57806341f4343414610365576101cd565b8063081812fc116101ab578063081812fc14610265578063095ea7b3146102a25780630afb04db146102be57806318160ddd146102e9576101cd565b806301ffc9a7146101d25780630387da421461020f57806306fdde031461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f4919061220d565b6106be565b6040516102069190612255565b60405180910390f35b34801561021b57600080fd5b50610224610750565b6040516102319190612289565b60405180910390f35b34801561024657600080fd5b5061024f610756565b60405161025c9190612334565b60405180910390f35b34801561027157600080fd5b5061028c60048036038101906102879190612382565b6107e8565b60405161029991906123f0565b60405180910390f35b6102bc60048036038101906102b79190612437565b610867565b005b3480156102ca57600080fd5b506102d3610880565b6040516102e09190612289565b60405180910390f35b3480156102f557600080fd5b506102fe610886565b60405161030b9190612289565b60405180910390f35b34801561032057600080fd5b5061032961089d565b6040516103369190612289565b60405180910390f35b61035960048036038101906103549190612477565b6108a3565b005b6103636108f2565b005b34801561037157600080fd5b5061037a610983565b6040516103879190612529565b60405180910390f35b6103aa60048036038101906103a59190612477565b610995565b005b3480156103b857600080fd5b506103d360048036038101906103ce9190612679565b6109e4565b005b3480156103e157600080fd5b506103ea6109ff565b6040516103f79190612289565b60405180910390f35b34801561040c57600080fd5b5061042760048036038101906104229190612382565b610a05565b60405161043491906123f0565b60405180910390f35b34801561044957600080fd5b50610452610a17565b60405161045f9190612334565b60405180910390f35b34801561047457600080fd5b5061048f600480360381019061048a91906126c2565b610aa5565b60405161049c9190612289565b60405180910390f35b3480156104b157600080fd5b506104ba610b5d565b005b3480156104c857600080fd5b506104d1610b71565b6040516104de91906123f0565b60405180910390f35b3480156104f357600080fd5b5061050e60048036038101906105099190612382565b610b9b565b005b34801561051c57600080fd5b5061053760048036038101906105329190612382565b610bad565b005b34801561054557600080fd5b5061054e610bbf565b60405161055b9190612334565b60405180910390f35b34801561057057600080fd5b50610579610c51565b6040516105869190612289565b60405180910390f35b6105a960048036038101906105a49190612382565b610c57565b005b3480156105b757600080fd5b506105d260048036038101906105cd919061271b565b610e91565b005b6105ee60048036038101906105e991906127fc565b610eaa565b005b3480156105fc57600080fd5b5061061760048036038101906106129190612382565b610efb565b6040516106249190612334565b60405180910390f35b34801561063957600080fd5b50610642610f77565b60405161064f9190612289565b60405180910390f35b34801561066457600080fd5b5061067f600480360381019061067a919061287f565b610f7d565b60405161068c9190612255565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b791906126c2565b610fe2565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061071957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107495750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b606060028054610765906128ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610791906128ee565b80156107de5780601f106107b3576101008083540402835291602001916107de565b820191906000526020600020905b8154815290600101906020018083116107c157829003601f168201915b5050505050905090565b60006107f382611065565b610829576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610871816110c4565b61087b83836111c1565b505050565b600a5481565b6000610890611305565b6001546000540303905090565b600b5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108e1576108e0336110c4565b5b6108ec84848461130a565b50505050565b6108fa61162c565b6109026116aa565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161092890612950565b60006040518083038185875af1925050503d8060008114610965576040519150601f19603f3d011682016040523d82523d6000602084013e61096a565b606091505b505090508061097857600080fd5b506109816116f9565b565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109d3576109d2336110c4565b5b6109de848484611703565b50505050565b6109ec61162c565b80601090816109fb9190612b07565b5050565b600f5481565b6000610a1082611723565b9050919050565b60108054610a24906128ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610a50906128ee565b8015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b0c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610b6561162c565b610b6f60006117ef565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ba361162c565b80600c8190555050565b610bb561162c565b80600f8190555050565b606060038054610bce906128ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfa906128ee565b8015610c475780601f10610c1c57610100808354040283529160200191610c47565b820191906000526020600020905b815481529060010190602001808311610c2a57829003601f168201915b5050505050905090565b600e5481565b6000600c54905060006001600f54610c6f9190612c08565b83610c78610886565b610c829190612c08565b108015610cdb5750600e5483601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cd89190612c08565b11155b80610d185750610ce9610b71565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b90508015610d2557600091505b8183610d319190612c3c565b341015610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a90612cca565b60405180910390fd5b6001600b54610d829190612c08565b83610d8b610886565b610d959190612c08565b10610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc90612d36565b60405180910390fd5b6001600d54610de49190612c08565b8310610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c90612da2565b60405180910390fd5b8015610e825782601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e7a9190612c08565b925050819055505b610e8c33846118b5565b505050565b81610e9b816110c4565b610ea583836118d3565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ee857610ee7336110c4565b5b610ef4858585856119de565b5050505050565b6060610f0682611065565b610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c90612e34565b60405180910390fd5b6010610f5083611a51565b604051602001610f61929190612f5f565b6040516020818303038152906040529050919050565b600d5481565b600073f849de01b080adc3a814fabe1e2087475cf2e35473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fcf5760009050610fdc565b610fd98383611b1f565b90505b92915050565b610fea61162c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105090613000565b60405180910390fd5b611062816117ef565b50565b600081611070611305565b1115801561107f575060005482105b80156110bd575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156111be576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161113b929190613020565b602060405180830381865afa158015611158573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117c919061305e565b6111bd57806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016111b491906123f0565b60405180910390fd5b5b50565b60006111cc82610a05565b90508073ffffffffffffffffffffffffffffffffffffffff166111ed611bb3565b73ffffffffffffffffffffffffffffffffffffffff16146112505761121981611214611bb3565b610f7d565b61124f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061131582611723565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461137c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061138884611bbb565b9150915061139e8187611399611bb3565b611be2565b6113ea576113b3866113ae611bb3565b610f7d565b6113e9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611450576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61145d8686866001611c26565b801561146857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061153685611512888887611c2c565b7c020000000000000000000000000000000000000000000000000000000017611c54565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036115bc57600060018501905060006004600083815260200190815260200160002054036115ba5760005481146115b9578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116248686866001611c7f565b505050505050565b611634611c85565b73ffffffffffffffffffffffffffffffffffffffff16611652610b71565b73ffffffffffffffffffffffffffffffffffffffff16146116a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169f906130d7565b60405180910390fd5b565b6002600954036116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e690613143565b60405180910390fd5b6002600981905550565b6001600981905550565b61171e83838360405180602001604052806000815250610eaa565b505050565b60008082905080611732611305565b116117b8576000548110156117b75760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036117b5575b600081036117ab576004600083600190039350838152602001908152602001600020549050611781565b80925050506117ea565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6118cf828260405180602001604052806000815250611c8d565b5050565b80600760006118e0611bb3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661198d611bb3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119d29190612255565b60405180910390a35050565b6119e98484846108a3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a4b57611a1484848484611d2a565b611a4a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060006001611a6084611e7a565b01905060008167ffffffffffffffff811115611a7f57611a7e61254e565b5b6040519080825280601f01601f191660200182016040528015611ab15781602001600182028036833780820191505090505b509050600082602001820190505b600115611b14578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611b0857611b07613163565b5b04945060008503611abf575b819350505050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c43868684611fcd565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b611c978383611fd6565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d2557600080549050600083820390505b611cd76000868380600101945086611d2a565b611d0d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611cc4578160005414611d2257600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d50611bb3565b8786866040518563ffffffff1660e01b8152600401611d7294939291906131e7565b6020604051808303816000875af1925050508015611dae57506040513d601f19601f82011682018060405250810190611dab9190613248565b60015b611e27573d8060008114611dde576040519150601f19603f3d011682016040523d82523d6000602084013e611de3565b606091505b506000815103611e1f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611ed8577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611ece57611ecd613163565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611f15576d04ee2d6d415b85acef81000000008381611f0b57611f0a613163565b5b0492506020810190505b662386f26fc100008310611f4457662386f26fc100008381611f3a57611f39613163565b5b0492506010810190505b6305f5e1008310611f6d576305f5e1008381611f6357611f62613163565b5b0492506008810190505b6127108310611f92576127108381611f8857611f87613163565b5b0492506004810190505b60648310611fb55760648381611fab57611faa613163565b5b0492506002810190505b600a8310611fc4576001810190505b80915050919050565b60009392505050565b60008054905060008203612016576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120236000848385611c26565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061209a8361208b6000866000611c2c565b61209485612191565b17611c54565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461213b57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612100565b5060008203612176576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061218c6000848385611c7f565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6121ea816121b5565b81146121f557600080fd5b50565b600081359050612207816121e1565b92915050565b600060208284031215612223576122226121ab565b5b6000612231848285016121f8565b91505092915050565b60008115159050919050565b61224f8161223a565b82525050565b600060208201905061226a6000830184612246565b92915050565b6000819050919050565b61228381612270565b82525050565b600060208201905061229e600083018461227a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122de5780820151818401526020810190506122c3565b60008484015250505050565b6000601f19601f8301169050919050565b6000612306826122a4565b61231081856122af565b93506123208185602086016122c0565b612329816122ea565b840191505092915050565b6000602082019050818103600083015261234e81846122fb565b905092915050565b61235f81612270565b811461236a57600080fd5b50565b60008135905061237c81612356565b92915050565b600060208284031215612398576123976121ab565b5b60006123a68482850161236d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123da826123af565b9050919050565b6123ea816123cf565b82525050565b600060208201905061240560008301846123e1565b92915050565b612414816123cf565b811461241f57600080fd5b50565b6000813590506124318161240b565b92915050565b6000806040838503121561244e5761244d6121ab565b5b600061245c85828601612422565b925050602061246d8582860161236d565b9150509250929050565b6000806000606084860312156124905761248f6121ab565b5b600061249e86828701612422565b93505060206124af86828701612422565b92505060406124c08682870161236d565b9150509250925092565b6000819050919050565b60006124ef6124ea6124e5846123af565b6124ca565b6123af565b9050919050565b6000612501826124d4565b9050919050565b6000612513826124f6565b9050919050565b61252381612508565b82525050565b600060208201905061253e600083018461251a565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612586826122ea565b810181811067ffffffffffffffff821117156125a5576125a461254e565b5b80604052505050565b60006125b86121a1565b90506125c4828261257d565b919050565b600067ffffffffffffffff8211156125e4576125e361254e565b5b6125ed826122ea565b9050602081019050919050565b82818337600083830152505050565b600061261c612617846125c9565b6125ae565b90508281526020810184848401111561263857612637612549565b5b6126438482856125fa565b509392505050565b600082601f8301126126605761265f612544565b5b8135612670848260208601612609565b91505092915050565b60006020828403121561268f5761268e6121ab565b5b600082013567ffffffffffffffff8111156126ad576126ac6121b0565b5b6126b98482850161264b565b91505092915050565b6000602082840312156126d8576126d76121ab565b5b60006126e684828501612422565b91505092915050565b6126f88161223a565b811461270357600080fd5b50565b600081359050612715816126ef565b92915050565b60008060408385031215612732576127316121ab565b5b600061274085828601612422565b925050602061275185828601612706565b9150509250929050565b600067ffffffffffffffff8211156127765761277561254e565b5b61277f826122ea565b9050602081019050919050565b600061279f61279a8461275b565b6125ae565b9050828152602081018484840111156127bb576127ba612549565b5b6127c68482856125fa565b509392505050565b600082601f8301126127e3576127e2612544565b5b81356127f384826020860161278c565b91505092915050565b60008060008060808587031215612816576128156121ab565b5b600061282487828801612422565b945050602061283587828801612422565b93505060406128468782880161236d565b925050606085013567ffffffffffffffff811115612867576128666121b0565b5b612873878288016127ce565b91505092959194509250565b60008060408385031215612896576128956121ab565b5b60006128a485828601612422565b92505060206128b585828601612422565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061290657607f821691505b602082108103612919576129186128bf565b5b50919050565b600081905092915050565b50565b600061293a60008361291f565b91506129458261292a565b600082019050919050565b600061295b8261292d565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026129c77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261298a565b6129d1868361298a565b95508019841693508086168417925050509392505050565b6000612a046129ff6129fa84612270565b6124ca565b612270565b9050919050565b6000819050919050565b612a1e836129e9565b612a32612a2a82612a0b565b848454612997565b825550505050565b600090565b612a47612a3a565b612a52818484612a15565b505050565b5b81811015612a7657612a6b600082612a3f565b600181019050612a58565b5050565b601f821115612abb57612a8c81612965565b612a958461297a565b81016020851015612aa4578190505b612ab8612ab08561297a565b830182612a57565b50505b505050565b600082821c905092915050565b6000612ade60001984600802612ac0565b1980831691505092915050565b6000612af78383612acd565b9150826002028217905092915050565b612b10826122a4565b67ffffffffffffffff811115612b2957612b2861254e565b5b612b3382546128ee565b612b3e828285612a7a565b600060209050601f831160018114612b715760008415612b5f578287015190505b612b698582612aeb565b865550612bd1565b601f198416612b7f86612965565b60005b82811015612ba757848901518255600182019150602085019450602081019050612b82565b86831015612bc45784890151612bc0601f891682612acd565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c1382612270565b9150612c1e83612270565b9250828201905080821115612c3657612c35612bd9565b5b92915050565b6000612c4782612270565b9150612c5283612270565b9250828202612c6081612270565b91508282048414831517612c7757612c76612bd9565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612cb4601d836122af565b9150612cbf82612c7e565b602082019050919050565b60006020820190508181036000830152612ce381612ca7565b9050919050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6000612d206009836122af565b9150612d2b82612cea565b602082019050919050565b60006020820190508181036000830152612d4f81612d13565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612d8c6013836122af565b9150612d9782612d56565b602082019050919050565b60006020820190508181036000830152612dbb81612d7f565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612e1e602f836122af565b9150612e2982612dc2565b604082019050919050565b60006020820190508181036000830152612e4d81612e11565b9050919050565b600081905092915050565b60008154612e6c816128ee565b612e768186612e54565b94506001821660008114612e915760018114612ea657612ed9565b60ff1983168652811515820286019350612ed9565b612eaf85612965565b60005b83811015612ed157815481890152600182019150602081019050612eb2565b838801955050505b50505092915050565b6000612eed826122a4565b612ef78185612e54565b9350612f078185602086016122c0565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612f49600583612e54565b9150612f5482612f13565b600582019050919050565b6000612f6b8285612e5f565b9150612f778284612ee2565b9150612f8282612f3c565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fea6026836122af565b9150612ff582612f8e565b604082019050919050565b6000602082019050818103600083015261301981612fdd565b9050919050565b600060408201905061303560008301856123e1565b61304260208301846123e1565b9392505050565b600081519050613058816126ef565b92915050565b600060208284031215613074576130736121ab565b5b600061308284828501613049565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130c16020836122af565b91506130cc8261308b565b602082019050919050565b600060208201905081810360008301526130f0816130b4565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061312d601f836122af565b9150613138826130f7565b602082019050919050565b6000602082019050818103600083015261315c81613120565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006131b982613192565b6131c3818561319d565b93506131d38185602086016122c0565b6131dc816122ea565b840191505092915050565b60006080820190506131fc60008301876123e1565b61320960208301866123e1565b613216604083018561227a565b818103606083015261322881846131ae565b905095945050505050565b600081519050613242816121e1565b92915050565b60006020828403121561325e5761325d6121ab565b5b600061326c84828501613233565b9150509291505056fea26469706673582212206d0d6d16439d7578dc5b293b395258adbe25e3025485c033de27bce677d4dd8664736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d50626b5247667366754a5344645577784b715a46624471376747333875444b514662465663397564685a42442f00000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string): ipfs://QmPbkRGfsfuJSDdUwxKqZFbDq7gG38uDKQFbFVc9udhZBD/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d50626b5247667366754a5344645577784b715a46624471
Arg [3] : 376747333875444b514662465663397564685a42442f00000000000000000000


Deployed Bytecode Sourcemap

78672:3708:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45567:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78907:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46469:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52960:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81168:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78838:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42220:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78868:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81342:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82172:205;;;:::i;:::-;;2927:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81521:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80888:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79041:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47862:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79128:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43404:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26346:103;;;;;;;;;;;;;:::i;:::-;;25698:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82066:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81953:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46645;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78996:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79345:696;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80984:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81708:236;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80529:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78953:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80175:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26604:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45567:639;45652:4;45991:10;45976:25;;:11;:25;;;;:102;;;;46068:10;46053:25;;:11;:25;;;;45976:102;:179;;;;46145:10;46130:25;;:11;:25;;;;45976:179;45956:199;;45567:639;;;:::o;78907:39::-;;;;:::o;46469:100::-;46523:13;46556:5;46549:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46469:100;:::o;52960:218::-;53036:7;53061:16;53069:7;53061;:16::i;:::-;53056:64;;53086:34;;;;;;;;;;;;;;53056:64;53140:15;:24;53156:7;53140:24;;;;;;;;;;;:30;;;;;;;;;;;;53133:37;;52960:218;;;:::o;81168:166::-;81273:8;4448:30;4469:8;4448:20;:30::i;:::-;81294:32:::1;81308:8;81318:7;81294:13;:32::i;:::-;81168:166:::0;;;:::o;78838:23::-;;;;:::o;42220:323::-;42281:7;42509:15;:13;:15::i;:::-;42494:12;;42478:13;;:28;:46;42471:53;;42220:323;:::o;78868:32::-;;;;:::o;81342:171::-;81451:4;4276:10;4268:18;;:4;:18;;;4264:83;;4303:32;4324:10;4303:20;:32::i;:::-;4264:83;81468:37:::1;81487:4;81493:2;81497:7;81468:18;:37::i;:::-;81342:171:::0;;;;:::o;82172:205::-;25584:13;:11;:13::i;:::-;22969:21:::1;:19;:21::i;:::-;82242:12:::2;82268:10;82260:24;;82306:21;82260:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82241:101;;;82361:7;82353:16;;;::::0;::::2;;82230:147;23013:20:::1;:18;:20::i;:::-;82172:205::o:0;2927:143::-;3027:42;2927:143;:::o;81521:179::-;81634:4;4276:10;4268:18;;:4;:18;;;4264:83;;4303:32;4324:10;4303:20;:32::i;:::-;4264:83;81651:41:::1;81674:4;81680:2;81684:7;81651:22;:41::i;:::-;81521:179:::0;;;;:::o;80888:88::-;25584:13;:11;:13::i;:::-;80965:3:::1;80955:7;:13;;;;;;:::i;:::-;;80888:88:::0;:::o;79041:39::-;;;;:::o;47862:152::-;47934:7;47977:27;47996:7;47977:18;:27::i;:::-;47954:52;;47862:152;;;:::o;79128:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43404:233::-;43476:7;43517:1;43500:19;;:5;:19;;;43496:60;;43528:28;;;;;;;;;;;;;;43496:60;37563:13;43574:18;:25;43593:5;43574:25;;;;;;;;;;;;;;;;:55;43567:62;;43404:233;;;:::o;26346:103::-;25584:13;:11;:13::i;:::-;26411:30:::1;26438:1;26411:18;:30::i;:::-;26346:103::o:0;25698:87::-;25744:7;25771:6;;;;;;;;;;;25764:13;;25698:87;:::o;82066:97::-;25584:13;:11;:13::i;:::-;82146:9:::1;82133:10;:22;;;;82066:97:::0;:::o;81953:104::-;25584:13;:11;:13::i;:::-;82043:6:::1;82022:18;:27;;;;81953:104:::0;:::o;46645:::-;46701:13;46734:7;46727:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46645:104;:::o;78996:38::-;;;;:::o;79345:696::-;79402:12;79417:10;;79402:25;;79438:11;79499:1;79478:18;;:22;;;;:::i;:::-;79470:5;79454:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:46;79453:127;;;;;79560:19;;79551:5;79519:17;:29;79537:10;79519:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:60;;79453:127;79452:169;;;;79613:7;:5;:7::i;:::-;79599:21;;:10;:21;;;79452:169;79438:183;;79639:6;79635:47;;;79669:1;79662:8;;79635:47;79724:4;79716:5;:12;;;;:::i;:::-;79703:9;:25;;79695:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;79818:1;79805:10;;:14;;;;:::i;:::-;79797:5;79781:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:38;79773:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;79876:1;79860:13;;:17;;;;:::i;:::-;79852:5;:25;79844:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;79919:6;79915:77;;;79975:5;79942:17;:29;79960:10;79942:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;79915:77;80005:28;80015:10;80027:5;80005:9;:28::i;:::-;79391:650;;79345:696;:::o;80984:176::-;81088:8;4448:30;4469:8;4448:20;:30::i;:::-;81109:43:::1;81133:8;81143;81109:23;:43::i;:::-;80984:176:::0;;;:::o;81708:236::-;81867:4;4276:10;4268:18;;:4;:18;;;4264:83;;4303:32;4324:10;4303:20;:32::i;:::-;4264:83;81889:47:::1;81912:4;81918:2;81922:7;81931:4;81889:22;:47::i;:::-;81708:236:::0;;;;;:::o;80529:350::-;80647:13;80700:16;80708:7;80700;:16::i;:::-;80678:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;80833:7;80842:18;:7;:16;:18::i;:::-;80816:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;80802:69;;80529:350;;;:::o;78953:33::-;;;;:::o;80175:339::-;80300:4;80361:42;80349:54;;:8;:54;;;80345:99;;80427:5;80420:12;;;;80345:99;80467:39;80490:5;80497:8;80467:22;:39::i;:::-;80460:46;;80175:339;;;;;:::o;26604:201::-;25584:13;:11;:13::i;:::-;26713:1:::1;26693:22;;:8;:22;;::::0;26685:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;26769:28;26788:8;26769:18;:28::i;:::-;26604:201:::0;:::o;54331:282::-;54396:4;54452:7;54433:15;:13;:15::i;:::-;:26;;:66;;;;;54486:13;;54476:7;:23;54433:66;:153;;;;;54585:1;38339:8;54537:17;:26;54555:7;54537:26;;;;;;;;;;;;:44;:49;54433:153;54413:173;;54331:282;;;:::o;4506:419::-;4745:1;3027:42;4697:45;;;:49;4693:225;;;3027:42;4768;;;4819:4;4826:8;4768:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4763:144;;4882:8;4863:28;;;;;;;;;;;:::i;:::-;;;;;;;;4763:144;4693:225;4506:419;:::o;52393:408::-;52482:13;52498:16;52506:7;52498;:16::i;:::-;52482:32;;52554:5;52531:28;;:19;:17;:19::i;:::-;:28;;;52527:175;;52579:44;52596:5;52603:19;:17;:19::i;:::-;52579:16;:44::i;:::-;52574:128;;52651:35;;;;;;;;;;;;;;52574:128;52527:175;52747:2;52714:15;:24;52730:7;52714:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;52785:7;52781:2;52765:28;;52774:5;52765:28;;;;;;;;;;;;52471:330;52393:408;;:::o;41736:92::-;41792:7;41736:92;:::o;56599:2825::-;56741:27;56771;56790:7;56771:18;:27::i;:::-;56741:57;;56856:4;56815:45;;56831:19;56815:45;;;56811:86;;56869:28;;;;;;;;;;;;;;56811:86;56911:27;56940:23;56967:35;56994:7;56967:26;:35::i;:::-;56910:92;;;;57102:68;57127:15;57144:4;57150:19;:17;:19::i;:::-;57102:24;:68::i;:::-;57097:180;;57190:43;57207:4;57213:19;:17;:19::i;:::-;57190:16;:43::i;:::-;57185:92;;57242:35;;;;;;;;;;;;;;57185:92;57097:180;57308:1;57294:16;;:2;:16;;;57290:52;;57319:23;;;;;;;;;;;;;;57290:52;57355:43;57377:4;57383:2;57387:7;57396:1;57355:21;:43::i;:::-;57491:15;57488:160;;;57631:1;57610:19;57603:30;57488:160;58028:18;:24;58047:4;58028:24;;;;;;;;;;;;;;;;58026:26;;;;;;;;;;;;58097:18;:22;58116:2;58097:22;;;;;;;;;;;;;;;;58095:24;;;;;;;;;;;58419:146;58456:2;58505:45;58520:4;58526:2;58530:19;58505:14;:45::i;:::-;38619:8;58477:73;58419:18;:146::i;:::-;58390:17;:26;58408:7;58390:26;;;;;;;;;;;:175;;;;58736:1;38619:8;58685:19;:47;:52;58681:627;;58758:19;58790:1;58780:7;:11;58758:33;;58947:1;58913:17;:30;58931:11;58913:30;;;;;;;;;;;;:35;58909:384;;59051:13;;59036:11;:28;59032:242;;59231:19;59198:17;:30;59216:11;59198:30;;;;;;;;;;;:52;;;;59032:242;58909:384;58739:569;58681:627;59355:7;59351:2;59336:27;;59345:4;59336:27;;;;;;;;;;;;59374:42;59395:4;59401:2;59405:7;59414:1;59374:20;:42::i;:::-;56730:2694;;;56599:2825;;;:::o;25863:132::-;25938:12;:10;:12::i;:::-;25927:23;;:7;:5;:7::i;:::-;:23;;;25919:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25863:132::o;23049:293::-;22451:1;23183:7;;:19;23175:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22451:1;23316:7;:18;;;;23049:293::o;23350:213::-;22407:1;23533:7;:22;;;;23350:213::o;59520:193::-;59666:39;59683:4;59689:2;59693:7;59666:39;;;;;;;;;;;;:16;:39::i;:::-;59520:193;;;:::o;49017:1275::-;49084:7;49104:12;49119:7;49104:22;;49187:4;49168:15;:13;:15::i;:::-;:23;49164:1061;;49221:13;;49214:4;:20;49210:1015;;;49259:14;49276:17;:23;49294:4;49276:23;;;;;;;;;;;;49259:40;;49393:1;38339:8;49365:6;:24;:29;49361:845;;50030:113;50047:1;50037:6;:11;50030:113;;50090:17;:25;50108:6;;;;;;;50090:25;;;;;;;;;;;;50081:34;;50030:113;;;50176:6;50169:13;;;;;;49361:845;49236:989;49210:1015;49164:1061;50253:31;;;;;;;;;;;;;;49017:1275;;;;:::o;26965:191::-;27039:16;27058:6;;;;;;;;;;;27039:25;;27084:8;27075:6;;:17;;;;;;;;;;;;;;;;;;27139:8;27108:40;;27129:8;27108:40;;;;;;;;;;;;27028:128;26965:191;:::o;70471:112::-;70548:27;70558:2;70562:8;70548:27;;;;;;;;;;;;:9;:27::i;:::-;70471:112;;:::o;53518:234::-;53665:8;53613:18;:39;53632:19;:17;:19::i;:::-;53613:39;;;;;;;;;;;;;;;:49;53653:8;53613:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;53725:8;53689:55;;53704:19;:17;:19::i;:::-;53689:55;;;53735:8;53689:55;;;;;;:::i;:::-;;;;;;;;53518:234;;:::o;60311:407::-;60486:31;60499:4;60505:2;60509:7;60486:12;:31::i;:::-;60550:1;60532:2;:14;;;:19;60528:183;;60571:56;60602:4;60608:2;60612:7;60621:5;60571:30;:56::i;:::-;60566:145;;60655:40;;;;;;;;;;;;;;60566:145;60528:183;60311:407;;;;:::o;18730:716::-;18786:13;18837:14;18874:1;18854:17;18865:5;18854:10;:17::i;:::-;:21;18837:38;;18890:20;18924:6;18913:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18890:41;;18946:11;19075:6;19071:2;19067:15;19059:6;19055:28;19048:35;;19112:288;19119:4;19112:288;;;19144:5;;;;;;;;19286:8;19281:2;19274:5;19270:14;19265:30;19260:3;19252:44;19342:2;19333:11;;;;;;:::i;:::-;;;;;19376:1;19367:5;:10;19112:288;19363:21;19112:288;19421:6;19414:13;;;;;18730:716;;;:::o;53909:164::-;54006:4;54030:18;:25;54049:5;54030:25;;;;;;;;;;;;;;;:35;54056:8;54030:35;;;;;;;;;;;;;;;;;;;;;;;;;54023:42;;53909:164;;;;:::o;76639:105::-;76699:7;76726:10;76719:17;;76639:105;:::o;55494:485::-;55596:27;55625:23;55666:38;55707:15;:24;55723:7;55707:24;;;;;;;;;;;55666:65;;55884:18;55861:41;;55941:19;55935:26;55916:45;;55846:126;55494:485;;;:::o;54722:659::-;54871:11;55036:16;55029:5;55025:28;55016:37;;55196:16;55185:9;55181:32;55168:45;;55346:15;55335:9;55332:30;55324:5;55313:9;55310:20;55307:56;55297:66;;54722:659;;;;;:::o;61380:159::-;;;;;:::o;75948:311::-;76083:7;76103:16;38743:3;76129:19;:41;;76103:68;;38743:3;76197:31;76208:4;76214:2;76218:9;76197:10;:31::i;:::-;76189:40;;:62;;76182:69;;;75948:311;;;;;:::o;50840:450::-;50920:14;51088:16;51081:5;51077:28;51068:37;;51265:5;51251:11;51226:23;51222:41;51219:52;51212:5;51209:63;51199:73;;50840:450;;;;:::o;62204:158::-;;;;;:::o;24249:98::-;24302:7;24329:10;24322:17;;24249:98;:::o;69698:689::-;69829:19;69835:2;69839:8;69829:5;:19::i;:::-;69908:1;69890:2;:14;;;:19;69886:483;;69930:11;69944:13;;69930:27;;69976:13;69998:8;69992:3;:14;69976:30;;70025:233;70056:62;70095:1;70099:2;70103:7;;;;;;70112:5;70056:30;:62::i;:::-;70051:167;;70154:40;;;;;;;;;;;;;;70051:167;70253:3;70245:5;:11;70025:233;;70340:3;70323:13;;:20;70319:34;;70345:8;;;70319:34;69911:458;;69886:483;69698:689;;;:::o;62802:716::-;62965:4;63011:2;62986:45;;;63032:19;:17;:19::i;:::-;63053:4;63059:7;63068:5;62986:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;62982:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63286:1;63269:6;:13;:18;63265:235;;63315:40;;;;;;;;;;;;;;63265:235;63458:6;63452:13;63443:6;63439:2;63435:15;63428:38;62982:529;63155:54;;;63145:64;;;:6;:64;;;;63138:71;;;62802:716;;;;;;:::o;15596:922::-;15649:7;15669:14;15686:1;15669:18;;15736:6;15727:5;:15;15723:102;;15772:6;15763:15;;;;;;:::i;:::-;;;;;15807:2;15797:12;;;;15723:102;15852:6;15843:5;:15;15839:102;;15888:6;15879:15;;;;;;:::i;:::-;;;;;15923:2;15913:12;;;;15839:102;15968:6;15959:5;:15;15955:102;;16004:6;15995:15;;;;;;:::i;:::-;;;;;16039:2;16029:12;;;;15955:102;16084:5;16075;:14;16071:99;;16119:5;16110:14;;;;;;:::i;:::-;;;;;16153:1;16143:11;;;;16071:99;16197:5;16188;:14;16184:99;;16232:5;16223:14;;;;;;:::i;:::-;;;;;16266:1;16256:11;;;;16184:99;16310:5;16301;:14;16297:99;;16345:5;16336:14;;;;;;:::i;:::-;;;;;16379:1;16369:11;;;;16297:99;16423:5;16414;:14;16410:66;;16459:1;16449:11;;;;16410:66;16504:6;16497:13;;;15596:922;;;:::o;75649:147::-;75786:6;75649:147;;;;;:::o;63980:2966::-;64053:20;64076:13;;64053:36;;64116:1;64104:8;:13;64100:44;;64126:18;;;;;;;;;;;;;;64100:44;64157:61;64187:1;64191:2;64195:12;64209:8;64157:21;:61::i;:::-;64701:1;37701:2;64671:1;:26;;64670:32;64658:8;:45;64632:18;:22;64651:2;64632:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;64980:139;65017:2;65071:33;65094:1;65098:2;65102:1;65071:14;:33::i;:::-;65038:30;65059:8;65038:20;:30::i;:::-;:66;64980:18;:139::i;:::-;64946:17;:31;64964:12;64946:31;;;;;;;;;;;:173;;;;65136:16;65167:11;65196:8;65181:12;:23;65167:37;;65717:16;65713:2;65709:25;65697:37;;66089:12;66049:8;66008:1;65946:25;65887:1;65826;65799:335;66460:1;66446:12;66442:20;66400:346;66501:3;66492:7;66489:16;66400:346;;66719:7;66709:8;66706:1;66679:25;66676:1;66673;66668:59;66554:1;66545:7;66541:15;66530:26;;66400:346;;;66404:77;66791:1;66779:8;:13;66775:45;;66801:19;;;;;;;;;;;;;;66775:45;66853:3;66837:13;:19;;;;64406:2462;;66878:60;66907:1;66911:2;66915:12;66929:8;66878:20;:60::i;:::-;64042:2904;63980:2966;;:::o;51392:324::-;51462:14;51695:1;51685:8;51682:15;51656:24;51652:46;51642:56;;51392: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:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:246::-;2314:1;2324:113;2338:6;2335:1;2332:13;2324:113;;;2423:1;2418:3;2414:11;2408:18;2404:1;2399:3;2395:11;2388:39;2360:2;2357:1;2353:10;2348:15;;2324:113;;;2471:1;2462:6;2457:3;2453:16;2446:27;2295:184;2233:246;;;:::o;2485:102::-;2526:6;2577:2;2573:7;2568:2;2561:5;2557:14;2553:28;2543:38;;2485:102;;;:::o;2593:377::-;2681:3;2709:39;2742:5;2709:39;:::i;:::-;2764:71;2828:6;2823:3;2764:71;:::i;:::-;2757:78;;2844:65;2902:6;2897:3;2890:4;2883:5;2879:16;2844:65;:::i;:::-;2934:29;2956:6;2934:29;:::i;:::-;2929:3;2925:39;2918:46;;2685:285;2593:377;;;;:::o;2976:313::-;3089:4;3127:2;3116:9;3112:18;3104:26;;3176:9;3170:4;3166:20;3162:1;3151:9;3147:17;3140:47;3204:78;3277:4;3268:6;3204:78;:::i;:::-;3196:86;;2976:313;;;;:::o;3295:122::-;3368:24;3386:5;3368:24;:::i;:::-;3361:5;3358:35;3348:63;;3407:1;3404;3397:12;3348:63;3295:122;:::o;3423:139::-;3469:5;3507:6;3494:20;3485:29;;3523:33;3550:5;3523:33;:::i;:::-;3423:139;;;;:::o;3568:329::-;3627:6;3676:2;3664:9;3655:7;3651:23;3647:32;3644:119;;;3682:79;;:::i;:::-;3644:119;3802:1;3827:53;3872:7;3863:6;3852:9;3848:22;3827:53;:::i;:::-;3817:63;;3773:117;3568:329;;;;:::o;3903:126::-;3940:7;3980:42;3973:5;3969:54;3958:65;;3903:126;;;:::o;4035:96::-;4072:7;4101:24;4119:5;4101:24;:::i;:::-;4090:35;;4035:96;;;:::o;4137:118::-;4224:24;4242:5;4224:24;:::i;:::-;4219:3;4212:37;4137:118;;:::o;4261:222::-;4354:4;4392:2;4381:9;4377:18;4369:26;;4405:71;4473:1;4462:9;4458:17;4449:6;4405:71;:::i;:::-;4261:222;;;;:::o;4489:122::-;4562:24;4580:5;4562:24;:::i;:::-;4555:5;4552:35;4542:63;;4601:1;4598;4591:12;4542:63;4489:122;:::o;4617:139::-;4663:5;4701:6;4688:20;4679:29;;4717:33;4744:5;4717:33;:::i;:::-;4617:139;;;;:::o;4762:474::-;4830:6;4838;4887:2;4875:9;4866:7;4862:23;4858:32;4855:119;;;4893:79;;:::i;:::-;4855:119;5013:1;5038:53;5083:7;5074:6;5063:9;5059:22;5038:53;:::i;:::-;5028:63;;4984:117;5140:2;5166:53;5211:7;5202:6;5191:9;5187:22;5166:53;:::i;:::-;5156:63;;5111:118;4762:474;;;;;:::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:60::-;5895:3;5916:5;5909:12;;5867:60;;;:::o;5933:142::-;5983:9;6016:53;6034:34;6043:24;6061:5;6043:24;:::i;:::-;6034:34;:::i;:::-;6016:53;:::i;:::-;6003:66;;5933:142;;;:::o;6081:126::-;6131:9;6164:37;6195:5;6164:37;:::i;:::-;6151:50;;6081:126;;;:::o;6213:157::-;6294:9;6327:37;6358:5;6327:37;:::i;:::-;6314:50;;6213:157;;;:::o;6376:193::-;6494:68;6556:5;6494:68;:::i;:::-;6489:3;6482:81;6376:193;;:::o;6575:284::-;6699:4;6737:2;6726:9;6722:18;6714:26;;6750:102;6849:1;6838:9;6834:17;6825:6;6750:102;:::i;:::-;6575:284;;;;:::o;6865:117::-;6974:1;6971;6964:12;6988:117;7097:1;7094;7087:12;7111:180;7159:77;7156:1;7149:88;7256:4;7253:1;7246:15;7280:4;7277:1;7270:15;7297:281;7380:27;7402:4;7380:27;:::i;:::-;7372:6;7368:40;7510:6;7498:10;7495:22;7474:18;7462:10;7459:34;7456:62;7453:88;;;7521:18;;:::i;:::-;7453:88;7561:10;7557:2;7550:22;7340:238;7297:281;;:::o;7584:129::-;7618:6;7645:20;;:::i;:::-;7635:30;;7674:33;7702:4;7694:6;7674:33;:::i;:::-;7584:129;;;:::o;7719:308::-;7781:4;7871:18;7863:6;7860:30;7857:56;;;7893:18;;:::i;:::-;7857:56;7931:29;7953:6;7931:29;:::i;:::-;7923:37;;8015:4;8009;8005:15;7997:23;;7719:308;;;:::o;8033:146::-;8130:6;8125:3;8120;8107:30;8171:1;8162:6;8157:3;8153:16;8146:27;8033:146;;;:::o;8185:425::-;8263:5;8288:66;8304:49;8346:6;8304:49;:::i;:::-;8288:66;:::i;:::-;8279:75;;8377:6;8370:5;8363:21;8415:4;8408:5;8404:16;8453:3;8444:6;8439:3;8435:16;8432:25;8429:112;;;8460:79;;:::i;:::-;8429:112;8550:54;8597:6;8592:3;8587;8550:54;:::i;:::-;8269:341;8185:425;;;;;:::o;8630:340::-;8686:5;8735:3;8728:4;8720:6;8716:17;8712:27;8702:122;;8743:79;;:::i;:::-;8702:122;8860:6;8847:20;8885:79;8960:3;8952:6;8945:4;8937:6;8933:17;8885:79;:::i;:::-;8876:88;;8692:278;8630:340;;;;:::o;8976:509::-;9045:6;9094:2;9082:9;9073:7;9069:23;9065:32;9062:119;;;9100:79;;:::i;:::-;9062:119;9248:1;9237:9;9233:17;9220:31;9278:18;9270:6;9267:30;9264:117;;;9300:79;;:::i;:::-;9264:117;9405:63;9460:7;9451:6;9440:9;9436:22;9405:63;:::i;:::-;9395:73;;9191:287;8976:509;;;;:::o;9491:329::-;9550:6;9599:2;9587:9;9578:7;9574:23;9570:32;9567:119;;;9605:79;;:::i;:::-;9567:119;9725:1;9750:53;9795:7;9786:6;9775:9;9771:22;9750:53;:::i;:::-;9740:63;;9696:117;9491:329;;;;:::o;9826:116::-;9896:21;9911:5;9896:21;:::i;:::-;9889:5;9886:32;9876:60;;9932:1;9929;9922:12;9876:60;9826:116;:::o;9948:133::-;9991:5;10029:6;10016:20;10007:29;;10045:30;10069:5;10045:30;:::i;:::-;9948:133;;;;:::o;10087:468::-;10152:6;10160;10209:2;10197:9;10188:7;10184:23;10180:32;10177:119;;;10215:79;;:::i;:::-;10177:119;10335:1;10360:53;10405:7;10396:6;10385:9;10381:22;10360:53;:::i;:::-;10350:63;;10306:117;10462:2;10488:50;10530:7;10521:6;10510:9;10506:22;10488:50;:::i;:::-;10478:60;;10433:115;10087:468;;;;;:::o;10561:307::-;10622:4;10712:18;10704:6;10701:30;10698:56;;;10734:18;;:::i;:::-;10698:56;10772:29;10794:6;10772:29;:::i;:::-;10764:37;;10856:4;10850;10846:15;10838:23;;10561:307;;;:::o;10874:423::-;10951:5;10976:65;10992:48;11033:6;10992:48;:::i;:::-;10976:65;:::i;:::-;10967:74;;11064:6;11057:5;11050:21;11102:4;11095:5;11091:16;11140:3;11131:6;11126:3;11122:16;11119:25;11116:112;;;11147:79;;:::i;:::-;11116:112;11237:54;11284:6;11279:3;11274;11237:54;:::i;:::-;10957:340;10874:423;;;;;:::o;11316:338::-;11371:5;11420:3;11413:4;11405:6;11401:17;11397:27;11387:122;;11428:79;;:::i;:::-;11387:122;11545:6;11532:20;11570:78;11644:3;11636:6;11629:4;11621:6;11617:17;11570:78;:::i;:::-;11561:87;;11377:277;11316:338;;;;:::o;11660:943::-;11755:6;11763;11771;11779;11828:3;11816:9;11807:7;11803:23;11799:33;11796:120;;;11835:79;;:::i;:::-;11796:120;11955:1;11980:53;12025:7;12016:6;12005:9;12001:22;11980:53;:::i;:::-;11970:63;;11926:117;12082:2;12108:53;12153:7;12144:6;12133:9;12129:22;12108:53;:::i;:::-;12098:63;;12053:118;12210:2;12236:53;12281:7;12272:6;12261:9;12257:22;12236:53;:::i;:::-;12226:63;;12181:118;12366:2;12355:9;12351:18;12338:32;12397:18;12389:6;12386:30;12383:117;;;12419:79;;:::i;:::-;12383:117;12524:62;12578:7;12569:6;12558:9;12554:22;12524:62;:::i;:::-;12514:72;;12309:287;11660:943;;;;;;;:::o;12609:474::-;12677:6;12685;12734:2;12722:9;12713:7;12709:23;12705:32;12702:119;;;12740:79;;:::i;:::-;12702:119;12860:1;12885:53;12930:7;12921:6;12910:9;12906:22;12885:53;:::i;:::-;12875:63;;12831:117;12987:2;13013:53;13058:7;13049:6;13038:9;13034:22;13013:53;:::i;:::-;13003:63;;12958:118;12609:474;;;;;:::o;13089:180::-;13137:77;13134:1;13127:88;13234:4;13231:1;13224:15;13258:4;13255:1;13248:15;13275:320;13319:6;13356:1;13350:4;13346:12;13336:22;;13403:1;13397:4;13393:12;13424:18;13414:81;;13480:4;13472:6;13468:17;13458:27;;13414:81;13542:2;13534:6;13531:14;13511:18;13508:38;13505:84;;13561:18;;:::i;:::-;13505:84;13326:269;13275:320;;;:::o;13601:147::-;13702:11;13739:3;13724:18;;13601:147;;;;:::o;13754:114::-;;:::o;13874:398::-;14033:3;14054:83;14135:1;14130:3;14054:83;:::i;:::-;14047:90;;14146:93;14235:3;14146:93;:::i;:::-;14264:1;14259:3;14255:11;14248:18;;13874:398;;;:::o;14278:379::-;14462:3;14484:147;14627:3;14484:147;:::i;:::-;14477:154;;14648:3;14641:10;;14278:379;;;:::o;14663:141::-;14712:4;14735:3;14727:11;;14758:3;14755:1;14748:14;14792:4;14789:1;14779:18;14771:26;;14663:141;;;:::o;14810:93::-;14847:6;14894:2;14889;14882:5;14878:14;14874:23;14864:33;;14810:93;;;:::o;14909:107::-;14953:8;15003:5;14997:4;14993:16;14972:37;;14909:107;;;;:::o;15022:393::-;15091:6;15141:1;15129:10;15125:18;15164:97;15194:66;15183:9;15164:97;:::i;:::-;15282:39;15312:8;15301:9;15282:39;:::i;:::-;15270:51;;15354:4;15350:9;15343:5;15339:21;15330:30;;15403:4;15393:8;15389:19;15382:5;15379:30;15369:40;;15098:317;;15022:393;;;;;:::o;15421:142::-;15471:9;15504:53;15522:34;15531:24;15549:5;15531:24;:::i;:::-;15522:34;:::i;:::-;15504:53;:::i;:::-;15491:66;;15421:142;;;:::o;15569:75::-;15612:3;15633:5;15626:12;;15569:75;;;:::o;15650:269::-;15760:39;15791:7;15760:39;:::i;:::-;15821:91;15870:41;15894:16;15870:41;:::i;:::-;15862:6;15855:4;15849:11;15821:91;:::i;:::-;15815:4;15808:105;15726:193;15650:269;;;:::o;15925:73::-;15970:3;15925:73;:::o;16004:189::-;16081:32;;:::i;:::-;16122:65;16180:6;16172;16166:4;16122:65;:::i;:::-;16057:136;16004:189;;:::o;16199:186::-;16259:120;16276:3;16269:5;16266:14;16259:120;;;16330:39;16367:1;16360:5;16330:39;:::i;:::-;16303:1;16296:5;16292:13;16283:22;;16259:120;;;16199:186;;:::o;16391:543::-;16492:2;16487:3;16484:11;16481:446;;;16526:38;16558:5;16526:38;:::i;:::-;16610:29;16628:10;16610:29;:::i;:::-;16600:8;16596:44;16793:2;16781:10;16778:18;16775:49;;;16814:8;16799:23;;16775:49;16837:80;16893:22;16911:3;16893:22;:::i;:::-;16883:8;16879:37;16866:11;16837:80;:::i;:::-;16496:431;;16481:446;16391:543;;;:::o;16940:117::-;16994:8;17044:5;17038:4;17034:16;17013:37;;16940:117;;;;:::o;17063:169::-;17107:6;17140:51;17188:1;17184:6;17176:5;17173:1;17169:13;17140:51;:::i;:::-;17136:56;17221:4;17215;17211:15;17201:25;;17114:118;17063:169;;;;:::o;17237:295::-;17313:4;17459:29;17484:3;17478:4;17459:29;:::i;:::-;17451:37;;17521:3;17518:1;17514:11;17508:4;17505:21;17497:29;;17237:295;;;;:::o;17537:1395::-;17654:37;17687:3;17654:37;:::i;:::-;17756:18;17748:6;17745:30;17742:56;;;17778:18;;:::i;:::-;17742:56;17822:38;17854:4;17848:11;17822:38;:::i;:::-;17907:67;17967:6;17959;17953:4;17907:67;:::i;:::-;18001:1;18025:4;18012:17;;18057:2;18049:6;18046:14;18074:1;18069:618;;;;18731:1;18748:6;18745:77;;;18797:9;18792:3;18788:19;18782:26;18773:35;;18745:77;18848:67;18908:6;18901:5;18848:67;:::i;:::-;18842:4;18835:81;18704:222;18039:887;;18069:618;18121:4;18117:9;18109:6;18105:22;18155:37;18187:4;18155:37;:::i;:::-;18214:1;18228:208;18242:7;18239:1;18236:14;18228:208;;;18321:9;18316:3;18312:19;18306:26;18298:6;18291:42;18372:1;18364:6;18360:14;18350:24;;18419:2;18408:9;18404:18;18391:31;;18265:4;18262:1;18258:12;18253:17;;18228:208;;;18464:6;18455:7;18452:19;18449:179;;;18522:9;18517:3;18513:19;18507:26;18565:48;18607:4;18599:6;18595:17;18584:9;18565:48;:::i;:::-;18557:6;18550:64;18472:156;18449:179;18674:1;18670;18662:6;18658:14;18654:22;18648:4;18641:36;18076:611;;;18039:887;;17629:1303;;;17537:1395;;:::o;18938:180::-;18986:77;18983:1;18976:88;19083:4;19080:1;19073:15;19107:4;19104:1;19097:15;19124:191;19164:3;19183:20;19201:1;19183:20;:::i;:::-;19178:25;;19217:20;19235:1;19217:20;:::i;:::-;19212:25;;19260:1;19257;19253:9;19246:16;;19281:3;19278:1;19275:10;19272:36;;;19288:18;;:::i;:::-;19272:36;19124:191;;;;:::o;19321:410::-;19361:7;19384:20;19402:1;19384:20;:::i;:::-;19379:25;;19418:20;19436:1;19418:20;:::i;:::-;19413:25;;19473:1;19470;19466:9;19495:30;19513:11;19495:30;:::i;:::-;19484:41;;19674:1;19665:7;19661:15;19658:1;19655:22;19635:1;19628:9;19608:83;19585:139;;19704:18;;:::i;:::-;19585:139;19369:362;19321:410;;;;:::o;19737:179::-;19877:31;19873:1;19865:6;19861:14;19854:55;19737:179;:::o;19922:366::-;20064:3;20085:67;20149:2;20144:3;20085:67;:::i;:::-;20078:74;;20161:93;20250:3;20161:93;:::i;:::-;20279:2;20274:3;20270:12;20263:19;;19922:366;;;:::o;20294:419::-;20460:4;20498:2;20487:9;20483:18;20475:26;;20547:9;20541:4;20537:20;20533:1;20522:9;20518:17;20511:47;20575:131;20701:4;20575:131;:::i;:::-;20567:139;;20294:419;;;:::o;20719:159::-;20859:11;20855:1;20847:6;20843:14;20836:35;20719:159;:::o;20884:365::-;21026:3;21047:66;21111:1;21106:3;21047:66;:::i;:::-;21040:73;;21122:93;21211:3;21122:93;:::i;:::-;21240:2;21235:3;21231:12;21224:19;;20884:365;;;:::o;21255:419::-;21421:4;21459:2;21448:9;21444:18;21436:26;;21508:9;21502:4;21498:20;21494:1;21483:9;21479:17;21472:47;21536:131;21662:4;21536:131;:::i;:::-;21528:139;;21255:419;;;:::o;21680:169::-;21820:21;21816:1;21808:6;21804:14;21797:45;21680:169;:::o;21855:366::-;21997:3;22018:67;22082:2;22077:3;22018:67;:::i;:::-;22011:74;;22094:93;22183:3;22094:93;:::i;:::-;22212:2;22207:3;22203:12;22196:19;;21855:366;;;:::o;22227:419::-;22393:4;22431:2;22420:9;22416:18;22408:26;;22480:9;22474:4;22470:20;22466:1;22455:9;22451:17;22444:47;22508:131;22634:4;22508:131;:::i;:::-;22500:139;;22227:419;;;:::o;22652:234::-;22792:34;22788:1;22780:6;22776:14;22769:58;22861:17;22856:2;22848:6;22844:15;22837:42;22652:234;:::o;22892:366::-;23034:3;23055:67;23119:2;23114:3;23055:67;:::i;:::-;23048:74;;23131:93;23220:3;23131:93;:::i;:::-;23249:2;23244:3;23240:12;23233:19;;22892:366;;;:::o;23264:419::-;23430:4;23468:2;23457:9;23453:18;23445:26;;23517:9;23511:4;23507:20;23503:1;23492:9;23488:17;23481:47;23545:131;23671:4;23545:131;:::i;:::-;23537:139;;23264:419;;;:::o;23689:148::-;23791:11;23828:3;23813:18;;23689:148;;;;:::o;23867:874::-;23970:3;24007:5;24001:12;24036:36;24062:9;24036:36;:::i;:::-;24088:89;24170:6;24165:3;24088:89;:::i;:::-;24081:96;;24208:1;24197:9;24193:17;24224:1;24219:166;;;;24399:1;24394:341;;;;24186:549;;24219:166;24303:4;24299:9;24288;24284:25;24279:3;24272:38;24365:6;24358:14;24351:22;24343:6;24339:35;24334:3;24330:45;24323:52;;24219:166;;24394:341;24461:38;24493:5;24461:38;:::i;:::-;24521:1;24535:154;24549:6;24546:1;24543:13;24535:154;;;24623:7;24617:14;24613:1;24608:3;24604:11;24597:35;24673:1;24664:7;24660:15;24649:26;;24571:4;24568:1;24564:12;24559:17;;24535:154;;;24718:6;24713:3;24709:16;24702:23;;24401:334;;24186:549;;23974:767;;23867:874;;;;:::o;24747:390::-;24853:3;24881:39;24914:5;24881:39;:::i;:::-;24936:89;25018:6;25013:3;24936:89;:::i;:::-;24929:96;;25034:65;25092:6;25087:3;25080:4;25073:5;25069:16;25034:65;:::i;:::-;25124:6;25119:3;25115:16;25108:23;;24857:280;24747:390;;;;:::o;25143:155::-;25283:7;25279:1;25271:6;25267:14;25260:31;25143:155;:::o;25304:400::-;25464:3;25485:84;25567:1;25562:3;25485:84;:::i;:::-;25478:91;;25578:93;25667:3;25578:93;:::i;:::-;25696:1;25691:3;25687:11;25680:18;;25304:400;;;:::o;25710:695::-;25988:3;26010:92;26098:3;26089:6;26010:92;:::i;:::-;26003:99;;26119:95;26210:3;26201:6;26119:95;:::i;:::-;26112:102;;26231:148;26375:3;26231:148;:::i;:::-;26224:155;;26396:3;26389:10;;25710:695;;;;;:::o;26411:225::-;26551:34;26547:1;26539:6;26535:14;26528:58;26620:8;26615:2;26607:6;26603:15;26596:33;26411:225;:::o;26642:366::-;26784:3;26805:67;26869:2;26864:3;26805:67;:::i;:::-;26798:74;;26881:93;26970:3;26881:93;:::i;:::-;26999:2;26994:3;26990:12;26983:19;;26642:366;;;:::o;27014:419::-;27180:4;27218:2;27207:9;27203:18;27195:26;;27267:9;27261:4;27257:20;27253:1;27242:9;27238:17;27231:47;27295:131;27421:4;27295:131;:::i;:::-;27287:139;;27014:419;;;:::o;27439:332::-;27560:4;27598:2;27587:9;27583:18;27575:26;;27611:71;27679:1;27668:9;27664:17;27655:6;27611:71;:::i;:::-;27692:72;27760:2;27749:9;27745:18;27736:6;27692:72;:::i;:::-;27439:332;;;;;:::o;27777:137::-;27831:5;27862:6;27856:13;27847:22;;27878:30;27902:5;27878:30;:::i;:::-;27777:137;;;;:::o;27920:345::-;27987:6;28036:2;28024:9;28015:7;28011:23;28007:32;28004:119;;;28042:79;;:::i;:::-;28004:119;28162:1;28187:61;28240:7;28231:6;28220:9;28216:22;28187:61;:::i;:::-;28177:71;;28133:125;27920:345;;;;:::o;28271:182::-;28411:34;28407:1;28399:6;28395:14;28388:58;28271:182;:::o;28459:366::-;28601:3;28622:67;28686:2;28681:3;28622:67;:::i;:::-;28615:74;;28698:93;28787:3;28698:93;:::i;:::-;28816:2;28811:3;28807:12;28800:19;;28459:366;;;:::o;28831:419::-;28997:4;29035:2;29024:9;29020:18;29012:26;;29084:9;29078:4;29074:20;29070:1;29059:9;29055:17;29048:47;29112:131;29238:4;29112:131;:::i;:::-;29104:139;;28831:419;;;:::o;29256:181::-;29396:33;29392:1;29384:6;29380:14;29373:57;29256:181;:::o;29443:366::-;29585:3;29606:67;29670:2;29665:3;29606:67;:::i;:::-;29599:74;;29682:93;29771:3;29682:93;:::i;:::-;29800:2;29795:3;29791:12;29784:19;;29443:366;;;:::o;29815:419::-;29981:4;30019:2;30008:9;30004:18;29996:26;;30068:9;30062:4;30058:20;30054:1;30043:9;30039:17;30032:47;30096:131;30222:4;30096:131;:::i;:::-;30088:139;;29815:419;;;:::o;30240:180::-;30288:77;30285:1;30278:88;30385:4;30382:1;30375:15;30409:4;30406:1;30399:15;30426:98;30477:6;30511:5;30505:12;30495:22;;30426:98;;;:::o;30530:168::-;30613:11;30647:6;30642:3;30635:19;30687:4;30682:3;30678:14;30663:29;;30530:168;;;;:::o;30704:373::-;30790:3;30818:38;30850:5;30818:38;:::i;:::-;30872:70;30935:6;30930:3;30872:70;:::i;:::-;30865:77;;30951:65;31009:6;31004:3;30997:4;30990:5;30986:16;30951:65;:::i;:::-;31041:29;31063:6;31041:29;:::i;:::-;31036:3;31032:39;31025:46;;30794:283;30704:373;;;;:::o;31083:640::-;31278:4;31316:3;31305:9;31301:19;31293:27;;31330:71;31398:1;31387:9;31383:17;31374:6;31330:71;:::i;:::-;31411:72;31479:2;31468:9;31464:18;31455:6;31411:72;:::i;:::-;31493;31561:2;31550:9;31546:18;31537:6;31493:72;:::i;:::-;31612:9;31606:4;31602:20;31597:2;31586:9;31582:18;31575:48;31640:76;31711:4;31702:6;31640:76;:::i;:::-;31632:84;;31083:640;;;;;;;:::o;31729:141::-;31785:5;31816:6;31810:13;31801:22;;31832:32;31858:5;31832:32;:::i;:::-;31729:141;;;;:::o;31876:349::-;31945:6;31994:2;31982:9;31973:7;31969:23;31965:32;31962:119;;;32000:79;;:::i;:::-;31962:119;32120:1;32145:63;32200:7;32191:6;32180:9;32176:22;32145:63;:::i;:::-;32135:73;;32091:127;31876:349;;;;:::o

Swarm Source

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