ETH Price: $3,365.52 (-2.29%)
Gas: 1 Gwei

Token

Mocas Cats (MOCAT)
 

Overview

Max Total Supply

329 MOCAT

Holders

69

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jeffbeamishmarket.eth
Balance
2 MOCAT
0x773e46b1b1a9b0e976c1e6774350f84edb40da42
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:
MOCAT

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-07
*/

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

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


pragma solidity ^0.8.9;






 
 
 
contract MOCAT is ERC721A, Ownable, ReentrancyGuard, ERC2981 { 
event DevMintEvent(address ownerAddress, uint256 startWith, uint256 amountMinted);
uint256 public devTotal;
    uint256 public _maxSupply = 8888;
    uint256 public _mintPrice = 0.002 ether;
    uint256 public _maxMintPerTx = 100;
 
    uint256 public _maxFreeMintPerAddr = 2;
    uint256 public _maxFreeMintSupply = 3000;
     uint256 public devSupply = 0;
 
    using Strings for uint256;
    string public baseURI;
 
    mapping(address => uint256) private _mintedFreeAmount;
 
 
    // Royalties
    address public royaltyAdd;
 
    constructor(string memory initBaseURI) ERC721A("Mocas Cats", "MOCAT") {
        baseURI = initBaseURI;
        setDefaultRoyalty(msg.sender, 1000); // 10%
    }
 
    // Set default royalty account & percentage
    function setDefaultRoyalty(address _receiver, uint96 _feeNumerator) public {
        royaltyAdd = _receiver;
        _setDefaultRoyalty(_receiver, _feeNumerator);
    }
 
    // Set token specific royalty
    function setTokenRoyalty(
        uint256 tokenId,
        uint96 feeNumerator
    ) external onlyOwner {
        _setTokenRoyalty(tokenId, royaltyAdd, feeNumerator);
    }
 
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view override returns (address, uint256) {
        // Get royalty info from ERC2981 base implementation
        (, uint royaltyAmt) = super.royaltyInfo(_tokenId, _salePrice);
        // Royalty address is always the one specified in this contract 
        return (royaltyAdd, royaltyAmt);
    }
 
    // /**
    //  * @dev See {IERC165-supportsInterface}.
    //  */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || 
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }
 
 
    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 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":[],"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":"_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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"name":"royaltyAdd","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","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":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setTokenRoyalty","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"}]

