ETH Price: $3,257.51 (+2.55%)
Gas: 2 Gwei

Token

Eternal Bargain (EB)
 

Overview

Max Total Supply

300 EB

Holders

206

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 EB
0xee0b618bcd18f798d3b15b0dea961831efce1ead
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:
ETERNALBARGAIN

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

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


pragma solidity ^0.8.9;






 
 
 
contract ETERNALBARGAIN is ERC721A, DefaultOperatorFilterer, Ownable, ReentrancyGuard { 
event DevMintEvent(address ownerAddress, uint256 startWith, uint256 amountMinted);
uint256 public devTotal;
    uint256 public _maxSupply = 300;
    uint256 public _mintPrice = 0.005 ether;
    uint256 public _maxMintPerTx = 10;
 
    uint256 public _maxFreeMintPerAddr = 1;
    uint256 public _maxFreeMintSupply = 300;
     uint256 public devSupply = 0;
 
    using Strings for uint256;
    string public baseURI;
 
    mapping(address => uint256) private _mintedFreeAmount;
 
 
    constructor(string memory initBaseURI) ERC721A("Eternal Bargain", "EB") {
        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 - devSupply + 1, "Sold out!");
        require(count < _maxMintPerTx + 1, "Max per TX reached.");
 
        if (isFree) {
            _mintedFreeAmount[msg.sender] += count;
        }
 
        _safeMint(msg.sender, count);
    }
 
     function devMint() public onlyOwner {
        devTotal += devSupply;
        emit DevMintEvent(_msgSender(), devTotal, devSupply);
        _safeMint(msg.sender, devSupply);
    }
 
    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":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

