ETH Price: $3,500.60 (+3.84%)
Gas: 4 Gwei

Token

WorkHardAllMyLife (WHAML)
 

Overview

Max Total Supply

999 WHAML

Holders

669

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 WHAML
0x74aa2e6dced35279ed2512d45c11debf2d1e4adb
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:
WHAML

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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 WHAML is ERC721A, DefaultOperatorFilterer, Ownable, ReentrancyGuard { 
event DevMintEvent(address ownerAddress, uint256 startWith, uint256 amountMinted);
uint256 public devTotal;
    uint256 public _maxSupply = 999;
    uint256 public _mintPrice = 0.0043 ether;
    uint256 public _maxMintPerTx = 10;
 
    uint256 public _maxFreeMintPerAddr = 1;
    uint256 public _maxFreeMintSupply = 50;
     uint256 public devSupply = 0;
 
    using Strings for uint256;
    string public baseURI;
 
    mapping(address => uint256) private _mintedFreeAmount;
 
 
    constructor(string memory initBaseURI) ERC721A("WorkHardAllMyLife", "WHAML") {
        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"}]

60806040526103e7600b55660f46d3c488c000600c55600a600d556001600e556032600f5560006010553480156200003657600080fd5b5060405162003dd338038062003dd383398181016040528101906200005c9190620005b9565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601181526020017f576f726b48617264416c6c4d794c6966650000000000000000000000000000008152506040518060400160405280600581526020017f5748414d4c0000000000000000000000000000000000000000000000000000008152508160029081620000f0919062000855565b50806003908162000102919062000855565b50620001136200035360201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000310578015620001d6576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200019c92919062000981565b600060405180830381600087803b158015620001b757600080fd5b505af1158015620001cc573d6000803e3d6000fd5b505050506200030f565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000290576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200025692919062000981565b600060405180830381600087803b1580156200027157600080fd5b505af115801562000286573d6000803e3d6000fd5b505050506200030e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002d99190620009ae565b600060405180830381600087803b158015620002f457600080fd5b505af115801562000309573d6000803e3d6000fd5b505050505b5b5b505062000332620003266200035860201b60201c565b6200036060201b60201c565b600160098190555080601190816200034b919062000855565b5050620009cb565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200048f8262000444565b810181811067ffffffffffffffff82111715620004b157620004b062000455565b5b80604052505050565b6000620004c662000426565b9050620004d4828262000484565b919050565b600067ffffffffffffffff821115620004f757620004f662000455565b5b620005028262000444565b9050602081019050919050565b60005b838110156200052f57808201518184015260208101905062000512565b60008484015250505050565b6000620005526200054c84620004d9565b620004ba565b9050828152602081018484840111156200057157620005706200043f565b5b6200057e8482856200050f565b509392505050565b600082601f8301126200059e576200059d6200043a565b5b8151620005b08482602086016200053b565b91505092915050565b600060208284031215620005d257620005d162000430565b5b600082015167ffffffffffffffff811115620005f357620005f262000435565b5b620006018482850162000586565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200065d57607f821691505b60208210810362000673576200067262000615565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006dd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200069e565b620006e986836200069e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000736620007306200072a8462000701565b6200070b565b62000701565b9050919050565b6000819050919050565b620007528362000715565b6200076a62000761826200073d565b848454620006ab565b825550505050565b600090565b6200078162000772565b6200078e81848462000747565b505050565b5b81811015620007b657620007aa60008262000777565b60018101905062000794565b5050565b601f8211156200080557620007cf8162000679565b620007da846200068e565b81016020851015620007ea578190505b62000802620007f9856200068e565b83018262000793565b50505b505050565b600082821c905092915050565b60006200082a600019846008026200080a565b1980831691505092915050565b600062000845838362000817565b9150826002028217905092915050565b62000860826200060a565b67ffffffffffffffff8111156200087c576200087b62000455565b5b62000888825462000644565b62000895828285620007ba565b600060209050601f831160018114620008cd5760008415620008b8578287015190505b620008c4858262000837565b86555062000934565b601f198416620008dd8662000679565b60005b828110156200090757848901518255600182019150602085019450602081019050620008e0565b8683101562000927578489015162000923601f89168262000817565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000969826200093c565b9050919050565b6200097b816200095c565b82525050565b600060408201905062000998600083018562000970565b620009a7602083018462000970565b9392505050565b6000602082019050620009c5600083018462000970565b92915050565b6133f880620009db6000396000f3fe6080604052600436106101e35760003560e01c80636c0360eb116101025780639cb57d2011610095578063c87b56dd11610064578063c87b56dd14610648578063de314a5914610685578063e985e9c5146106b0578063f2fde38b146106ed576101e3565b80639cb57d20146105bc578063a0712d68146105e7578063a22cb46514610603578063b88d4fde1461062c576101e3565b80638da5cb5b116100d15780638da5cb5b1461051457806391b7f5ed1461053f57806392910eec1461056857806395d89b4114610591576101e3565b80636c0360eb1461047e57806370a08231146104a9578063715018a6146104e65780637c69e207146104fd576101e3565b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103d157806355f804b3146103ed5780635e1c4b60146104165780636352211e14610441576101e3565b806323b872dd146103555780633ccfd60b1461037157806341c66d0a1461037b57806341f43434146103a6576101e3565b8063095ea7b3116101b6578063095ea7b3146102b85780630afb04db146102d457806318160ddd146102ff57806322f4596f1461032a576101e3565b806301ffc9a7146101e85780630387da421461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906122ef565b610716565b60405161021c9190612337565b60405180910390f35b34801561023157600080fd5b5061023a6107a8565b604051610247919061236b565b60405180910390f35b34801561025c57600080fd5b506102656107ae565b6040516102729190612416565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190612464565b610840565b6040516102af91906124d2565b60405180910390f35b6102d260048036038101906102cd9190612519565b6108bf565b005b3480156102e057600080fd5b506102e96108d8565b6040516102f6919061236b565b60405180910390f35b34801561030b57600080fd5b506103146108de565b604051610321919061236b565b60405180910390f35b34801561033657600080fd5b5061033f6108f5565b60405161034c919061236b565b60405180910390f35b61036f600480360381019061036a9190612559565b6108fb565b005b61037961094a565b005b34801561038757600080fd5b506103906109db565b60405161039d919061236b565b60405180910390f35b3480156103b257600080fd5b506103bb6109e1565b6040516103c8919061260b565b60405180910390f35b6103eb60048036038101906103e69190612559565b6109f3565b005b3480156103f957600080fd5b50610414600480360381019061040f919061275b565b610a42565b005b34801561042257600080fd5b5061042b610a5d565b604051610438919061236b565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190612464565b610a63565b60405161047591906124d2565b60405180910390f35b34801561048a57600080fd5b50610493610a75565b6040516104a09190612416565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb91906127a4565b610b03565b6040516104dd919061236b565b60405180910390f35b3480156104f257600080fd5b506104fb610bbb565b005b34801561050957600080fd5b50610512610bcf565b005b34801561052057600080fd5b50610529610c46565b60405161053691906124d2565b60405180910390f35b34801561054b57600080fd5b5061056660048036038101906105619190612464565b610c70565b005b34801561057457600080fd5b5061058f600480360381019061058a9190612464565b610c82565b005b34801561059d57600080fd5b506105a6610c94565b6040516105b39190612416565b60405180910390f35b3480156105c857600080fd5b506105d1610d26565b6040516105de919061236b565b60405180910390f35b61060160048036038101906105fc9190612464565b610d2c565b005b34801561060f57600080fd5b5061062a600480360381019061062591906127fd565b610f73565b005b610646600480360381019061064191906128de565b610f8c565b005b34801561065457600080fd5b5061066f600480360381019061066a9190612464565b610fdd565b60405161067c9190612416565b60405180910390f35b34801561069157600080fd5b5061069a611059565b6040516106a7919061236b565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190612961565b61105f565b6040516106e49190612337565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f91906127a4565b6110c4565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b6060600280546107bd906129d0565b80601f01602080910402602001604051908101604052809291908181526020018280546107e9906129d0565b80156108365780601f1061080b57610100808354040283529160200191610836565b820191906000526020600020905b81548152906001019060200180831161081957829003601f168201915b5050505050905090565b600061084b82611147565b610881576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816108c9816111a6565b6108d383836112a3565b505050565b600a5481565b60006108e86113e7565b6001546000540303905090565b600b5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461093957610938336111a6565b5b6109448484846113ec565b50505050565b61095261170e565b61095a61178c565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161098090612a32565b60006040518083038185875af1925050503d80600081146109bd576040519150601f19603f3d011682016040523d82523d6000602084013e6109c2565b606091505b50509050806109d057600080fd5b506109d96117db565b565b60105481565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a3157610a30336111a6565b5b610a3c8484846117e5565b50505050565b610a4a61170e565b8060119081610a599190612be9565b5050565b600f5481565b6000610a6e82611805565b9050919050565b60118054610a82906129d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610aae906129d0565b8015610afb5780601f10610ad057610100808354040283529160200191610afb565b820191906000526020600020905b815481529060010190602001808311610ade57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b6a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610bc361170e565b610bcd60006118d1565b565b610bd761170e565b601054600a6000828254610beb9190612cea565b925050819055507f8d8664e4328cbcd16b52db004cff5622d17995140cefada9f4578b857f9b204e610c1b611997565b600a54601054604051610c3093929190612d1e565b60405180910390a1610c443360105461199f565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610c7861170e565b80600c8190555050565b610c8a61170e565b80600f8190555050565b606060038054610ca3906129d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610ccf906129d0565b8015610d1c5780601f10610cf157610100808354040283529160200191610d1c565b820191906000526020600020905b815481529060010190602001808311610cff57829003601f168201915b5050505050905090565b600e5481565b6000600c54905060006001600f54610d449190612cea565b83610d4d6108de565b610d579190612cea565b108015610db05750600e5483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dad9190612cea565b11155b80610ded5750610dbe610c46565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b90508015610dfa57600091505b8183610e069190612d55565b341015610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90612de3565b60405180910390fd5b6001601054600b54610e5a9190612e03565b610e649190612cea565b83610e6d6108de565b610e779190612cea565b10610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae90612e83565b60405180910390fd5b6001600d54610ec69190612cea565b8310610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe90612eef565b60405180910390fd5b8015610f645782601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f5c9190612cea565b925050819055505b610f6e338461199f565b505050565b81610f7d816111a6565b610f8783836119bd565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fca57610fc9336111a6565b5b610fd685858585611ac8565b5050505050565b6060610fe882611147565b611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90612f81565b60405180910390fd5b601161103283611b3b565b6040516020016110439291906130ac565b6040516020818303038152906040529050919050565b600d5481565b600073f849de01b080adc3a814fabe1e2087475cf2e35473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110b157600090506110be565b6110bb8383611c09565b90505b92915050565b6110cc61170e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361113b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111329061314d565b60405180910390fd5b611144816118d1565b50565b6000816111526113e7565b11158015611161575060005482105b801561119f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156112a0576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161121d92919061316d565b602060405180830381865afa15801561123a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125e91906131ab565b61129f57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161129691906124d2565b60405180910390fd5b5b50565b60006112ae82610a63565b90508073ffffffffffffffffffffffffffffffffffffffff166112cf611c9d565b73ffffffffffffffffffffffffffffffffffffffff1614611332576112fb816112f6611c9d565b61105f565b611331576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006113f782611805565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461145e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061146a84611ca5565b91509150611480818761147b611c9d565b611ccc565b6114cc5761149586611490611c9d565b61105f565b6114cb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611532576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61153f8686866001611d10565b801561154a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611618856115f4888887611d16565b7c020000000000000000000000000000000000000000000000000000000017611d3e565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361169e576000600185019050600060046000838152602001908152602001600020540361169c57600054811461169b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117068686866001611d69565b505050505050565b611716611997565b73ffffffffffffffffffffffffffffffffffffffff16611734610c46565b73ffffffffffffffffffffffffffffffffffffffff161461178a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178190613224565b60405180910390fd5b565b6002600954036117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c890613290565b60405180910390fd5b6002600981905550565b6001600981905550565b61180083838360405180602001604052806000815250610f8c565b505050565b600080829050806118146113e7565b1161189a576000548110156118995760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611897575b6000810361188d576004600083600190039350838152602001908152602001600020549050611863565b80925050506118cc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6119b9828260405180602001604052806000815250611d6f565b5050565b80600760006119ca611c9d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a77611c9d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611abc9190612337565b60405180910390a35050565b611ad38484846108fb565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b3557611afe84848484611e0c565b611b34576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060006001611b4a84611f5c565b01905060008167ffffffffffffffff811115611b6957611b68612630565b5b6040519080825280601f01601f191660200182016040528015611b9b5781602001600182028036833780820191505090505b509050600082602001820190505b600115611bfe578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611bf257611bf16132b0565b5b04945060008503611ba9575b819350505050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d2d8686846120af565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611d7983836120b8565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e0757600080549050600083820390505b611db96000868380600101945086611e0c565b611def576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611da6578160005414611e0457600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e32611c9d565b8786866040518563ffffffff1660e01b8152600401611e549493929190613334565b6020604051808303816000875af1925050508015611e9057506040513d601f19601f82011682018060405250810190611e8d9190613395565b60015b611f09573d8060008114611ec0576040519150601f19603f3d011682016040523d82523d6000602084013e611ec5565b606091505b506000815103611f01576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611fba577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611fb057611faf6132b0565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611ff7576d04ee2d6d415b85acef81000000008381611fed57611fec6132b0565b5b0492506020810190505b662386f26fc10000831061202657662386f26fc10000838161201c5761201b6132b0565b5b0492506010810190505b6305f5e100831061204f576305f5e1008381612045576120446132b0565b5b0492506008810190505b612710831061207457612710838161206a576120696132b0565b5b0492506004810190505b60648310612097576064838161208d5761208c6132b0565b5b0492506002810190505b600a83106120a6576001810190505b80915050919050565b60009392505050565b600080549050600082036120f8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121056000848385611d10565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061217c8361216d6000866000611d16565b61217685612273565b17611d3e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461221d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506121e2565b5060008203612258576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061226e6000848385611d69565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122cc81612297565b81146122d757600080fd5b50565b6000813590506122e9816122c3565b92915050565b6000602082840312156123055761230461228d565b5b6000612313848285016122da565b91505092915050565b60008115159050919050565b6123318161231c565b82525050565b600060208201905061234c6000830184612328565b92915050565b6000819050919050565b61236581612352565b82525050565b6000602082019050612380600083018461235c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123c05780820151818401526020810190506123a5565b60008484015250505050565b6000601f19601f8301169050919050565b60006123e882612386565b6123f28185612391565b93506124028185602086016123a2565b61240b816123cc565b840191505092915050565b6000602082019050818103600083015261243081846123dd565b905092915050565b61244181612352565b811461244c57600080fd5b50565b60008135905061245e81612438565b92915050565b60006020828403121561247a5761247961228d565b5b60006124888482850161244f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124bc82612491565b9050919050565b6124cc816124b1565b82525050565b60006020820190506124e760008301846124c3565b92915050565b6124f6816124b1565b811461250157600080fd5b50565b600081359050612513816124ed565b92915050565b600080604083850312156125305761252f61228d565b5b600061253e85828601612504565b925050602061254f8582860161244f565b9150509250929050565b6000806000606084860312156125725761257161228d565b5b600061258086828701612504565b935050602061259186828701612504565b92505060406125a28682870161244f565b9150509250925092565b6000819050919050565b60006125d16125cc6125c784612491565b6125ac565b612491565b9050919050565b60006125e3826125b6565b9050919050565b60006125f5826125d8565b9050919050565b612605816125ea565b82525050565b600060208201905061262060008301846125fc565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612668826123cc565b810181811067ffffffffffffffff8211171561268757612686612630565b5b80604052505050565b600061269a612283565b90506126a6828261265f565b919050565b600067ffffffffffffffff8211156126c6576126c5612630565b5b6126cf826123cc565b9050602081019050919050565b82818337600083830152505050565b60006126fe6126f9846126ab565b612690565b90508281526020810184848401111561271a5761271961262b565b5b6127258482856126dc565b509392505050565b600082601f83011261274257612741612626565b5b81356127528482602086016126eb565b91505092915050565b6000602082840312156127715761277061228d565b5b600082013567ffffffffffffffff81111561278f5761278e612292565b5b61279b8482850161272d565b91505092915050565b6000602082840312156127ba576127b961228d565b5b60006127c884828501612504565b91505092915050565b6127da8161231c565b81146127e557600080fd5b50565b6000813590506127f7816127d1565b92915050565b600080604083850312156128145761281361228d565b5b600061282285828601612504565b9250506020612833858286016127e8565b9150509250929050565b600067ffffffffffffffff82111561285857612857612630565b5b612861826123cc565b9050602081019050919050565b600061288161287c8461283d565b612690565b90508281526020810184848401111561289d5761289c61262b565b5b6128a88482856126dc565b509392505050565b600082601f8301126128c5576128c4612626565b5b81356128d584826020860161286e565b91505092915050565b600080600080608085870312156128f8576128f761228d565b5b600061290687828801612504565b945050602061291787828801612504565b93505060406129288782880161244f565b925050606085013567ffffffffffffffff81111561294957612948612292565b5b612955878288016128b0565b91505092959194509250565b600080604083850312156129785761297761228d565b5b600061298685828601612504565b925050602061299785828601612504565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129e857607f821691505b6020821081036129fb576129fa6129a1565b5b50919050565b600081905092915050565b50565b6000612a1c600083612a01565b9150612a2782612a0c565b600082019050919050565b6000612a3d82612a0f565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612aa97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612a6c565b612ab38683612a6c565b95508019841693508086168417925050509392505050565b6000612ae6612ae1612adc84612352565b6125ac565b612352565b9050919050565b6000819050919050565b612b0083612acb565b612b14612b0c82612aed565b848454612a79565b825550505050565b600090565b612b29612b1c565b612b34818484612af7565b505050565b5b81811015612b5857612b4d600082612b21565b600181019050612b3a565b5050565b601f821115612b9d57612b6e81612a47565b612b7784612a5c565b81016020851015612b86578190505b612b9a612b9285612a5c565b830182612b39565b50505b505050565b600082821c905092915050565b6000612bc060001984600802612ba2565b1980831691505092915050565b6000612bd98383612baf565b9150826002028217905092915050565b612bf282612386565b67ffffffffffffffff811115612c0b57612c0a612630565b5b612c1582546129d0565b612c20828285612b5c565b600060209050601f831160018114612c535760008415612c41578287015190505b612c4b8582612bcd565b865550612cb3565b601f198416612c6186612a47565b60005b82811015612c8957848901518255600182019150602085019450602081019050612c64565b86831015612ca65784890151612ca2601f891682612baf565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612cf582612352565b9150612d0083612352565b9250828201905080821115612d1857612d17612cbb565b5b92915050565b6000606082019050612d3360008301866124c3565b612d40602083018561235c565b612d4d604083018461235c565b949350505050565b6000612d6082612352565b9150612d6b83612352565b9250828202612d7981612352565b91508282048414831517612d9057612d8f612cbb565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612dcd601d83612391565b9150612dd882612d97565b602082019050919050565b60006020820190508181036000830152612dfc81612dc0565b9050919050565b6000612e0e82612352565b9150612e1983612352565b9250828203905081811115612e3157612e30612cbb565b5b92915050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6000612e6d600983612391565b9150612e7882612e37565b602082019050919050565b60006020820190508181036000830152612e9c81612e60565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612ed9601383612391565b9150612ee482612ea3565b602082019050919050565b60006020820190508181036000830152612f0881612ecc565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612f6b602f83612391565b9150612f7682612f0f565b604082019050919050565b60006020820190508181036000830152612f9a81612f5e565b9050919050565b600081905092915050565b60008154612fb9816129d0565b612fc38186612fa1565b94506001821660008114612fde5760018114612ff357613026565b60ff1983168652811515820286019350613026565b612ffc85612a47565b60005b8381101561301e57815481890152600182019150602081019050612fff565b838801955050505b50505092915050565b600061303a82612386565b6130448185612fa1565b93506130548185602086016123a2565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613096600583612fa1565b91506130a182613060565b600582019050919050565b60006130b88285612fac565b91506130c4828461302f565b91506130cf82613089565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613137602683612391565b9150613142826130db565b604082019050919050565b600060208201905081810360008301526131668161312a565b9050919050565b600060408201905061318260008301856124c3565b61318f60208301846124c3565b9392505050565b6000815190506131a5816127d1565b92915050565b6000602082840312156131c1576131c061228d565b5b60006131cf84828501613196565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061320e602083612391565b9150613219826131d8565b602082019050919050565b6000602082019050818103600083015261323d81613201565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061327a601f83612391565b915061328582613244565b602082019050919050565b600060208201905081810360008301526132a98161326d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613306826132df565b61331081856132ea565b93506133208185602086016123a2565b613329816123cc565b840191505092915050565b600060808201905061334960008301876124c3565b61335660208301866124c3565b613363604083018561235c565b818103606083015261337581846132fb565b905095945050505050565b60008151905061338f816122c3565b92915050565b6000602082840312156133ab576133aa61228d565b5b60006133b984828501613380565b9150509291505056fea2646970667358221220210ba836c9461e67ad223247c493b6e4139caa51dbe36e0794a669bcf9e3bbd964736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d614e4e33484d714c4d56654a4a6b646441427a427155756a745a566b3569787565756f68333562726e6a46332f00000000000000000000

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636c0360eb116101025780639cb57d2011610095578063c87b56dd11610064578063c87b56dd14610648578063de314a5914610685578063e985e9c5146106b0578063f2fde38b146106ed576101e3565b80639cb57d20146105bc578063a0712d68146105e7578063a22cb46514610603578063b88d4fde1461062c576101e3565b80638da5cb5b116100d15780638da5cb5b1461051457806391b7f5ed1461053f57806392910eec1461056857806395d89b4114610591576101e3565b80636c0360eb1461047e57806370a08231146104a9578063715018a6146104e65780637c69e207146104fd576101e3565b806323b872dd1161017a57806342842e0e1161014957806342842e0e146103d157806355f804b3146103ed5780635e1c4b60146104165780636352211e14610441576101e3565b806323b872dd146103555780633ccfd60b1461037157806341c66d0a1461037b57806341f43434146103a6576101e3565b8063095ea7b3116101b6578063095ea7b3146102b85780630afb04db146102d457806318160ddd146102ff57806322f4596f1461032a576101e3565b806301ffc9a7146101e85780630387da421461022557806306fdde0314610250578063081812fc1461027b575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906122ef565b610716565b60405161021c9190612337565b60405180910390f35b34801561023157600080fd5b5061023a6107a8565b604051610247919061236b565b60405180910390f35b34801561025c57600080fd5b506102656107ae565b6040516102729190612416565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d9190612464565b610840565b6040516102af91906124d2565b60405180910390f35b6102d260048036038101906102cd9190612519565b6108bf565b005b3480156102e057600080fd5b506102e96108d8565b6040516102f6919061236b565b60405180910390f35b34801561030b57600080fd5b506103146108de565b604051610321919061236b565b60405180910390f35b34801561033657600080fd5b5061033f6108f5565b60405161034c919061236b565b60405180910390f35b61036f600480360381019061036a9190612559565b6108fb565b005b61037961094a565b005b34801561038757600080fd5b506103906109db565b60405161039d919061236b565b60405180910390f35b3480156103b257600080fd5b506103bb6109e1565b6040516103c8919061260b565b60405180910390f35b6103eb60048036038101906103e69190612559565b6109f3565b005b3480156103f957600080fd5b50610414600480360381019061040f919061275b565b610a42565b005b34801561042257600080fd5b5061042b610a5d565b604051610438919061236b565b60405180910390f35b34801561044d57600080fd5b5061046860048036038101906104639190612464565b610a63565b60405161047591906124d2565b60405180910390f35b34801561048a57600080fd5b50610493610a75565b6040516104a09190612416565b60405180910390f35b3480156104b557600080fd5b506104d060048036038101906104cb91906127a4565b610b03565b6040516104dd919061236b565b60405180910390f35b3480156104f257600080fd5b506104fb610bbb565b005b34801561050957600080fd5b50610512610bcf565b005b34801561052057600080fd5b50610529610c46565b60405161053691906124d2565b60405180910390f35b34801561054b57600080fd5b5061056660048036038101906105619190612464565b610c70565b005b34801561057457600080fd5b5061058f600480360381019061058a9190612464565b610c82565b005b34801561059d57600080fd5b506105a6610c94565b6040516105b39190612416565b60405180910390f35b3480156105c857600080fd5b506105d1610d26565b6040516105de919061236b565b60405180910390f35b61060160048036038101906105fc9190612464565b610d2c565b005b34801561060f57600080fd5b5061062a600480360381019061062591906127fd565b610f73565b005b610646600480360381019061064191906128de565b610f8c565b005b34801561065457600080fd5b5061066f600480360381019061066a9190612464565b610fdd565b60405161067c9190612416565b60405180910390f35b34801561069157600080fd5b5061069a611059565b6040516106a7919061236b565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190612961565b61105f565b6040516106e49190612337565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f91906127a4565b6110c4565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061077157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a15750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b6060600280546107bd906129d0565b80601f01602080910402602001604051908101604052809291908181526020018280546107e9906129d0565b80156108365780601f1061080b57610100808354040283529160200191610836565b820191906000526020600020905b81548152906001019060200180831161081957829003601f168201915b5050505050905090565b600061084b82611147565b610881576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816108c9816111a6565b6108d383836112a3565b505050565b600a5481565b60006108e86113e7565b6001546000540303905090565b600b5481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461093957610938336111a6565b5b6109448484846113ec565b50505050565b61095261170e565b61095a61178c565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161098090612a32565b60006040518083038185875af1925050503d80600081146109bd576040519150601f19603f3d011682016040523d82523d6000602084013e6109c2565b606091505b50509050806109d057600080fd5b506109d96117db565b565b60105481565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a3157610a30336111a6565b5b610a3c8484846117e5565b50505050565b610a4a61170e565b8060119081610a599190612be9565b5050565b600f5481565b6000610a6e82611805565b9050919050565b60118054610a82906129d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610aae906129d0565b8015610afb5780601f10610ad057610100808354040283529160200191610afb565b820191906000526020600020905b815481529060010190602001808311610ade57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b6a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610bc361170e565b610bcd60006118d1565b565b610bd761170e565b601054600a6000828254610beb9190612cea565b925050819055507f8d8664e4328cbcd16b52db004cff5622d17995140cefada9f4578b857f9b204e610c1b611997565b600a54601054604051610c3093929190612d1e565b60405180910390a1610c443360105461199f565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610c7861170e565b80600c8190555050565b610c8a61170e565b80600f8190555050565b606060038054610ca3906129d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610ccf906129d0565b8015610d1c5780601f10610cf157610100808354040283529160200191610d1c565b820191906000526020600020905b815481529060010190602001808311610cff57829003601f168201915b5050505050905090565b600e5481565b6000600c54905060006001600f54610d449190612cea565b83610d4d6108de565b610d579190612cea565b108015610db05750600e5483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610dad9190612cea565b11155b80610ded5750610dbe610c46565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b90508015610dfa57600091505b8183610e069190612d55565b341015610e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3f90612de3565b60405180910390fd5b6001601054600b54610e5a9190612e03565b610e649190612cea565b83610e6d6108de565b610e779190612cea565b10610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae90612e83565b60405180910390fd5b6001600d54610ec69190612cea565b8310610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe90612eef565b60405180910390fd5b8015610f645782601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610f5c9190612cea565b925050819055505b610f6e338461199f565b505050565b81610f7d816111a6565b610f8783836119bd565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fca57610fc9336111a6565b5b610fd685858585611ac8565b5050505050565b6060610fe882611147565b611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90612f81565b60405180910390fd5b601161103283611b3b565b6040516020016110439291906130ac565b6040516020818303038152906040529050919050565b600d5481565b600073f849de01b080adc3a814fabe1e2087475cf2e35473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110b157600090506110be565b6110bb8383611c09565b90505b92915050565b6110cc61170e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361113b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111329061314d565b60405180910390fd5b611144816118d1565b50565b6000816111526113e7565b11158015611161575060005482105b801561119f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156112a0576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161121d92919061316d565b602060405180830381865afa15801561123a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125e91906131ab565b61129f57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161129691906124d2565b60405180910390fd5b5b50565b60006112ae82610a63565b90508073ffffffffffffffffffffffffffffffffffffffff166112cf611c9d565b73ffffffffffffffffffffffffffffffffffffffff1614611332576112fb816112f6611c9d565b61105f565b611331576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006113f782611805565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461145e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061146a84611ca5565b91509150611480818761147b611c9d565b611ccc565b6114cc5761149586611490611c9d565b61105f565b6114cb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611532576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61153f8686866001611d10565b801561154a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611618856115f4888887611d16565b7c020000000000000000000000000000000000000000000000000000000017611d3e565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361169e576000600185019050600060046000838152602001908152602001600020540361169c57600054811461169b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117068686866001611d69565b505050505050565b611716611997565b73ffffffffffffffffffffffffffffffffffffffff16611734610c46565b73ffffffffffffffffffffffffffffffffffffffff161461178a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178190613224565b60405180910390fd5b565b6002600954036117d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c890613290565b60405180910390fd5b6002600981905550565b6001600981905550565b61180083838360405180602001604052806000815250610f8c565b505050565b600080829050806118146113e7565b1161189a576000548110156118995760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611897575b6000810361188d576004600083600190039350838152602001908152602001600020549050611863565b80925050506118cc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6119b9828260405180602001604052806000815250611d6f565b5050565b80600760006119ca611c9d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a77611c9d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611abc9190612337565b60405180910390a35050565b611ad38484846108fb565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b3557611afe84848484611e0c565b611b34576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060006001611b4a84611f5c565b01905060008167ffffffffffffffff811115611b6957611b68612630565b5b6040519080825280601f01601f191660200182016040528015611b9b5781602001600182028036833780820191505090505b509050600082602001820190505b600115611bfe578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611bf257611bf16132b0565b5b04945060008503611ba9575b819350505050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611d2d8686846120af565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611d7983836120b8565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e0757600080549050600083820390505b611db96000868380600101945086611e0c565b611def576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611da6578160005414611e0457600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e32611c9d565b8786866040518563ffffffff1660e01b8152600401611e549493929190613334565b6020604051808303816000875af1925050508015611e9057506040513d601f19601f82011682018060405250810190611e8d9190613395565b60015b611f09573d8060008114611ec0576040519150601f19603f3d011682016040523d82523d6000602084013e611ec5565b606091505b506000815103611f01576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611fba577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611fb057611faf6132b0565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611ff7576d04ee2d6d415b85acef81000000008381611fed57611fec6132b0565b5b0492506020810190505b662386f26fc10000831061202657662386f26fc10000838161201c5761201b6132b0565b5b0492506010810190505b6305f5e100831061204f576305f5e1008381612045576120446132b0565b5b0492506008810190505b612710831061207457612710838161206a576120696132b0565b5b0492506004810190505b60648310612097576064838161208d5761208c6132b0565b5b0492506002810190505b600a83106120a6576001810190505b80915050919050565b60009392505050565b600080549050600082036120f8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121056000848385611d10565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061217c8361216d6000866000611d16565b61217685612273565b17611d3e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461221d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506121e2565b5060008203612258576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061226e6000848385611d69565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122cc81612297565b81146122d757600080fd5b50565b6000813590506122e9816122c3565b92915050565b6000602082840312156123055761230461228d565b5b6000612313848285016122da565b91505092915050565b60008115159050919050565b6123318161231c565b82525050565b600060208201905061234c6000830184612328565b92915050565b6000819050919050565b61236581612352565b82525050565b6000602082019050612380600083018461235c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123c05780820151818401526020810190506123a5565b60008484015250505050565b6000601f19601f8301169050919050565b60006123e882612386565b6123f28185612391565b93506124028185602086016123a2565b61240b816123cc565b840191505092915050565b6000602082019050818103600083015261243081846123dd565b905092915050565b61244181612352565b811461244c57600080fd5b50565b60008135905061245e81612438565b92915050565b60006020828403121561247a5761247961228d565b5b60006124888482850161244f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124bc82612491565b9050919050565b6124cc816124b1565b82525050565b60006020820190506124e760008301846124c3565b92915050565b6124f6816124b1565b811461250157600080fd5b50565b600081359050612513816124ed565b92915050565b600080604083850312156125305761252f61228d565b5b600061253e85828601612504565b925050602061254f8582860161244f565b9150509250929050565b6000806000606084860312156125725761257161228d565b5b600061258086828701612504565b935050602061259186828701612504565b92505060406125a28682870161244f565b9150509250925092565b6000819050919050565b60006125d16125cc6125c784612491565b6125ac565b612491565b9050919050565b60006125e3826125b6565b9050919050565b60006125f5826125d8565b9050919050565b612605816125ea565b82525050565b600060208201905061262060008301846125fc565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612668826123cc565b810181811067ffffffffffffffff8211171561268757612686612630565b5b80604052505050565b600061269a612283565b90506126a6828261265f565b919050565b600067ffffffffffffffff8211156126c6576126c5612630565b5b6126cf826123cc565b9050602081019050919050565b82818337600083830152505050565b60006126fe6126f9846126ab565b612690565b90508281526020810184848401111561271a5761271961262b565b5b6127258482856126dc565b509392505050565b600082601f83011261274257612741612626565b5b81356127528482602086016126eb565b91505092915050565b6000602082840312156127715761277061228d565b5b600082013567ffffffffffffffff81111561278f5761278e612292565b5b61279b8482850161272d565b91505092915050565b6000602082840312156127ba576127b961228d565b5b60006127c884828501612504565b91505092915050565b6127da8161231c565b81146127e557600080fd5b50565b6000813590506127f7816127d1565b92915050565b600080604083850312156128145761281361228d565b5b600061282285828601612504565b9250506020612833858286016127e8565b9150509250929050565b600067ffffffffffffffff82111561285857612857612630565b5b612861826123cc565b9050602081019050919050565b600061288161287c8461283d565b612690565b90508281526020810184848401111561289d5761289c61262b565b5b6128a88482856126dc565b509392505050565b600082601f8301126128c5576128c4612626565b5b81356128d584826020860161286e565b91505092915050565b600080600080608085870312156128f8576128f761228d565b5b600061290687828801612504565b945050602061291787828801612504565b93505060406129288782880161244f565b925050606085013567ffffffffffffffff81111561294957612948612292565b5b612955878288016128b0565b91505092959194509250565b600080604083850312156129785761297761228d565b5b600061298685828601612504565b925050602061299785828601612504565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129e857607f821691505b6020821081036129fb576129fa6129a1565b5b50919050565b600081905092915050565b50565b6000612a1c600083612a01565b9150612a2782612a0c565b600082019050919050565b6000612a3d82612a0f565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612aa97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612a6c565b612ab38683612a6c565b95508019841693508086168417925050509392505050565b6000612ae6612ae1612adc84612352565b6125ac565b612352565b9050919050565b6000819050919050565b612b0083612acb565b612b14612b0c82612aed565b848454612a79565b825550505050565b600090565b612b29612b1c565b612b34818484612af7565b505050565b5b81811015612b5857612b4d600082612b21565b600181019050612b3a565b5050565b601f821115612b9d57612b6e81612a47565b612b7784612a5c565b81016020851015612b86578190505b612b9a612b9285612a5c565b830182612b39565b50505b505050565b600082821c905092915050565b6000612bc060001984600802612ba2565b1980831691505092915050565b6000612bd98383612baf565b9150826002028217905092915050565b612bf282612386565b67ffffffffffffffff811115612c0b57612c0a612630565b5b612c1582546129d0565b612c20828285612b5c565b600060209050601f831160018114612c535760008415612c41578287015190505b612c4b8582612bcd565b865550612cb3565b601f198416612c6186612a47565b60005b82811015612c8957848901518255600182019150602085019450602081019050612c64565b86831015612ca65784890151612ca2601f891682612baf565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612cf582612352565b9150612d0083612352565b9250828201905080821115612d1857612d17612cbb565b5b92915050565b6000606082019050612d3360008301866124c3565b612d40602083018561235c565b612d4d604083018461235c565b949350505050565b6000612d6082612352565b9150612d6b83612352565b9250828202612d7981612352565b91508282048414831517612d9057612d8f612cbb565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612dcd601d83612391565b9150612dd882612d97565b602082019050919050565b60006020820190508181036000830152612dfc81612dc0565b9050919050565b6000612e0e82612352565b9150612e1983612352565b9250828203905081811115612e3157612e30612cbb565b5b92915050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6000612e6d600983612391565b9150612e7882612e37565b602082019050919050565b60006020820190508181036000830152612e9c81612e60565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612ed9601383612391565b9150612ee482612ea3565b602082019050919050565b60006020820190508181036000830152612f0881612ecc565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612f6b602f83612391565b9150612f7682612f0f565b604082019050919050565b60006020820190508181036000830152612f9a81612f5e565b9050919050565b600081905092915050565b60008154612fb9816129d0565b612fc38186612fa1565b94506001821660008114612fde5760018114612ff357613026565b60ff1983168652811515820286019350613026565b612ffc85612a47565b60005b8381101561301e57815481890152600182019150602081019050612fff565b838801955050505b50505092915050565b600061303a82612386565b6130448185612fa1565b93506130548185602086016123a2565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613096600583612fa1565b91506130a182613060565b600582019050919050565b60006130b88285612fac565b91506130c4828461302f565b91506130cf82613089565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613137602683612391565b9150613142826130db565b604082019050919050565b600060208201905081810360008301526131668161312a565b9050919050565b600060408201905061318260008301856124c3565b61318f60208301846124c3565b9392505050565b6000815190506131a5816127d1565b92915050565b6000602082840312156131c1576131c061228d565b5b60006131cf84828501613196565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061320e602083612391565b9150613219826131d8565b602082019050919050565b6000602082019050818103600083015261323d81613201565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061327a601f83612391565b915061328582613244565b602082019050919050565b600060208201905081810360008301526132a98161326d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613306826132df565b61331081856132ea565b93506133208185602086016123a2565b613329816123cc565b840191505092915050565b600060808201905061334960008301876124c3565b61335660208301866124c3565b613363604083018561235c565b818103606083015261337581846132fb565b905095945050505050565b60008151905061338f816122c3565b92915050565b6000602082840312156133ab576133aa61228d565b5b60006133b984828501613380565b9150509291505056fea2646970667358221220210ba836c9461e67ad223247c493b6e4139caa51dbe36e0794a669bcf9e3bbd964736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d614e4e33484d714c4d56654a4a6b646441427a427155756a745a566b3569787565756f68333562726e6a46332f00000000000000000000

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

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d614e4e33484d714c4d56654a4a6b646441427a42715575
Arg [3] : 6a745a566b3569787565756f68333562726e6a46332f00000000000000000000


Deployed Bytecode Sourcemap

78665:3937:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45567:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78898:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46469:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52960:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81390:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78830:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42220:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78860:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81564:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82394:205;;;:::i;:::-;;79079:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2927:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81743:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81110:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79033:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47862:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79149:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43404:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26346:103;;;;;;;;;;;;;:::i;:::-;;80090:182;;;;;;;;;;;;;:::i;:::-;;25698:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82288:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82175:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46645;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78988:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79372:708;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81206:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81930:236;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80751:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78945:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80397:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26604:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45567:639;45652:4;45991:10;45976:25;;:11;:25;;;;:102;;;;46068:10;46053:25;;:11;:25;;;;45976:102;:179;;;;46145:10;46130:25;;:11;:25;;;;45976:179;45956:199;;45567:639;;;:::o;78898:40::-;;;;:::o;46469:100::-;46523:13;46556:5;46549:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46469:100;:::o;52960:218::-;53036:7;53061:16;53069:7;53061;:16::i;:::-;53056:64;;53086:34;;;;;;;;;;;;;;53056:64;53140:15;:24;53156:7;53140:24;;;;;;;;;;;:30;;;;;;;;;;;;53133:37;;52960:218;;;:::o;81390:166::-;81495:8;4448:30;4469:8;4448:20;:30::i;:::-;81516:32:::1;81530:8;81540:7;81516:13;:32::i;:::-;81390:166:::0;;;:::o;78830:23::-;;;;:::o;42220:323::-;42281:7;42509:15;:13;:15::i;:::-;42494:12;;42478:13;;:28;:46;42471:53;;42220:323;:::o;78860:31::-;;;;:::o;81564:171::-;81673:4;4276:10;4268:18;;:4;:18;;;4264:83;;4303:32;4324:10;4303:20;:32::i;:::-;4264:83;81690:37:::1;81709:4;81715:2;81719:7;81690:18;:37::i;:::-;81564:171:::0;;;;:::o;82394:205::-;25584:13;:11;:13::i;:::-;22969:21:::1;:19;:21::i;:::-;82464:12:::2;82490:10;82482:24;;82528:21;82482:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82463:101;;;82583:7;82575:16;;;::::0;::::2;;82452:147;23013:20:::1;:18;:20::i;:::-;82394:205::o:0;79079:28::-;;;;:::o;2927:143::-;3027:42;2927:143;:::o;81743:179::-;81856:4;4276:10;4268:18;;:4;:18;;;4264:83;;4303:32;4324:10;4303:20;:32::i;:::-;4264:83;81873:41:::1;81896:4;81902:2;81906:7;81873:22;:41::i;:::-;81743:179:::0;;;;:::o;81110:88::-;25584:13;:11;:13::i;:::-;81187:3:::1;81177:7;:13;;;;;;:::i;:::-;;81110:88:::0;:::o;79033:38::-;;;;:::o;47862:152::-;47934:7;47977:27;47996:7;47977:18;:27::i;:::-;47954:52;;47862:152;;;:::o;79149:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43404:233::-;43476:7;43517:1;43500:19;;:5;:19;;;43496:60;;43528:28;;;;;;;;;;;;;;43496:60;37563:13;43574:18;:25;43593:5;43574:25;;;;;;;;;;;;;;;;:55;43567:62;;43404:233;;;:::o;26346:103::-;25584:13;:11;:13::i;:::-;26411:30:::1;26438:1;26411:18;:30::i;:::-;26346:103::o:0;80090:182::-;25584:13;:11;:13::i;:::-;80149:9:::1;;80137:8;;:21;;;;;;;:::i;:::-;;;;;;;;80174:47;80187:12;:10;:12::i;:::-;80201:8;;80211:9;;80174:47;;;;;;;;:::i;:::-;;;;;;;;80232:32;80242:10;80254:9;;80232;:32::i;:::-;80090:182::o:0;25698:87::-;25744:7;25771:6;;;;;;;;;;;25764:13;;25698:87;:::o;82288:97::-;25584:13;:11;:13::i;:::-;82368:9:::1;82355:10;:22;;;;82288:97:::0;:::o;82175:104::-;25584:13;:11;:13::i;:::-;82265:6:::1;82244:18;:27;;;;82175:104:::0;:::o;46645:::-;46701:13;46734:7;46727:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46645:104;:::o;78988:38::-;;;;:::o;79372:708::-;79429:12;79444:10;;79429:25;;79465:11;79526:1;79505:18;;:22;;;;:::i;:::-;79497:5;79481:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:46;79480:127;;;;;79587:19;;79578:5;79546:17;:29;79564:10;79546:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:60;;79480:127;79479:169;;;;79640:7;:5;:7::i;:::-;79626:21;;:10;:21;;;79479:169;79465:183;;79666:6;79662:47;;;79696:1;79689:8;;79662:47;79751:4;79743:5;:12;;;;:::i;:::-;79730:9;:25;;79722:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;79857:1;79845:9;;79832:10;;:22;;;;:::i;:::-;:26;;;;:::i;:::-;79824:5;79808:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:50;79800:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;79915:1;79899:13;;:17;;;;:::i;:::-;79891:5;:25;79883:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;79958:6;79954:77;;;80014:5;79981:17;:29;79999:10;79981:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;79954:77;80044:28;80054:10;80066:5;80044:9;:28::i;:::-;79418:662;;79372:708;:::o;81206:176::-;81310:8;4448:30;4469:8;4448:20;:30::i;:::-;81331:43:::1;81355:8;81365;81331:23;:43::i;:::-;81206:176:::0;;;:::o;81930:236::-;82089:4;4276:10;4268:18;;:4;:18;;;4264:83;;4303:32;4324:10;4303:20;:32::i;:::-;4264:83;82111:47:::1;82134:4;82140:2;82144:7;82153:4;82111:22;:47::i;:::-;81930:236:::0;;;;;:::o;80751:350::-;80869:13;80922:16;80930:7;80922;:16::i;:::-;80900:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;81055:7;81064:18;:7;:16;:18::i;:::-;81038:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;81024:69;;80751:350;;;:::o;78945:33::-;;;;:::o;80397:339::-;80522:4;80583:42;80571:54;;:8;:54;;;80567:99;;80649:5;80642:12;;;;80567:99;80689:39;80712:5;80719:8;80689:22;:39::i;:::-;80682:46;;80397:339;;;;;:::o;26604:201::-;25584:13;:11;:13::i;:::-;26713:1:::1;26693:22;;:8;:22;;::::0;26685:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;26769:28;26788:8;26769:18;:28::i;:::-;26604:201:::0;:::o;54331:282::-;54396:4;54452:7;54433:15;:13;:15::i;:::-;:26;;:66;;;;;54486:13;;54476:7;:23;54433:66;:153;;;;;54585:1;38339:8;54537:17;:26;54555:7;54537:26;;;;;;;;;;;;:44;:49;54433:153;54413:173;;54331:282;;;:::o;4506:419::-;4745:1;3027:42;4697:45;;;:49;4693:225;;;3027:42;4768;;;4819:4;4826:8;4768:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4763:144;;4882:8;4863:28;;;;;;;;;;;:::i;:::-;;;;;;;;4763:144;4693:225;4506:419;:::o;52393:408::-;52482:13;52498:16;52506:7;52498;:16::i;:::-;52482:32;;52554:5;52531:28;;:19;:17;:19::i;:::-;:28;;;52527:175;;52579:44;52596:5;52603:19;:17;:19::i;:::-;52579:16;:44::i;:::-;52574:128;;52651:35;;;;;;;;;;;;;;52574:128;52527:175;52747:2;52714:15;:24;52730:7;52714:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;52785:7;52781:2;52765:28;;52774:5;52765:28;;;;;;;;;;;;52471:330;52393:408;;:::o;41736:92::-;41792:7;41736:92;:::o;56599:2825::-;56741:27;56771;56790:7;56771:18;:27::i;:::-;56741:57;;56856:4;56815:45;;56831:19;56815:45;;;56811:86;;56869:28;;;;;;;;;;;;;;56811:86;56911:27;56940:23;56967:35;56994:7;56967:26;:35::i;:::-;56910:92;;;;57102:68;57127:15;57144:4;57150:19;:17;:19::i;:::-;57102:24;:68::i;:::-;57097:180;;57190:43;57207:4;57213:19;:17;:19::i;:::-;57190:16;:43::i;:::-;57185:92;;57242:35;;;;;;;;;;;;;;57185:92;57097:180;57308:1;57294:16;;:2;:16;;;57290:52;;57319:23;;;;;;;;;;;;;;57290:52;57355:43;57377:4;57383:2;57387:7;57396:1;57355:21;:43::i;:::-;57491:15;57488:160;;;57631:1;57610:19;57603:30;57488:160;58028:18;:24;58047:4;58028:24;;;;;;;;;;;;;;;;58026:26;;;;;;;;;;;;58097:18;:22;58116:2;58097:22;;;;;;;;;;;;;;;;58095:24;;;;;;;;;;;58419:146;58456:2;58505:45;58520:4;58526:2;58530:19;58505:14;:45::i;:::-;38619:8;58477:73;58419:18;:146::i;:::-;58390:17;:26;58408:7;58390:26;;;;;;;;;;;:175;;;;58736:1;38619:8;58685:19;:47;:52;58681:627;;58758:19;58790:1;58780:7;:11;58758:33;;58947:1;58913:17;:30;58931:11;58913:30;;;;;;;;;;;;:35;58909:384;;59051:13;;59036:11;:28;59032:242;;59231:19;59198:17;:30;59216:11;59198:30;;;;;;;;;;;:52;;;;59032:242;58909:384;58739:569;58681:627;59355:7;59351:2;59336:27;;59345:4;59336:27;;;;;;;;;;;;59374:42;59395:4;59401:2;59405:7;59414:1;59374:20;:42::i;:::-;56730:2694;;;56599:2825;;;:::o;25863:132::-;25938:12;:10;:12::i;:::-;25927:23;;:7;:5;:7::i;:::-;:23;;;25919:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25863:132::o;23049:293::-;22451:1;23183:7;;:19;23175:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22451:1;23316:7;:18;;;;23049:293::o;23350:213::-;22407:1;23533:7;:22;;;;23350:213::o;59520:193::-;59666:39;59683:4;59689:2;59693:7;59666:39;;;;;;;;;;;;:16;:39::i;:::-;59520:193;;;:::o;49017:1275::-;49084:7;49104:12;49119:7;49104:22;;49187:4;49168:15;:13;:15::i;:::-;:23;49164:1061;;49221:13;;49214:4;:20;49210:1015;;;49259:14;49276:17;:23;49294:4;49276:23;;;;;;;;;;;;49259:40;;49393:1;38339:8;49365:6;:24;:29;49361:845;;50030:113;50047:1;50037:6;:11;50030:113;;50090:17;:25;50108:6;;;;;;;50090:25;;;;;;;;;;;;50081:34;;50030:113;;;50176:6;50169:13;;;;;;49361:845;49236:989;49210:1015;49164:1061;50253:31;;;;;;;;;;;;;;49017:1275;;;;:::o;26965:191::-;27039:16;27058:6;;;;;;;;;;;27039:25;;27084:8;27075:6;;:17;;;;;;;;;;;;;;;;;;27139:8;27108:40;;27129:8;27108:40;;;;;;;;;;;;27028:128;26965:191;:::o;24249:98::-;24302:7;24329:10;24322:17;;24249:98;:::o;70471:112::-;70548:27;70558:2;70562:8;70548:27;;;;;;;;;;;;:9;:27::i;:::-;70471:112;;:::o;53518:234::-;53665:8;53613:18;:39;53632:19;:17;:19::i;:::-;53613:39;;;;;;;;;;;;;;;:49;53653:8;53613:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;53725:8;53689:55;;53704:19;:17;:19::i;:::-;53689:55;;;53735:8;53689:55;;;;;;:::i;:::-;;;;;;;;53518:234;;:::o;60311:407::-;60486:31;60499:4;60505:2;60509:7;60486:12;:31::i;:::-;60550:1;60532:2;:14;;;:19;60528:183;;60571:56;60602:4;60608:2;60612:7;60621:5;60571:30;:56::i;:::-;60566:145;;60655:40;;;;;;;;;;;;;;60566:145;60528:183;60311:407;;;;:::o;18730:716::-;18786:13;18837:14;18874:1;18854:17;18865:5;18854:10;:17::i;:::-;:21;18837:38;;18890:20;18924:6;18913:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18890:41;;18946:11;19075:6;19071:2;19067:15;19059:6;19055:28;19048:35;;19112:288;19119:4;19112:288;;;19144:5;;;;;;;;19286:8;19281:2;19274:5;19270:14;19265:30;19260:3;19252:44;19342:2;19333:11;;;;;;:::i;:::-;;;;;19376:1;19367:5;:10;19112:288;19363:21;19112:288;19421:6;19414:13;;;;;18730:716;;;:::o;53909:164::-;54006:4;54030:18;:25;54049:5;54030:25;;;;;;;;;;;;;;;:35;54056:8;54030:35;;;;;;;;;;;;;;;;;;;;;;;;;54023:42;;53909:164;;;;:::o;76639:105::-;76699:7;76726:10;76719:17;;76639:105;:::o;55494:485::-;55596:27;55625:23;55666:38;55707:15;:24;55723:7;55707:24;;;;;;;;;;;55666:65;;55884:18;55861:41;;55941:19;55935:26;55916:45;;55846:126;55494:485;;;:::o;54722:659::-;54871:11;55036:16;55029:5;55025:28;55016:37;;55196:16;55185:9;55181:32;55168:45;;55346:15;55335:9;55332:30;55324:5;55313:9;55310:20;55307:56;55297:66;;54722:659;;;;;:::o;61380:159::-;;;;;:::o;75948:311::-;76083:7;76103:16;38743:3;76129:19;:41;;76103:68;;38743:3;76197:31;76208:4;76214:2;76218:9;76197:10;:31::i;:::-;76189:40;;:62;;76182:69;;;75948:311;;;;;:::o;50840:450::-;50920:14;51088:16;51081:5;51077:28;51068:37;;51265:5;51251:11;51226:23;51222:41;51219:52;51212:5;51209:63;51199:73;;50840:450;;;;:::o;62204:158::-;;;;;:::o;69698:689::-;69829:19;69835:2;69839:8;69829:5;:19::i;:::-;69908:1;69890:2;:14;;;:19;69886:483;;69930:11;69944:13;;69930:27;;69976:13;69998:8;69992:3;:14;69976:30;;70025:233;70056:62;70095:1;70099:2;70103:7;;;;;;70112:5;70056:30;:62::i;:::-;70051:167;;70154:40;;;;;;;;;;;;;;70051:167;70253:3;70245:5;:11;70025:233;;70340:3;70323:13;;:20;70319:34;;70345:8;;;70319:34;69911:458;;69886:483;69698:689;;;:::o;62802:716::-;62965:4;63011:2;62986:45;;;63032:19;:17;:19::i;:::-;63053:4;63059:7;63068:5;62986:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;62982:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63286:1;63269:6;:13;:18;63265:235;;63315:40;;;;;;;;;;;;;;63265:235;63458:6;63452:13;63443:6;63439:2;63435:15;63428:38;62982:529;63155:54;;;63145:64;;;:6;:64;;;;63138:71;;;62802:716;;;;;;:::o;15596:922::-;15649:7;15669:14;15686:1;15669:18;;15736:6;15727:5;:15;15723:102;;15772:6;15763:15;;;;;;:::i;:::-;;;;;15807:2;15797:12;;;;15723:102;15852:6;15843:5;:15;15839:102;;15888:6;15879:15;;;;;;:::i;:::-;;;;;15923:2;15913:12;;;;15839:102;15968:6;15959:5;:15;15955:102;;16004:6;15995:15;;;;;;:::i;:::-;;;;;16039:2;16029:12;;;;15955:102;16084:5;16075;:14;16071:99;;16119:5;16110:14;;;;;;:::i;:::-;;;;;16153:1;16143:11;;;;16071:99;16197:5;16188;:14;16184:99;;16232:5;16223:14;;;;;;:::i;:::-;;;;;16266:1;16256:11;;;;16184:99;16310:5;16301;:14;16297:99;;16345:5;16336:14;;;;;;:::i;:::-;;;;;16379:1;16369:11;;;;16297:99;16423:5;16414;:14;16410:66;;16459:1;16449:11;;;;16410:66;16504:6;16497:13;;;15596:922;;;:::o;75649:147::-;75786:6;75649:147;;;;;:::o;63980:2966::-;64053:20;64076:13;;64053:36;;64116:1;64104:8;:13;64100:44;;64126:18;;;;;;;;;;;;;;64100:44;64157:61;64187:1;64191:2;64195:12;64209:8;64157:21;:61::i;:::-;64701:1;37701:2;64671:1;:26;;64670:32;64658:8;:45;64632:18;:22;64651:2;64632:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;64980:139;65017:2;65071:33;65094:1;65098:2;65102:1;65071:14;:33::i;:::-;65038:30;65059:8;65038:20;:30::i;:::-;:66;64980:18;:139::i;:::-;64946:17;:31;64964:12;64946:31;;;;;;;;;;;:173;;;;65136:16;65167:11;65196:8;65181:12;:23;65167:37;;65717:16;65713:2;65709:25;65697:37;;66089:12;66049:8;66008:1;65946:25;65887:1;65826;65799:335;66460:1;66446:12;66442:20;66400:346;66501:3;66492:7;66489:16;66400:346;;66719:7;66709:8;66706:1;66679:25;66676:1;66673;66668:59;66554:1;66545:7;66541:15;66530:26;;66400:346;;;66404:77;66791:1;66779:8;:13;66775:45;;66801:19;;;;;;;;;;;;;;66775:45;66853:3;66837:13;:19;;;;64406:2462;;66878:60;66907:1;66911:2;66915:12;66929:8;66878:20;:60::i;:::-;64042:2904;63980:2966;;:::o;51392:324::-;51462:14;51695:1;51685:8;51682:15;51656:24;51652:46;51642:56;;51392:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:246::-;2314:1;2324:113;2338:6;2335:1;2332:13;2324:113;;;2423:1;2418:3;2414:11;2408:18;2404:1;2399:3;2395:11;2388:39;2360:2;2357:1;2353:10;2348:15;;2324:113;;;2471:1;2462:6;2457:3;2453:16;2446:27;2295:184;2233:246;;;:::o;2485:102::-;2526:6;2577:2;2573:7;2568:2;2561:5;2557:14;2553:28;2543:38;;2485:102;;;:::o;2593:377::-;2681:3;2709:39;2742:5;2709:39;:::i;:::-;2764:71;2828:6;2823:3;2764:71;:::i;:::-;2757:78;;2844:65;2902:6;2897:3;2890:4;2883:5;2879:16;2844:65;:::i;:::-;2934:29;2956:6;2934:29;:::i;:::-;2929:3;2925:39;2918:46;;2685:285;2593:377;;;;:::o;2976:313::-;3089:4;3127:2;3116:9;3112:18;3104:26;;3176:9;3170:4;3166:20;3162:1;3151:9;3147:17;3140:47;3204:78;3277:4;3268:6;3204:78;:::i;:::-;3196:86;;2976:313;;;;:::o;3295:122::-;3368:24;3386:5;3368:24;:::i;:::-;3361:5;3358:35;3348:63;;3407:1;3404;3397:12;3348:63;3295:122;:::o;3423:139::-;3469:5;3507:6;3494:20;3485:29;;3523:33;3550:5;3523:33;:::i;:::-;3423:139;;;;:::o;3568:329::-;3627:6;3676:2;3664:9;3655:7;3651:23;3647:32;3644:119;;;3682:79;;:::i;:::-;3644:119;3802:1;3827:53;3872:7;3863:6;3852:9;3848:22;3827:53;:::i;:::-;3817:63;;3773:117;3568:329;;;;:::o;3903:126::-;3940:7;3980:42;3973:5;3969:54;3958:65;;3903:126;;;:::o;4035:96::-;4072:7;4101:24;4119:5;4101:24;:::i;:::-;4090:35;;4035:96;;;:::o;4137:118::-;4224:24;4242:5;4224:24;:::i;:::-;4219:3;4212:37;4137:118;;:::o;4261:222::-;4354:4;4392:2;4381:9;4377:18;4369:26;;4405:71;4473:1;4462:9;4458:17;4449:6;4405:71;:::i;:::-;4261:222;;;;:::o;4489:122::-;4562:24;4580:5;4562:24;:::i;:::-;4555:5;4552:35;4542:63;;4601:1;4598;4591:12;4542:63;4489:122;:::o;4617:139::-;4663:5;4701:6;4688:20;4679:29;;4717:33;4744:5;4717:33;:::i;:::-;4617:139;;;;:::o;4762:474::-;4830:6;4838;4887:2;4875:9;4866:7;4862:23;4858:32;4855:119;;;4893:79;;:::i;:::-;4855:119;5013:1;5038:53;5083:7;5074:6;5063:9;5059:22;5038:53;:::i;:::-;5028:63;;4984:117;5140:2;5166:53;5211:7;5202:6;5191:9;5187:22;5166:53;:::i;:::-;5156:63;;5111:118;4762:474;;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:60::-;5895:3;5916:5;5909:12;;5867:60;;;:::o;5933:142::-;5983:9;6016:53;6034:34;6043:24;6061:5;6043:24;:::i;:::-;6034:34;:::i;:::-;6016:53;:::i;:::-;6003:66;;5933:142;;;:::o;6081:126::-;6131:9;6164:37;6195:5;6164:37;:::i;:::-;6151:50;;6081:126;;;:::o;6213:157::-;6294:9;6327:37;6358:5;6327:37;:::i;:::-;6314:50;;6213:157;;;:::o;6376:193::-;6494:68;6556:5;6494:68;:::i;:::-;6489:3;6482:81;6376:193;;:::o;6575:284::-;6699:4;6737:2;6726:9;6722:18;6714:26;;6750:102;6849:1;6838:9;6834:17;6825:6;6750:102;:::i;:::-;6575:284;;;;:::o;6865:117::-;6974:1;6971;6964:12;6988:117;7097:1;7094;7087:12;7111:180;7159:77;7156:1;7149:88;7256:4;7253:1;7246:15;7280:4;7277:1;7270:15;7297:281;7380:27;7402:4;7380:27;:::i;:::-;7372:6;7368:40;7510:6;7498:10;7495:22;7474:18;7462:10;7459:34;7456:62;7453:88;;;7521:18;;:::i;:::-;7453:88;7561:10;7557:2;7550:22;7340:238;7297:281;;:::o;7584:129::-;7618:6;7645:20;;:::i;:::-;7635:30;;7674:33;7702:4;7694:6;7674:33;:::i;:::-;7584:129;;;:::o;7719:308::-;7781:4;7871:18;7863:6;7860:30;7857:56;;;7893:18;;:::i;:::-;7857:56;7931:29;7953:6;7931:29;:::i;:::-;7923:37;;8015:4;8009;8005:15;7997:23;;7719:308;;;:::o;8033:146::-;8130:6;8125:3;8120;8107:30;8171:1;8162:6;8157:3;8153:16;8146:27;8033:146;;;:::o;8185:425::-;8263:5;8288:66;8304:49;8346:6;8304:49;:::i;:::-;8288:66;:::i;:::-;8279:75;;8377:6;8370:5;8363:21;8415:4;8408:5;8404:16;8453:3;8444:6;8439:3;8435:16;8432:25;8429:112;;;8460:79;;:::i;:::-;8429:112;8550:54;8597:6;8592:3;8587;8550:54;:::i;:::-;8269:341;8185:425;;;;;:::o;8630:340::-;8686:5;8735:3;8728:4;8720:6;8716:17;8712:27;8702:122;;8743:79;;:::i;:::-;8702:122;8860:6;8847:20;8885:79;8960:3;8952:6;8945:4;8937:6;8933:17;8885:79;:::i;:::-;8876:88;;8692:278;8630:340;;;;:::o;8976:509::-;9045:6;9094:2;9082:9;9073:7;9069:23;9065:32;9062:119;;;9100:79;;:::i;:::-;9062:119;9248:1;9237:9;9233:17;9220:31;9278:18;9270:6;9267:30;9264:117;;;9300:79;;:::i;:::-;9264:117;9405:63;9460:7;9451:6;9440:9;9436:22;9405:63;:::i;:::-;9395:73;;9191:287;8976:509;;;;:::o;9491:329::-;9550:6;9599:2;9587:9;9578:7;9574:23;9570:32;9567:119;;;9605:79;;:::i;:::-;9567:119;9725:1;9750:53;9795:7;9786:6;9775:9;9771:22;9750:53;:::i;:::-;9740:63;;9696:117;9491:329;;;;:::o;9826:116::-;9896:21;9911:5;9896:21;:::i;:::-;9889:5;9886:32;9876:60;;9932:1;9929;9922:12;9876:60;9826:116;:::o;9948:133::-;9991:5;10029:6;10016:20;10007:29;;10045:30;10069:5;10045:30;:::i;:::-;9948:133;;;;:::o;10087:468::-;10152:6;10160;10209:2;10197:9;10188:7;10184:23;10180:32;10177:119;;;10215:79;;:::i;:::-;10177:119;10335:1;10360:53;10405:7;10396:6;10385:9;10381:22;10360:53;:::i;:::-;10350:63;;10306:117;10462:2;10488:50;10530:7;10521:6;10510:9;10506:22;10488:50;:::i;:::-;10478:60;;10433:115;10087:468;;;;;:::o;10561:307::-;10622:4;10712:18;10704:6;10701:30;10698:56;;;10734:18;;:::i;:::-;10698:56;10772:29;10794:6;10772:29;:::i;:::-;10764:37;;10856:4;10850;10846:15;10838:23;;10561:307;;;:::o;10874:423::-;10951:5;10976:65;10992:48;11033:6;10992:48;:::i;:::-;10976:65;:::i;:::-;10967:74;;11064:6;11057:5;11050:21;11102:4;11095:5;11091:16;11140:3;11131:6;11126:3;11122:16;11119:25;11116:112;;;11147:79;;:::i;:::-;11116:112;11237:54;11284:6;11279:3;11274;11237:54;:::i;:::-;10957:340;10874:423;;;;;:::o;11316:338::-;11371:5;11420:3;11413:4;11405:6;11401:17;11397:27;11387:122;;11428:79;;:::i;:::-;11387:122;11545:6;11532:20;11570:78;11644:3;11636:6;11629:4;11621:6;11617:17;11570:78;:::i;:::-;11561:87;;11377:277;11316:338;;;;:::o;11660:943::-;11755:6;11763;11771;11779;11828:3;11816:9;11807:7;11803:23;11799:33;11796:120;;;11835:79;;:::i;:::-;11796:120;11955:1;11980:53;12025:7;12016:6;12005:9;12001:22;11980:53;:::i;:::-;11970:63;;11926:117;12082:2;12108:53;12153:7;12144:6;12133:9;12129:22;12108:53;:::i;:::-;12098:63;;12053:118;12210:2;12236:53;12281:7;12272:6;12261:9;12257:22;12236:53;:::i;:::-;12226:63;;12181:118;12366:2;12355:9;12351:18;12338:32;12397:18;12389:6;12386:30;12383:117;;;12419:79;;:::i;:::-;12383:117;12524:62;12578:7;12569:6;12558:9;12554:22;12524:62;:::i;:::-;12514:72;;12309:287;11660:943;;;;;;;:::o;12609:474::-;12677:6;12685;12734:2;12722:9;12713:7;12709:23;12705:32;12702:119;;;12740:79;;:::i;:::-;12702:119;12860:1;12885:53;12930:7;12921:6;12910:9;12906:22;12885:53;:::i;:::-;12875:63;;12831:117;12987:2;13013:53;13058:7;13049:6;13038:9;13034:22;13013:53;:::i;:::-;13003:63;;12958:118;12609:474;;;;;:::o;13089:180::-;13137:77;13134:1;13127:88;13234:4;13231:1;13224:15;13258:4;13255:1;13248:15;13275:320;13319:6;13356:1;13350:4;13346:12;13336:22;;13403:1;13397:4;13393:12;13424:18;13414:81;;13480:4;13472:6;13468:17;13458:27;;13414:81;13542:2;13534:6;13531:14;13511:18;13508:38;13505:84;;13561:18;;:::i;:::-;13505:84;13326:269;13275:320;;;:::o;13601:147::-;13702:11;13739:3;13724:18;;13601:147;;;;:::o;13754:114::-;;:::o;13874:398::-;14033:3;14054:83;14135:1;14130:3;14054:83;:::i;:::-;14047:90;;14146:93;14235:3;14146:93;:::i;:::-;14264:1;14259:3;14255:11;14248:18;;13874:398;;;:::o;14278:379::-;14462:3;14484:147;14627:3;14484:147;:::i;:::-;14477:154;;14648:3;14641:10;;14278:379;;;:::o;14663:141::-;14712:4;14735:3;14727:11;;14758:3;14755:1;14748:14;14792:4;14789:1;14779:18;14771:26;;14663:141;;;:::o;14810:93::-;14847:6;14894:2;14889;14882:5;14878:14;14874:23;14864:33;;14810:93;;;:::o;14909:107::-;14953:8;15003:5;14997:4;14993:16;14972:37;;14909:107;;;;:::o;15022:393::-;15091:6;15141:1;15129:10;15125:18;15164:97;15194:66;15183:9;15164:97;:::i;:::-;15282:39;15312:8;15301:9;15282:39;:::i;:::-;15270:51;;15354:4;15350:9;15343:5;15339:21;15330:30;;15403:4;15393:8;15389:19;15382:5;15379:30;15369:40;;15098:317;;15022:393;;;;;:::o;15421:142::-;15471:9;15504:53;15522:34;15531:24;15549:5;15531:24;:::i;:::-;15522:34;:::i;:::-;15504:53;:::i;:::-;15491:66;;15421:142;;;:::o;15569:75::-;15612:3;15633:5;15626:12;;15569:75;;;:::o;15650:269::-;15760:39;15791:7;15760:39;:::i;:::-;15821:91;15870:41;15894:16;15870:41;:::i;:::-;15862:6;15855:4;15849:11;15821:91;:::i;:::-;15815:4;15808:105;15726:193;15650:269;;;:::o;15925:73::-;15970:3;15925:73;:::o;16004:189::-;16081:32;;:::i;:::-;16122:65;16180:6;16172;16166:4;16122:65;:::i;:::-;16057:136;16004:189;;:::o;16199:186::-;16259:120;16276:3;16269:5;16266:14;16259:120;;;16330:39;16367:1;16360:5;16330:39;:::i;:::-;16303:1;16296:5;16292:13;16283:22;;16259:120;;;16199:186;;:::o;16391:543::-;16492:2;16487:3;16484:11;16481:446;;;16526:38;16558:5;16526:38;:::i;:::-;16610:29;16628:10;16610:29;:::i;:::-;16600:8;16596:44;16793:2;16781:10;16778:18;16775:49;;;16814:8;16799:23;;16775:49;16837:80;16893:22;16911:3;16893:22;:::i;:::-;16883:8;16879:37;16866:11;16837:80;:::i;:::-;16496:431;;16481:446;16391:543;;;:::o;16940:117::-;16994:8;17044:5;17038:4;17034:16;17013:37;;16940:117;;;;:::o;17063:169::-;17107:6;17140:51;17188:1;17184:6;17176:5;17173:1;17169:13;17140:51;:::i;:::-;17136:56;17221:4;17215;17211:15;17201:25;;17114:118;17063:169;;;;:::o;17237:295::-;17313:4;17459:29;17484:3;17478:4;17459:29;:::i;:::-;17451:37;;17521:3;17518:1;17514:11;17508:4;17505:21;17497:29;;17237:295;;;;:::o;17537:1395::-;17654:37;17687:3;17654:37;:::i;:::-;17756:18;17748:6;17745:30;17742:56;;;17778:18;;:::i;:::-;17742:56;17822:38;17854:4;17848:11;17822:38;:::i;:::-;17907:67;17967:6;17959;17953:4;17907:67;:::i;:::-;18001:1;18025:4;18012:17;;18057:2;18049:6;18046:14;18074:1;18069:618;;;;18731:1;18748:6;18745:77;;;18797:9;18792:3;18788:19;18782:26;18773:35;;18745:77;18848:67;18908:6;18901:5;18848:67;:::i;:::-;18842:4;18835:81;18704:222;18039:887;;18069:618;18121:4;18117:9;18109:6;18105:22;18155:37;18187:4;18155:37;:::i;:::-;18214:1;18228:208;18242:7;18239:1;18236:14;18228:208;;;18321:9;18316:3;18312:19;18306:26;18298:6;18291:42;18372:1;18364:6;18360:14;18350:24;;18419:2;18408:9;18404:18;18391:31;;18265:4;18262:1;18258:12;18253:17;;18228:208;;;18464:6;18455:7;18452:19;18449:179;;;18522:9;18517:3;18513:19;18507:26;18565:48;18607:4;18599:6;18595:17;18584:9;18565:48;:::i;:::-;18557:6;18550:64;18472:156;18449:179;18674:1;18670;18662:6;18658:14;18654:22;18648:4;18641:36;18076:611;;;18039:887;;17629:1303;;;17537:1395;;:::o;18938:180::-;18986:77;18983:1;18976:88;19083:4;19080:1;19073:15;19107:4;19104:1;19097:15;19124:191;19164:3;19183:20;19201:1;19183:20;:::i;:::-;19178:25;;19217:20;19235:1;19217:20;:::i;:::-;19212:25;;19260:1;19257;19253:9;19246:16;;19281:3;19278:1;19275:10;19272:36;;;19288:18;;:::i;:::-;19272:36;19124:191;;;;:::o;19321:442::-;19470:4;19508:2;19497:9;19493:18;19485:26;;19521:71;19589:1;19578:9;19574:17;19565:6;19521:71;:::i;:::-;19602:72;19670:2;19659:9;19655:18;19646:6;19602:72;:::i;:::-;19684;19752:2;19741:9;19737:18;19728:6;19684:72;:::i;:::-;19321:442;;;;;;:::o;19769:410::-;19809:7;19832:20;19850:1;19832:20;:::i;:::-;19827:25;;19866:20;19884:1;19866:20;:::i;:::-;19861:25;;19921:1;19918;19914:9;19943:30;19961:11;19943:30;:::i;:::-;19932:41;;20122:1;20113:7;20109:15;20106:1;20103:22;20083:1;20076:9;20056:83;20033:139;;20152:18;;:::i;:::-;20033:139;19817:362;19769:410;;;;:::o;20185:179::-;20325:31;20321:1;20313:6;20309:14;20302:55;20185:179;:::o;20370:366::-;20512:3;20533:67;20597:2;20592:3;20533:67;:::i;:::-;20526:74;;20609:93;20698:3;20609:93;:::i;:::-;20727:2;20722:3;20718:12;20711:19;;20370:366;;;:::o;20742:419::-;20908:4;20946:2;20935:9;20931:18;20923:26;;20995:9;20989:4;20985:20;20981:1;20970:9;20966:17;20959:47;21023:131;21149:4;21023:131;:::i;:::-;21015:139;;20742:419;;;:::o;21167:194::-;21207:4;21227:20;21245:1;21227:20;:::i;:::-;21222:25;;21261:20;21279:1;21261:20;:::i;:::-;21256:25;;21305:1;21302;21298:9;21290:17;;21329:1;21323:4;21320:11;21317:37;;;21334:18;;:::i;:::-;21317:37;21167:194;;;;:::o;21367:159::-;21507:11;21503:1;21495:6;21491:14;21484:35;21367:159;:::o;21532:365::-;21674:3;21695:66;21759:1;21754:3;21695:66;:::i;:::-;21688:73;;21770:93;21859:3;21770:93;:::i;:::-;21888:2;21883:3;21879:12;21872:19;;21532:365;;;:::o;21903:419::-;22069:4;22107:2;22096:9;22092:18;22084:26;;22156:9;22150:4;22146:20;22142:1;22131:9;22127:17;22120:47;22184:131;22310:4;22184:131;:::i;:::-;22176:139;;21903:419;;;:::o;22328:169::-;22468:21;22464:1;22456:6;22452:14;22445:45;22328:169;:::o;22503:366::-;22645:3;22666:67;22730:2;22725:3;22666:67;:::i;:::-;22659:74;;22742:93;22831:3;22742:93;:::i;:::-;22860:2;22855:3;22851:12;22844:19;;22503:366;;;:::o;22875:419::-;23041:4;23079:2;23068:9;23064:18;23056:26;;23128:9;23122:4;23118:20;23114:1;23103:9;23099:17;23092:47;23156:131;23282:4;23156:131;:::i;:::-;23148:139;;22875:419;;;:::o;23300:234::-;23440:34;23436:1;23428:6;23424:14;23417:58;23509:17;23504:2;23496:6;23492:15;23485:42;23300:234;:::o;23540:366::-;23682:3;23703:67;23767:2;23762:3;23703:67;:::i;:::-;23696:74;;23779:93;23868:3;23779:93;:::i;:::-;23897:2;23892:3;23888:12;23881:19;;23540:366;;;:::o;23912:419::-;24078:4;24116:2;24105:9;24101:18;24093:26;;24165:9;24159:4;24155:20;24151:1;24140:9;24136:17;24129:47;24193:131;24319:4;24193:131;:::i;:::-;24185:139;;23912:419;;;:::o;24337:148::-;24439:11;24476:3;24461:18;;24337:148;;;;:::o;24515:874::-;24618:3;24655:5;24649:12;24684:36;24710:9;24684:36;:::i;:::-;24736:89;24818:6;24813:3;24736:89;:::i;:::-;24729:96;;24856:1;24845:9;24841:17;24872:1;24867:166;;;;25047:1;25042:341;;;;24834:549;;24867:166;24951:4;24947:9;24936;24932:25;24927:3;24920:38;25013:6;25006:14;24999:22;24991:6;24987:35;24982:3;24978:45;24971:52;;24867:166;;25042:341;25109:38;25141:5;25109:38;:::i;:::-;25169:1;25183:154;25197:6;25194:1;25191:13;25183:154;;;25271:7;25265:14;25261:1;25256:3;25252:11;25245:35;25321:1;25312:7;25308:15;25297:26;;25219:4;25216:1;25212:12;25207:17;;25183:154;;;25366:6;25361:3;25357:16;25350:23;;25049:334;;24834:549;;24622:767;;24515:874;;;;:::o;25395:390::-;25501:3;25529:39;25562:5;25529:39;:::i;:::-;25584:89;25666:6;25661:3;25584:89;:::i;:::-;25577:96;;25682:65;25740:6;25735:3;25728:4;25721:5;25717:16;25682:65;:::i;:::-;25772:6;25767:3;25763:16;25756:23;;25505:280;25395:390;;;;:::o;25791:155::-;25931:7;25927:1;25919:6;25915:14;25908:31;25791:155;:::o;25952:400::-;26112:3;26133:84;26215:1;26210:3;26133:84;:::i;:::-;26126:91;;26226:93;26315:3;26226:93;:::i;:::-;26344:1;26339:3;26335:11;26328:18;;25952:400;;;:::o;26358:695::-;26636:3;26658:92;26746:3;26737:6;26658:92;:::i;:::-;26651:99;;26767:95;26858:3;26849:6;26767:95;:::i;:::-;26760:102;;26879:148;27023:3;26879:148;:::i;:::-;26872:155;;27044:3;27037:10;;26358:695;;;;;:::o;27059:225::-;27199:34;27195:1;27187:6;27183:14;27176:58;27268:8;27263:2;27255:6;27251:15;27244:33;27059:225;:::o;27290:366::-;27432:3;27453:67;27517:2;27512:3;27453:67;:::i;:::-;27446:74;;27529:93;27618:3;27529:93;:::i;:::-;27647:2;27642:3;27638:12;27631:19;;27290:366;;;:::o;27662:419::-;27828:4;27866:2;27855:9;27851:18;27843:26;;27915:9;27909:4;27905:20;27901:1;27890:9;27886:17;27879:47;27943:131;28069:4;27943:131;:::i;:::-;27935:139;;27662:419;;;:::o;28087:332::-;28208:4;28246:2;28235:9;28231:18;28223:26;;28259:71;28327:1;28316:9;28312:17;28303:6;28259:71;:::i;:::-;28340:72;28408:2;28397:9;28393:18;28384:6;28340:72;:::i;:::-;28087:332;;;;;:::o;28425:137::-;28479:5;28510:6;28504:13;28495:22;;28526:30;28550:5;28526:30;:::i;:::-;28425:137;;;;:::o;28568:345::-;28635:6;28684:2;28672:9;28663:7;28659:23;28655:32;28652:119;;;28690:79;;:::i;:::-;28652:119;28810:1;28835:61;28888:7;28879:6;28868:9;28864:22;28835:61;:::i;:::-;28825:71;;28781:125;28568:345;;;;:::o;28919:182::-;29059:34;29055:1;29047:6;29043:14;29036:58;28919:182;:::o;29107:366::-;29249:3;29270:67;29334:2;29329:3;29270:67;:::i;:::-;29263:74;;29346:93;29435:3;29346:93;:::i;:::-;29464:2;29459:3;29455:12;29448:19;;29107:366;;;:::o;29479:419::-;29645:4;29683:2;29672:9;29668:18;29660:26;;29732:9;29726:4;29722:20;29718:1;29707:9;29703:17;29696:47;29760:131;29886:4;29760:131;:::i;:::-;29752:139;;29479:419;;;:::o;29904:181::-;30044:33;30040:1;30032:6;30028:14;30021:57;29904:181;:::o;30091:366::-;30233:3;30254:67;30318:2;30313:3;30254:67;:::i;:::-;30247:74;;30330:93;30419:3;30330:93;:::i;:::-;30448:2;30443:3;30439:12;30432:19;;30091:366;;;:::o;30463:419::-;30629:4;30667:2;30656:9;30652:18;30644:26;;30716:9;30710:4;30706:20;30702:1;30691:9;30687:17;30680:47;30744:131;30870:4;30744:131;:::i;:::-;30736:139;;30463:419;;;:::o;30888:180::-;30936:77;30933:1;30926:88;31033:4;31030:1;31023:15;31057:4;31054:1;31047:15;31074:98;31125:6;31159:5;31153:12;31143:22;;31074:98;;;:::o;31178:168::-;31261:11;31295:6;31290:3;31283:19;31335:4;31330:3;31326:14;31311:29;;31178:168;;;;:::o;31352:373::-;31438:3;31466:38;31498:5;31466:38;:::i;:::-;31520:70;31583:6;31578:3;31520:70;:::i;:::-;31513:77;;31599:65;31657:6;31652:3;31645:4;31638:5;31634:16;31599:65;:::i;:::-;31689:29;31711:6;31689:29;:::i;:::-;31684:3;31680:39;31673:46;;31442:283;31352:373;;;;:::o;31731:640::-;31926:4;31964:3;31953:9;31949:19;31941:27;;31978:71;32046:1;32035:9;32031:17;32022:6;31978:71;:::i;:::-;32059:72;32127:2;32116:9;32112:18;32103:6;32059:72;:::i;:::-;32141;32209:2;32198:9;32194:18;32185:6;32141:72;:::i;:::-;32260:9;32254:4;32250:20;32245:2;32234:9;32230:18;32223:48;32288:76;32359:4;32350:6;32288:76;:::i;:::-;32280:84;;31731:640;;;;;;;:::o;32377:141::-;32433:5;32464:6;32458:13;32449:22;;32480:32;32506:5;32480:32;:::i;:::-;32377:141;;;;:::o;32524:349::-;32593:6;32642:2;32630:9;32621:7;32617:23;32613:32;32610:119;;;32648:79;;:::i;:::-;32610:119;32768:1;32793:63;32848:7;32839:6;32828:9;32824:22;32793:63;:::i;:::-;32783:73;;32739:127;32524:349;;;;:::o

Swarm Source

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