60806040526122b8600d5566071afd498d0000600e556064600f556002601055610bb860115560006012553480156200003757600080fd5b50604051620045603803806200456083398181016040528101906200005d9190620005c4565b6040518060400160405280600a81526020017f4d6f6361732043617473000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d4f4341540000000000000000000000000000000000000000000000000000008152508160029081620000da919062000860565b508060039081620000ec919062000860565b50620000fd6200015a60201b60201c565b600081905550505062000125620001196200015f60201b60201c565b6200016760201b60201c565b600160098190555080601390816200013e919062000860565b5062000153336103e86200022d60201b60201c565b5062000a62565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200028082826200028460201b60201c565b5050565b620002946200042760201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620002f5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ec90620009ce565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000367576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035e9062000a40565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200049a826200044f565b810181811067ffffffffffffffff82111715620004bc57620004bb62000460565b5b80604052505050565b6000620004d162000431565b9050620004df82826200048f565b919050565b600067ffffffffffffffff82111562000502576200050162000460565b5b6200050d826200044f565b9050602081019050919050565b60005b838110156200053a5780820151818401526020810190506200051d565b60008484015250505050565b60006200055d6200055784620004e4565b620004c5565b9050828152602081018484840111156200057c576200057b6200044a565b5b620005898482856200051a565b509392505050565b600082601f830112620005a957620005a862000445565b5b8151620005bb84826020860162000546565b91505092915050565b600060208284031215620005dd57620005dc6200043b565b5b600082015167ffffffffffffffff811115620005fe57620005fd62000440565b5b6200060c8482850162000591565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200066857607f821691505b6020821081036200067e576200067d62000620565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006e87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006a9565b620006f48683620006a9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007416200073b62000735846200070c565b62000716565b6200070c565b9050919050565b6000819050919050565b6200075d8362000720565b620007756200076c8262000748565b848454620006b6565b825550505050565b600090565b6200078c6200077d565b6200079981848462000752565b505050565b5b81811015620007c157620007b560008262000782565b6001810190506200079f565b5050565b601f8211156200081057620007da8162000684565b620007e58462000699565b81016020851015620007f5578190505b6200080d620008048562000699565b8301826200079e565b50505b505050565b600082821c905092915050565b6000620008356000198460080262000815565b1980831691505092915050565b600062000850838362000822565b9150826002028217905092915050565b6200086b8262000615565b67ffffffffffffffff81111562000887576200088662000460565b5b6200089382546200064f565b620008a0828285620007c5565b600060209050601f831160018114620008d85760008415620008c3578287015190505b620008cf858262000842565b8655506200093f565b601f198416620008e88662000684565b60005b828110156200091257848901518255600182019150602085019450602081019050620008eb565b868310156200093257848901516200092e601f89168262000822565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000620009b6602a8362000947565b9150620009c38262000958565b604082019050919050565b60006020820190508181036000830152620009e981620009a7565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000a2860198362000947565b915062000a3582620009f0565b602082019050919050565b6000602082019050818103600083015262000a5b8162000a19565b9050919050565b613aee8062000a726000396000f3fe6080604052600436106102045760003560e01c80636352211e1161011857806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde146106dd578063c87b56dd146106f9578063de314a5914610736578063e985e9c514610761578063f2fde38b1461079e57610204565b806395d89b41146106425780639cb57d201461066d578063a0712d6814610698578063a22cb465146106b457610204565b8063715018a6116100e7578063715018a6146105975780637c69e207146105ae5780638da5cb5b146105c557806391b7f5ed146105f057806392910eec1461061957610204565b80636352211e146104c957806367a4f4a9146105065780636c0360eb1461052f57806370a082311461055a57610204565b8063190866921161019b5780633ccfd60b1161016a5780633ccfd60b1461042457806341c66d0a1461042e57806342842e0e1461045957806355f804b3146104755780635e1c4b601461049e57610204565b8063190866921461037457806322f4596f1461039f57806323b872dd146103ca5780632a55205a146103e657610204565b8063081812fc116101d7578063081812fc146102c5578063095ea7b3146103025780630afb04db1461031e57806318160ddd1461034957610204565b806301ffc9a7146102095780630387da421461024657806304634d8d1461027157806306fdde031461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906127f8565b6107c7565b60405161023d9190612840565b60405180910390f35b34801561025257600080fd5b5061025b6108c1565b6040516102689190612874565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612931565b6108c7565b005b3480156102a657600080fd5b506102af610916565b6040516102bc9190612a01565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e79190612a4f565b6109a8565b6040516102f99190612a8b565b60405180910390f35b61031c60048036038101906103179190612aa6565b610a27565b005b34801561032a57600080fd5b50610333610b6b565b6040516103409190612874565b60405180910390f35b34801561035557600080fd5b5061035e610b71565b60405161036b9190612874565b60405180910390f35b34801561038057600080fd5b50610389610b88565b6040516103969190612a8b565b60405180910390f35b3480156103ab57600080fd5b506103b4610bae565b6040516103c19190612874565b60405180910390f35b6103e460048036038101906103df9190612ae6565b610bb4565b005b3480156103f257600080fd5b5061040d60048036038101906104089190612b39565b610ed6565b60405161041b929190612b79565b60405180910390f35b61042c610f18565b005b34801561043a57600080fd5b50610443610fa9565b6040516104509190612874565b60405180910390f35b610473600480360381019061046e9190612ae6565b610faf565b005b34801561048157600080fd5b5061049c60048036038101906104979190612cd7565b610fcf565b005b3480156104aa57600080fd5b506104b3610fea565b6040516104c09190612874565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb9190612a4f565b610ff0565b6040516104fd9190612a8b565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190612d20565b611002565b005b34801561053b57600080fd5b5061054461103b565b6040516105519190612a01565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190612d60565b6110c9565b60405161058e9190612874565b60405180910390f35b3480156105a357600080fd5b506105ac611181565b005b3480156105ba57600080fd5b506105c3611195565b005b3480156105d157600080fd5b506105da61120c565b6040516105e79190612a8b565b60405180910390f35b3480156105fc57600080fd5b5061061760048036038101906106129190612a4f565b611236565b005b34801561062557600080fd5b50610640600480360381019061063b9190612a4f565b611248565b005b34801561064e57600080fd5b5061065761125a565b6040516106649190612a01565b60405180910390f35b34801561067957600080fd5b506106826112ec565b60405161068f9190612874565b60405180910390f35b6106b260048036038101906106ad9190612a4f565b6112f2565b005b3480156106c057600080fd5b506106db60048036038101906106d69190612db9565b611539565b005b6106f760048036038101906106f29190612e9a565b611644565b005b34801561070557600080fd5b50610720600480360381019061071b9190612a4f565b6116b7565b60405161072d9190612a01565b60405180910390f35b34801561074257600080fd5b5061074b611733565b6040516107589190612874565b60405180910390f35b34801561076d57600080fd5b5061078860048036038101906107839190612f1d565b611739565b6040516107959190612840565b60405180910390f35b3480156107aa57600080fd5b506107c560048036038101906107c09190612d60565b61179e565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085a57506301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ba5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600e5481565b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506109128282611821565b5050565b60606002805461092590612f8c565b80601f016020809104026020016040519081016040528092919081815260200182805461095190612f8c565b801561099e5780601f106109735761010080835404028352916020019161099e565b820191906000526020600020905b81548152906001019060200180831161098157829003601f168201915b5050505050905090565b60006109b3826119b6565b6109e9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3282610ff0565b90508073ffffffffffffffffffffffffffffffffffffffff16610a53611a15565b73ffffffffffffffffffffffffffffffffffffffff1614610ab657610a7f81610a7a611a15565b611739565b610ab5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b6000610b7b611a1d565b6001546000540303905090565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b6000610bbf82611a22565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c26576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c3284611aee565b91509150610c488187610c43611a15565b611b15565b610c9457610c5d86610c58611a15565b611739565b610c93576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610cfa576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d078686866001611b59565b8015610d1257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610de085610dbc888887611b5f565b7c020000000000000000000000000000000000000000000000000000000017611b87565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e665760006001850190506000600460008381526020019081526020016000205403610e64576000548114610e63578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ece8686866001611bb2565b505050505050565b6000806000610ee58585611bb8565b915050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b610f20611da2565b610f28611e20565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610f4e90612fee565b60006040518083038185875af1925050503d8060008114610f8b576040519150601f19603f3d011682016040523d82523d6000602084013e610f90565b606091505b5050905080610f9e57600080fd5b50610fa7611e6f565b565b60125481565b610fca83838360405180602001604052806000815250611644565b505050565b610fd7611da2565b8060139081610fe691906131af565b5050565b60115481565b6000610ffb82611a22565b9050919050565b61100a611da2565b61103782601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611e79565b5050565b6013805461104890612f8c565b80601f016020809104026020016040519081016040528092919081815260200182805461107490612f8c565b80156110c15780601f10611096576101008083540402835291602001916110c1565b820191906000526020600020905b8154815290600101906020018083116110a457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611130576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611189611da2565b6111936000612020565b565b61119d611da2565b601254600c60008282546111b191906132b0565b925050819055507f8d8664e4328cbcd16b52db004cff5622d17995140cefada9f4578b857f9b204e6111e16120e6565b600c546012546040516111f6939291906132e4565b60405180910390a161120a336012546120ee565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61123e611da2565b80600e8190555050565b611250611da2565b8060118190555050565b60606003805461126990612f8c565b80601f016020809104026020016040519081016040528092919081815260200182805461129590612f8c565b80156112e25780601f106112b7576101008083540402835291602001916112e2565b820191906000526020600020905b8154815290600101906020018083116112c557829003601f168201915b5050505050905090565b60105481565b6000600e5490506000600160115461130a91906132b0565b83611313610b71565b61131d91906132b0565b108015611376575060105483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461137391906132b0565b11155b806113b3575061138461120c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b905080156113c057600091505b81836113cc919061331b565b34101561140e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611405906133a9565b60405180910390fd5b6001601254600d5461142091906133c9565b61142a91906132b0565b83611433610b71565b61143d91906132b0565b1061147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490613449565b60405180910390fd5b6001600f5461148c91906132b0565b83106114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c4906134b5565b60405180910390fd5b801561152a5782601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461152291906132b0565b925050819055505b61153433846120ee565b505050565b8060076000611546611a15565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115f3611a15565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116389190612840565b60405180910390a35050565b61164f848484610bb4565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116b15761167a8484848461210c565b6116b0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606116c2826119b6565b611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f890613547565b60405180910390fd5b601361170c8361225c565b60405160200161171d929190613672565b6040516020818303038152906040529050919050565b600f5481565b600073f849de01b080adc3a814fabe1e2087475cf2e35473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361178b5760009050611798565b611795838361232a565b90505b92915050565b6117a6611da2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c90613713565b60405180910390fd5b61181e81612020565b50565b6118296123be565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187e906137a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ed90613811565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000816119c1611a1d565b111580156119d0575060005482105b8015611a0e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611a31611a1d565b11611ab757600054811015611ab65760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611ab4575b60008103611aaa576004600083600190039350838152602001908152602001600020549050611a80565b8092505050611ae9565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b768686846123c8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000806000600b60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603611d4d57600a6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000611d576123be565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686611d83919061331b565b611d8d9190613860565b90508160000151819350935050509250929050565b611daa6120e6565b73ffffffffffffffffffffffffffffffffffffffff16611dc861120c565b73ffffffffffffffffffffffffffffffffffffffff1614611e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e15906138dd565b60405180910390fd5b565b600260095403611e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5c90613949565b60405180910390fd5b6002600981905550565b6001600981905550565b611e816123be565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed6906137a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f45906139b5565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600b600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6121088282604051806020016040528060008152506123d1565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612132611a15565b8786866040518563ffffffff1660e01b81526004016121549493929190613a2a565b6020604051808303816000875af192505050801561219057506040513d601f19601f8201168201806040525081019061218d9190613a8b565b60015b612209573d80600081146121c0576040519150601f19603f3d011682016040523d82523d6000602084013e6121c5565b606091505b506000815103612201576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000600161226b8461246e565b01905060008167ffffffffffffffff81111561228a57612289612bac565b5b6040519080825280601f01601f1916602001820160405280156122bc5781602001600182028036833780820191505090505b509050600082602001820190505b60011561231f578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161231357612312613831565b5b049450600085036122ca575b819350505050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000612710905090565b60009392505050565b6123db83836125c1565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461246957600080549050600083820390505b61241b600086838060010194508661210c565b612451576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061240857816000541461246657600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106124cc577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816124c2576124c1613831565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612509576d04ee2d6d415b85acef810000000083816124ff576124fe613831565b5b0492506020810190505b662386f26fc10000831061253857662386f26fc10000838161252e5761252d613831565b5b0492506010810190505b6305f5e1008310612561576305f5e100838161255757612556613831565b5b0492506008810190505b612710831061258657612710838161257c5761257b613831565b5b0492506004810190505b606483106125a9576064838161259f5761259e613831565b5b0492506002810190505b600a83106125b8576001810190505b80915050919050565b60008054905060008203612601576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61260e6000848385611b59565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612685836126766000866000611b5f565b61267f8561277c565b17611b87565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461272657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506126eb565b5060008203612761576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506127776000848385611bb2565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127d5816127a0565b81146127e057600080fd5b50565b6000813590506127f2816127cc565b92915050565b60006020828403121561280e5761280d612796565b5b600061281c848285016127e3565b91505092915050565b60008115159050919050565b61283a81612825565b82525050565b60006020820190506128556000830184612831565b92915050565b6000819050919050565b61286e8161285b565b82525050565b60006020820190506128896000830184612865565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128ba8261288f565b9050919050565b6128ca816128af565b81146128d557600080fd5b50565b6000813590506128e7816128c1565b92915050565b60006bffffffffffffffffffffffff82169050919050565b61290e816128ed565b811461291957600080fd5b50565b60008135905061292b81612905565b92915050565b6000806040838503121561294857612947612796565b5b6000612956858286016128d8565b92505060206129678582860161291c565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129ab578082015181840152602081019050612990565b60008484015250505050565b6000601f19601f8301169050919050565b60006129d382612971565b6129dd818561297c565b93506129ed81856020860161298d565b6129f6816129b7565b840191505092915050565b60006020820190508181036000830152612a1b81846129c8565b905092915050565b612a2c8161285b565b8114612a3757600080fd5b50565b600081359050612a4981612a23565b92915050565b600060208284031215612a6557612a64612796565b5b6000612a7384828501612a3a565b91505092915050565b612a85816128af565b82525050565b6000602082019050612aa06000830184612a7c565b92915050565b60008060408385031215612abd57612abc612796565b5b6000612acb858286016128d8565b9250506020612adc85828601612a3a565b9150509250929050565b600080600060608486031215612aff57612afe612796565b5b6000612b0d868287016128d8565b9350506020612b1e868287016128d8565b9250506040612b2f86828701612a3a565b9150509250925092565b60008060408385031215612b5057612b4f612796565b5b6000612b5e85828601612a3a565b9250506020612b6f85828601612a3a565b9150509250929050565b6000604082019050612b8e6000830185612a7c565b612b9b6020830184612865565b9392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612be4826129b7565b810181811067ffffffffffffffff82111715612c0357612c02612bac565b5b80604052505050565b6000612c1661278c565b9050612c228282612bdb565b919050565b600067ffffffffffffffff821115612c4257612c41612bac565b5b612c4b826129b7565b9050602081019050919050565b82818337600083830152505050565b6000612c7a612c7584612c27565b612c0c565b905082815260208101848484011115612c9657612c95612ba7565b5b612ca1848285612c58565b509392505050565b600082601f830112612cbe57612cbd612ba2565b5b8135612cce848260208601612c67565b91505092915050565b600060208284031215612ced57612cec612796565b5b600082013567ffffffffffffffff811115612d0b57612d0a61279b565b5b612d1784828501612ca9565b91505092915050565b60008060408385031215612d3757612d36612796565b5b6000612d4585828601612a3a565b9250506020612d568582860161291c565b9150509250929050565b600060208284031215612d7657612d75612796565b5b6000612d84848285016128d8565b91505092915050565b612d9681612825565b8114612da157600080fd5b50565b600081359050612db381612d8d565b92915050565b60008060408385031215612dd057612dcf612796565b5b6000612dde858286016128d8565b9250506020612def85828601612da4565b9150509250929050565b600067ffffffffffffffff821115612e1457612e13612bac565b5b612e1d826129b7565b9050602081019050919050565b6000612e3d612e3884612df9565b612c0c565b905082815260208101848484011115612e5957612e58612ba7565b5b612e64848285612c58565b509392505050565b600082601f830112612e8157612e80612ba2565b5b8135612e91848260208601612e2a565b91505092915050565b60008060008060808587031215612eb457612eb3612796565b5b6000612ec2878288016128d8565b9450506020612ed3878288016128d8565b9350506040612ee487828801612a3a565b925050606085013567ffffffffffffffff811115612f0557612f0461279b565b5b612f1187828801612e6c565b91505092959194509250565b60008060408385031215612f3457612f33612796565b5b6000612f42858286016128d8565b9250506020612f53858286016128d8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fa457607f821691505b602082108103612fb757612fb6612f5d565b5b50919050565b600081905092915050565b50565b6000612fd8600083612fbd565b9150612fe382612fc8565b600082019050919050565b6000612ff982612fcb565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026130657fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613028565b61306f8683613028565b95508019841693508086168417925050509392505050565b6000819050919050565b60006130ac6130a76130a28461285b565b613087565b61285b565b9050919050565b6000819050919050565b6130c683613091565b6130da6130d2826130b3565b848454613035565b825550505050565b600090565b6130ef6130e2565b6130fa8184846130bd565b505050565b5b8181101561311e576131136000826130e7565b600181019050613100565b5050565b601f8211156131635761313481613003565b61313d84613018565b8101602085101561314c578190505b61316061315885613018565b8301826130ff565b50505b505050565b600082821c905092915050565b600061318660001984600802613168565b1980831691505092915050565b600061319f8383613175565b9150826002028217905092915050565b6131b882612971565b67ffffffffffffffff8111156131d1576131d0612bac565b5b6131db8254612f8c565b6131e6828285613122565b600060209050601f8311600181146132195760008415613207578287015190505b6132118582613193565b865550613279565b601f19841661322786613003565b60005b8281101561324f5784890151825560018201915060208501945060208101905061322a565b8683101561326c5784890151613268601f891682613175565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132bb8261285b565b91506132c68361285b565b92508282019050808211156132de576132dd613281565b5b92915050565b60006060820190506132f96000830186612a7c565b6133066020830185612865565b6133136040830184612865565b949350505050565b60006133268261285b565b91506133318361285b565b925082820261333f8161285b565b9150828204841483151761335657613355613281565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000613393601d8361297c565b915061339e8261335d565b602082019050919050565b600060208201905081810360008301526133c281613386565b9050919050565b60006133d48261285b565b91506133df8361285b565b92508282039050818111156133f7576133f6613281565b5b92915050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b600061343360098361297c565b915061343e826133fd565b602082019050919050565b6000602082019050818103600083015261346281613426565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b600061349f60138361297c565b91506134aa82613469565b602082019050919050565b600060208201905081810360008301526134ce81613492565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613531602f8361297c565b915061353c826134d5565b604082019050919050565b6000602082019050818103600083015261356081613524565b9050919050565b600081905092915050565b6000815461357f81612f8c565b6135898186613567565b945060018216600081146135a457600181146135b9576135ec565b60ff19831686528115158202860193506135ec565b6135c285613003565b60005b838110156135e4578154818901526001820191506020810190506135c5565b838801955050505b50505092915050565b600061360082612971565b61360a8185613567565b935061361a81856020860161298d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061365c600583613567565b915061366782613626565b600582019050919050565b600061367e8285613572565b915061368a82846135f5565b91506136958261364f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136fd60268361297c565b9150613708826136a1565b604082019050919050565b6000602082019050818103600083015261372c816136f0565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600061378f602a8361297c565b915061379a82613733565b604082019050919050565b600060208201905081810360008301526137be81613782565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006137fb60198361297c565b9150613806826137c5565b602082019050919050565b6000602082019050818103600083015261382a816137ee565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061386b8261285b565b91506138768361285b565b92508261388657613885613831565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138c760208361297c565b91506138d282613891565b602082019050919050565b600060208201905081810360008301526138f6816138ba565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613933601f8361297c565b915061393e826138fd565b602082019050919050565b6000602082019050818103600083015261396281613926565b9050919050565b7f455243323938313a20496e76616c696420706172616d65746572730000000000600082015250565b600061399f601b8361297c565b91506139aa82613969565b602082019050919050565b600060208201905081810360008301526139ce81613992565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006139fc826139d5565b613a0681856139e0565b9350613a1681856020860161298d565b613a1f816129b7565b840191505092915050565b6000608082019050613a3f6000830187612a7c565b613a4c6020830186612a7c565b613a596040830185612865565b8181036060830152613a6b81846139f1565b905095945050505050565b600081519050613a85816127cc565b92915050565b600060208284031215613aa157613aa0612796565b5b6000613aaf84828501613a76565b9150509291505056fea26469706673582212201b8538d7b75b0f79cf054548dfd6507b5d69f391a8f8fb6334e5aaca76dfa78a64736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a474336534c6e657a32516879676f7a686e4c7569796f58756752544346714b32597a335073506e335041782f00000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636352211e1161011857806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde146106dd578063c87b56dd146106f9578063de314a5914610736578063e985e9c514610761578063f2fde38b1461079e57610204565b806395d89b41146106425780639cb57d201461066d578063a0712d6814610698578063a22cb465146106b457610204565b8063715018a6116100e7578063715018a6146105975780637c69e207146105ae5780638da5cb5b146105c557806391b7f5ed146105f057806392910eec1461061957610204565b80636352211e146104c957806367a4f4a9146105065780636c0360eb1461052f57806370a082311461055a57610204565b8063190866921161019b5780633ccfd60b1161016a5780633ccfd60b1461042457806341c66d0a1461042e57806342842e0e1461045957806355f804b3146104755780635e1c4b601461049e57610204565b8063190866921461037457806322f4596f1461039f57806323b872dd146103ca5780632a55205a146103e657610204565b8063081812fc116101d7578063081812fc146102c5578063095ea7b3146103025780630afb04db1461031e57806318160ddd1461034957610204565b806301ffc9a7146102095780630387da421461024657806304634d8d1461027157806306fdde031461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906127f8565b6107c7565b60405161023d9190612840565b60405180910390f35b34801561025257600080fd5b5061025b6108c1565b6040516102689190612874565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612931565b6108c7565b005b3480156102a657600080fd5b506102af610916565b6040516102bc9190612a01565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e79190612a4f565b6109a8565b6040516102f99190612a8b565b60405180910390f35b61031c60048036038101906103179190612aa6565b610a27565b005b34801561032a57600080fd5b50610333610b6b565b6040516103409190612874565b60405180910390f35b34801561035557600080fd5b5061035e610b71565b60405161036b9190612874565b60405180910390f35b34801561038057600080fd5b50610389610b88565b6040516103969190612a8b565b60405180910390f35b3480156103ab57600080fd5b506103b4610bae565b6040516103c19190612874565b60405180910390f35b6103e460048036038101906103df9190612ae6565b610bb4565b005b3480156103f257600080fd5b5061040d60048036038101906104089190612b39565b610ed6565b60405161041b929190612b79565b60405180910390f35b61042c610f18565b005b34801561043a57600080fd5b50610443610fa9565b6040516104509190612874565b60405180910390f35b610473600480360381019061046e9190612ae6565b610faf565b005b34801561048157600080fd5b5061049c60048036038101906104979190612cd7565b610fcf565b005b3480156104aa57600080fd5b506104b3610fea565b6040516104c09190612874565b60405180910390f35b3480156104d557600080fd5b506104f060048036038101906104eb9190612a4f565b610ff0565b6040516104fd9190612a8b565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190612d20565b611002565b005b34801561053b57600080fd5b5061054461103b565b6040516105519190612a01565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190612d60565b6110c9565b60405161058e9190612874565b60405180910390f35b3480156105a357600080fd5b506105ac611181565b005b3480156105ba57600080fd5b506105c3611195565b005b3480156105d157600080fd5b506105da61120c565b6040516105e79190612a8b565b60405180910390f35b3480156105fc57600080fd5b5061061760048036038101906106129190612a4f565b611236565b005b34801561062557600080fd5b50610640600480360381019061063b9190612a4f565b611248565b005b34801561064e57600080fd5b5061065761125a565b6040516106649190612a01565b60405180910390f35b34801561067957600080fd5b506106826112ec565b60405161068f9190612874565b60405180910390f35b6106b260048036038101906106ad9190612a4f565b6112f2565b005b3480156106c057600080fd5b506106db60048036038101906106d69190612db9565b611539565b005b6106f760048036038101906106f29190612e9a565b611644565b005b34801561070557600080fd5b50610720600480360381019061071b9190612a4f565b6116b7565b60405161072d9190612a01565b60405180910390f35b34801561074257600080fd5b5061074b611733565b6040516107589190612874565b60405180910390f35b34801561076d57600080fd5b5061078860048036038101906107839190612f1d565b611739565b6040516107959190612840565b60405180910390f35b3480156107aa57600080fd5b506107c560048036038101906107c09190612d60565b61179e565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085a57506301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061088a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ba5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600e5481565b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506109128282611821565b5050565b60606002805461092590612f8c565b80601f016020809104026020016040519081016040528092919081815260200182805461095190612f8c565b801561099e5780601f106109735761010080835404028352916020019161099e565b820191906000526020600020905b81548152906001019060200180831161098157829003601f168201915b5050505050905090565b60006109b3826119b6565b6109e9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3282610ff0565b90508073ffffffffffffffffffffffffffffffffffffffff16610a53611a15565b73ffffffffffffffffffffffffffffffffffffffff1614610ab657610a7f81610a7a611a15565b611739565b610ab5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b6000610b7b611a1d565b6001546000540303905090565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b6000610bbf82611a22565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c26576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c3284611aee565b91509150610c488187610c43611a15565b611b15565b610c9457610c5d86610c58611a15565b611739565b610c93576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610cfa576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d078686866001611b59565b8015610d1257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610de085610dbc888887611b5f565b7c020000000000000000000000000000000000000000000000000000000017611b87565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e665760006001850190506000600460008381526020019081526020016000205403610e64576000548114610e63578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ece8686866001611bb2565b505050505050565b6000806000610ee58585611bb8565b915050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b610f20611da2565b610f28611e20565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610f4e90612fee565b60006040518083038185875af1925050503d8060008114610f8b576040519150601f19603f3d011682016040523d82523d6000602084013e610f90565b606091505b5050905080610f9e57600080fd5b50610fa7611e6f565b565b60125481565b610fca83838360405180602001604052806000815250611644565b505050565b610fd7611da2565b8060139081610fe691906131af565b5050565b60115481565b6000610ffb82611a22565b9050919050565b61100a611da2565b61103782601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611e79565b5050565b6013805461104890612f8c565b80601f016020809104026020016040519081016040528092919081815260200182805461107490612f8c565b80156110c15780601f10611096576101008083540402835291602001916110c1565b820191906000526020600020905b8154815290600101906020018083116110a457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611130576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611189611da2565b6111936000612020565b565b61119d611da2565b601254600c60008282546111b191906132b0565b925050819055507f8d8664e4328cbcd16b52db004cff5622d17995140cefada9f4578b857f9b204e6111e16120e6565b600c546012546040516111f6939291906132e4565b60405180910390a161120a336012546120ee565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61123e611da2565b80600e8190555050565b611250611da2565b8060118190555050565b60606003805461126990612f8c565b80601f016020809104026020016040519081016040528092919081815260200182805461129590612f8c565b80156112e25780601f106112b7576101008083540402835291602001916112e2565b820191906000526020600020905b8154815290600101906020018083116112c557829003601f168201915b5050505050905090565b60105481565b6000600e5490506000600160115461130a91906132b0565b83611313610b71565b61131d91906132b0565b108015611376575060105483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461137391906132b0565b11155b806113b3575061138461120c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b905080156113c057600091505b81836113cc919061331b565b34101561140e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611405906133a9565b60405180910390fd5b6001601254600d5461142091906133c9565b61142a91906132b0565b83611433610b71565b61143d91906132b0565b1061147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490613449565b60405180910390fd5b6001600f5461148c91906132b0565b83106114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c4906134b5565b60405180910390fd5b801561152a5782601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461152291906132b0565b925050819055505b61153433846120ee565b505050565b8060076000611546611a15565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115f3611a15565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116389190612840565b60405180910390a35050565b61164f848484610bb4565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116b15761167a8484848461210c565b6116b0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606116c2826119b6565b611701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f890613547565b60405180910390fd5b601361170c8361225c565b60405160200161171d929190613672565b6040516020818303038152906040529050919050565b600f5481565b600073f849de01b080adc3a814fabe1e2087475cf2e35473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361178b5760009050611798565b611795838361232a565b90505b92915050565b6117a6611da2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c90613713565b60405180910390fd5b61181e81612020565b50565b6118296123be565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187e906137a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ed90613811565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000816119c1611a1d565b111580156119d0575060005482105b8015611a0e575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611a31611a1d565b11611ab757600054811015611ab65760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611ab4575b60008103611aaa576004600083600190039350838152602001908152602001600020549050611a80565b8092505050611ae9565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b768686846123c8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000806000600b60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603611d4d57600a6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000611d576123be565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686611d83919061331b565b611d8d9190613860565b90508160000151819350935050509250929050565b611daa6120e6565b73ffffffffffffffffffffffffffffffffffffffff16611dc861120c565b73ffffffffffffffffffffffffffffffffffffffff1614611e1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e15906138dd565b60405180910390fd5b565b600260095403611e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5c90613949565b60405180910390fd5b6002600981905550565b6001600981905550565b611e816123be565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed6906137a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f45906139b5565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600b600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6121088282604051806020016040528060008152506123d1565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612132611a15565b8786866040518563ffffffff1660e01b81526004016121549493929190613a2a565b6020604051808303816000875af192505050801561219057506040513d601f19601f8201168201806040525081019061218d9190613a8b565b60015b612209573d80600081146121c0576040519150601f19603f3d011682016040523d82523d6000602084013e6121c5565b606091505b506000815103612201576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000600161226b8461246e565b01905060008167ffffffffffffffff81111561228a57612289612bac565b5b6040519080825280601f01601f1916602001820160405280156122bc5781602001600182028036833780820191505090505b509050600082602001820190505b60011561231f578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161231357612312613831565b5b049450600085036122ca575b819350505050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000612710905090565b60009392505050565b6123db83836125c1565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461246957600080549050600083820390505b61241b600086838060010194508661210c565b612451576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061240857816000541461246657600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106124cc577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816124c2576124c1613831565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612509576d04ee2d6d415b85acef810000000083816124ff576124fe613831565b5b0492506020810190505b662386f26fc10000831061253857662386f26fc10000838161252e5761252d613831565b5b0492506010810190505b6305f5e1008310612561576305f5e100838161255757612556613831565b5b0492506008810190505b612710831061258657612710838161257c5761257b613831565b5b0492506004810190505b606483106125a9576064838161259f5761259e613831565b5b0492506002810190505b600a83106125b8576001810190505b80915050919050565b60008054905060008203612601576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61260e6000848385611b59565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612685836126766000866000611b5f565b61267f8561277c565b17611b87565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461272657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506126eb565b5060008203612761576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506127776000848385611bb2565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127d5816127a0565b81146127e057600080fd5b50565b6000813590506127f2816127cc565b92915050565b60006020828403121561280e5761280d612796565b5b600061281c848285016127e3565b91505092915050565b60008115159050919050565b61283a81612825565b82525050565b60006020820190506128556000830184612831565b92915050565b6000819050919050565b61286e8161285b565b82525050565b60006020820190506128896000830184612865565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128ba8261288f565b9050919050565b6128ca816128af565b81146128d557600080fd5b50565b6000813590506128e7816128c1565b92915050565b60006bffffffffffffffffffffffff82169050919050565b61290e816128ed565b811461291957600080fd5b50565b60008135905061292b81612905565b92915050565b6000806040838503121561294857612947612796565b5b6000612956858286016128d8565b92505060206129678582860161291c565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129ab578082015181840152602081019050612990565b60008484015250505050565b6000601f19601f8301169050919050565b60006129d382612971565b6129dd818561297c565b93506129ed81856020860161298d565b6129f6816129b7565b840191505092915050565b60006020820190508181036000830152612a1b81846129c8565b905092915050565b612a2c8161285b565b8114612a3757600080fd5b50565b600081359050612a4981612a23565b92915050565b600060208284031215612a6557612a64612796565b5b6000612a7384828501612a3a565b91505092915050565b612a85816128af565b82525050565b6000602082019050612aa06000830184612a7c565b92915050565b60008060408385031215612abd57612abc612796565b5b6000612acb858286016128d8565b9250506020612adc85828601612a3a565b9150509250929050565b600080600060608486031215612aff57612afe612796565b5b6000612b0d868287016128d8565b9350506020612b1e868287016128d8565b9250506040612b2f86828701612a3a565b9150509250925092565b60008060408385031215612b5057612b4f612796565b5b6000612b5e85828601612a3a565b9250506020612b6f85828601612a3a565b9150509250929050565b6000604082019050612b8e6000830185612a7c565b612b9b6020830184612865565b9392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612be4826129b7565b810181811067ffffffffffffffff82111715612c0357612c02612bac565b5b80604052505050565b6000612c1661278c565b9050612c228282612bdb565b919050565b600067ffffffffffffffff821115612c4257612c41612bac565b5b612c4b826129b7565b9050602081019050919050565b82818337600083830152505050565b6000612c7a612c7584612c27565b612c0c565b905082815260208101848484011115612c9657612c95612ba7565b5b612ca1848285612c58565b509392505050565b600082601f830112612cbe57612cbd612ba2565b5b8135612cce848260208601612c67565b91505092915050565b600060208284031215612ced57612cec612796565b5b600082013567ffffffffffffffff811115612d0b57612d0a61279b565b5b612d1784828501612ca9565b91505092915050565b60008060408385031215612d3757612d36612796565b5b6000612d4585828601612a3a565b9250506020612d568582860161291c565b9150509250929050565b600060208284031215612d7657612d75612796565b5b6000612d84848285016128d8565b91505092915050565b612d9681612825565b8114612da157600080fd5b50565b600081359050612db381612d8d565b92915050565b60008060408385031215612dd057612dcf612796565b5b6000612dde858286016128d8565b9250506020612def85828601612da4565b9150509250929050565b600067ffffffffffffffff821115612e1457612e13612bac565b5b612e1d826129b7565b9050602081019050919050565b6000612e3d612e3884612df9565b612c0c565b905082815260208101848484011115612e5957612e58612ba7565b5b612e64848285612c58565b509392505050565b600082601f830112612e8157612e80612ba2565b5b8135612e91848260208601612e2a565b91505092915050565b60008060008060808587031215612eb457612eb3612796565b5b6000612ec2878288016128d8565b9450506020612ed3878288016128d8565b9350506040612ee487828801612a3a565b925050606085013567ffffffffffffffff811115612f0557612f0461279b565b5b612f1187828801612e6c565b91505092959194509250565b60008060408385031215612f3457612f33612796565b5b6000612f42858286016128d8565b9250506020612f53858286016128d8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612fa457607f821691505b602082108103612fb757612fb6612f5d565b5b50919050565b600081905092915050565b50565b6000612fd8600083612fbd565b9150612fe382612fc8565b600082019050919050565b6000612ff982612fcb565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026130657fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613028565b61306f8683613028565b95508019841693508086168417925050509392505050565b6000819050919050565b60006130ac6130a76130a28461285b565b613087565b61285b565b9050919050565b6000819050919050565b6130c683613091565b6130da6130d2826130b3565b848454613035565b825550505050565b600090565b6130ef6130e2565b6130fa8184846130bd565b505050565b5b8181101561311e576131136000826130e7565b600181019050613100565b5050565b601f8211156131635761313481613003565b61313d84613018565b8101602085101561314c578190505b61316061315885613018565b8301826130ff565b50505b505050565b600082821c905092915050565b600061318660001984600802613168565b1980831691505092915050565b600061319f8383613175565b9150826002028217905092915050565b6131b882612971565b67ffffffffffffffff8111156131d1576131d0612bac565b5b6131db8254612f8c565b6131e6828285613122565b600060209050601f8311600181146132195760008415613207578287015190505b6132118582613193565b865550613279565b601f19841661322786613003565b60005b8281101561324f5784890151825560018201915060208501945060208101905061322a565b8683101561326c5784890151613268601f891682613175565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132bb8261285b565b91506132c68361285b565b92508282019050808211156132de576132dd613281565b5b92915050565b60006060820190506132f96000830186612a7c565b6133066020830185612865565b6133136040830184612865565b949350505050565b60006133268261285b565b91506133318361285b565b925082820261333f8161285b565b9150828204841483151761335657613355613281565b5b5092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000613393601d8361297c565b915061339e8261335d565b602082019050919050565b600060208201905081810360008301526133c281613386565b9050919050565b60006133d48261285b565b91506133df8361285b565b92508282039050818111156133f7576133f6613281565b5b92915050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b600061343360098361297c565b915061343e826133fd565b602082019050919050565b6000602082019050818103600083015261346281613426565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b600061349f60138361297c565b91506134aa82613469565b602082019050919050565b600060208201905081810360008301526134ce81613492565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613531602f8361297c565b915061353c826134d5565b604082019050919050565b6000602082019050818103600083015261356081613524565b9050919050565b600081905092915050565b6000815461357f81612f8c565b6135898186613567565b945060018216600081146135a457600181146135b9576135ec565b60ff19831686528115158202860193506135ec565b6135c285613003565b60005b838110156135e4578154818901526001820191506020810190506135c5565b838801955050505b50505092915050565b600061360082612971565b61360a8185613567565b935061361a81856020860161298d565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061365c600583613567565b915061366782613626565b600582019050919050565b600061367e8285613572565b915061368a82846135f5565b91506136958261364f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136fd60268361297c565b9150613708826136a1565b604082019050919050565b6000602082019050818103600083015261372c816136f0565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600061378f602a8361297c565b915061379a82613733565b604082019050919050565b600060208201905081810360008301526137be81613782565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006137fb60198361297c565b9150613806826137c5565b602082019050919050565b6000602082019050818103600083015261382a816137ee565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061386b8261285b565b91506138768361285b565b92508261388657613885613831565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138c760208361297c565b91506138d282613891565b602082019050919050565b600060208201905081810360008301526138f6816138ba565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613933601f8361297c565b915061393e826138fd565b602082019050919050565b6000602082019050818103600083015261396281613926565b9050919050565b7f455243323938313a20496e76616c696420706172616d65746572730000000000600082015250565b600061399f601b8361297c565b91506139aa82613969565b602082019050919050565b600060208201905081810360008301526139ce81613992565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006139fc826139d5565b613a0681856139e0565b9350613a1681856020860161298d565b613a1f816129b7565b840191505092915050565b6000608082019050613a3f6000830187612a7c565b613a4c6020830186612a7c565b613a596040830185612865565b8181036060830152613a6b81846139f1565b905095945050505050565b600081519050613a85816127cc565b92915050565b600060208284031215613aa157613aa0612796565b5b6000613aaf84828501613a76565b9150509291505056fea26469706673582212201b8538d7b75b0f79cf054548dfd6507b5d69f391a8f8fb6334e5aaca76dfa78a64736f6c63430008130033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a474336534c6e657a32516879676f7a686e4c7569796f58756752544346714b32597a335073506e335041782f00000000000000000000

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

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d5a474336534c6e657a32516879676f7a686e4c7569796f
Arg [3] : 58756752544346714b32597a335073506e335041782f00000000000000000000