608060405261012c600b556611c37937e08000600c55600a600d556001600e5561012c600f5560006010553480156200003757600080fd5b5060405162003a5f38038062003a5f83398181016040528101906200005d919062000689565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600f81526020017f457465726e616c204261726761696e00000000000000000000000000000000008152506040518060400160405280600281526020017f45420000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000f89291906200043c565b508060039080519060200190620001119291906200043c565b50620001226200036960201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200031f578015620001e5576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001ab9291906200071f565b600060405180830381600087803b158015620001c657600080fd5b505af1158015620001db573d6000803e3d6000fd5b505050506200031e565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200029f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002659291906200071f565b600060405180830381600087803b1580156200028057600080fd5b505af115801562000295573d6000803e3d6000fd5b505050506200031d565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002e891906200074c565b600060405180830381600087803b1580156200030357600080fd5b505af115801562000318573d6000803e3d6000fd5b505050505b5b5b505062000341620003356200036e60201b60201c565b6200037660201b60201c565b60016009819055508060119080519060200190620003619291906200043c565b5050620007cd565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200044a9062000798565b90600052602060002090601f0160209004810192826200046e5760008555620004ba565b82601f106200048957805160ff1916838001178555620004ba565b82800160010185558215620004ba579182015b82811115620004b95782518255916020019190600101906200049c565b5b509050620004c99190620004cd565b5090565b5b80821115620004e8576000816000905550600101620004ce565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000555826200050a565b810181811067ffffffffffffffff821117156200057757620005766200051b565b5b80604052505050565b60006200058c620004ec565b90506200059a82826200054a565b919050565b600067ffffffffffffffff821115620005bd57620005bc6200051b565b5b620005c8826200050a565b9050602081019050919050565b60005b83811015620005f5578082015181840152602081019050620005d8565b8381111562000605576000848401525b50505050565b6000620006226200061c846200059f565b62000580565b90508281526020810184848401111562000641576200064062000505565b5b6200064e848285620005d5565b509392505050565b600082601f8301126200066e576200066d62000500565b5b8151620006808482602086016200060b565b91505092915050565b600060208284031215620006a257620006a1620004f6565b5b600082015167ffffffffffffffff811115620006c357620006c2620004fb565b5b620006d18482850162000656565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200070782620006da565b9050919050565b6200071981620006fa565b82525050565b60006040820190506200073660008301856200070e565b6200074560208301846200070e565b9392505050565b60006020820190506200076360008301846200070e565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007b157607f821691505b602082108103620007c757620007c662000769565b5b50919050565b61328280620007dd6000396000f3fe6080604052600436106101e35760003560e01c80636c0360eb116101025780639cb57d2011610095578063c87b56dd11610064578063c87b56dd14610648578063de314a5914610685578063e985e9c5146106b0578063f2fde38b146106ed576101e3565b80639cb57d20146105bc578063a0712d68146105e7578063a22cb46514610603578063b88d4fde1461062c576101e3565b80638da5cb5b116100d15780638da5cb5b1461051457806391b7f5ed1461053f57806392910eec1461056857806395d89b4114610591576101e3565b80636c0360eb1461047e57806370a08231146104a9578063715018a6146104e65780637c69e207146104fd576101e3565b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103d157806355f804b3146103ed5780635e1c4b60146104165780636352211e14610441576101e3565b806323b872dd146103555780633ccfd60b1461037157806341c66d0a1461037b57806341f43434146103a6576101e3565b8063095ea7b3116101b6578063095ea7b3146102b85780630afb04db146102d457806318160ddd146102ff57806322f4596f1461032a576101e3565b806301ffc9a7146101e85780630387da421461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612399565b610716565b60405161021c91906123e1565b60405180910390f35b34801561023157600080fd5b5061023a6107a8565b6040516102479190612415565b60405180910390f35b34801561025c57600080fd5b506102656107ae565b60405161027291906124c9565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190612517565b610840565b6040516102af9190612585565b60405180910390f35b6102d260048036038101906102cd91906125cc565b6108bf565b005b3480156102e057600080fd5b506102e96108d8565b6040516102f69190612415565b60405180910390f35b34801561030b57600080fd5b506103146108de565b6040516103219190612415565b60405180910390f35b34801561033657600080fd5b5061033f6108f5565b60405161034c9190612415565b60405180910390f35b61036f600480360381019061036a919061260c565b6108fb565b005b61037961094a565b005b34801561038757600080fd5b506103906109db565b60405161039d9190612415565b60405180910390f35b3480156103b257600080fd5b506103bb6109e1565b6040516103c891906126be565b60405180910390f35b6103eb60048036038101906103e6919061260c565b6109f3565b005b3480156103f957600080fd5b50610414600480360381019061040f919061280e565b610a42565b005b34801561042257600080fd5b5061042b610a64565b6040516104389190612415565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190612517565b610a6a565b6040516104759190612585565b60405180910390f35b34801561048a57600080fd5b50610493610a7c565b6040516104a091906124c9565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190612857565b610b0a565b6040516104dd9190612415565b60405180910390f35b3480156104f257600080fd5b506104fb610bc2565b005b34801561050957600080fd5b50610512610bd6565b005b34801561052057600080fd5b50610529610c4d565b6040516105369190612585565b60405180910390f35b34801561054b57600080fd5b5061056660048036038101906105619190612517565b610c77565b005b34801561057457600080fd5b5061058f600480360381019061058a9190612517565b610c89565b005b34801561059d57600080fd5b506105a6610c9b565b6040516105b391906124c9565b60405180910390f35b3480156105c857600080fd5b506105d1610d2d565b6040516105de9190612415565b60405180910390f35b61060160048036038101906105fc9190612517565b610d33565b005b34801561060f57600080fd5b5061062a600480360381019061062591906128b0565b610f7a565b005b61064660048036038101906106419190612991565b610f93565b005b34801561065457600080fd5b5061066f600480360381019061066a9190612517565b610fe4565b60405161067c91906124c9565b60405180910390f35b34801561069157600080fd5b5061069a611060565b6040516106a79190612415565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190612a14565b611066565b6040516106e491906123e1565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f9190612857565b6110cb565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b6060600280546107bd90612a83565b80601f01602080910402602001604051908101604052809291908181526020018280546107e990612a83565b80156108365780601f1061080b57610100808354040283529160200191610836565b820191906000526020600020905b81548152906001019060200180831161081957829003601f168201915b5050505050905090565b600061084b8261114e565b610881576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816108c9816111ad565b6108d383836112aa565b505050565b600a5481565b60006108e86113ee565b6001546000540303905090565b600b5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461093957610938336111ad565b5b6109448484846113f3565b50505050565b610952611715565b61095a611793565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161098090612ae5565b60006040518083038185875af1925050503d80600081146109bd576040519150601f19603f3d011682016040523d82523d6000602084013e6109c2565b606091505b50509050806109d057600080fd5b506109d96117e2565b565b60105481565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a3157610a30336111ad565b5b610a3c8484846117ec565b50505050565b610a4a611715565b8060119080519060200190610a6092919061228a565b5050565b600f5481565b6000610a758261180c565b9050919050565b60118054610a8990612a83565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab590612a83565b8015610b025780601f10610ad757610100808354040283529160200191610b02565b820191906000526020600020905b815481529060010190602001808311610ae557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b71576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610bca611715565b610bd460006118d8565b565b610bde611715565b601054600a6000828254610bf29190612b29565b925050819055507f8d8664e4328cbcd16b52db004cff5622d17995140cefada9f4578b857f9b204e610c2261199e565b600a54601054604051610c3793929190612b7f565b60405180910390a1610c4b336010546119a6565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610c7f611715565b80600c8190555050565b610c91611715565b80600f8190555050565b606060038054610caa90612a83565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd690612a83565b8015610d235780601f10610cf857610100808354040283529160200191610d23565b820191906000526020600020905b815481529060010190602001808311610d0657829003601f168201915b5050505050905090565b600e5481565b6000600c54905060006001600f54610d4b9190612b29565b83610d546108de565b610d5e9190612b29565b108015610db75750600e5483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610db49190612b29565b11155b80610df45750610dc5610c4d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b90508015610e0157600091505b8183610e0d9190612bb6565b341015610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4690612c5c565b60405180910390fd5b6001601054600b54610e619190612c7c565b610e6b9190612b29565b83610e746108de565b610e7e9190612b29565b10610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590612cfc565b60405180910390fd5b6001600d54610ecd9190612b29565b8310610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590612d68565b60405180910390fd5b8015610f6b5782601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f639190612b29565b925050819055505b610f7533846119a6565b505050565b81610f84816111ad565b610f8e83836119c4565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fd157610fd0336111ad565b5b610fdd85858585611acf565b5050505050565b6060610fef8261114e565b61102e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102590612dfa565b60405180910390fd5b601161103983611b42565b60405160200161104a929190612f36565b6040516020818303038152906040529050919050565b600d5481565b600073f849de01b080adc3a814fabe1e2087475cf2e35473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110b857600090506110c5565b6110c28383611c10565b90505b92915050565b6110d3611715565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113990612fd7565b60405180910390fd5b61114b816118d8565b50565b6000816111596113ee565b11158015611168575060005482105b80156111a6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156112a7576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611224929190612ff7565b602060405180830381865afa158015611241573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112659190613035565b6112a657806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161129d9190612585565b60405180910390fd5b5b50565b60006112b582610a6a565b90508073ffffffffffffffffffffffffffffffffffffffff166112d6611ca4565b73ffffffffffffffffffffffffffffffffffffffff161461133957611302816112fd611ca4565b611066565b611338576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006113fe8261180c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611465576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061147184611cac565b915091506114878187611482611ca4565b611cd3565b6114d35761149c86611497611ca4565b611066565b6114d2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611539576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115468686866001611d17565b801561155157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061161f856115fb888887611d1d565b7c020000000000000000000000000000000000000000000000000000000017611d45565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036116a557600060018501905060006004600083815260200190815260200160002054036116a35760005481146116a2578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461170d8686866001611d70565b505050505050565b61171d61199e565b73ffffffffffffffffffffffffffffffffffffffff1661173b610c4d565b73ffffffffffffffffffffffffffffffffffffffff1614611791576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611788906130ae565b60405180910390fd5b565b6002600954036117d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cf9061311a565b60405180910390fd5b6002600981905550565b6001600981905550565b61180783838360405180602001604052806000815250610f93565b505050565b6000808290508061181b6113ee565b116118a1576000548110156118a05760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361189e575b6000810361189457600460008360019003935083815260200190815260200160002054905061186a565b80925050506118d3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6119c0828260405180602001604052806000815250611d76565b5050565b80600760006119d1611ca4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a7e611ca4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ac391906123e1565b60405180910390a35050565b611ada8484846108fb565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b3c57611b0584848484611e13565b611b3b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060006001611b5184611f63565b01905060008167ffffffffffffffff811115611b7057611b6f6126e3565b5b6040519080825280601f01601f191660200182016040528015611ba25781602001600182028036833780820191505090505b509050600082602001820190505b600115611c05578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611bf957611bf861313a565b5b04945060008503611bb0575b819350505050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d348686846120b6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611d8083836120bf565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e0e57600080549050600083820390505b611dc06000868380600101945086611e13565b611df6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611dad578160005414611e0b57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e39611ca4565b8786866040518563ffffffff1660e01b8152600401611e5b94939291906131be565b6020604051808303816000875af1925050508015611e9757506040513d601f19601f82011682018060405250810190611e94919061321f565b60015b611f10573d8060008114611ec7576040519150601f19603f3d011682016040523d82523d6000602084013e611ecc565b606091505b506000815103611f08576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611fc1577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611fb757611fb661313a565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611ffe576d04ee2d6d415b85acef81000000008381611ff457611ff361313a565b5b0492506020810190505b662386f26fc10000831061202d57662386f26fc1000083816120235761202261313a565b5b0492506010810190505b6305f5e1008310612056576305f5e100838161204c5761204b61313a565b5b0492506008810190505b612710831061207b5761271083816120715761207061313a565b5b0492506004810190505b6064831061209e57606483816120945761209361313a565b5b0492506002810190505b600a83106120ad576001810190505b80915050919050565b60009392505050565b600080549050600082036120ff576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61210c6000848385611d17565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612183836121746000866000611d1d565b61217d8561227a565b17611d45565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461222457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506121e9565b506000820361225f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122756000848385611d70565b505050565b60006001821460e11b9050919050565b82805461229690612a83565b90600052602060002090601f0160209004810192826122b857600085556122ff565b82601f106122d157805160ff19168380011785556122ff565b828001600101855582156122ff579182015b828111156122fe5782518255916020019190600101906122e3565b5b50905061230c9190612310565b5090565b5b80821115612329576000816000905550600101612311565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61237681612341565b811461238157600080fd5b50565b6000813590506123938161236d565b92915050565b6000602082840312156123af576123ae612337565b5b60006123bd84828501612384565b91505092915050565b60008115159050919050565b6123db816123c6565b82525050565b60006020820190506123f660008301846123d2565b92915050565b6000819050919050565b61240f816123fc565b82525050565b600060208201905061242a6000830184612406565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561246a57808201518184015260208101905061244f565b83811115612479576000848401525b50505050565b6000601f19601f8301169050919050565b600061249b82612430565b6124a5818561243b565b93506124b581856020860161244c565b6124be8161247f565b840191505092915050565b600060208201905081810360008301526124e38184612490565b905092915050565b6124f4816123fc565b81146124ff57600080fd5b50565b600081359050612511816124eb565b92915050565b60006020828403121561252d5761252c612337565b5b600061253b84828501612502565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061256f82612544565b9050919050565b61257f81612564565b82525050565b600060208201905061259a6000830184612576565b92915050565b6125a981612564565b81146125b457600080fd5b50565b6000813590506125c6816125a0565b92915050565b600080604083850312156125e3576125e2612337565b5b60006125f1858286016125b7565b925050602061260285828601612502565b9150509250929050565b60008060006060848603121561262557612624612337565b5b6000612633868287016125b7565b9350506020612644868287016125b7565b925050604061265586828701612502565b9150509250925092565b6000819050919050565b600061268461267f61267a84612544565b61265f565b612544565b9050919050565b600061269682612669565b9050919050565b60006126a88261268b565b9050919050565b6126b88161269d565b82525050565b60006020820190506126d360008301846126af565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61271b8261247f565b810181811067ffffffffffffffff8211171561273a576127396126e3565b5b80604052505050565b600061274d61232d565b90506127598282612712565b919050565b600067ffffffffffffffff821115612779576127786126e3565b5b6127828261247f565b9050602081019050919050565b82818337600083830152505050565b60006127b16127ac8461275e565b612743565b9050828152602081018484840111156127cd576127cc6126de565b5b6127d884828561278f565b509392505050565b600082601f8301126127f5576127f46126d9565b5b813561280584826020860161279e565b91505092915050565b60006020828403121561282457612823612337565b5b600082013567ffffffffffffffff8111156128425761284161233c565b5b61284e848285016127e0565b91505092915050565b60006020828403121561286d5761286c612337565b5b600061287b848285016125b7565b91505092915050565b61288d816123c6565b811461289857600080fd5b50565b6000813590506128aa81612884565b92915050565b600080604083850312156128c7576128c6612337565b5b60006128d5858286016125b7565b92505060206128e68582860161289b565b9150509250929050565b600067ffffffffffffffff82111561290b5761290a6126e3565b5b6129148261247f565b9050602081019050919050565b600061293461292f846128f0565b612743565b9050828152602081018484840111156129505761294f6126de565b5b61295b84828561278f565b509392505050565b600082601f830112612978576129776126d9565b5b8135612988848260208601612921565b91505092915050565b600080600080608085870312156129ab576129aa612337565b5b60006129b9878288016125b7565b94505060206129ca878288016125b7565b93505060406129db87828801612502565b925050606085013567ffffffffffffffff8111156129fc576129fb61233c565b5b612a0887828801612963565b91505092959194509250565b60008060408385031215612a2b57612a2a612337565b5b6000612a39858286016125b7565b9250506020612a4a858286016125b7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a9b57607f821691505b602082108103612aae57612aad612a54565b5b50919050565b600081905092915050565b50565b6000612acf600083612ab4565b9150612ada82612abf565b600082019050919050565b6000612af082612ac2565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b34826123fc565b9150612b3f836123fc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b7457612b73612afa565b5b828201905092915050565b6000606082019050612b946000830186612576565b612ba16020830185612406565b612bae6040830184612406565b949350505050565b6000612bc1826123fc565b9150612bcc836123fc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c0557612c04612afa565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612c46601d8361243b565b9150612c5182612c10565b602082019050919050565b60006020820190508181036000830152612c7581612c39565b9050919050565b6000612c87826123fc565b9150612c92836123fc565b925082821015612ca557612ca4612afa565b5b828203905092915050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6000612ce660098361243b565b9150612cf182612cb0565b602082019050919050565b60006020820190508181036000830152612d1581612cd9565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612d5260138361243b565b9150612d5d82612d1c565b602082019050919050565b60006020820190508181036000830152612d8181612d45565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612de4602f8361243b565b9150612def82612d88565b604082019050919050565b60006020820190508181036000830152612e1381612dd7565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612e4781612a83565b612e518186612e1a565b94506001821660008114612e6c5760018114612e7d57612eb0565b60ff19831686528186019350612eb0565b612e8685612e25565b60005b83811015612ea857815481890152600182019150602081019050612e89565b838801955050505b50505092915050565b6000612ec482612430565b612ece8185612e1a565b9350612ede81856020860161244c565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612f20600583612e1a565b9150612f2b82612eea565b600582019050919050565b6000612f428285612e3a565b9150612f4e8284612eb9565b9150612f5982612f13565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fc160268361243b565b9150612fcc82612f65565b604082019050919050565b60006020820190508181036000830152612ff081612fb4565b9050919050565b600060408201905061300c6000830185612576565b6130196020830184612576565b9392505050565b60008151905061302f81612884565b92915050565b60006020828403121561304b5761304a612337565b5b600061305984828501613020565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061309860208361243b565b91506130a382613062565b602082019050919050565b600060208201905081810360008301526130c78161308b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613104601f8361243b565b915061310f826130ce565b602082019050919050565b60006020820190508181036000830152613133816130f7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061319082613169565b61319a8185613174565b93506131aa81856020860161244c565b6131b38161247f565b840191505092915050565b60006080820190506131d36000830187612576565b6131e06020830186612576565b6131ed6040830185612406565b81810360608301526131ff8184613185565b905095945050505050565b6000815190506132198161236d565b92915050565b60006020828403121561323557613234612337565b5b60006132438482850161320a565b9150509291505056fea26469706673582212208176084f26992c5bb0fb438287e2b177442b8350f3caa8443fdcc33cd8c2b26264736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636c0360eb116101025780639cb57d2011610095578063c87b56dd11610064578063c87b56dd14610648578063de314a5914610685578063e985e9c5146106b0578063f2fde38b146106ed576101e3565b80639cb57d20146105bc578063a0712d68146105e7578063a22cb46514610603578063b88d4fde1461062c576101e3565b80638da5cb5b116100d15780638da5cb5b1461051457806391b7f5ed1461053f57806392910eec1461056857806395d89b4114610591576101e3565b80636c0360eb1461047e57806370a08231146104a9578063715018a6146104e65780637c69e207146104fd576101e3565b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103d157806355f804b3146103ed5780635e1c4b60146104165780636352211e14610441576101e3565b806323b872dd146103555780633ccfd60b1461037157806341c66d0a1461037b57806341f43434146103a6576101e3565b8063095ea7b3116101b6578063095ea7b3146102b85780630afb04db146102d457806318160ddd146102ff57806322f4596f1461032a576101e3565b806301ffc9a7146101e85780630387da421461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612399565b610716565b60405161021c91906123e1565b60405180910390f35b34801561023157600080fd5b5061023a6107a8565b6040516102479190612415565b60405180910390f35b34801561025c57600080fd5b506102656107ae565b60405161027291906124c9565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190612517565b610840565b6040516102af9190612585565b60405180910390f35b6102d260048036038101906102cd91906125cc565b6108bf565b005b3480156102e057600080fd5b506102e96108d8565b6040516102f69190612415565b60405180910390f35b34801561030b57600080fd5b506103146108de565b6040516103219190612415565b60405180910390f35b34801561033657600080fd5b5061033f6108f5565b60405161034c9190612415565b60405180910390f35b61036f600480360381019061036a919061260c565b6108fb565b005b61037961094a565b005b34801561038757600080fd5b506103906109db565b60405161039d9190612415565b60405180910390f35b3480156103b257600080fd5b506103bb6109e1565b6040516103c891906126be565b60405180910390f35b6103eb60048036038101906103e6919061260c565b6109f3565b005b3480156103f957600080fd5b50610414600480360381019061040f919061280e565b610a42565b005b34801561042257600080fd5b5061042b610a64565b6040516104389190612415565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190612517565b610a6a565b6040516104759190612585565b60405180910390f35b34801561048a57600080fd5b50610493610a7c565b6040516104a091906124c9565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb9190612857565b610b0a565b6040516104dd9190612415565b60405180910390f35b3480156104f257600080fd5b506104fb610bc2565b005b34801561050957600080fd5b50610512610bd6565b005b34801561052057600080fd5b50610529610c4d565b6040516105369190612585565b60405180910390f35b34801561054b57600080fd5b5061056660048036038101906105619190612517565b610c77565b005b34801561057457600080fd5b5061058f600480360381019061058a9190612517565b610c89565b005b34801561059d57600080fd5b506105a6610c9b565b6040516105b391906124c9565b60405180910390f35b3480156105c857600080fd5b506105d1610d2d565b6040516105de9190612415565b60405180910390f35b61060160048036038101906105fc9190612517565b610d33565b005b34801561060f57600080fd5b5061062a600480360381019061062591906128b0565b610f7a565b005b61064660048036038101906106419190612991565b610f93565b005b34801561065457600080fd5b5061066f600480360381019061066a9190612517565b610fe4565b60405161067c91906124c9565b60405180910390f35b34801561069157600080fd5b5061069a611060565b6040516106a79190612415565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190612a14565b611066565b6040516106e491906123e1565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f9190612857565b6110cb565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b6060600280546107bd90612a83565b80601f01602080910402602001604051908101604052809291908181526020018280546107e990612a83565b80156108365780601f1061080b57610100808354040283529160200191610836565b820191906000526020600020905b81548152906001019060200180831161081957829003601f168201915b5050505050905090565b600061084b8261114e565b610881576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816108c9816111ad565b6108d383836112aa565b505050565b600a5481565b60006108e86113ee565b6001546000540303905090565b600b5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461093957610938336111ad565b5b6109448484846113f3565b50505050565b610952611715565b61095a611793565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161098090612ae5565b60006040518083038185875af1925050503d80600081146109bd576040519150601f19603f3d011682016040523d82523d6000602084013e6109c2565b606091505b50509050806109d057600080fd5b506109d96117e2565b565b60105481565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a3157610a30336111ad565b5b610a3c8484846117ec565b50505050565b610a4a611715565b8060119080519060200190610a6092919061228a565b5050565b600f5481565b6000610a758261180c565b9050919050565b60118054610a8990612a83565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab590612a83565b8015610b025780601f10610ad757610100808354040283529160200191610b02565b820191906000526020600020905b815481529060010190602001808311610ae557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b71576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610bca611715565b610bd460006118d8565b565b610bde611715565b601054600a6000828254610bf29190612b29565b925050819055507f8d8664e4328cbcd16b52db004cff5622d17995140cefada9f4578b857f9b204e610c2261199e565b600a54601054604051610c3793929190612b7f565b60405180910390a1610c4b336010546119a6565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610c7f611715565b80600c8190555050565b610c91611715565b80600f8190555050565b606060038054610caa90612a83565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd690612a83565b8015610d235780601f10610cf857610100808354040283529160200191610d23565b820191906000526020600020905b815481529060010190602001808311610d0657829003601f168201915b5050505050905090565b600e5481565b6000600c54905060006001600f54610d4b9190612b29565b83610d546108de565b610d5e9190612b29565b108015610db75750600e5483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610db49190612b29565b11155b80610df45750610dc5610c4d565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b90508015610e0157600091505b8183610e0d9190612bb6565b341015610e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4690612c5c565b60405180910390fd5b6001601054600b54610e619190612c7c565b610e6b9190612b29565b83610e746108de565b610e7e9190612b29565b10610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590612cfc565b60405180910390fd5b6001600d54610ecd9190612b29565b8310610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0590612d68565b60405180910390fd5b8015610f6b5782601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f639190612b29565b925050819055505b610f7533846119a6565b505050565b81610f84816111ad565b610f8e83836119c4565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fd157610fd0336111ad565b5b610fdd85858585611acf565b5050505050565b6060610fef8261114e565b61102e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102590612dfa565b60405180910390fd5b601161103983611b42565b60405160200161104a929190612f36565b6040516020818303038152906040529050919050565b600d5481565b600073f849de01b080adc3a814fabe1e2087475cf2e35473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110b857600090506110c5565b6110c28383611c10565b90505b92915050565b6110d3611715565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611142576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113990612fd7565b60405180910390fd5b61114b816118d8565b50565b6000816111596113ee565b11158015611168575060005482105b80156111a6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156112a7576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611224929190612ff7565b602060405180830381865afa158015611241573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112659190613035565b6112a657806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161129d9190612585565b60405180910390fd5b5b50565b60006112b582610a6a565b90508073ffffffffffffffffffffffffffffffffffffffff166112d6611ca4565b73ffffffffffffffffffffffffffffffffffffffff161461133957611302816112fd611ca4565b611066565b611338576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006113fe8261180c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611465576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061147184611cac565b915091506114878187611482611ca4565b611cd3565b6114d35761149c86611497611ca4565b611066565b6114d2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611539576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115468686866001611d17565b801561155157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061161f856115fb888887611d1d565b7c020000000000000000000000000000000000000000000000000000000017611d45565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036116a557600060018501905060006004600083815260200190815260200160002054036116a35760005481146116a2578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461170d8686866001611d70565b505050505050565b61171d61199e565b73ffffffffffffffffffffffffffffffffffffffff1661173b610c4d565b73ffffffffffffffffffffffffffffffffffffffff1614611791576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611788906130ae565b60405180910390fd5b565b6002600954036117d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cf9061311a565b60405180910390fd5b6002600981905550565b6001600981905550565b61180783838360405180602001604052806000815250610f93565b505050565b6000808290508061181b6113ee565b116118a1576000548110156118a05760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361189e575b6000810361189457600460008360019003935083815260200190815260200160002054905061186a565b80925050506118d3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6119c0828260405180602001604052806000815250611d76565b5050565b80600760006119d1611ca4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a7e611ca4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ac391906123e1565b60405180910390a35050565b611ada8484846108fb565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b3c57611b0584848484611e13565b611b3b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060006001611b5184611f63565b01905060008167ffffffffffffffff811115611b7057611b6f6126e3565b5b6040519080825280601f01601f191660200182016040528015611ba25781602001600182028036833780820191505090505b509050600082602001820190505b600115611c05578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611bf957611bf861313a565b5b04945060008503611bb0575b819350505050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d348686846120b6565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611d8083836120bf565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e0e57600080549050600083820390505b611dc06000868380600101945086611e13565b611df6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611dad578160005414611e0b57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e39611ca4565b8786866040518563ffffffff1660e01b8152600401611e5b94939291906131be565b6020604051808303816000875af1925050508015611e9757506040513d601f19601f82011682018060405250810190611e94919061321f565b60015b611f10573d8060008114611ec7576040519150601f19603f3d011682016040523d82523d6000602084013e611ecc565b606091505b506000815103611f08576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611fc1577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611fb757611fb661313a565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611ffe576d04ee2d6d415b85acef81000000008381611ff457611ff361313a565b5b0492506020810190505b662386f26fc10000831061202d57662386f26fc1000083816120235761202261313a565b5b0492506010810190505b6305f5e1008310612056576305f5e100838161204c5761204b61313a565b5b0492506008810190505b612710831061207b5761271083816120715761207061313a565b5b0492506004810190505b6064831061209e57606483816120945761209361313a565b5b0492506002810190505b600a83106120ad576001810190505b80915050919050565b60009392505050565b600080549050600082036120ff576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61210c6000848385611d17565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612183836121746000866000611d1d565b61217d8561227a565b17611d45565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461222457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506121e9565b506000820361225f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122756000848385611d70565b505050565b60006001821460e11b9050919050565b82805461229690612a83565b90600052602060002090601f0160209004810192826122b857600085556122ff565b82601f106122d157805160ff19168380011785556122ff565b828001600101855582156122ff579182015b828111156122fe5782518255916020019190600101906122e3565b5b50905061230c9190612310565b5090565b5b80821115612329576000816000905550600101612311565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61237681612341565b811461238157600080fd5b50565b6000813590506123938161236d565b92915050565b6000602082840312156123af576123ae612337565b5b60006123bd84828501612384565b91505092915050565b60008115159050919050565b6123db816123c6565b82525050565b60006020820190506123f660008301846123d2565b92915050565b6000819050919050565b61240f816123fc565b82525050565b600060208201905061242a6000830184612406565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561246a57808201518184015260208101905061244f565b83811115612479576000848401525b50505050565b6000601f19601f8301169050919050565b600061249b82612430565b6124a5818561243b565b93506124b581856020860161244c565b6124be8161247f565b840191505092915050565b600060208201905081810360008301526124e38184612490565b905092915050565b6124f4816123fc565b81146124ff57600080fd5b50565b600081359050612511816124eb565b92915050565b60006020828403121561252d5761252c612337565b5b600061253b84828501612502565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061256f82612544565b9050919050565b61257f81612564565b82525050565b600060208201905061259a6000830184612576565b92915050565b6125a981612564565b81146125b457600080fd5b50565b6000813590506125c6816125a0565b92915050565b600080604083850312156125e3576125e2612337565b5b60006125f1858286016125b7565b925050602061260285828601612502565b9150509250929050565b60008060006060848603121561262557612624612337565b5b6000612633868287016125b7565b9350506020612644868287016125b7565b925050604061265586828701612502565b9150509250925092565b6000819050919050565b600061268461267f61267a84612544565b61265f565b612544565b9050919050565b600061269682612669565b9050919050565b60006126a88261268b565b9050919050565b6126b88161269d565b82525050565b60006020820190506126d360008301846126af565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61271b8261247f565b810181811067ffffffffffffffff8211171561273a576127396126e3565b5b80604052505050565b600061274d61232d565b90506127598282612712565b919050565b600067ffffffffffffffff821115612779576127786126e3565b5b6127828261247f565b9050602081019050919050565b82818337600083830152505050565b60006127b16127ac8461275e565b612743565b9050828152602081018484840111156127cd576127cc6126de565b5b6127d884828561278f565b509392505050565b600082601f8301126127f5576127f46126d9565b5b813561280584826020860161279e565b91505092915050565b60006020828403121561282457612823612337565b5b600082013567ffffffffffffffff8111156128425761284161233c565b5b61284e848285016127e0565b91505092915050565b60006020828403121561286d5761286c612337565b5b600061287b848285016125b7565b91505092915050565b61288d816123c6565b811461289857600080fd5b50565b6000813590506128aa81612884565b92915050565b600080604083850312156128c7576128c6612337565b5b60006128d5858286016125b7565b92505060206128e68582860161289b565b9150509250929050565b600067ffffffffffffffff82111561290b5761290a6126e3565b5b6129148261247f565b9050602081019050919050565b600061293461292f846128f0565b612743565b9050828152602081018484840111156129505761294f6126de565b5b61295b84828561278f565b509392505050565b600082601f830112612978576129776126d9565b5b8135612988848260208601612921565b91505092915050565b600080600080608085870312156129ab576129aa612337565b5b60006129b9878288016125b7565b94505060206129ca878288016125b7565b93505060406129db87828801612502565b925050606085013567ffffffffffffffff8111156129fc576129fb61233c565b5b612a0887828801612963565b91505092959194509250565b60008060408385031215612a2b57612a2a612337565b5b6000612a39858286016125b7565b9250506020612a4a858286016125b7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a9b57607f821691505b602082108103612aae57612aad612a54565b5b50919050565b600081905092915050565b50565b6000612acf600083612ab4565b9150612ada82612abf565b600082019050919050565b6000612af082612ac2565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b34826123fc565b9150612b3f836123fc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b7457612b73612afa565b5b828201905092915050565b6000606082019050612b946000830186612576565b612ba16020830185612406565b612bae6040830184612406565b949350505050565b6000612bc1826123fc565b9150612bcc836123fc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c0557612c04612afa565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612c46601d8361243b565b9150612c5182612c10565b602082019050919050565b60006020820190508181036000830152612c7581612c39565b9050919050565b6000612c87826123fc565b9150612c92836123fc565b925082821015612ca557612ca4612afa565b5b828203905092915050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6000612ce660098361243b565b9150612cf182612cb0565b602082019050919050565b60006020820190508181036000830152612d1581612cd9565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612d5260138361243b565b9150612d5d82612d1c565b602082019050919050565b60006020820190508181036000830152612d8181612d45565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612de4602f8361243b565b9150612def82612d88565b604082019050919050565b60006020820190508181036000830152612e1381612dd7565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612e4781612a83565b612e518186612e1a565b94506001821660008114612e6c5760018114612e7d57612eb0565b60ff19831686528186019350612eb0565b612e8685612e25565b60005b83811015612ea857815481890152600182019150602081019050612e89565b838801955050505b50505092915050565b6000612ec482612430565b612ece8185612e1a565b9350612ede81856020860161244c565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612f20600583612e1a565b9150612f2b82612eea565b600582019050919050565b6000612f428285612e3a565b9150612f4e8284612eb9565b9150612f5982612f13565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fc160268361243b565b9150612fcc82612f65565b604082019050919050565b60006020820190508181036000830152612ff081612fb4565b9050919050565b600060408201905061300c6000830185612576565b6130196020830184612576565b9392505050565b60008151905061302f81612884565b92915050565b60006020828403121561304b5761304a612337565b5b600061305984828501613020565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061309860208361243b565b91506130a382613062565b602082019050919050565b600060208201905081810360008301526130c78161308b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613104601f8361243b565b915061310f826130ce565b602082019050919050565b60006020820190508181036000830152613133816130f7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b600061319082613169565b61319a8185613174565b93506131aa81856020860161244c565b6131b38161247f565b840191505092915050565b60006080820190506131d36000830187612576565b6131e06020830186612576565b6131ed6040830185612406565b81810360608301526131ff8184613185565b905095945050505050565b6000815190506132198161236d565b92915050565b60006020828403121561323557613234612337565b5b60006132438482850161320a565b9150509291505056fea26469706673582212208176084f26992c5bb0fb438287e2b177442b8350f3caa8443fdcc33cd8c2b26264736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

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

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