Deployed Bytecode Sourcemap

80238:4380:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81928:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80456:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81080:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48041:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54532:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53965:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80387:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43792:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80824:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80417:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58171:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81481:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;84410:205;;;:::i;:::-;;80639:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61092:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84094:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80591:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49434:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81295:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80709:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44976:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27918:103;;;;;;;;;;;;;:::i;:::-;;83074:182;;;;;;;;;;;;;:::i;:::-;;27270:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84304:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84191:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48217;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80546:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82356:708;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55090:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61883:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;83735:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80502:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83381:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28176:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81928:416;82031:4;82070:26;82055:41;;;:11;:41;;;;:84;;;;82129:10;82114:25;;:11;:25;;;;82055:84;:161;;;;82206:10;82191:25;;:11;:25;;;;82055:161;:238;;;;82283:10;82268:25;;:11;:25;;;;82055:238;82048:245;;81928:416;;;:::o;80456:39::-;;;;:::o;81080:171::-;81179:9;81166:10;;:22;;;;;;;;;;;;;;;;;;81199:44;81218:9;81229:13;81199:18;:44::i;:::-;81080:171;;:::o;48041:100::-;48095:13;48128:5;48121:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48041:100;:::o;54532:218::-;54608:7;54633:16;54641:7;54633;:16::i;:::-;54628:64;;54658:34;;;;;;;;;;;;;;54628:64;54712:15;:24;54728:7;54712:24;;;;;;;;;;;:30;;;;;;;;;;;;54705:37;;54532:218;;;:::o;53965:408::-;54054:13;54070:16;54078:7;54070;:16::i;:::-;54054:32;;54126:5;54103:28;;:19;:17;:19::i;:::-;:28;;;54099:175;;54151:44;54168:5;54175:19;:17;:19::i;:::-;54151:16;:44::i;:::-;54146:128;;54223:35;;;;;;;;;;;;;;54146:128;54099:175;54319:2;54286:15;:24;54302:7;54286:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;54357:7;54353:2;54337:28;;54346:5;54337:28;;;;;;;;;;;;54043:330;53965:408;;:::o;80387:23::-;;;;:::o;43792:323::-;43853:7;44081:15;:13;:15::i;:::-;44066:12;;44050:13;;:28;:46;44043:53;;43792:323;:::o;80824:25::-;;;;;;;;;;;;;:::o;80417:32::-;;;;:::o;58171:2825::-;58313:27;58343;58362:7;58343:18;:27::i;:::-;58313:57;;58428:4;58387:45;;58403:19;58387:45;;;58383:86;;58441:28;;;;;;;;;;;;;;58383:86;58483:27;58512:23;58539:35;58566:7;58539:26;:35::i;:::-;58482:92;;;;58674:68;58699:15;58716:4;58722:19;:17;:19::i;:::-;58674:24;:68::i;:::-;58669:180;;58762:43;58779:4;58785:19;:17;:19::i;:::-;58762:16;:43::i;:::-;58757:92;;58814:35;;;;;;;;;;;;;;58757:92;58669:180;58880:1;58866:16;;:2;:16;;;58862:52;;58891:23;;;;;;;;;;;;;;58862:52;58927:43;58949:4;58955:2;58959:7;58968:1;58927:21;:43::i;:::-;59063:15;59060:160;;;59203:1;59182:19;59175:30;59060:160;59600:18;:24;59619:4;59600:24;;;;;;;;;;;;;;;;59598:26;;;;;;;;;;;;59669:18;:22;59688:2;59669:22;;;;;;;;;;;;;;;;59667:24;;;;;;;;;;;59991:146;60028:2;60077:45;60092:4;60098:2;60102:19;60077:14;:45::i;:::-;40191:8;60049:73;59991:18;:146::i;:::-;59962:17;:26;59980:7;59962:26;;;;;;;;;;;:175;;;;60308:1;40191:8;60257:19;:47;:52;60253:627;;60330:19;60362:1;60352:7;:11;60330:33;;60519:1;60485:17;:30;60503:11;60485:30;;;;;;;;;;;;:35;60481:384;;60623:13;;60608:11;:28;60604:242;;60803:19;60770:17;:30;60788:11;60770:30;;;;;;;;;;;:52;;;;60604:242;60481:384;60311:569;60253:627;60927:7;60923:2;60908:27;;60917:4;60908:27;;;;;;;;;;;;60946:42;60967:4;60973:2;60977:7;60986:1;60946:20;:42::i;:::-;58302:2694;;;58171:2825;;;:::o;81481:365::-;81570:7;81579;81664:15;81683:39;81701:8;81711:10;81683:17;:39::i;:::-;81661:61;;;81815:10;;;;;;;;;;;81827;81807:31;;;;;81481:365;;;;;:::o;84410:205::-;27156:13;:11;:13::i;:::-;24541:21:::1;:19;:21::i;:::-;84480:12:::2;84506:10;84498:24;;84544:21;84498:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84479:101;;;84599:7;84591:16;;;::::0;::::2;;84468:147;24585:20:::1;:18;:20::i;:::-;84410:205::o:0;80639:28::-;;;;:::o;61092:193::-;61238:39;61255:4;61261:2;61265:7;61238:39;;;;;;;;;;;;:16;:39::i;:::-;61092:193;;;:::o;84094:88::-;27156:13;:11;:13::i;:::-;84171:3:::1;84161:7;:13;;;;;;:::i;:::-;;84094:88:::0;:::o;80591:40::-;;;;:::o;49434:152::-;49506:7;49549:27;49568:7;49549:18;:27::i;:::-;49526:52;;49434:152;;;:::o;81295:177::-;27156:13;:11;:13::i;:::-;81413:51:::1;81430:7;81439:10;;;;;;;;;;;81451:12;81413:16;:51::i;:::-;81295:177:::0;;:::o;80709:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44976:233::-;45048:7;45089:1;45072:19;;:5;:19;;;45068:60;;45100:28;;;;;;;;;;;;;;45068:60;39135:13;45146:18;:25;45165:5;45146:25;;;;;;;;;;;;;;;;:55;45139:62;;44976:233;;;:::o;27918:103::-;27156:13;:11;:13::i;:::-;27983:30:::1;28010:1;27983:18;:30::i;:::-;27918:103::o:0;83074:182::-;27156:13;:11;:13::i;:::-;83133:9:::1;;83121:8;;:21;;;;;;;:::i;:::-;;;;;;;;83158:47;83171:12;:10;:12::i;:::-;83185:8;;83195:9;;83158:47;;;;;;;;:::i;:::-;;;;;;;;83216:32;83226:10;83238:9;;83216;:32::i;:::-;83074:182::o:0;27270:87::-;27316:7;27343:6;;;;;;;;;;;27336:13;;27270:87;:::o;84304:97::-;27156:13;:11;:13::i;:::-;84384:9:::1;84371:10;:22;;;;84304:97:::0;:::o;84191:104::-;27156:13;:11;:13::i;:::-;84281:6:::1;84260:18;:27;;;;84191:104:::0;:::o;48217:::-;48273:13;48306:7;48299:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48217:104;:::o;80546:38::-;;;;:::o;82356:708::-;82413:12;82428:10;;82413:25;;82449:11;82510:1;82489:18;;:22;;;;:::i;:::-;82481:5;82465:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:46;82464:127;;;;;82571:19;;82562:5;82530:17;:29;82548:10;82530:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:60;;82464:127;82463:169;;;;82624:7;:5;:7::i;:::-;82610:21;;:10;:21;;;82463:169;82449:183;;82650:6;82646:47;;;82680:1;82673:8;;82646:47;82735:4;82727:5;:12;;;;:::i;:::-;82714:9;:25;;82706:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;82841:1;82829:9;;82816:10;;:22;;;;:::i;:::-;:26;;;;:::i;:::-;82808:5;82792:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:50;82784:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;82899:1;82883:13;;:17;;;;:::i;:::-;82875:5;:25;82867:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;82942:6;82938:77;;;82998:5;82965:17;:29;82983:10;82965:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;82938:77;83028:28;83038:10;83050:5;83028:9;:28::i;:::-;82402:662;;82356:708;:::o;55090:234::-;55237:8;55185:18;:39;55204:19;:17;:19::i;:::-;55185:39;;;;;;;;;;;;;;;:49;55225:8;55185:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;55297:8;55261:55;;55276:19;:17;:19::i;:::-;55261:55;;;55307:8;55261:55;;;;;;:::i;:::-;;;;;;;;55090:234;;:::o;61883:407::-;62058:31;62071:4;62077:2;62081:7;62058:12;:31::i;:::-;62122:1;62104:2;:14;;;:19;62100:183;;62143:56;62174:4;62180:2;62184:7;62193:5;62143:30;:56::i;:::-;62138:145;;62227:40;;;;;;;;;;;;;;62138:145;62100:183;61883:407;;;;:::o;83735:350::-;83853:13;83906:16;83914:7;83906;:16::i;:::-;83884:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;84039:7;84048:18;:7;:16;:18::i;:::-;84022:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;84008:69;;83735:350;;;:::o;80502:34::-;;;;:::o;83381:339::-;83506:4;83567:42;83555:54;;:8;:54;;;83551:99;;83633:5;83626:12;;;;83551:99;83673:39;83696:5;83703:8;83673:22;:39::i;:::-;83666:46;;83381:339;;;;;:::o;28176:201::-;27156:13;:11;:13::i;:::-;28285:1:::1;28265:22;;:8;:22;;::::0;28257:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;28341:28;28360:8;28341:18;:28::i;:::-;28176:201:::0;:::o;5592:332::-;5711:17;:15;:17::i;:::-;5695:33;;:12;:33;;;;5687:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;5814:1;5794:22;;:8;:22;;;5786:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;5881:35;;;;;;;;5893:8;5881:35;;;;;;5903:12;5881:35;;;;;5859:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5592:332;;:::o;55903:282::-;55968:4;56024:7;56005:15;:13;:15::i;:::-;:26;;:66;;;;;56058:13;;56048:7;:23;56005:66;:153;;;;;56157:1;39911:8;56109:17;:26;56127:7;56109:26;;;;;;;;;;;;:44;:49;56005:153;55985:173;;55903:282;;;:::o;78211:105::-;78271:7;78298:10;78291:17;;78211:105;:::o;43308:92::-;43364:7;43308:92;:::o;50589:1275::-;50656:7;50676:12;50691:7;50676:22;;50759:4;50740:15;:13;:15::i;:::-;:23;50736:1061;;50793:13;;50786:4;:20;50782:1015;;;50831:14;50848:17;:23;50866:4;50848:23;;;;;;;;;;;;50831:40;;50965:1;39911:8;50937:6;:24;:29;50933:845;;51602:113;51619:1;51609:6;:11;51602:113;;51662:17;:25;51680:6;;;;;;;51662:25;;;;;;;;;;;;51653:34;;51602:113;;;51748:6;51741:13;;;;;;50933:845;50808:989;50782:1015;50736:1061;51825:31;;;;;;;;;;;;;;50589:1275;;;;:::o;57066:485::-;57168:27;57197:23;57238:38;57279:15;:24;57295:7;57279:24;;;;;;;;;;;57238:65;;57456:18;57433:41;;57513:19;57507:26;57488:45;;57418:126;57066:485;;;:::o;56294:659::-;56443:11;56608:16;56601:5;56597:28;56588:37;;56768:16;56757:9;56753:32;56740:45;;56918:15;56907:9;56904:30;56896:5;56885:9;56882:20;56879:56;56869:66;;56294:659;;;;;:::o;62952:159::-;;;;;:::o;77520:311::-;77655:7;77675:16;40315:3;77701:19;:41;;77675:68;;40315:3;77769:31;77780:4;77786:2;77790:9;77769:10;:31::i;:::-;77761:40;;:62;;77754:69;;;77520:311;;;;;:::o;52412:450::-;52492:14;52660:16;52653:5;52649:28;52640:37;;52837:5;52823:11;52798:23;52794:41;52791:52;52784:5;52781:63;52771:73;;52412:450;;;;:::o;63776:158::-;;;;;:::o;4500:442::-;4597:7;4606;4626:26;4655:17;:27;4673:8;4655:27;;;;;;;;;;;4626:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4727:1;4699:30;;:7;:16;;;:30;;;4695:92;;4756:19;4746:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4695:92;4799:21;4864:17;:15;:17::i;:::-;4823:58;;4837:7;:23;;;4824:36;;:10;:36;;;;:::i;:::-;4823:58;;;;:::i;:::-;4799:82;;4902:7;:16;;;4920:13;4894:40;;;;;;4500:442;;;;;:::o;27435:132::-;27510:12;:10;:12::i;:::-;27499:23;;:7;:5;:7::i;:::-;:23;;;27491:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27435:132::o;24621:293::-;24023:1;24755:7;;:19;24747:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;24023:1;24888:7;:18;;;;24621:293::o;24922:213::-;23979:1;25105:7;:22;;;;24922:213::o;6375:390::-;6543:17;:15;:17::i;:::-;6527:33;;:12;:33;;;;6519:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;6646:1;6626:22;;:8;:22;;;6618:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;6722:35;;;;;;;;6734:8;6722:35;;;;;;6744:12;6722:35;;;;;6693:17;:26;6711:7;6693:26;;;;;;;;;;;:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6375:390;;;:::o;28537:191::-;28611:16;28630:6;;;;;;;;;;;28611:25;;28656:8;28647:6;;:17;;;;;;;;;;;;;;;;;;28711:8;28680:40;;28701:8;28680:40;;;;;;;;;;;;28600:128;28537:191;:::o;25821:98::-;25874:7;25901:10;25894:17;;25821:98;:::o;72043:112::-;72120:27;72130:2;72134:8;72120:27;;;;;;;;;;;;:9;:27::i;:::-;72043:112;;:::o;64374:716::-;64537:4;64583:2;64558:45;;;64604:19;:17;:19::i;:::-;64625:4;64631:7;64640:5;64558:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;64554:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64858:1;64841:6;:13;:18;64837:235;;64887:40;;;;;;;;;;;;;;64837:235;65030:6;65024:13;65015:6;65011:2;65007:15;65000:38;64554:529;64727:54;;;64717:64;;;:6;:64;;;;64710:71;;;64374:716;;;;;;:::o;20302:::-;20358:13;20409:14;20446:1;20426:17;20437:5;20426:10;:17::i;:::-;:21;20409:38;;20462:20;20496:6;20485:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20462:41;;20518:11;20647:6;20643:2;20639:15;20631:6;20627:28;20620:35;;20684:288;20691:4;20684:288;;;20716:5;;;;;;;;20858:8;20853:2;20846:5;20842:14;20837:30;20832:3;20824:44;20914:2;20905:11;;;;;;:::i;:::-;;;;;20948:1;20939:5;:10;20684:288;20935:21;20684:288;20993:6;20986:13;;;;;20302:716;;;:::o;55481:164::-;55578:4;55602:18;:25;55621:5;55602:25;;;;;;;;;;;;;;;:35;55628:8;55602:35;;;;;;;;;;;;;;;;;;;;;;;;;55595:42;;55481:164;;;;:::o;5224:97::-;5282:6;5308:5;5301:12;;5224:97;:::o;77221:147::-;77358:6;77221:147;;;;;:::o;71270:689::-;71401:19;71407:2;71411:8;71401:5;:19::i;:::-;71480:1;71462:2;:14;;;:19;71458:483;;71502:11;71516:13;;71502:27;;71548:13;71570:8;71564:3;:14;71548:30;;71597:233;71628:62;71667:1;71671:2;71675:7;;;;;;71684:5;71628:30;:62::i;:::-;71623:167;;71726:40;;;;;;;;;;;;;;71623:167;71825:3;71817:5;:11;71597:233;;71912:3;71895:13;;:20;71891:34;;71917:8;;;71891:34;71483:458;;71458:483;71270:689;;;:::o;17168:922::-;17221:7;17241:14;17258:1;17241:18;;17308:6;17299:5;:15;17295:102;;17344:6;17335:15;;;;;;:::i;:::-;;;;;17379:2;17369:12;;;;17295:102;17424:6;17415:5;:15;17411:102;;17460:6;17451:15;;;;;;:::i;:::-;;;;;17495:2;17485:12;;;;17411:102;17540:6;17531:5;:15;17527:102;;17576:6;17567:15;;;;;;:::i;:::-;;;;;17611:2;17601:12;;;;17527:102;17656:5;17647;:14;17643:99;;17691:5;17682:14;;;;;;:::i;:::-;;;;;17725:1;17715:11;;;;17643:99;17769:5;17760;:14;17756:99;;17804:5;17795:14;;;;;;:::i;:::-;;;;;17838:1;17828:11;;;;17756:99;17882:5;17873;:14;17869:99;;17917:5;17908:14;;;;;;:::i;:::-;;;;;17951:1;17941:11;;;;17869:99;17995:5;17986;:14;17982:66;;18031:1;18021:11;;;;17982:66;18076:6;18069:13;;;17168:922;;;:::o;65552:2966::-;65625:20;65648:13;;65625:36;;65688:1;65676:8;:13;65672:44;;65698:18;;;;;;;;;;;;;;65672:44;65729:61;65759:1;65763:2;65767:12;65781:8;65729:21;:61::i;:::-;66273:1;39273:2;66243:1;:26;;66242:32;66230:8;:45;66204:18;:22;66223:2;66204:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;66552:139;66589:2;66643:33;66666:1;66670:2;66674:1;66643:14;:33::i;:::-;66610:30;66631:8;66610:20;:30::i;:::-;:66;66552:18;:139::i;:::-;66518:17;:31;66536:12;66518:31;;;;;;;;;;;:173;;;;66708:16;66739:11;66768:8;66753:12;:23;66739:37;;67289:16;67285:2;67281:25;67269:37;;67661:12;67621:8;67580:1;67518:25;67459:1;67398;67371:335;68032:1;68018:12;68014:20;67972:346;68073:3;68064:7;68061:16;67972:346;;68291:7;68281:8;68278:1;68251:25;68248:1;68245;68240:59;68126:1;68117:7;68113:15;68102:26;;67972:346;;;67976:77;68363:1;68351:8;:13;68347:45;;68373:19;;;;;;;;;;;;;;68347:45;68425:3;68409:13;:19;;;;65978:2462;;68450:60;68479:1;68483:2;68487:12;68501:8;68450:20;:60::i;:::-;65614:2904;65552:2966;;:::o;52964:324::-;53034:14;53267:1;53257:8;53254:15;53228:24;53224:46;53214:56;;52964: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:126::-;1990:7;2030:42;2023:5;2019:54;2008:65;;1953:126;;;:::o;2085:96::-;2122:7;2151:24;2169:5;2151:24;:::i;:::-;2140:35;;2085:96;;;:::o;2187:122::-;2260:24;2278:5;2260:24;:::i;:::-;2253:5;2250:35;2240:63;;2299:1;2296;2289:12;2240:63;2187:122;:::o;2315:139::-;2361:5;2399:6;2386:20;2377:29;;2415:33;2442:5;2415:33;:::i;:::-;2315:139;;;;:::o;2460:109::-;2496:7;2536:26;2529:5;2525:38;2514:49;;2460:109;;;:::o;2575:120::-;2647:23;2664:5;2647:23;:::i;:::-;2640:5;2637:34;2627:62;;2685:1;2682;2675:12;2627:62;2575:120;:::o;2701:137::-;2746:5;2784:6;2771:20;2762:29;;2800:32;2826:5;2800:32;:::i;:::-;2701:137;;;;:::o;2844:472::-;2911:6;2919;2968:2;2956:9;2947:7;2943:23;2939:32;2936:119;;;2974:79;;:::i;:::-;2936:119;3094:1;3119:53;3164:7;3155:6;3144:9;3140:22;3119:53;:::i;:::-;3109:63;;3065:117;3221:2;3247:52;3291:7;3282:6;3271:9;3267:22;3247:52;:::i;:::-;3237:62;;3192:117;2844:472;;;;;:::o;3322:99::-;3374:6;3408:5;3402:12;3392:22;;3322:99;;;:::o;3427:169::-;3511:11;3545:6;3540:3;3533:19;3585:4;3580:3;3576:14;3561:29;;3427:169;;;;:::o;3602:246::-;3683:1;3693:113;3707:6;3704:1;3701:13;3693:113;;;3792:1;3787:3;3783:11;3777:18;3773:1;3768:3;3764:11;3757:39;3729:2;3726:1;3722:10;3717:15;;3693:113;;;3840:1;3831:6;3826:3;3822:16;3815:27;3664:184;3602:246;;;:::o;3854:102::-;3895:6;3946:2;3942:7;3937:2;3930:5;3926:14;3922:28;3912:38;;3854:102;;;:::o;3962:377::-;4050:3;4078:39;4111:5;4078:39;:::i;:::-;4133:71;4197:6;4192:3;4133:71;:::i;:::-;4126:78;;4213:65;4271:6;4266:3;4259:4;4252:5;4248:16;4213:65;:::i;:::-;4303:29;4325:6;4303:29;:::i;:::-;4298:3;4294:39;4287:46;;4054:285;3962:377;;;;:::o;4345:313::-;4458:4;4496:2;4485:9;4481:18;4473:26;;4545:9;4539:4;4535:20;4531:1;4520:9;4516:17;4509:47;4573:78;4646:4;4637:6;4573:78;:::i;:::-;4565:86;;4345:313;;;;:::o;4664:122::-;4737:24;4755:5;4737:24;:::i;:::-;4730:5;4727:35;4717:63;;4776:1;4773;4766:12;4717:63;4664:122;:::o;4792:139::-;4838:5;4876:6;4863:20;4854:29;;4892:33;4919:5;4892:33;:::i;:::-;4792:139;;;;:::o;4937:329::-;4996:6;5045:2;5033:9;5024:7;5020:23;5016:32;5013:119;;;5051:79;;:::i;:::-;5013:119;5171:1;5196:53;5241:7;5232:6;5221:9;5217:22;5196:53;:::i;:::-;5186:63;;5142:117;4937:329;;;;:::o;5272:118::-;5359:24;5377:5;5359:24;:::i;:::-;5354:3;5347:37;5272:118;;:::o;5396:222::-;5489:4;5527:2;5516:9;5512:18;5504:26;;5540:71;5608:1;5597:9;5593:17;5584:6;5540:71;:::i;:::-;5396:222;;;;:::o;5624:474::-;5692:6;5700;5749:2;5737:9;5728:7;5724:23;5720:32;5717:119;;;5755:79;;:::i;:::-;5717:119;5875:1;5900:53;5945:7;5936:6;5925:9;5921:22;5900:53;:::i;:::-;5890:63;;5846:117;6002:2;6028:53;6073:7;6064:6;6053:9;6049:22;6028:53;:::i;:::-;6018:63;;5973:118;5624:474;;;;;:::o;6104:619::-;6181:6;6189;6197;6246:2;6234:9;6225:7;6221:23;6217:32;6214:119;;;6252:79;;:::i;:::-;6214:119;6372:1;6397:53;6442:7;6433:6;6422:9;6418:22;6397:53;:::i;:::-;6387:63;;6343:117;6499:2;6525:53;6570:7;6561:6;6550:9;6546:22;6525:53;:::i;:::-;6515:63;;6470:118;6627:2;6653:53;6698:7;6689:6;6678:9;6674:22;6653:53;:::i;:::-;6643:63;;6598:118;6104:619;;;;;:::o;6729:474::-;6797:6;6805;6854:2;6842:9;6833:7;6829:23;6825:32;6822:119;;;6860:79;;:::i;:::-;6822:119;6980:1;7005:53;7050:7;7041:6;7030:9;7026:22;7005:53;:::i;:::-;6995:63;;6951:117;7107:2;7133:53;7178:7;7169:6;7158:9;7154:22;7133:53;:::i;:::-;7123:63;;7078:118;6729:474;;;;;:::o;7209:332::-;7330:4;7368:2;7357:9;7353:18;7345:26;;7381:71;7449:1;7438:9;7434:17;7425:6;7381:71;:::i;:::-;7462:72;7530:2;7519:9;7515:18;7506:6;7462:72;:::i;:::-;7209:332;;;;;:::o;7547:117::-;7656:1;7653;7646:12;7670:117;7779:1;7776;7769:12;7793:180;7841:77;7838:1;7831:88;7938:4;7935:1;7928:15;7962:4;7959:1;7952:15;7979:281;8062:27;8084:4;8062:27;:::i;:::-;8054:6;8050:40;8192:6;8180:10;8177:22;8156:18;8144:10;8141:34;8138:62;8135:88;;;8203:18;;:::i;:::-;8135:88;8243:10;8239:2;8232:22;8022:238;7979:281;;:::o;8266:129::-;8300:6;8327:20;;:::i;:::-;8317:30;;8356:33;8384:4;8376:6;8356:33;:::i;:::-;8266:129;;;:::o;8401:308::-;8463:4;8553:18;8545:6;8542:30;8539:56;;;8575:18;;:::i;:::-;8539:56;8613:29;8635:6;8613:29;:::i;:::-;8605:37;;8697:4;8691;8687:15;8679:23;;8401:308;;;:::o;8715:146::-;8812:6;8807:3;8802;8789:30;8853:1;8844:6;8839:3;8835:16;8828:27;8715:146;;;:::o;8867:425::-;8945:5;8970:66;8986:49;9028:6;8986:49;:::i;:::-;8970:66;:::i;:::-;8961:75;;9059:6;9052:5;9045:21;9097:4;9090:5;9086:16;9135:3;9126:6;9121:3;9117:16;9114:25;9111:112;;;9142:79;;:::i;:::-;9111:112;9232:54;9279:6;9274:3;9269;9232:54;:::i;:::-;8951:341;8867:425;;;;;:::o;9312:340::-;9368:5;9417:3;9410:4;9402:6;9398:17;9394:27;9384:122;;9425:79;;:::i;:::-;9384:122;9542:6;9529:20;9567:79;9642:3;9634:6;9627:4;9619:6;9615:17;9567:79;:::i;:::-;9558:88;;9374:278;9312:340;;;;:::o;9658:509::-;9727:6;9776:2;9764:9;9755:7;9751:23;9747:32;9744:119;;;9782:79;;:::i;:::-;9744:119;9930:1;9919:9;9915:17;9902:31;9960:18;9952:6;9949:30;9946:117;;;9982:79;;:::i;:::-;9946:117;10087:63;10142:7;10133:6;10122:9;10118:22;10087:63;:::i;:::-;10077:73;;9873:287;9658:509;;;;:::o;10173:472::-;10240:6;10248;10297:2;10285:9;10276:7;10272:23;10268:32;10265:119;;;10303:79;;:::i;:::-;10265:119;10423:1;10448:53;10493:7;10484:6;10473:9;10469:22;10448:53;:::i;:::-;10438:63;;10394:117;10550:2;10576:52;10620:7;10611:6;10600:9;10596:22;10576:52;:::i;:::-;10566:62;;10521:117;10173:472;;;;;:::o;10651:329::-;10710:6;10759:2;10747:9;10738:7;10734:23;10730:32;10727:119;;;10765:79;;:::i;:::-;10727:119;10885:1;10910:53;10955:7;10946:6;10935:9;10931:22;10910:53;:::i;:::-;10900:63;;10856:117;10651:329;;;;:::o;10986:116::-;11056:21;11071:5;11056:21;:::i;:::-;11049:5;11046:32;11036:60;;11092:1;11089;11082:12;11036:60;10986:116;:::o;11108:133::-;11151:5;11189:6;11176:20;11167:29;;11205:30;11229:5;11205:30;:::i;:::-;11108:133;;;;:::o;11247:468::-;11312:6;11320;11369:2;11357:9;11348:7;11344:23;11340:32;11337:119;;;11375:79;;:::i;:::-;11337:119;11495:1;11520:53;11565:7;11556:6;11545:9;11541:22;11520:53;:::i;:::-;11510:63;;11466:117;11622:2;11648:50;11690:7;11681:6;11670:9;11666:22;11648:50;:::i;:::-;11638:60;;11593:115;11247:468;;;;;:::o;11721:307::-;11782:4;11872:18;11864:6;11861:30;11858:56;;;11894:18;;:::i;:::-;11858:56;11932:29;11954:6;11932:29;:::i;:::-;11924:37;;12016:4;12010;12006:15;11998:23;;11721:307;;;:::o;12034:423::-;12111:5;12136:65;12152:48;12193:6;12152:48;:::i;:::-;12136:65;:::i;:::-;12127:74;;12224:6;12217:5;12210:21;12262:4;12255:5;12251:16;12300:3;12291:6;12286:3;12282:16;12279:25;12276:112;;;12307:79;;:::i;:::-;12276:112;12397:54;12444:6;12439:3;12434;12397:54;:::i;:::-;12117:340;12034:423;;;;;:::o;12476:338::-;12531:5;12580:3;12573:4;12565:6;12561:17;12557:27;12547:122;;12588:79;;:::i;:::-;12547:122;12705:6;12692:20;12730:78;12804:3;12796:6;12789:4;12781:6;12777:17;12730:78;:::i;:::-;12721:87;;12537:277;12476:338;;;;:::o;12820:943::-;12915:6;12923;12931;12939;12988:3;12976:9;12967:7;12963:23;12959:33;12956:120;;;12995:79;;:::i;:::-;12956:120;13115:1;13140:53;13185:7;13176:6;13165:9;13161:22;13140:53;:::i;:::-;13130:63;;13086:117;13242:2;13268:53;13313:7;13304:6;13293:9;13289:22;13268:53;:::i;:::-;13258:63;;13213:118;13370:2;13396:53;13441:7;13432:6;13421:9;13417:22;13396:53;:::i;:::-;13386:63;;13341:118;13526:2;13515:9;13511:18;13498:32;13557:18;13549:6;13546:30;13543:117;;;13579:79;;:::i;:::-;13543:117;13684:62;13738:7;13729:6;13718:9;13714:22;13684:62;:::i;:::-;13674:72;;13469:287;12820:943;;;;;;;:::o;13769:474::-;13837:6;13845;13894:2;13882:9;13873:7;13869:23;13865:32;13862:119;;;13900:79;;:::i;:::-;13862:119;14020:1;14045:53;14090:7;14081:6;14070:9;14066:22;14045:53;:::i;:::-;14035:63;;13991:117;14147:2;14173:53;14218:7;14209:6;14198:9;14194:22;14173:53;:::i;:::-;14163:63;;14118:118;13769:474;;;;;:::o;14249:180::-;14297:77;14294:1;14287:88;14394:4;14391:1;14384:15;14418:4;14415:1;14408:15;14435:320;14479:6;14516:1;14510:4;14506:12;14496:22;;14563:1;14557:4;14553:12;14584:18;14574:81;;14640:4;14632:6;14628:17;14618:27;;14574:81;14702:2;14694:6;14691:14;14671:18;14668:38;14665:84;;14721:18;;:::i;:::-;14665:84;14486:269;14435:320;;;:::o;14761:147::-;14862:11;14899:3;14884:18;;14761:147;;;;:::o;14914:114::-;;:::o;15034:398::-;15193:3;15214:83;15295:1;15290:3;15214:83;:::i;:::-;15207:90;;15306:93;15395:3;15306:93;:::i;:::-;15424:1;15419:3;15415:11;15408:18;;15034:398;;;:::o;15438:379::-;15622:3;15644:147;15787:3;15644:147;:::i;:::-;15637:154;;15808:3;15801:10;;15438:379;;;:::o;15823:141::-;15872:4;15895:3;15887:11;;15918:3;15915:1;15908:14;15952:4;15949:1;15939:18;15931:26;;15823:141;;;:::o;15970:93::-;16007:6;16054:2;16049;16042:5;16038:14;16034:23;16024:33;;15970:93;;;:::o;16069:107::-;16113:8;16163:5;16157:4;16153:16;16132:37;;16069:107;;;;:::o;16182:393::-;16251:6;16301:1;16289:10;16285:18;16324:97;16354:66;16343:9;16324:97;:::i;:::-;16442:39;16472:8;16461:9;16442:39;:::i;:::-;16430:51;;16514:4;16510:9;16503:5;16499:21;16490:30;;16563:4;16553:8;16549:19;16542:5;16539:30;16529:40;;16258:317;;16182:393;;;;;:::o;16581:60::-;16609:3;16630:5;16623:12;;16581:60;;;:::o;16647:142::-;16697:9;16730:53;16748:34;16757:24;16775:5;16757:24;:::i;:::-;16748:34;:::i;:::-;16730:53;:::i;:::-;16717:66;;16647:142;;;:::o;16795:75::-;16838:3;16859:5;16852:12;;16795:75;;;:::o;16876:269::-;16986:39;17017:7;16986:39;:::i;:::-;17047:91;17096:41;17120:16;17096:41;:::i;:::-;17088:6;17081:4;17075:11;17047:91;:::i;:::-;17041:4;17034:105;16952:193;16876:269;;;:::o;17151:73::-;17196:3;17151:73;:::o;17230:189::-;17307:32;;:::i;:::-;17348:65;17406:6;17398;17392:4;17348:65;:::i;:::-;17283:136;17230:189;;:::o;17425:186::-;17485:120;17502:3;17495:5;17492:14;17485:120;;;17556:39;17593:1;17586:5;17556:39;:::i;:::-;17529:1;17522:5;17518:13;17509:22;;17485:120;;;17425:186;;:::o;17617:543::-;17718:2;17713:3;17710:11;17707:446;;;17752:38;17784:5;17752:38;:::i;:::-;17836:29;17854:10;17836:29;:::i;:::-;17826:8;17822:44;18019:2;18007:10;18004:18;18001:49;;;18040:8;18025:23;;18001:49;18063:80;18119:22;18137:3;18119:22;:::i;:::-;18109:8;18105:37;18092:11;18063:80;:::i;:::-;17722:431;;17707:446;17617:543;;;:::o;18166:117::-;18220:8;18270:5;18264:4;18260:16;18239:37;;18166:117;;;;:::o;18289:169::-;18333:6;18366:51;18414:1;18410:6;18402:5;18399:1;18395:13;18366:51;:::i;:::-;18362:56;18447:4;18441;18437:15;18427:25;;18340:118;18289:169;;;;:::o;18463:295::-;18539:4;18685:29;18710:3;18704:4;18685:29;:::i;:::-;18677:37;;18747:3;18744:1;18740:11;18734:4;18731:21;18723:29;;18463:295;;;;:::o;18763:1395::-;18880:37;18913:3;18880:37;:::i;:::-;18982:18;18974:6;18971:30;18968:56;;;19004:18;;:::i;:::-;18968:56;19048:38;19080:4;19074:11;19048:38;:::i;:::-;19133:67;19193:6;19185;19179:4;19133:67;:::i;:::-;19227:1;19251:4;19238:17;;19283:2;19275:6;19272:14;19300:1;19295:618;;;;19957:1;19974:6;19971:77;;;20023:9;20018:3;20014:19;20008:26;19999:35;;19971:77;20074:67;20134:6;20127:5;20074:67;:::i;:::-;20068:4;20061:81;19930:222;19265:887;;19295:618;19347:4;19343:9;19335:6;19331:22;19381:37;19413:4;19381:37;:::i;:::-;19440:1;19454:208;19468:7;19465:1;19462:14;19454:208;;;19547:9;19542:3;19538:19;19532:26;19524:6;19517:42;19598:1;19590:6;19586:14;19576:24;;19645:2;19634:9;19630:18;19617:31;;19491:4;19488:1;19484:12;19479:17;;19454:208;;;19690:6;19681:7;19678:19;19675:179;;;19748:9;19743:3;19739:19;19733:26;19791:48;19833:4;19825:6;19821:17;19810:9;19791:48;:::i;:::-;19783:6;19776:64;19698:156;19675:179;19900:1;19896;19888:6;19884:14;19880:22;19874:4;19867:36;19302:611;;;19265:887;;18855:1303;;;18763:1395;;:::o;20164:180::-;20212:77;20209:1;20202:88;20309:4;20306:1;20299:15;20333:4;20330:1;20323:15;20350:191;20390:3;20409:20;20427:1;20409:20;:::i;:::-;20404:25;;20443:20;20461:1;20443:20;:::i;:::-;20438:25;;20486:1;20483;20479:9;20472:16;;20507:3;20504:1;20501:10;20498:36;;;20514:18;;:::i;:::-;20498:36;20350:191;;;;:::o;20547:442::-;20696:4;20734:2;20723:9;20719:18;20711:26;;20747:71;20815:1;20804:9;20800:17;20791:6;20747:71;:::i;:::-;20828:72;20896:2;20885:9;20881:18;20872:6;20828:72;:::i;:::-;20910;20978:2;20967:9;20963:18;20954:6;20910:72;:::i;:::-;20547:442;;;;;;:::o;20995:410::-;21035:7;21058:20;21076:1;21058:20;:::i;:::-;21053:25;;21092:20;21110:1;21092:20;:::i;:::-;21087:25;;21147:1;21144;21140:9;21169:30;21187:11;21169:30;:::i;:::-;21158:41;;21348:1;21339:7;21335:15;21332:1;21329:22;21309:1;21302:9;21282:83;21259:139;;21378:18;;:::i;:::-;21259:139;21043:362;20995:410;;;;:::o;21411:179::-;21551:31;21547:1;21539:6;21535:14;21528:55;21411:179;:::o;21596:366::-;21738:3;21759:67;21823:2;21818:3;21759:67;:::i;:::-;21752:74;;21835:93;21924:3;21835:93;:::i;:::-;21953:2;21948:3;21944:12;21937:19;;21596:366;;;:::o;21968:419::-;22134:4;22172:2;22161:9;22157:18;22149:26;;22221:9;22215:4;22211:20;22207:1;22196:9;22192:17;22185:47;22249:131;22375:4;22249:131;:::i;:::-;22241:139;;21968:419;;;:::o;22393:194::-;22433:4;22453:20;22471:1;22453:20;:::i;:::-;22448:25;;22487:20;22505:1;22487:20;:::i;:::-;22482:25;;22531:1;22528;22524:9;22516:17;;22555:1;22549:4;22546:11;22543:37;;;22560:18;;:::i;:::-;22543:37;22393:194;;;;:::o;22593:159::-;22733:11;22729:1;22721:6;22717:14;22710:35;22593:159;:::o;22758:365::-;22900:3;22921:66;22985:1;22980:3;22921:66;:::i;:::-;22914:73;;22996:93;23085:3;22996:93;:::i;:::-;23114:2;23109:3;23105:12;23098:19;;22758:365;;;:::o;23129:419::-;23295:4;23333:2;23322:9;23318:18;23310:26;;23382:9;23376:4;23372:20;23368:1;23357:9;23353:17;23346:47;23410:131;23536:4;23410:131;:::i;:::-;23402:139;;23129:419;;;:::o;23554:169::-;23694:21;23690:1;23682:6;23678:14;23671:45;23554:169;:::o;23729:366::-;23871:3;23892:67;23956:2;23951:3;23892:67;:::i;:::-;23885:74;;23968:93;24057:3;23968:93;:::i;:::-;24086:2;24081:3;24077:12;24070:19;;23729:366;;;:::o;24101:419::-;24267:4;24305:2;24294:9;24290:18;24282:26;;24354:9;24348:4;24344:20;24340:1;24329:9;24325:17;24318:47;24382:131;24508:4;24382:131;:::i;:::-;24374:139;;24101:419;;;:::o;24526:234::-;24666:34;24662:1;24654:6;24650:14;24643:58;24735:17;24730:2;24722:6;24718:15;24711:42;24526:234;:::o;24766:366::-;24908:3;24929:67;24993:2;24988:3;24929:67;:::i;:::-;24922:74;;25005:93;25094:3;25005:93;:::i;:::-;25123:2;25118:3;25114:12;25107:19;;24766:366;;;:::o;25138:419::-;25304:4;25342:2;25331:9;25327:18;25319:26;;25391:9;25385:4;25381:20;25377:1;25366:9;25362:17;25355:47;25419:131;25545:4;25419:131;:::i;:::-;25411:139;;25138:419;;;:::o;25563:148::-;25665:11;25702:3;25687:18;;25563:148;;;;:::o;25741:874::-;25844:3;25881:5;25875:12;25910:36;25936:9;25910:36;:::i;:::-;25962:89;26044:6;26039:3;25962:89;:::i;:::-;25955:96;;26082:1;26071:9;26067:17;26098:1;26093:166;;;;26273:1;26268:341;;;;26060:549;;26093:166;26177:4;26173:9;26162;26158:25;26153:3;26146:38;26239:6;26232:14;26225:22;26217:6;26213:35;26208:3;26204:45;26197:52;;26093:166;;26268:341;26335:38;26367:5;26335:38;:::i;:::-;26395:1;26409:154;26423:6;26420:1;26417:13;26409:154;;;26497:7;26491:14;26487:1;26482:3;26478:11;26471:35;26547:1;26538:7;26534:15;26523:26;;26445:4;26442:1;26438:12;26433:17;;26409:154;;;26592:6;26587:3;26583:16;26576:23;;26275:334;;26060:549;;25848:767;;25741:874;;;;:::o;26621:390::-;26727:3;26755:39;26788:5;26755:39;:::i;:::-;26810:89;26892:6;26887:3;26810:89;:::i;:::-;26803:96;;26908:65;26966:6;26961:3;26954:4;26947:5;26943:16;26908:65;:::i;:::-;26998:6;26993:3;26989:16;26982:23;;26731:280;26621:390;;;;:::o;27017:155::-;27157:7;27153:1;27145:6;27141:14;27134:31;27017:155;:::o;27178:400::-;27338:3;27359:84;27441:1;27436:3;27359:84;:::i;:::-;27352:91;;27452:93;27541:3;27452:93;:::i;:::-;27570:1;27565:3;27561:11;27554:18;;27178:400;;;:::o;27584:695::-;27862:3;27884:92;27972:3;27963:6;27884:92;:::i;:::-;27877:99;;27993:95;28084:3;28075:6;27993:95;:::i;:::-;27986:102;;28105:148;28249:3;28105:148;:::i;:::-;28098:155;;28270:3;28263:10;;27584:695;;;;;:::o;28285:225::-;28425:34;28421:1;28413:6;28409:14;28402:58;28494:8;28489:2;28481:6;28477:15;28470:33;28285:225;:::o;28516:366::-;28658:3;28679:67;28743:2;28738:3;28679:67;:::i;:::-;28672:74;;28755:93;28844:3;28755:93;:::i;:::-;28873:2;28868:3;28864:12;28857:19;;28516:366;;;:::o;28888:419::-;29054:4;29092:2;29081:9;29077:18;29069:26;;29141:9;29135:4;29131:20;29127:1;29116:9;29112:17;29105:47;29169:131;29295:4;29169:131;:::i;:::-;29161:139;;28888:419;;;:::o;29313:229::-;29453:34;29449:1;29441:6;29437:14;29430:58;29522:12;29517:2;29509:6;29505:15;29498:37;29313:229;:::o;29548:366::-;29690:3;29711:67;29775:2;29770:3;29711:67;:::i;:::-;29704:74;;29787:93;29876:3;29787:93;:::i;:::-;29905:2;29900:3;29896:12;29889:19;;29548:366;;;:::o;29920:419::-;30086:4;30124:2;30113:9;30109:18;30101:26;;30173:9;30167:4;30163:20;30159:1;30148:9;30144:17;30137:47;30201:131;30327:4;30201:131;:::i;:::-;30193:139;;29920:419;;;:::o;30345:175::-;30485:27;30481:1;30473:6;30469:14;30462:51;30345:175;:::o;30526:366::-;30668:3;30689:67;30753:2;30748:3;30689:67;:::i;:::-;30682:74;;30765:93;30854:3;30765:93;:::i;:::-;30883:2;30878:3;30874:12;30867:19;;30526:366;;;:::o;30898:419::-;31064:4;31102:2;31091:9;31087:18;31079:26;;31151:9;31145:4;31141:20;31137:1;31126:9;31122:17;31115:47;31179:131;31305:4;31179:131;:::i;:::-;31171:139;;30898:419;;;:::o;31323:180::-;31371:77;31368:1;31361:88;31468:4;31465:1;31458:15;31492:4;31489:1;31482:15;31509:185;31549:1;31566:20;31584:1;31566:20;:::i;:::-;31561:25;;31600:20;31618:1;31600:20;:::i;:::-;31595:25;;31639:1;31629:35;;31644:18;;:::i;:::-;31629:35;31686:1;31683;31679:9;31674:14;;31509:185;;;;:::o;31700:182::-;31840:34;31836:1;31828:6;31824:14;31817:58;31700:182;:::o;31888:366::-;32030:3;32051:67;32115:2;32110:3;32051:67;:::i;:::-;32044:74;;32127:93;32216:3;32127:93;:::i;:::-;32245:2;32240:3;32236:12;32229:19;;31888:366;;;:::o;32260:419::-;32426:4;32464:2;32453:9;32449:18;32441:26;;32513:9;32507:4;32503:20;32499:1;32488:9;32484:17;32477:47;32541:131;32667:4;32541:131;:::i;:::-;32533:139;;32260:419;;;:::o;32685:181::-;32825:33;32821:1;32813:6;32809:14;32802:57;32685:181;:::o;32872:366::-;33014:3;33035:67;33099:2;33094:3;33035:67;:::i;:::-;33028:74;;33111:93;33200:3;33111:93;:::i;:::-;33229:2;33224:3;33220:12;33213:19;;32872:366;;;:::o;33244:419::-;33410:4;33448:2;33437:9;33433:18;33425:26;;33497:9;33491:4;33487:20;33483:1;33472:9;33468:17;33461:47;33525:131;33651:4;33525:131;:::i;:::-;33517:139;;33244:419;;;:::o;33669:177::-;33809:29;33805:1;33797:6;33793:14;33786:53;33669:177;:::o;33852:366::-;33994:3;34015:67;34079:2;34074:3;34015:67;:::i;:::-;34008:74;;34091:93;34180:3;34091:93;:::i;:::-;34209:2;34204:3;34200:12;34193:19;;33852:366;;;:::o;34224:419::-;34390:4;34428:2;34417:9;34413:18;34405:26;;34477:9;34471:4;34467:20;34463:1;34452:9;34448:17;34441:47;34505:131;34631:4;34505:131;:::i;:::-;34497:139;;34224:419;;;:::o;34649:98::-;34700:6;34734:5;34728:12;34718:22;;34649:98;;;:::o;34753:168::-;34836:11;34870:6;34865:3;34858:19;34910:4;34905:3;34901:14;34886:29;;34753:168;;;;:::o;34927:373::-;35013:3;35041:38;35073:5;35041:38;:::i;:::-;35095:70;35158:6;35153:3;35095:70;:::i;:::-;35088:77;;35174:65;35232:6;35227:3;35220:4;35213:5;35209:16;35174:65;:::i;:::-;35264:29;35286:6;35264:29;:::i;:::-;35259:3;35255:39;35248:46;;35017:283;34927:373;;;;:::o;35306:640::-;35501:4;35539:3;35528:9;35524:19;35516:27;;35553:71;35621:1;35610:9;35606:17;35597:6;35553:71;:::i;:::-;35634:72;35702:2;35691:9;35687:18;35678:6;35634:72;:::i;:::-;35716;35784:2;35773:9;35769:18;35760:6;35716:72;:::i;:::-;35835:9;35829:4;35825:20;35820:2;35809:9;35805:18;35798:48;35863:76;35934:4;35925:6;35863:76;:::i;:::-;35855:84;;35306:640;;;;;;;:::o;35952:141::-;36008:5;36039:6;36033:13;36024:22;;36055:32;36081:5;36055:32;:::i;:::-;35952:141;;;;:::o;36099:349::-;36168:6;36217:2;36205:9;36196:7;36192:23;36188:32;36185:119;;;36223:79;;:::i;:::-;36185:119;36343:1;36368:63;36423:7;36414:6;36403:9;36399:22;36368:63;:::i;:::-;36358:73;;36314:127;36099:349;;;;:::o

Swarm Source

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