78736:3941:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45638:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78978:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46540:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53031:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81465:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78910:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42291:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78940:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81639:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82469:205;;;:::i;:::-;;79159:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2998:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81818:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81185:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79112:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47933:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79229:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43475:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26417:103;;;;;;;;;;;;;:::i;:::-;;80165:182;;;;;;;;;;;;;:::i;:::-;;25769:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82363:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82250:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46716;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79067:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79447:708;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81281:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82005:236;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80826:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79024:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80472:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26675:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45638:639;45723:4;46062:10;46047:25;;:11;:25;;;;:102;;;;46139:10;46124:25;;:11;:25;;;;46047:102;:179;;;;46216:10;46201:25;;:11;:25;;;;46047:179;46027:199;;45638:639;;;:::o;78978:39::-;;;;:::o;46540:100::-;46594:13;46627:5;46620:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46540:100;:::o;53031:218::-;53107:7;53132:16;53140:7;53132;:16::i;:::-;53127:64;;53157:34;;;;;;;;;;;;;;53127:64;53211:15;:24;53227:7;53211:24;;;;;;;;;;;:30;;;;;;;;;;;;53204:37;;53031:218;;;:::o;81465:166::-;81570:8;4519:30;4540:8;4519:20;:30::i;:::-;81591:32:::1;81605:8;81615:7;81591:13;:32::i;:::-;81465:166:::0;;;:::o;78910:23::-;;;;:::o;42291:323::-;42352:7;42580:15;:13;:15::i;:::-;42565:12;;42549:13;;:28;:46;42542:53;;42291:323;:::o;78940:31::-;;;;:::o;81639:171::-;81748:4;4347:10;4339:18;;:4;:18;;;4335:83;;4374:32;4395:10;4374:20;:32::i;:::-;4335:83;81765:37:::1;81784:4;81790:2;81794:7;81765:18;:37::i;:::-;81639:171:::0;;;;:::o;82469:205::-;25655:13;:11;:13::i;:::-;23040:21:::1;:19;:21::i;:::-;82539:12:::2;82565:10;82557:24;;82603:21;82557:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82538:101;;;82658:7;82650:16;;;::::0;::::2;;82527:147;23084:20:::1;:18;:20::i;:::-;82469:205::o:0;79159:28::-;;;;:::o;2998:143::-;3098:42;2998:143;:::o;81818:179::-;81931:4;4347:10;4339:18;;:4;:18;;;4335:83;;4374:32;4395:10;4374:20;:32::i;:::-;4335:83;81948:41:::1;81971:4;81977:2;81981:7;81948:22;:41::i;:::-;81818:179:::0;;;;:::o;81185:88::-;25655:13;:11;:13::i;:::-;81262:3:::1;81252:7;:13;;;;;;;;;;;;:::i;:::-;;81185:88:::0;:::o;79112:39::-;;;;:::o;47933:152::-;48005:7;48048:27;48067:7;48048:18;:27::i;:::-;48025:52;;47933:152;;;:::o;79229:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43475:233::-;43547:7;43588:1;43571:19;;:5;:19;;;43567:60;;43599:28;;;;;;;;;;;;;;43567:60;37634:13;43645:18;:25;43664:5;43645:25;;;;;;;;;;;;;;;;:55;43638:62;;43475:233;;;:::o;26417:103::-;25655:13;:11;:13::i;:::-;26482:30:::1;26509:1;26482:18;:30::i;:::-;26417:103::o:0;80165:182::-;25655:13;:11;:13::i;:::-;80224:9:::1;;80212:8;;:21;;;;;;;:::i;:::-;;;;;;;;80249:47;80262:12;:10;:12::i;:::-;80276:8;;80286:9;;80249:47;;;;;;;;:::i;:::-;;;;;;;;80307:32;80317:10;80329:9;;80307;:32::i;:::-;80165:182::o:0;25769:87::-;25815:7;25842:6;;;;;;;;;;;25835:13;;25769:87;:::o;82363:97::-;25655:13;:11;:13::i;:::-;82443:9:::1;82430:10;:22;;;;82363:97:::0;:::o;82250:104::-;25655:13;:11;:13::i;:::-;82340:6:::1;82319:18;:27;;;;82250:104:::0;:::o;46716:::-;46772:13;46805:7;46798:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46716:104;:::o;79067:38::-;;;;:::o;79447:708::-;79504:12;79519:10;;79504:25;;79540:11;79601:1;79580:18;;:22;;;;:::i;:::-;79572:5;79556:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:46;79555:127;;;;;79662:19;;79653:5;79621:17;:29;79639:10;79621:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:60;;79555:127;79554:169;;;;79715:7;:5;:7::i;:::-;79701:21;;:10;:21;;;79554:169;79540:183;;79741:6;79737:47;;;79771:1;79764:8;;79737:47;79826:4;79818:5;:12;;;;:::i;:::-;79805:9;:25;;79797:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;79932:1;79920:9;;79907:10;;:22;;;;:::i;:::-;:26;;;;:::i;:::-;79899:5;79883:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:50;79875:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;79990:1;79974:13;;:17;;;;:::i;:::-;79966:5;:25;79958:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;80033:6;80029:77;;;80089:5;80056:17;:29;80074:10;80056:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;80029:77;80119:28;80129:10;80141:5;80119:9;:28::i;:::-;79493:662;;79447:708;:::o;81281:176::-;81385:8;4519:30;4540:8;4519:20;:30::i;:::-;81406:43:::1;81430:8;81440;81406:23;:43::i;:::-;81281:176:::0;;;:::o;82005:236::-;82164:4;4347:10;4339:18;;:4;:18;;;4335:83;;4374:32;4395:10;4374:20;:32::i;:::-;4335:83;82186:47:::1;82209:4;82215:2;82219:7;82228:4;82186:22;:47::i;:::-;82005:236:::0;;;;;:::o;80826:350::-;80944:13;80997:16;81005:7;80997;:16::i;:::-;80975:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;81130:7;81139:18;:7;:16;:18::i;:::-;81113:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;81099:69;;80826:350;;;:::o;79024:33::-;;;;:::o;80472:339::-;80597:4;80658:42;80646:54;;:8;:54;;;80642:99;;80724:5;80717:12;;;;80642:99;80764:39;80787:5;80794:8;80764:22;:39::i;:::-;80757:46;;80472:339;;;;;:::o;26675:201::-;25655:13;:11;:13::i;:::-;26784:1:::1;26764:22;;:8;:22;;::::0;26756:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;26840:28;26859:8;26840:18;:28::i;:::-;26675:201:::0;:::o;54402:282::-;54467:4;54523:7;54504:15;:13;:15::i;:::-;:26;;:66;;;;;54557:13;;54547:7;:23;54504:66;:153;;;;;54656:1;38410:8;54608:17;:26;54626:7;54608:26;;;;;;;;;;;;:44;:49;54504:153;54484:173;;54402:282;;;:::o;4577:419::-;4816:1;3098:42;4768:45;;;:49;4764:225;;;3098:42;4839;;;4890:4;4897:8;4839:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4834:144;;4953:8;4934:28;;;;;;;;;;;:::i;:::-;;;;;;;;4834:144;4764:225;4577:419;:::o;52464:408::-;52553:13;52569:16;52577:7;52569;:16::i;:::-;52553:32;;52625:5;52602:28;;:19;:17;:19::i;:::-;:28;;;52598:175;;52650:44;52667:5;52674:19;:17;:19::i;:::-;52650:16;:44::i;:::-;52645:128;;52722:35;;;;;;;;;;;;;;52645:128;52598:175;52818:2;52785:15;:24;52801:7;52785:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;52856:7;52852:2;52836:28;;52845:5;52836:28;;;;;;;;;;;;52542:330;52464:408;;:::o;41807:92::-;41863:7;41807:92;:::o;56670:2825::-;56812:27;56842;56861:7;56842:18;:27::i;:::-;56812:57;;56927:4;56886:45;;56902:19;56886:45;;;56882:86;;56940:28;;;;;;;;;;;;;;56882:86;56982:27;57011:23;57038:35;57065:7;57038:26;:35::i;:::-;56981:92;;;;57173:68;57198:15;57215:4;57221:19;:17;:19::i;:::-;57173:24;:68::i;:::-;57168:180;;57261:43;57278:4;57284:19;:17;:19::i;:::-;57261:16;:43::i;:::-;57256:92;;57313:35;;;;;;;;;;;;;;57256:92;57168:180;57379:1;57365:16;;:2;:16;;;57361:52;;57390:23;;;;;;;;;;;;;;57361:52;57426:43;57448:4;57454:2;57458:7;57467:1;57426:21;:43::i;:::-;57562:15;57559:160;;;57702:1;57681:19;57674:30;57559:160;58099:18;:24;58118:4;58099:24;;;;;;;;;;;;;;;;58097:26;;;;;;;;;;;;58168:18;:22;58187:2;58168:22;;;;;;;;;;;;;;;;58166:24;;;;;;;;;;;58490:146;58527:2;58576:45;58591:4;58597:2;58601:19;58576:14;:45::i;:::-;38690:8;58548:73;58490:18;:146::i;:::-;58461:17;:26;58479:7;58461:26;;;;;;;;;;;:175;;;;58807:1;38690:8;58756:19;:47;:52;58752:627;;58829:19;58861:1;58851:7;:11;58829:33;;59018:1;58984:17;:30;59002:11;58984:30;;;;;;;;;;;;:35;58980:384;;59122:13;;59107:11;:28;59103:242;;59302:19;59269:17;:30;59287:11;59269:30;;;;;;;;;;;:52;;;;59103:242;58980:384;58810:569;58752:627;59426:7;59422:2;59407:27;;59416:4;59407:27;;;;;;;;;;;;59445:42;59466:4;59472:2;59476:7;59485:1;59445:20;:42::i;:::-;56801:2694;;;56670:2825;;;:::o;25934:132::-;26009:12;:10;:12::i;:::-;25998:23;;:7;:5;:7::i;:::-;:23;;;25990:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25934:132::o;23120:293::-;22522:1;23254:7;;:19;23246:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22522:1;23387:7;:18;;;;23120:293::o;23421:213::-;22478:1;23604:7;:22;;;;23421:213::o;59591:193::-;59737:39;59754:4;59760:2;59764:7;59737:39;;;;;;;;;;;;:16;:39::i;:::-;59591:193;;;:::o;49088:1275::-;49155:7;49175:12;49190:7;49175:22;;49258:4;49239:15;:13;:15::i;:::-;:23;49235:1061;;49292:13;;49285:4;:20;49281:1015;;;49330:14;49347:17;:23;49365:4;49347:23;;;;;;;;;;;;49330:40;;49464:1;38410:8;49436:6;:24;:29;49432:845;;50101:113;50118:1;50108:6;:11;50101:113;;50161:17;:25;50179:6;;;;;;;50161:25;;;;;;;;;;;;50152:34;;50101:113;;;50247:6;50240:13;;;;;;49432:845;49307:989;49281:1015;49235:1061;50324:31;;;;;;;;;;;;;;49088:1275;;;;:::o;27036:191::-;27110:16;27129:6;;;;;;;;;;;27110:25;;27155:8;27146:6;;:17;;;;;;;;;;;;;;;;;;27210:8;27179:40;;27200:8;27179:40;;;;;;;;;;;;27099:128;27036:191;:::o;24320:98::-;24373:7;24400:10;24393:17;;24320:98;:::o;70542:112::-;70619:27;70629:2;70633:8;70619:27;;;;;;;;;;;;:9;:27::i;:::-;70542:112;;:::o;53589:234::-;53736:8;53684:18;:39;53703:19;:17;:19::i;:::-;53684:39;;;;;;;;;;;;;;;:49;53724:8;53684:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;53796:8;53760:55;;53775:19;:17;:19::i;:::-;53760:55;;;53806:8;53760:55;;;;;;:::i;:::-;;;;;;;;53589:234;;:::o;60382:407::-;60557:31;60570:4;60576:2;60580:7;60557:12;:31::i;:::-;60621:1;60603:2;:14;;;:19;60599:183;;60642:56;60673:4;60679:2;60683:7;60692:5;60642:30;:56::i;:::-;60637:145;;60726:40;;;;;;;;;;;;;;60637:145;60599:183;60382:407;;;;:::o;18801:716::-;18857:13;18908:14;18945:1;18925:17;18936:5;18925:10;:17::i;:::-;:21;18908:38;;18961:20;18995:6;18984:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18961:41;;19017:11;19146:6;19142:2;19138:15;19130:6;19126:28;19119:35;;19183:288;19190:4;19183:288;;;19215:5;;;;;;;;19357:8;19352:2;19345:5;19341:14;19336:30;19331:3;19323:44;19413:2;19404:11;;;;;;:::i;:::-;;;;;19447:1;19438:5;:10;19183:288;19434:21;19183:288;19492:6;19485:13;;;;;18801:716;;;:::o;53980:164::-;54077:4;54101:18;:25;54120:5;54101:25;;;;;;;;;;;;;;;:35;54127:8;54101:35;;;;;;;;;;;;;;;;;;;;;;;;;54094:42;;53980:164;;;;:::o;76710:105::-;76770:7;76797:10;76790:17;;76710:105;:::o;55565:485::-;55667:27;55696:23;55737:38;55778:15;:24;55794:7;55778:24;;;;;;;;;;;55737:65;;55955:18;55932:41;;56012:19;56006:26;55987:45;;55917:126;55565:485;;;:::o;54793:659::-;54942:11;55107:16;55100:5;55096:28;55087:37;;55267:16;55256:9;55252:32;55239:45;;55417:15;55406:9;55403:30;55395:5;55384:9;55381:20;55378:56;55368:66;;54793:659;;;;;:::o;61451:159::-;;;;;:::o;76019:311::-;76154:7;76174:16;38814:3;76200:19;:41;;76174:68;;38814:3;76268:31;76279:4;76285:2;76289:9;76268:10;:31::i;:::-;76260:40;;:62;;76253:69;;;76019:311;;;;;:::o;50911:450::-;50991:14;51159:16;51152:5;51148:28;51139:37;;51336:5;51322:11;51297:23;51293:41;51290:52;51283:5;51280:63;51270:73;;50911:450;;;;:::o;62275:158::-;;;;;:::o;69769:689::-;69900:19;69906:2;69910:8;69900:5;:19::i;:::-;69979:1;69961:2;:14;;;:19;69957:483;;70001:11;70015:13;;70001:27;;70047:13;70069:8;70063:3;:14;70047:30;;70096:233;70127:62;70166:1;70170:2;70174:7;;;;;;70183:5;70127:30;:62::i;:::-;70122:167;;70225:40;;;;;;;;;;;;;;70122:167;70324:3;70316:5;:11;70096:233;;70411:3;70394:13;;:20;70390:34;;70416:8;;;70390:34;69982:458;;69957:483;69769:689;;;:::o;62873:716::-;63036:4;63082:2;63057:45;;;63103:19;:17;:19::i;:::-;63124:4;63130:7;63139:5;63057:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;63053:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63357:1;63340:6;:13;:18;63336:235;;63386:40;;;;;;;;;;;;;;63336:235;63529:6;63523:13;63514:6;63510:2;63506:15;63499:38;63053:529;63226:54;;;63216:64;;;:6;:64;;;;63209:71;;;62873:716;;;;;;:::o;15667:922::-;15720:7;15740:14;15757:1;15740:18;;15807:6;15798:5;:15;15794:102;;15843:6;15834:15;;;;;;:::i;:::-;;;;;15878:2;15868:12;;;;15794:102;15923:6;15914:5;:15;15910:102;;15959:6;15950:15;;;;;;:::i;:::-;;;;;15994:2;15984:12;;;;15910:102;16039:6;16030:5;:15;16026:102;;16075:6;16066:15;;;;;;:::i;:::-;;;;;16110:2;16100:12;;;;16026:102;16155:5;16146;:14;16142:99;;16190:5;16181:14;;;;;;:::i;:::-;;;;;16224:1;16214:11;;;;16142:99;16268:5;16259;:14;16255:99;;16303:5;16294:14;;;;;;:::i;:::-;;;;;16337:1;16327:11;;;;16255:99;16381:5;16372;:14;16368:99;;16416:5;16407:14;;;;;;:::i;:::-;;;;;16450:1;16440:11;;;;16368:99;16494:5;16485;:14;16481:66;;16530:1;16520:11;;;;16481:66;16575:6;16568:13;;;15667:922;;;:::o;75720:147::-;75857:6;75720:147;;;;;:::o;64051:2966::-;64124:20;64147:13;;64124:36;;64187:1;64175:8;:13;64171:44;;64197:18;;;;;;;;;;;;;;64171:44;64228:61;64258:1;64262:2;64266:12;64280:8;64228:21;:61::i;:::-;64772:1;37772:2;64742:1;:26;;64741:32;64729:8;:45;64703:18;:22;64722:2;64703:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;65051:139;65088:2;65142:33;65165:1;65169:2;65173:1;65142:14;:33::i;:::-;65109:30;65130:8;65109:20;:30::i;:::-;:66;65051:18;:139::i;:::-;65017:17;:31;65035:12;65017:31;;;;;;;;;;;:173;;;;65207:16;65238:11;65267:8;65252:12;:23;65238:37;;65788:16;65784:2;65780:25;65768:37;;66160:12;66120:8;66079:1;66017:25;65958:1;65897;65870:335;66531:1;66517:12;66513:20;66471:346;66572:3;66563:7;66560:16;66471:346;;66790:7;66780:8;66777:1;66750:25;66747:1;66744;66739:59;66625:1;66616:7;66612:15;66601:26;;66471:346;;;66475:77;66862:1;66850:8;:13;66846:45;;66872:19;;;;;;;;;;;;;;66846:45;66924:3;66908:13;:19;;;;64477:2462;;66949:60;66978:1;66982:2;66986:12;67000:8;66949:20;:60::i;:::-;64113:2904;64051:2966;;:::o;51463:324::-;51533:14;51766:1;51756:8;51753:15;51727:24;51723:46;51713:56;;51463:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::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:307::-;2301:1;2311:113;2325:6;2322:1;2319:13;2311:113;;;2410:1;2405:3;2401:11;2395:18;2391:1;2386:3;2382:11;2375:39;2347:2;2344:1;2340:10;2335:15;;2311:113;;;2442:6;2439:1;2436:13;2433:101;;;2522:1;2513:6;2508:3;2504:16;2497:27;2433:101;2282:258;2233:307;;;:::o;2546:102::-;2587:6;2638:2;2634:7;2629:2;2622:5;2618:14;2614:28;2604:38;;2546:102;;;:::o;2654:364::-;2742:3;2770:39;2803:5;2770:39;:::i;:::-;2825:71;2889:6;2884:3;2825:71;:::i;:::-;2818:78;;2905:52;2950:6;2945:3;2938:4;2931:5;2927:16;2905:52;:::i;:::-;2982:29;3004:6;2982:29;:::i;:::-;2977:3;2973:39;2966:46;;2746:272;2654:364;;;;:::o;3024:313::-;3137:4;3175:2;3164:9;3160:18;3152:26;;3224:9;3218:4;3214:20;3210:1;3199:9;3195:17;3188:47;3252:78;3325:4;3316:6;3252:78;:::i;:::-;3244:86;;3024:313;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:60::-;5943:3;5964:5;5957:12;;5915:60;;;:::o;5981:142::-;6031:9;6064:53;6082:34;6091:24;6109:5;6091:24;:::i;:::-;6082:34;:::i;:::-;6064:53;:::i;:::-;6051:66;;5981:142;;;:::o;6129:126::-;6179:9;6212:37;6243:5;6212:37;:::i;:::-;6199:50;;6129:126;;;:::o;6261:157::-;6342:9;6375:37;6406:5;6375:37;:::i;:::-;6362:50;;6261:157;;;:::o;6424:193::-;6542:68;6604:5;6542:68;:::i;:::-;6537:3;6530:81;6424:193;;:::o;6623:284::-;6747:4;6785:2;6774:9;6770:18;6762:26;;6798:102;6897:1;6886:9;6882:17;6873:6;6798:102;:::i;:::-;6623:284;;;;:::o;6913:117::-;7022:1;7019;7012:12;7036:117;7145:1;7142;7135:12;7159:180;7207:77;7204:1;7197:88;7304:4;7301:1;7294:15;7328:4;7325:1;7318:15;7345:281;7428:27;7450:4;7428:27;:::i;:::-;7420:6;7416:40;7558:6;7546:10;7543:22;7522:18;7510:10;7507:34;7504:62;7501:88;;;7569:18;;:::i;:::-;7501:88;7609:10;7605:2;7598:22;7388:238;7345:281;;:::o;7632:129::-;7666:6;7693:20;;:::i;:::-;7683:30;;7722:33;7750:4;7742:6;7722:33;:::i;:::-;7632:129;;;:::o;7767:308::-;7829:4;7919:18;7911:6;7908:30;7905:56;;;7941:18;;:::i;:::-;7905:56;7979:29;8001:6;7979:29;:::i;:::-;7971:37;;8063:4;8057;8053:15;8045:23;;7767:308;;;:::o;8081:154::-;8165:6;8160:3;8155;8142:30;8227:1;8218:6;8213:3;8209:16;8202:27;8081:154;;;:::o;8241:412::-;8319:5;8344:66;8360:49;8402:6;8360:49;:::i;:::-;8344:66;:::i;:::-;8335:75;;8433:6;8426:5;8419:21;8471:4;8464:5;8460:16;8509:3;8500:6;8495:3;8491:16;8488:25;8485:112;;;8516:79;;:::i;:::-;8485:112;8606:41;8640:6;8635:3;8630;8606:41;:::i;:::-;8325:328;8241:412;;;;;:::o;8673:340::-;8729:5;8778:3;8771:4;8763:6;8759:17;8755:27;8745:122;;8786:79;;:::i;:::-;8745:122;8903:6;8890:20;8928:79;9003:3;8995:6;8988:4;8980:6;8976:17;8928:79;:::i;:::-;8919:88;;8735:278;8673:340;;;;:::o;9019:509::-;9088:6;9137:2;9125:9;9116:7;9112:23;9108:32;9105:119;;;9143:79;;:::i;:::-;9105:119;9291:1;9280:9;9276:17;9263:31;9321:18;9313:6;9310:30;9307:117;;;9343:79;;:::i;:::-;9307:117;9448:63;9503:7;9494:6;9483:9;9479:22;9448:63;:::i;:::-;9438:73;;9234:287;9019:509;;;;:::o;9534:329::-;9593:6;9642:2;9630:9;9621:7;9617:23;9613:32;9610:119;;;9648:79;;:::i;:::-;9610:119;9768:1;9793:53;9838:7;9829:6;9818:9;9814:22;9793:53;:::i;:::-;9783:63;;9739:117;9534:329;;;;:::o;9869:116::-;9939:21;9954:5;9939:21;:::i;:::-;9932:5;9929:32;9919:60;;9975:1;9972;9965:12;9919:60;9869:116;:::o;9991:133::-;10034:5;10072:6;10059:20;10050:29;;10088:30;10112:5;10088:30;:::i;:::-;9991:133;;;;:::o;10130:468::-;10195:6;10203;10252:2;10240:9;10231:7;10227:23;10223:32;10220:119;;;10258:79;;:::i;:::-;10220:119;10378:1;10403:53;10448:7;10439:6;10428:9;10424:22;10403:53;:::i;:::-;10393:63;;10349:117;10505:2;10531:50;10573:7;10564:6;10553:9;10549:22;10531:50;:::i;:::-;10521:60;;10476:115;10130:468;;;;;:::o;10604:307::-;10665:4;10755:18;10747:6;10744:30;10741:56;;;10777:18;;:::i;:::-;10741:56;10815:29;10837:6;10815:29;:::i;:::-;10807:37;;10899:4;10893;10889:15;10881:23;;10604:307;;;:::o;10917:410::-;10994:5;11019:65;11035:48;11076:6;11035:48;:::i;:::-;11019:65;:::i;:::-;11010:74;;11107:6;11100:5;11093:21;11145:4;11138:5;11134:16;11183:3;11174:6;11169:3;11165:16;11162:25;11159:112;;;11190:79;;:::i;:::-;11159:112;11280:41;11314:6;11309:3;11304;11280:41;:::i;:::-;11000:327;10917:410;;;;;:::o;11346:338::-;11401:5;11450:3;11443:4;11435:6;11431:17;11427:27;11417:122;;11458:79;;:::i;:::-;11417:122;11575:6;11562:20;11600:78;11674:3;11666:6;11659:4;11651:6;11647:17;11600:78;:::i;:::-;11591:87;;11407:277;11346:338;;;;:::o;11690:943::-;11785:6;11793;11801;11809;11858:3;11846:9;11837:7;11833:23;11829:33;11826:120;;;11865:79;;:::i;:::-;11826:120;11985:1;12010:53;12055:7;12046:6;12035:9;12031:22;12010:53;:::i;:::-;12000:63;;11956:117;12112:2;12138:53;12183:7;12174:6;12163:9;12159:22;12138:53;:::i;:::-;12128:63;;12083:118;12240:2;12266:53;12311:7;12302:6;12291:9;12287:22;12266:53;:::i;:::-;12256:63;;12211:118;12396:2;12385:9;12381:18;12368:32;12427:18;12419:6;12416:30;12413:117;;;12449:79;;:::i;:::-;12413:117;12554:62;12608:7;12599:6;12588:9;12584:22;12554:62;:::i;:::-;12544:72;;12339:287;11690:943;;;;;;;:::o;12639:474::-;12707:6;12715;12764:2;12752:9;12743:7;12739:23;12735:32;12732:119;;;12770:79;;:::i;:::-;12732:119;12890:1;12915:53;12960:7;12951:6;12940:9;12936:22;12915:53;:::i;:::-;12905:63;;12861:117;13017:2;13043:53;13088:7;13079:6;13068:9;13064:22;13043:53;:::i;:::-;13033:63;;12988:118;12639:474;;;;;:::o;13119:180::-;13167:77;13164:1;13157:88;13264:4;13261:1;13254:15;13288:4;13285:1;13278:15;13305:320;13349:6;13386:1;13380:4;13376:12;13366:22;;13433:1;13427:4;13423:12;13454:18;13444:81;;13510:4;13502:6;13498:17;13488:27;;13444:81;13572:2;13564:6;13561:14;13541:18;13538:38;13535:84;;13591:18;;:::i;:::-;13535:84;13356:269;13305:320;;;:::o;13631:147::-;13732:11;13769:3;13754:18;;13631:147;;;;:::o;13784:114::-;;:::o;13904:398::-;14063:3;14084:83;14165:1;14160:3;14084:83;:::i;:::-;14077:90;;14176:93;14265:3;14176:93;:::i;:::-;14294:1;14289:3;14285:11;14278:18;;13904:398;;;:::o;14308:379::-;14492:3;14514:147;14657:3;14514:147;:::i;:::-;14507:154;;14678:3;14671:10;;14308:379;;;:::o;14693:180::-;14741:77;14738:1;14731:88;14838:4;14835:1;14828:15;14862:4;14859:1;14852:15;14879:305;14919:3;14938:20;14956:1;14938:20;:::i;:::-;14933:25;;14972:20;14990:1;14972:20;:::i;:::-;14967:25;;15126:1;15058:66;15054:74;15051:1;15048:81;15045:107;;;15132:18;;:::i;:::-;15045:107;15176:1;15173;15169:9;15162:16;;14879:305;;;;:::o;15190:442::-;15339:4;15377:2;15366:9;15362:18;15354:26;;15390:71;15458:1;15447:9;15443:17;15434:6;15390:71;:::i;:::-;15471:72;15539:2;15528:9;15524:18;15515:6;15471:72;:::i;:::-;15553;15621:2;15610:9;15606:18;15597:6;15553:72;:::i;:::-;15190:442;;;;;;:::o;15638:348::-;15678:7;15701:20;15719:1;15701:20;:::i;:::-;15696:25;;15735:20;15753:1;15735:20;:::i;:::-;15730:25;;15923:1;15855:66;15851:74;15848:1;15845:81;15840:1;15833:9;15826:17;15822:105;15819:131;;;15930:18;;:::i;:::-;15819:131;15978:1;15975;15971:9;15960:20;;15638:348;;;;:::o;15992:179::-;16132:31;16128:1;16120:6;16116:14;16109:55;15992:179;:::o;16177:366::-;16319:3;16340:67;16404:2;16399:3;16340:67;:::i;:::-;16333:74;;16416:93;16505:3;16416:93;:::i;:::-;16534:2;16529:3;16525:12;16518:19;;16177:366;;;:::o;16549:419::-;16715:4;16753:2;16742:9;16738:18;16730:26;;16802:9;16796:4;16792:20;16788:1;16777:9;16773:17;16766:47;16830:131;16956:4;16830:131;:::i;:::-;16822:139;;16549:419;;;:::o;16974:191::-;17014:4;17034:20;17052:1;17034:20;:::i;:::-;17029:25;;17068:20;17086:1;17068:20;:::i;:::-;17063:25;;17107:1;17104;17101:8;17098:34;;;17112:18;;:::i;:::-;17098:34;17157:1;17154;17150:9;17142:17;;16974:191;;;;:::o;17171:159::-;17311:11;17307:1;17299:6;17295:14;17288:35;17171:159;:::o;17336:365::-;17478:3;17499:66;17563:1;17558:3;17499:66;:::i;:::-;17492:73;;17574:93;17663:3;17574:93;:::i;:::-;17692:2;17687:3;17683:12;17676:19;;17336:365;;;:::o;17707:419::-;17873:4;17911:2;17900:9;17896:18;17888:26;;17960:9;17954:4;17950:20;17946:1;17935:9;17931:17;17924:47;17988:131;18114:4;17988:131;:::i;:::-;17980:139;;17707:419;;;:::o;18132:169::-;18272:21;18268:1;18260:6;18256:14;18249:45;18132:169;:::o;18307:366::-;18449:3;18470:67;18534:2;18529:3;18470:67;:::i;:::-;18463:74;;18546:93;18635:3;18546:93;:::i;:::-;18664:2;18659:3;18655:12;18648:19;;18307:366;;;:::o;18679:419::-;18845:4;18883:2;18872:9;18868:18;18860:26;;18932:9;18926:4;18922:20;18918:1;18907:9;18903:17;18896:47;18960:131;19086:4;18960:131;:::i;:::-;18952:139;;18679:419;;;:::o;19104:234::-;19244:34;19240:1;19232:6;19228:14;19221:58;19313:17;19308:2;19300:6;19296:15;19289:42;19104:234;:::o;19344:366::-;19486:3;19507:67;19571:2;19566:3;19507:67;:::i;:::-;19500:74;;19583:93;19672:3;19583:93;:::i;:::-;19701:2;19696:3;19692:12;19685:19;;19344:366;;;:::o;19716:419::-;19882:4;19920:2;19909:9;19905:18;19897:26;;19969:9;19963:4;19959:20;19955:1;19944:9;19940:17;19933:47;19997:131;20123:4;19997:131;:::i;:::-;19989:139;;19716:419;;;:::o;20141:148::-;20243:11;20280:3;20265:18;;20141:148;;;;:::o;20295:141::-;20344:4;20367:3;20359:11;;20390:3;20387:1;20380:14;20424:4;20421:1;20411:18;20403:26;;20295:141;;;:::o;20466:845::-;20569:3;20606:5;20600:12;20635:36;20661:9;20635:36;:::i;:::-;20687:89;20769:6;20764:3;20687:89;:::i;:::-;20680:96;;20807:1;20796:9;20792:17;20823:1;20818:137;;;;20969:1;20964:341;;;;20785:520;;20818:137;20902:4;20898:9;20887;20883:25;20878:3;20871:38;20938:6;20933:3;20929:16;20922:23;;20818:137;;20964:341;21031:38;21063:5;21031:38;:::i;:::-;21091:1;21105:154;21119:6;21116:1;21113:13;21105:154;;;21193:7;21187:14;21183:1;21178:3;21174:11;21167:35;21243:1;21234:7;21230:15;21219:26;;21141:4;21138:1;21134:12;21129:17;;21105:154;;;21288:6;21283:3;21279:16;21272:23;;20971:334;;20785:520;;20573:738;;20466:845;;;;:::o;21317:377::-;21423:3;21451:39;21484:5;21451:39;:::i;:::-;21506:89;21588:6;21583:3;21506:89;:::i;:::-;21499:96;;21604:52;21649:6;21644:3;21637:4;21630:5;21626:16;21604:52;:::i;:::-;21681:6;21676:3;21672:16;21665:23;;21427:267;21317:377;;;;:::o;21700:155::-;21840:7;21836:1;21828:6;21824:14;21817:31;21700:155;:::o;21861:400::-;22021:3;22042:84;22124:1;22119:3;22042:84;:::i;:::-;22035:91;;22135:93;22224:3;22135:93;:::i;:::-;22253:1;22248:3;22244:11;22237:18;;21861:400;;;:::o;22267:695::-;22545:3;22567:92;22655:3;22646:6;22567:92;:::i;:::-;22560:99;;22676:95;22767:3;22758:6;22676:95;:::i;:::-;22669:102;;22788:148;22932:3;22788:148;:::i;:::-;22781:155;;22953:3;22946:10;;22267:695;;;;;:::o;22968:225::-;23108:34;23104:1;23096:6;23092:14;23085:58;23177:8;23172:2;23164:6;23160:15;23153:33;22968:225;:::o;23199:366::-;23341:3;23362:67;23426:2;23421:3;23362:67;:::i;:::-;23355:74;;23438:93;23527:3;23438:93;:::i;:::-;23556:2;23551:3;23547:12;23540:19;;23199:366;;;:::o;23571:419::-;23737:4;23775:2;23764:9;23760:18;23752:26;;23824:9;23818:4;23814:20;23810:1;23799:9;23795:17;23788:47;23852:131;23978:4;23852:131;:::i;:::-;23844:139;;23571:419;;;:::o;23996:332::-;24117:4;24155:2;24144:9;24140:18;24132:26;;24168:71;24236:1;24225:9;24221:17;24212:6;24168:71;:::i;:::-;24249:72;24317:2;24306:9;24302:18;24293:6;24249:72;:::i;:::-;23996:332;;;;;:::o;24334:137::-;24388:5;24419:6;24413:13;24404:22;;24435:30;24459:5;24435:30;:::i;:::-;24334:137;;;;:::o;24477:345::-;24544:6;24593:2;24581:9;24572:7;24568:23;24564:32;24561:119;;;24599:79;;:::i;:::-;24561:119;24719:1;24744:61;24797:7;24788:6;24777:9;24773:22;24744:61;:::i;:::-;24734:71;;24690:125;24477:345;;;;:::o;24828:182::-;24968:34;24964:1;24956:6;24952:14;24945:58;24828:182;:::o;25016:366::-;25158:3;25179:67;25243:2;25238:3;25179:67;:::i;:::-;25172:74;;25255:93;25344:3;25255:93;:::i;:::-;25373:2;25368:3;25364:12;25357:19;;25016:366;;;:::o;25388:419::-;25554:4;25592:2;25581:9;25577:18;25569:26;;25641:9;25635:4;25631:20;25627:1;25616:9;25612:17;25605:47;25669:131;25795:4;25669:131;:::i;:::-;25661:139;;25388:419;;;:::o;25813:181::-;25953:33;25949:1;25941:6;25937:14;25930:57;25813:181;:::o;26000:366::-;26142:3;26163:67;26227:2;26222:3;26163:67;:::i;:::-;26156:74;;26239:93;26328:3;26239:93;:::i;:::-;26357:2;26352:3;26348:12;26341:19;;26000:366;;;:::o;26372:419::-;26538:4;26576:2;26565:9;26561:18;26553:26;;26625:9;26619:4;26615:20;26611:1;26600:9;26596:17;26589:47;26653:131;26779:4;26653:131;:::i;:::-;26645:139;;26372:419;;;:::o;26797:180::-;26845:77;26842:1;26835:88;26942:4;26939:1;26932:15;26966:4;26963:1;26956:15;26983:98;27034:6;27068:5;27062:12;27052:22;;26983:98;;;:::o;27087:168::-;27170:11;27204:6;27199:3;27192:19;27244:4;27239:3;27235:14;27220:29;;27087:168;;;;:::o;27261:360::-;27347:3;27375:38;27407:5;27375:38;:::i;:::-;27429:70;27492:6;27487:3;27429:70;:::i;:::-;27422:77;;27508:52;27553:6;27548:3;27541:4;27534:5;27530:16;27508:52;:::i;:::-;27585:29;27607:6;27585:29;:::i;:::-;27580:3;27576:39;27569:46;;27351:270;27261:360;;;;:::o;27627:640::-;27822:4;27860:3;27849:9;27845:19;27837:27;;27874:71;27942:1;27931:9;27927:17;27918:6;27874:71;:::i;:::-;27955:72;28023:2;28012:9;28008:18;27999:6;27955:72;:::i;:::-;28037;28105:2;28094:9;28090:18;28081:6;28037:72;:::i;:::-;28156:9;28150:4;28146:20;28141:2;28130:9;28126:18;28119:48;28184:76;28255:4;28246:6;28184:76;:::i;:::-;28176:84;;27627:640;;;;;;;:::o;28273:141::-;28329:5;28360:6;28354:13;28345:22;;28376:32;28402:5;28376:32;:::i;:::-;28273:141;;;;:::o;28420:349::-;28489:6;28538:2;28526:9;28517:7;28513:23;28509:32;28506:119;;;28544:79;;:::i;:::-;28506:119;28664:1;28689:63;28744:7;28735:6;28724:9;28720:22;28689:63;:::i;:::-;28679:73;;28635:127;28420:349;;;;:::o

Swarm Source

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