ETH Price: $3,510.33 (+0.33%)
Gas: 3 Gwei

Token

Grumpy (Grumpy)
 

Overview

Max Total Supply

1,051 Grumpy

Holders

212

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 Grumpy
0x9599778b45ed159f88477a5f66435b70673d8057
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:
Grumpy

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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`.
     *
     * 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 calldata data
    ) external;

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * 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;

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

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

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

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;


/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @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: Grumpy.sol










pragma solidity ^0.8.17;

contract Grumpy is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint;

  string public uriPrefix = "ipfs://bafybeiavr2qoljx2h3z64rvxpyoo56iqocvorbw6esfzefcosftx43gmnm/";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint public cost = 0.002 ether;
  uint public maxSupply = 4444;
  uint public freeSupply = 4444;
  uint public maxPerWallet = 5;
  uint public maxMintAmountPerTx = 5;

  bool public paused = true;
  bool public revealed = true;

  mapping(address => bool) public freeMintClaimed;


  constructor() ERC721A("Grumpy", "Grumpy") {
  }

  modifier mintCompliance(uint _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(_mintAmount + balanceOf(_msgSender()) <= maxPerWallet, "Only five allowed per wallet!");
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  modifier mintPriceCompliance(uint _mintAmount) {
    if (freeMintClaimed[_msgSender()] || totalSupply() >= freeSupply) {
      require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    }
    _;
  }

   function mint(uint256 amount) external payable {
        require(!paused, "Sale not started");

        require(totalSupply() + amount <= maxSupply, "Max supply would be exceeded");
        uint minted = _numberMinted(msg.sender);
        require(msg.sender == tx.origin, "Contract minting not allowed");
        require(minted + amount <= maxPerWallet, "Max mint per wallet would be exceeded");

        if (minted == 0) {
            require(msg.value >= cost * (amount - 1), "Value not met");
        } else {
            require(msg.value >= cost * amount, "Value not met");
        }
        _safeMint(msg.sender, amount);
    }
  
  function mintForAddress(uint _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

  function _startTokenId() internal view virtual override returns (uint256) { return 1; }

    function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }

  function tokenURI(uint _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

   function setMaxPerWallet(uint _maxPerWallet) public onlyOwner {
    maxPerWallet = _maxPerWallet;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

    function setValues(uint256 _newAmount) external onlyOwner {
    maxSupply = _newAmount;
}

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setFreeSupply(uint _freeQty) public onlyOwner {
    freeSupply = _freeQty;
  }

  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":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":[{"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupply","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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeQty","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setValues","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180608001604052806043815260200162003f2f60439139600a90816200002e919062000502565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b908162000075919062000502565b5066071afd498d0000600d5561115c600e5561115c600f55600560105560056011556001601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff021916908315150217905550348015620000da57600080fd5b506040518060400160405280600681526020017f4772756d707900000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4772756d70790000000000000000000000000000000000000000000000000000815250816002908162000158919062000502565b5080600390816200016a919062000502565b506200017b620001b160201b60201c565b6000819055505050620001a362000197620001ba60201b60201c565b620001c260201b60201c565b6001600981905550620005e9565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200030a57607f821691505b60208210810362000320576200031f620002c2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200038a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200034b565b6200039686836200034b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003e3620003dd620003d784620003ae565b620003b8565b620003ae565b9050919050565b6000819050919050565b620003ff83620003c2565b620004176200040e82620003ea565b84845462000358565b825550505050565b600090565b6200042e6200041f565b6200043b818484620003f4565b505050565b5b8181101562000463576200045760008262000424565b60018101905062000441565b5050565b601f821115620004b2576200047c8162000326565b62000487846200033b565b8101602085101562000497578190505b620004af620004a6856200033b565b83018262000440565b50505b505050565b600082821c905092915050565b6000620004d760001984600802620004b7565b1980831691505092915050565b6000620004f28383620004c4565b9150826002028217905092915050565b6200050d8262000288565b67ffffffffffffffff81111562000529576200052862000293565b5b620005358254620002f1565b6200054282828562000467565b600060209050601f8311600181146200057a576000841562000565578287015190505b620005718582620004e4565b865550620005e1565b601f1984166200058a8662000326565b60005b82811015620005b4578489015182556001820191506020850194506020810190506200058d565b86831015620005d45784890151620005d0601f891682620004c4565b8355505b6001600288020188555050505b505050505050565b61393680620005f96000396000f3fe6080604052600436106102465760003560e01c806370a0823111610139578063b88d4fde116100b6578063e268e4d31161007a578063e268e4d314610815578063e26d14741461083e578063e985e9c514610867578063efbd73f4146108a4578063f2fde38b146108cd578063f676308a146108f657610246565b8063b88d4fde1461072b578063c87b56dd14610747578063d5abeb0114610784578063e0a80853146107af578063e0ec7c36146107d857610246565b806395d89b41116100fd57806395d89b4114610667578063a0712d6814610692578063a22cb465146106ae578063a45ba8e7146106d7578063b071401b1461070257610246565b806370a0823114610594578063715018a6146105d15780637ec4a659146105e85780638da5cb5b1461061157806394354fd01461063c57610246565b80633ccfd60b116101c7578063518302271161018b57806351830227146104ab5780635503a0e8146104d65780635c975abb1461050157806362b99ad41461052c5780636352211e1461055757610246565b80633ccfd60b146103fb57806342842e0e1461041257806344a0d68a1461042e578063453c2310146104575780634fdd43cb1461048257610246565b806316ba10e01161020e57806316ba10e01461033757806316c38b3c1461036057806318160ddd1461038957806323b872dd146103b457806324a6ab0c146103d057610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806313faede61461030c575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906126da565b61091f565b60405161027f9190612722565b60405180910390f35b34801561029457600080fd5b5061029d6109b1565b6040516102aa91906127cd565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190612825565b610a43565b6040516102e79190612893565b60405180910390f35b61030a600480360381019061030591906128da565b610ac2565b005b34801561031857600080fd5b50610321610c06565b60405161032e9190612929565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190612a79565b610c0c565b005b34801561036c57600080fd5b5061038760048036038101906103829190612aee565b610c27565b005b34801561039557600080fd5b5061039e610c4c565b6040516103ab9190612929565b60405180910390f35b6103ce60048036038101906103c99190612b1b565b610c63565b005b3480156103dc57600080fd5b506103e5610f85565b6040516103f29190612929565b60405180910390f35b34801561040757600080fd5b50610410610f8b565b005b61042c60048036038101906104279190612b1b565b611023565b005b34801561043a57600080fd5b5061045560048036038101906104509190612825565b611043565b005b34801561046357600080fd5b5061046c611055565b6040516104799190612929565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a49190612a79565b61105b565b005b3480156104b757600080fd5b506104c0611076565b6040516104cd9190612722565b60405180910390f35b3480156104e257600080fd5b506104eb611089565b6040516104f891906127cd565b60405180910390f35b34801561050d57600080fd5b50610516611117565b6040516105239190612722565b60405180910390f35b34801561053857600080fd5b5061054161112a565b60405161054e91906127cd565b60405180910390f35b34801561056357600080fd5b5061057e60048036038101906105799190612825565b6111b8565b60405161058b9190612893565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b69190612b6e565b6111ca565b6040516105c89190612929565b60405180910390f35b3480156105dd57600080fd5b506105e6611282565b005b3480156105f457600080fd5b5061060f600480360381019061060a9190612a79565b611296565b005b34801561061d57600080fd5b506106266112b1565b6040516106339190612893565b60405180910390f35b34801561064857600080fd5b506106516112db565b60405161065e9190612929565b60405180910390f35b34801561067357600080fd5b5061067c6112e1565b60405161068991906127cd565b60405180910390f35b6106ac60048036038101906106a79190612825565b611373565b005b3480156106ba57600080fd5b506106d560048036038101906106d09190612b9b565b6115ad565b005b3480156106e357600080fd5b506106ec6116b8565b6040516106f991906127cd565b60405180910390f35b34801561070e57600080fd5b5061072960048036038101906107249190612825565b611746565b005b61074560048036038101906107409190612c7c565b611758565b005b34801561075357600080fd5b5061076e60048036038101906107699190612825565b6117cb565b60405161077b91906127cd565b60405180910390f35b34801561079057600080fd5b50610799611923565b6040516107a69190612929565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d19190612aee565b611929565b005b3480156107e457600080fd5b506107ff60048036038101906107fa9190612b6e565b61194e565b60405161080c9190612722565b60405180910390f35b34801561082157600080fd5b5061083c60048036038101906108379190612825565b61196e565b005b34801561084a57600080fd5b5061086560048036038101906108609190612825565b611980565b005b34801561087357600080fd5b5061088e60048036038101906108899190612cff565b611992565b60405161089b9190612722565b60405180910390f35b3480156108b057600080fd5b506108cb60048036038101906108c69190612d3f565b611a26565b005b3480156108d957600080fd5b506108f460048036038101906108ef9190612b6e565b611b45565b005b34801561090257600080fd5b5061091d60048036038101906109189190612825565b611bc8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109aa5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109c090612dae565b80601f01602080910402602001604051908101604052809291908181526020018280546109ec90612dae565b8015610a395780601f10610a0e57610100808354040283529160200191610a39565b820191906000526020600020905b815481529060010190602001808311610a1c57829003601f168201915b5050505050905090565b6000610a4e82611bda565b610a84576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610acd826111b8565b90508073ffffffffffffffffffffffffffffffffffffffff16610aee611c39565b73ffffffffffffffffffffffffffffffffffffffff1614610b5157610b1a81610b15611c39565b611992565b610b50576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610c14611c41565b80600b9081610c239190612f8b565b5050565b610c2f611c41565b80601260006101000a81548160ff02191690831515021790555050565b6000610c56611cbf565b6001546000540303905090565b6000610c6e82611cc8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610cd5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ce184611d94565b91509150610cf78187610cf2611c39565b611dbb565b610d4357610d0c86610d07611c39565b611992565b610d42576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610da9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610db68686866001611dff565b8015610dc157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e8f85610e6b888887611e05565b7c020000000000000000000000000000000000000000000000000000000017611e2d565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610f155760006001850190506000600460008381526020019081526020016000205403610f13576000548114610f12578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f7d8686866001611e58565b505050505050565b600f5481565b610f93611c41565b610f9b611e5e565b6000610fa56112b1565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fc89061308e565b60006040518083038185875af1925050503d8060008114611005576040519150601f19603f3d011682016040523d82523d6000602084013e61100a565b606091505b505090508061101857600080fd5b50611021611ead565b565b61103e83838360405180602001604052806000815250611758565b505050565b61104b611c41565b80600d8190555050565b60105481565b611063611c41565b80600c90816110729190612f8b565b5050565b601260019054906101000a900460ff1681565b600b805461109690612dae565b80601f01602080910402602001604051908101604052809291908181526020018280546110c290612dae565b801561110f5780601f106110e45761010080835404028352916020019161110f565b820191906000526020600020905b8154815290600101906020018083116110f257829003601f168201915b505050505081565b601260009054906101000a900460ff1681565b600a805461113790612dae565b80601f016020809104026020016040519081016040528092919081815260200182805461116390612dae565b80156111b05780601f10611185576101008083540402835291602001916111b0565b820191906000526020600020905b81548152906001019060200180831161119357829003601f168201915b505050505081565b60006111c382611cc8565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611231576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61128a611c41565b6112946000611eb7565b565b61129e611c41565b80600a90816112ad9190612f8b565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6060600380546112f090612dae565b80601f016020809104026020016040519081016040528092919081815260200182805461131c90612dae565b80156113695780601f1061133e57610100808354040283529160200191611369565b820191906000526020600020905b81548152906001019060200180831161134c57829003601f168201915b5050505050905090565b601260009054906101000a900460ff16156113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba906130ef565b60405180910390fd5b600e54816113cf610c4c565b6113d9919061313e565b111561141a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611411906131be565b60405180910390fd5b600061142533611f7d565b90503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c9061322a565b60405180910390fd5b60105482826114a4919061313e565b11156114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc906132bc565b60405180910390fd5b6000810361154e576001826114fa91906132dc565b600d546115079190613310565b341015611549576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115409061339e565b60405180910390fd5b61159f565b81600d5461155c9190613310565b34101561159e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115959061339e565b60405180910390fd5b5b6115a93383611fd4565b5050565b80600760006115ba611c39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611667611c39565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116ac9190612722565b60405180910390a35050565b600c80546116c590612dae565b80601f01602080910402602001604051908101604052809291908181526020018280546116f190612dae565b801561173e5780601f106117135761010080835404028352916020019161173e565b820191906000526020600020905b81548152906001019060200180831161172157829003601f168201915b505050505081565b61174e611c41565b8060118190555050565b611763848484610c63565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117c55761178e84848484611ff2565b6117c4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606117d682611bda565b611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c90613430565b60405180910390fd5b60001515601260019054906101000a900460ff161515036118c257600c805461183d90612dae565b80601f016020809104026020016040519081016040528092919081815260200182805461186990612dae565b80156118b65780601f1061188b576101008083540402835291602001916118b6565b820191906000526020600020905b81548152906001019060200180831161189957829003601f168201915b5050505050905061191e565b60006118cc612142565b905060008151116118ec576040518060200160405280600081525061191a565b806118f6846121d4565b600b60405160200161190a9392919061350f565b6040516020818303038152906040525b9150505b919050565b600e5481565b611931611c41565b80601260016101000a81548160ff02191690831515021790555050565b60136020528060005260406000206000915054906101000a900460ff1681565b611976611c41565b8060108190555050565b611988611c41565b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611a3957506011548111155b611a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6f9061358c565b60405180910390fd5b601054611a8b611a866122a2565b6111ca565b82611a96919061313e565b1115611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace906135f8565b60405180910390fd5b600e5481611ae3610c4c565b611aed919061313e565b1115611b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2590613664565b60405180910390fd5b611b36611c41565b611b408284611fd4565b505050565b611b4d611c41565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb3906136f6565b60405180910390fd5b611bc581611eb7565b50565b611bd0611c41565b80600f8190555050565b600081611be5611cbf565b11158015611bf4575060005482105b8015611c32575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611c496122a2565b73ffffffffffffffffffffffffffffffffffffffff16611c676112b1565b73ffffffffffffffffffffffffffffffffffffffff1614611cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb490613762565b60405180910390fd5b565b60006001905090565b60008082905080611cd7611cbf565b11611d5d57600054811015611d5c5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d5a575b60008103611d50576004600083600190039350838152602001908152602001600020549050611d26565b8092505050611d8f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e1c8686846122aa565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600260095403611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a906137ce565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611fee8282604051806020016040528060008152506122b3565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612018611c39565b8786866040518563ffffffff1660e01b815260040161203a9493929190613843565b6020604051808303816000875af192505050801561207657506040513d601f19601f8201168201806040525081019061207391906138a4565b60015b6120ef573d80600081146120a6576040519150601f19603f3d011682016040523d82523d6000602084013e6120ab565b606091505b5060008151036120e7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461215190612dae565b80601f016020809104026020016040519081016040528092919081815260200182805461217d90612dae565b80156121ca5780601f1061219f576101008083540402835291602001916121ca565b820191906000526020600020905b8154815290600101906020018083116121ad57829003601f168201915b5050505050905090565b6060600060016121e384612350565b01905060008167ffffffffffffffff8111156122025761220161294e565b5b6040519080825280601f01601f1916602001820160405280156122345781602001600182028036833780820191505090505b509050600082602001820190505b600115612297578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161228b5761228a6138d1565b5b04945060008503612242575b819350505050919050565b600033905090565b60009392505050565b6122bd83836124a3565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461234b57600080549050600083820390505b6122fd6000868380600101945086611ff2565b612333576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106122ea57816000541461234857600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106123ae577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816123a4576123a36138d1565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106123eb576d04ee2d6d415b85acef810000000083816123e1576123e06138d1565b5b0492506020810190505b662386f26fc10000831061241a57662386f26fc1000083816124105761240f6138d1565b5b0492506010810190505b6305f5e1008310612443576305f5e1008381612439576124386138d1565b5b0492506008810190505b612710831061246857612710838161245e5761245d6138d1565b5b0492506004810190505b6064831061248b5760648381612481576124806138d1565b5b0492506002810190505b600a831061249a576001810190505b80915050919050565b600080549050600082036124e3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124f06000848385611dff565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612567836125586000866000611e05565b6125618561265e565b17611e2d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461260857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506125cd565b5060008203612643576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126596000848385611e58565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126b781612682565b81146126c257600080fd5b50565b6000813590506126d4816126ae565b92915050565b6000602082840312156126f0576126ef612678565b5b60006126fe848285016126c5565b91505092915050565b60008115159050919050565b61271c81612707565b82525050565b60006020820190506127376000830184612713565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561277757808201518184015260208101905061275c565b60008484015250505050565b6000601f19601f8301169050919050565b600061279f8261273d565b6127a98185612748565b93506127b9818560208601612759565b6127c281612783565b840191505092915050565b600060208201905081810360008301526127e78184612794565b905092915050565b6000819050919050565b612802816127ef565b811461280d57600080fd5b50565b60008135905061281f816127f9565b92915050565b60006020828403121561283b5761283a612678565b5b600061284984828501612810565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061287d82612852565b9050919050565b61288d81612872565b82525050565b60006020820190506128a86000830184612884565b92915050565b6128b781612872565b81146128c257600080fd5b50565b6000813590506128d4816128ae565b92915050565b600080604083850312156128f1576128f0612678565b5b60006128ff858286016128c5565b925050602061291085828601612810565b9150509250929050565b612923816127ef565b82525050565b600060208201905061293e600083018461291a565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61298682612783565b810181811067ffffffffffffffff821117156129a5576129a461294e565b5b80604052505050565b60006129b861266e565b90506129c4828261297d565b919050565b600067ffffffffffffffff8211156129e4576129e361294e565b5b6129ed82612783565b9050602081019050919050565b82818337600083830152505050565b6000612a1c612a17846129c9565b6129ae565b905082815260208101848484011115612a3857612a37612949565b5b612a438482856129fa565b509392505050565b600082601f830112612a6057612a5f612944565b5b8135612a70848260208601612a09565b91505092915050565b600060208284031215612a8f57612a8e612678565b5b600082013567ffffffffffffffff811115612aad57612aac61267d565b5b612ab984828501612a4b565b91505092915050565b612acb81612707565b8114612ad657600080fd5b50565b600081359050612ae881612ac2565b92915050565b600060208284031215612b0457612b03612678565b5b6000612b1284828501612ad9565b91505092915050565b600080600060608486031215612b3457612b33612678565b5b6000612b42868287016128c5565b9350506020612b53868287016128c5565b9250506040612b6486828701612810565b9150509250925092565b600060208284031215612b8457612b83612678565b5b6000612b92848285016128c5565b91505092915050565b60008060408385031215612bb257612bb1612678565b5b6000612bc0858286016128c5565b9250506020612bd185828601612ad9565b9150509250929050565b600067ffffffffffffffff821115612bf657612bf561294e565b5b612bff82612783565b9050602081019050919050565b6000612c1f612c1a84612bdb565b6129ae565b905082815260208101848484011115612c3b57612c3a612949565b5b612c468482856129fa565b509392505050565b600082601f830112612c6357612c62612944565b5b8135612c73848260208601612c0c565b91505092915050565b60008060008060808587031215612c9657612c95612678565b5b6000612ca4878288016128c5565b9450506020612cb5878288016128c5565b9350506040612cc687828801612810565b925050606085013567ffffffffffffffff811115612ce757612ce661267d565b5b612cf387828801612c4e565b91505092959194509250565b60008060408385031215612d1657612d15612678565b5b6000612d24858286016128c5565b9250506020612d35858286016128c5565b9150509250929050565b60008060408385031215612d5657612d55612678565b5b6000612d6485828601612810565b9250506020612d75858286016128c5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612dc657607f821691505b602082108103612dd957612dd8612d7f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612e417fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612e04565b612e4b8683612e04565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612e88612e83612e7e846127ef565b612e63565b6127ef565b9050919050565b6000819050919050565b612ea283612e6d565b612eb6612eae82612e8f565b848454612e11565b825550505050565b600090565b612ecb612ebe565b612ed6818484612e99565b505050565b5b81811015612efa57612eef600082612ec3565b600181019050612edc565b5050565b601f821115612f3f57612f1081612ddf565b612f1984612df4565b81016020851015612f28578190505b612f3c612f3485612df4565b830182612edb565b50505b505050565b600082821c905092915050565b6000612f6260001984600802612f44565b1980831691505092915050565b6000612f7b8383612f51565b9150826002028217905092915050565b612f948261273d565b67ffffffffffffffff811115612fad57612fac61294e565b5b612fb78254612dae565b612fc2828285612efe565b600060209050601f831160018114612ff55760008415612fe3578287015190505b612fed8582612f6f565b865550613055565b601f19841661300386612ddf565b60005b8281101561302b57848901518255600182019150602085019450602081019050613006565b868310156130485784890151613044601f891682612f51565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b50565b600061307860008361305d565b915061308382613068565b600082019050919050565b60006130998261306b565b9150819050919050565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b60006130d9601083612748565b91506130e4826130a3565b602082019050919050565b60006020820190508181036000830152613108816130cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613149826127ef565b9150613154836127ef565b925082820190508082111561316c5761316b61310f565b5b92915050565b7f4d617820737570706c7920776f756c6420626520657863656564656400000000600082015250565b60006131a8601c83612748565b91506131b382613172565b602082019050919050565b600060208201905081810360008301526131d78161319b565b9050919050565b7f436f6e7472616374206d696e74696e67206e6f7420616c6c6f77656400000000600082015250565b6000613214601c83612748565b915061321f826131de565b602082019050919050565b6000602082019050818103600083015261324381613207565b9050919050565b7f4d6178206d696e74207065722077616c6c657420776f756c642062652065786360008201527f6565646564000000000000000000000000000000000000000000000000000000602082015250565b60006132a6602583612748565b91506132b18261324a565b604082019050919050565b600060208201905081810360008301526132d581613299565b9050919050565b60006132e7826127ef565b91506132f2836127ef565b925082820390508181111561330a5761330961310f565b5b92915050565b600061331b826127ef565b9150613326836127ef565b9250828202613334816127ef565b9150828204841483151761334b5761334a61310f565b5b5092915050565b7f56616c7565206e6f74206d657400000000000000000000000000000000000000600082015250565b6000613388600d83612748565b915061339382613352565b602082019050919050565b600060208201905081810360008301526133b78161337b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061341a602f83612748565b9150613425826133be565b604082019050919050565b600060208201905081810360008301526134498161340d565b9050919050565b600081905092915050565b60006134668261273d565b6134708185613450565b9350613480818560208601612759565b80840191505092915050565b6000815461349981612dae565b6134a38186613450565b945060018216600081146134be57600181146134d357613506565b60ff1983168652811515820286019350613506565b6134dc85612ddf565b60005b838110156134fe578154818901526001820191506020810190506134df565b838801955050505b50505092915050565b600061351b828661345b565b9150613527828561345b565b9150613533828461348c565b9150819050949350505050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613576601483612748565b915061358182613540565b602082019050919050565b600060208201905081810360008301526135a581613569565b9050919050565b7f4f6e6c79206669766520616c6c6f776564207065722077616c6c657421000000600082015250565b60006135e2601d83612748565b91506135ed826135ac565b602082019050919050565b60006020820190508181036000830152613611816135d5565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061364e601483612748565b915061365982613618565b602082019050919050565b6000602082019050818103600083015261367d81613641565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136e0602683612748565b91506136eb82613684565b604082019050919050565b6000602082019050818103600083015261370f816136d3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061374c602083612748565b915061375782613716565b602082019050919050565b6000602082019050818103600083015261377b8161373f565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006137b8601f83612748565b91506137c382613782565b602082019050919050565b600060208201905081810360008301526137e7816137ab565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613815826137ee565b61381f81856137f9565b935061382f818560208601612759565b61383881612783565b840191505092915050565b60006080820190506138586000830187612884565b6138656020830186612884565b613872604083018561291a565b8181036060830152613884818461380a565b905095945050505050565b60008151905061389e816126ae565b92915050565b6000602082840312156138ba576138b9612678565b5b60006138c88482850161388f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea2646970667358221220b5ba680b916d60772ca9f4b882a6049f853c06c0ec193bae328e899271f125b164736f6c63430008120033697066733a2f2f6261667962656961767232716f6c6a783268337a363472767870796f6f353669716f63766f726277366573667a6566636f736674783433676d6e6d2f

Deployed Bytecode

0x6080604052600436106102465760003560e01c806370a0823111610139578063b88d4fde116100b6578063e268e4d31161007a578063e268e4d314610815578063e26d14741461083e578063e985e9c514610867578063efbd73f4146108a4578063f2fde38b146108cd578063f676308a146108f657610246565b8063b88d4fde1461072b578063c87b56dd14610747578063d5abeb0114610784578063e0a80853146107af578063e0ec7c36146107d857610246565b806395d89b41116100fd57806395d89b4114610667578063a0712d6814610692578063a22cb465146106ae578063a45ba8e7146106d7578063b071401b1461070257610246565b806370a0823114610594578063715018a6146105d15780637ec4a659146105e85780638da5cb5b1461061157806394354fd01461063c57610246565b80633ccfd60b116101c7578063518302271161018b57806351830227146104ab5780635503a0e8146104d65780635c975abb1461050157806362b99ad41461052c5780636352211e1461055757610246565b80633ccfd60b146103fb57806342842e0e1461041257806344a0d68a1461042e578063453c2310146104575780634fdd43cb1461048257610246565b806316ba10e01161020e57806316ba10e01461033757806316c38b3c1461036057806318160ddd1461038957806323b872dd146103b457806324a6ab0c146103d057610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806313faede61461030c575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d91906126da565b61091f565b60405161027f9190612722565b60405180910390f35b34801561029457600080fd5b5061029d6109b1565b6040516102aa91906127cd565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190612825565b610a43565b6040516102e79190612893565b60405180910390f35b61030a600480360381019061030591906128da565b610ac2565b005b34801561031857600080fd5b50610321610c06565b60405161032e9190612929565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190612a79565b610c0c565b005b34801561036c57600080fd5b5061038760048036038101906103829190612aee565b610c27565b005b34801561039557600080fd5b5061039e610c4c565b6040516103ab9190612929565b60405180910390f35b6103ce60048036038101906103c99190612b1b565b610c63565b005b3480156103dc57600080fd5b506103e5610f85565b6040516103f29190612929565b60405180910390f35b34801561040757600080fd5b50610410610f8b565b005b61042c60048036038101906104279190612b1b565b611023565b005b34801561043a57600080fd5b5061045560048036038101906104509190612825565b611043565b005b34801561046357600080fd5b5061046c611055565b6040516104799190612929565b60405180910390f35b34801561048e57600080fd5b506104a960048036038101906104a49190612a79565b61105b565b005b3480156104b757600080fd5b506104c0611076565b6040516104cd9190612722565b60405180910390f35b3480156104e257600080fd5b506104eb611089565b6040516104f891906127cd565b60405180910390f35b34801561050d57600080fd5b50610516611117565b6040516105239190612722565b60405180910390f35b34801561053857600080fd5b5061054161112a565b60405161054e91906127cd565b60405180910390f35b34801561056357600080fd5b5061057e60048036038101906105799190612825565b6111b8565b60405161058b9190612893565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b69190612b6e565b6111ca565b6040516105c89190612929565b60405180910390f35b3480156105dd57600080fd5b506105e6611282565b005b3480156105f457600080fd5b5061060f600480360381019061060a9190612a79565b611296565b005b34801561061d57600080fd5b506106266112b1565b6040516106339190612893565b60405180910390f35b34801561064857600080fd5b506106516112db565b60405161065e9190612929565b60405180910390f35b34801561067357600080fd5b5061067c6112e1565b60405161068991906127cd565b60405180910390f35b6106ac60048036038101906106a79190612825565b611373565b005b3480156106ba57600080fd5b506106d560048036038101906106d09190612b9b565b6115ad565b005b3480156106e357600080fd5b506106ec6116b8565b6040516106f991906127cd565b60405180910390f35b34801561070e57600080fd5b5061072960048036038101906107249190612825565b611746565b005b61074560048036038101906107409190612c7c565b611758565b005b34801561075357600080fd5b5061076e60048036038101906107699190612825565b6117cb565b60405161077b91906127cd565b60405180910390f35b34801561079057600080fd5b50610799611923565b6040516107a69190612929565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d19190612aee565b611929565b005b3480156107e457600080fd5b506107ff60048036038101906107fa9190612b6e565b61194e565b60405161080c9190612722565b60405180910390f35b34801561082157600080fd5b5061083c60048036038101906108379190612825565b61196e565b005b34801561084a57600080fd5b5061086560048036038101906108609190612825565b611980565b005b34801561087357600080fd5b5061088e60048036038101906108899190612cff565b611992565b60405161089b9190612722565b60405180910390f35b3480156108b057600080fd5b506108cb60048036038101906108c69190612d3f565b611a26565b005b3480156108d957600080fd5b506108f460048036038101906108ef9190612b6e565b611b45565b005b34801561090257600080fd5b5061091d60048036038101906109189190612825565b611bc8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109aa5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109c090612dae565b80601f01602080910402602001604051908101604052809291908181526020018280546109ec90612dae565b8015610a395780601f10610a0e57610100808354040283529160200191610a39565b820191906000526020600020905b815481529060010190602001808311610a1c57829003601f168201915b5050505050905090565b6000610a4e82611bda565b610a84576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610acd826111b8565b90508073ffffffffffffffffffffffffffffffffffffffff16610aee611c39565b73ffffffffffffffffffffffffffffffffffffffff1614610b5157610b1a81610b15611c39565b611992565b610b50576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610c14611c41565b80600b9081610c239190612f8b565b5050565b610c2f611c41565b80601260006101000a81548160ff02191690831515021790555050565b6000610c56611cbf565b6001546000540303905090565b6000610c6e82611cc8565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610cd5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610ce184611d94565b91509150610cf78187610cf2611c39565b611dbb565b610d4357610d0c86610d07611c39565b611992565b610d42576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610da9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610db68686866001611dff565b8015610dc157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e8f85610e6b888887611e05565b7c020000000000000000000000000000000000000000000000000000000017611e2d565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610f155760006001850190506000600460008381526020019081526020016000205403610f13576000548114610f12578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f7d8686866001611e58565b505050505050565b600f5481565b610f93611c41565b610f9b611e5e565b6000610fa56112b1565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fc89061308e565b60006040518083038185875af1925050503d8060008114611005576040519150601f19603f3d011682016040523d82523d6000602084013e61100a565b606091505b505090508061101857600080fd5b50611021611ead565b565b61103e83838360405180602001604052806000815250611758565b505050565b61104b611c41565b80600d8190555050565b60105481565b611063611c41565b80600c90816110729190612f8b565b5050565b601260019054906101000a900460ff1681565b600b805461109690612dae565b80601f01602080910402602001604051908101604052809291908181526020018280546110c290612dae565b801561110f5780601f106110e45761010080835404028352916020019161110f565b820191906000526020600020905b8154815290600101906020018083116110f257829003601f168201915b505050505081565b601260009054906101000a900460ff1681565b600a805461113790612dae565b80601f016020809104026020016040519081016040528092919081815260200182805461116390612dae565b80156111b05780601f10611185576101008083540402835291602001916111b0565b820191906000526020600020905b81548152906001019060200180831161119357829003601f168201915b505050505081565b60006111c382611cc8565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611231576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61128a611c41565b6112946000611eb7565b565b61129e611c41565b80600a90816112ad9190612f8b565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6060600380546112f090612dae565b80601f016020809104026020016040519081016040528092919081815260200182805461131c90612dae565b80156113695780601f1061133e57610100808354040283529160200191611369565b820191906000526020600020905b81548152906001019060200180831161134c57829003601f168201915b5050505050905090565b601260009054906101000a900460ff16156113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba906130ef565b60405180910390fd5b600e54816113cf610c4c565b6113d9919061313e565b111561141a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611411906131be565b60405180910390fd5b600061142533611f7d565b90503273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c9061322a565b60405180910390fd5b60105482826114a4919061313e565b11156114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc906132bc565b60405180910390fd5b6000810361154e576001826114fa91906132dc565b600d546115079190613310565b341015611549576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115409061339e565b60405180910390fd5b61159f565b81600d5461155c9190613310565b34101561159e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115959061339e565b60405180910390fd5b5b6115a93383611fd4565b5050565b80600760006115ba611c39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611667611c39565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116ac9190612722565b60405180910390a35050565b600c80546116c590612dae565b80601f01602080910402602001604051908101604052809291908181526020018280546116f190612dae565b801561173e5780601f106117135761010080835404028352916020019161173e565b820191906000526020600020905b81548152906001019060200180831161172157829003601f168201915b505050505081565b61174e611c41565b8060118190555050565b611763848484610c63565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117c55761178e84848484611ff2565b6117c4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606117d682611bda565b611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c90613430565b60405180910390fd5b60001515601260019054906101000a900460ff161515036118c257600c805461183d90612dae565b80601f016020809104026020016040519081016040528092919081815260200182805461186990612dae565b80156118b65780601f1061188b576101008083540402835291602001916118b6565b820191906000526020600020905b81548152906001019060200180831161189957829003601f168201915b5050505050905061191e565b60006118cc612142565b905060008151116118ec576040518060200160405280600081525061191a565b806118f6846121d4565b600b60405160200161190a9392919061350f565b6040516020818303038152906040525b9150505b919050565b600e5481565b611931611c41565b80601260016101000a81548160ff02191690831515021790555050565b60136020528060005260406000206000915054906101000a900460ff1681565b611976611c41565b8060108190555050565b611988611c41565b80600e8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611a3957506011548111155b611a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6f9061358c565b60405180910390fd5b601054611a8b611a866122a2565b6111ca565b82611a96919061313e565b1115611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace906135f8565b60405180910390fd5b600e5481611ae3610c4c565b611aed919061313e565b1115611b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2590613664565b60405180910390fd5b611b36611c41565b611b408284611fd4565b505050565b611b4d611c41565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb3906136f6565b60405180910390fd5b611bc581611eb7565b50565b611bd0611c41565b80600f8190555050565b600081611be5611cbf565b11158015611bf4575060005482105b8015611c32575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611c496122a2565b73ffffffffffffffffffffffffffffffffffffffff16611c676112b1565b73ffffffffffffffffffffffffffffffffffffffff1614611cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb490613762565b60405180910390fd5b565b60006001905090565b60008082905080611cd7611cbf565b11611d5d57600054811015611d5c5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d5a575b60008103611d50576004600083600190039350838152602001908152602001600020549050611d26565b8092505050611d8f565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e1c8686846122aa565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600260095403611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a906137ce565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611fee8282604051806020016040528060008152506122b3565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612018611c39565b8786866040518563ffffffff1660e01b815260040161203a9493929190613843565b6020604051808303816000875af192505050801561207657506040513d601f19601f8201168201806040525081019061207391906138a4565b60015b6120ef573d80600081146120a6576040519150601f19603f3d011682016040523d82523d6000602084013e6120ab565b606091505b5060008151036120e7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461215190612dae565b80601f016020809104026020016040519081016040528092919081815260200182805461217d90612dae565b80156121ca5780601f1061219f576101008083540402835291602001916121ca565b820191906000526020600020905b8154815290600101906020018083116121ad57829003601f168201915b5050505050905090565b6060600060016121e384612350565b01905060008167ffffffffffffffff8111156122025761220161294e565b5b6040519080825280601f01601f1916602001820160405280156122345781602001600182028036833780820191505090505b509050600082602001820190505b600115612297578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161228b5761228a6138d1565b5b04945060008503612242575b819350505050919050565b600033905090565b60009392505050565b6122bd83836124a3565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461234b57600080549050600083820390505b6122fd6000868380600101945086611ff2565b612333576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106122ea57816000541461234857600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106123ae577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816123a4576123a36138d1565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106123eb576d04ee2d6d415b85acef810000000083816123e1576123e06138d1565b5b0492506020810190505b662386f26fc10000831061241a57662386f26fc1000083816124105761240f6138d1565b5b0492506010810190505b6305f5e1008310612443576305f5e1008381612439576124386138d1565b5b0492506008810190505b612710831061246857612710838161245e5761245d6138d1565b5b0492506004810190505b6064831061248b5760648381612481576124806138d1565b5b0492506002810190505b600a831061249a576001810190505b80915050919050565b600080549050600082036124e3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124f06000848385611dff565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612567836125586000866000611e05565b6125618561265e565b17611e2d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461260857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506125cd565b5060008203612643576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126596000848385611e58565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126b781612682565b81146126c257600080fd5b50565b6000813590506126d4816126ae565b92915050565b6000602082840312156126f0576126ef612678565b5b60006126fe848285016126c5565b91505092915050565b60008115159050919050565b61271c81612707565b82525050565b60006020820190506127376000830184612713565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561277757808201518184015260208101905061275c565b60008484015250505050565b6000601f19601f8301169050919050565b600061279f8261273d565b6127a98185612748565b93506127b9818560208601612759565b6127c281612783565b840191505092915050565b600060208201905081810360008301526127e78184612794565b905092915050565b6000819050919050565b612802816127ef565b811461280d57600080fd5b50565b60008135905061281f816127f9565b92915050565b60006020828403121561283b5761283a612678565b5b600061284984828501612810565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061287d82612852565b9050919050565b61288d81612872565b82525050565b60006020820190506128a86000830184612884565b92915050565b6128b781612872565b81146128c257600080fd5b50565b6000813590506128d4816128ae565b92915050565b600080604083850312156128f1576128f0612678565b5b60006128ff858286016128c5565b925050602061291085828601612810565b9150509250929050565b612923816127ef565b82525050565b600060208201905061293e600083018461291a565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61298682612783565b810181811067ffffffffffffffff821117156129a5576129a461294e565b5b80604052505050565b60006129b861266e565b90506129c4828261297d565b919050565b600067ffffffffffffffff8211156129e4576129e361294e565b5b6129ed82612783565b9050602081019050919050565b82818337600083830152505050565b6000612a1c612a17846129c9565b6129ae565b905082815260208101848484011115612a3857612a37612949565b5b612a438482856129fa565b509392505050565b600082601f830112612a6057612a5f612944565b5b8135612a70848260208601612a09565b91505092915050565b600060208284031215612a8f57612a8e612678565b5b600082013567ffffffffffffffff811115612aad57612aac61267d565b5b612ab984828501612a4b565b91505092915050565b612acb81612707565b8114612ad657600080fd5b50565b600081359050612ae881612ac2565b92915050565b600060208284031215612b0457612b03612678565b5b6000612b1284828501612ad9565b91505092915050565b600080600060608486031215612b3457612b33612678565b5b6000612b42868287016128c5565b9350506020612b53868287016128c5565b9250506040612b6486828701612810565b9150509250925092565b600060208284031215612b8457612b83612678565b5b6000612b92848285016128c5565b91505092915050565b60008060408385031215612bb257612bb1612678565b5b6000612bc0858286016128c5565b9250506020612bd185828601612ad9565b9150509250929050565b600067ffffffffffffffff821115612bf657612bf561294e565b5b612bff82612783565b9050602081019050919050565b6000612c1f612c1a84612bdb565b6129ae565b905082815260208101848484011115612c3b57612c3a612949565b5b612c468482856129fa565b509392505050565b600082601f830112612c6357612c62612944565b5b8135612c73848260208601612c0c565b91505092915050565b60008060008060808587031215612c9657612c95612678565b5b6000612ca4878288016128c5565b9450506020612cb5878288016128c5565b9350506040612cc687828801612810565b925050606085013567ffffffffffffffff811115612ce757612ce661267d565b5b612cf387828801612c4e565b91505092959194509250565b60008060408385031215612d1657612d15612678565b5b6000612d24858286016128c5565b9250506020612d35858286016128c5565b9150509250929050565b60008060408385031215612d5657612d55612678565b5b6000612d6485828601612810565b9250506020612d75858286016128c5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612dc657607f821691505b602082108103612dd957612dd8612d7f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612e417fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612e04565b612e4b8683612e04565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612e88612e83612e7e846127ef565b612e63565b6127ef565b9050919050565b6000819050919050565b612ea283612e6d565b612eb6612eae82612e8f565b848454612e11565b825550505050565b600090565b612ecb612ebe565b612ed6818484612e99565b505050565b5b81811015612efa57612eef600082612ec3565b600181019050612edc565b5050565b601f821115612f3f57612f1081612ddf565b612f1984612df4565b81016020851015612f28578190505b612f3c612f3485612df4565b830182612edb565b50505b505050565b600082821c905092915050565b6000612f6260001984600802612f44565b1980831691505092915050565b6000612f7b8383612f51565b9150826002028217905092915050565b612f948261273d565b67ffffffffffffffff811115612fad57612fac61294e565b5b612fb78254612dae565b612fc2828285612efe565b600060209050601f831160018114612ff55760008415612fe3578287015190505b612fed8582612f6f565b865550613055565b601f19841661300386612ddf565b60005b8281101561302b57848901518255600182019150602085019450602081019050613006565b868310156130485784890151613044601f891682612f51565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b50565b600061307860008361305d565b915061308382613068565b600082019050919050565b60006130998261306b565b9150819050919050565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b60006130d9601083612748565b91506130e4826130a3565b602082019050919050565b60006020820190508181036000830152613108816130cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613149826127ef565b9150613154836127ef565b925082820190508082111561316c5761316b61310f565b5b92915050565b7f4d617820737570706c7920776f756c6420626520657863656564656400000000600082015250565b60006131a8601c83612748565b91506131b382613172565b602082019050919050565b600060208201905081810360008301526131d78161319b565b9050919050565b7f436f6e7472616374206d696e74696e67206e6f7420616c6c6f77656400000000600082015250565b6000613214601c83612748565b915061321f826131de565b602082019050919050565b6000602082019050818103600083015261324381613207565b9050919050565b7f4d6178206d696e74207065722077616c6c657420776f756c642062652065786360008201527f6565646564000000000000000000000000000000000000000000000000000000602082015250565b60006132a6602583612748565b91506132b18261324a565b604082019050919050565b600060208201905081810360008301526132d581613299565b9050919050565b60006132e7826127ef565b91506132f2836127ef565b925082820390508181111561330a5761330961310f565b5b92915050565b600061331b826127ef565b9150613326836127ef565b9250828202613334816127ef565b9150828204841483151761334b5761334a61310f565b5b5092915050565b7f56616c7565206e6f74206d657400000000000000000000000000000000000000600082015250565b6000613388600d83612748565b915061339382613352565b602082019050919050565b600060208201905081810360008301526133b78161337b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061341a602f83612748565b9150613425826133be565b604082019050919050565b600060208201905081810360008301526134498161340d565b9050919050565b600081905092915050565b60006134668261273d565b6134708185613450565b9350613480818560208601612759565b80840191505092915050565b6000815461349981612dae565b6134a38186613450565b945060018216600081146134be57600181146134d357613506565b60ff1983168652811515820286019350613506565b6134dc85612ddf565b60005b838110156134fe578154818901526001820191506020810190506134df565b838801955050505b50505092915050565b600061351b828661345b565b9150613527828561345b565b9150613533828461348c565b9150819050949350505050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613576601483612748565b915061358182613540565b602082019050919050565b600060208201905081810360008301526135a581613569565b9050919050565b7f4f6e6c79206669766520616c6c6f776564207065722077616c6c657421000000600082015250565b60006135e2601d83612748565b91506135ed826135ac565b602082019050919050565b60006020820190508181036000830152613611816135d5565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b600061364e601483612748565b915061365982613618565b602082019050919050565b6000602082019050818103600083015261367d81613641565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136e0602683612748565b91506136eb82613684565b604082019050919050565b6000602082019050818103600083015261370f816136d3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061374c602083612748565b915061375782613716565b602082019050919050565b6000602082019050818103600083015261377b8161373f565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006137b8601f83612748565b91506137c382613782565b602082019050919050565b600060208201905081810360008301526137e7816137ab565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613815826137ee565b61381f81856137f9565b935061382f818560208601612759565b61383881612783565b840191505092915050565b60006080820190506138586000830187612884565b6138656020830186612884565b613872604083018561291a565b8181036060830152613884818461380a565b905095945050505050565b60008151905061389e816126ae565b92915050565b6000602082840312156138ba576138b9612678565b5b60006138c88482850161388f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea2646970667358221220b5ba680b916d60772ca9f4b882a6049f853c06c0ec193bae328e899271f125b164736f6c63430008120033

Deployed Bytecode Sourcemap

79263:3826:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46163:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47065:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53556:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52989:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79530:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82553:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82758:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42816:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57195:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79598:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82936:150;;;;;;;;;;;;;:::i;:::-;;60116:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81989:71;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79632:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82309:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79736:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79452:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79706:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79352:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48458:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44000:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26942:103;;;;;;;;;;;;;:::i;:::-;;82447:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26294:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79665:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47241:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80436:647;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54114:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79490:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82066:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60907:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81454:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79565:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81902:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79770:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82200:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82661:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54505:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81091:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27200:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82841:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46163:639;46248:4;46587:10;46572:25;;:11;:25;;;;:102;;;;46664:10;46649:25;;:11;:25;;;;46572:102;:179;;;;46741:10;46726:25;;:11;:25;;;;46572:179;46552:199;;46163:639;;;:::o;47065:100::-;47119:13;47152:5;47145:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47065:100;:::o;53556:218::-;53632:7;53657:16;53665:7;53657;:16::i;:::-;53652:64;;53682:34;;;;;;;;;;;;;;53652:64;53736:15;:24;53752:7;53736:24;;;;;;;;;;;:30;;;;;;;;;;;;53729:37;;53556:218;;;:::o;52989:408::-;53078:13;53094:16;53102:7;53094;:16::i;:::-;53078:32;;53150:5;53127:28;;:19;:17;:19::i;:::-;:28;;;53123:175;;53175:44;53192:5;53199:19;:17;:19::i;:::-;53175:16;:44::i;:::-;53170:128;;53247:35;;;;;;;;;;;;;;53170:128;53123:175;53343:2;53310:15;:24;53326:7;53310:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;53381:7;53377:2;53361:28;;53370:5;53361:28;;;;;;;;;;;;53067:330;52989:408;;:::o;79530:30::-;;;;:::o;82553:100::-;26180:13;:11;:13::i;:::-;82637:10:::1;82625:9;:22;;;;;;:::i;:::-;;82553:100:::0;:::o;82758:77::-;26180:13;:11;:13::i;:::-;82823:6:::1;82814;;:15;;;;;;;;;;;;;;;;;;82758:77:::0;:::o;42816:323::-;42877:7;43105:15;:13;:15::i;:::-;43090:12;;43074:13;;:28;:46;43067:53;;42816:323;:::o;57195:2825::-;57337:27;57367;57386:7;57367:18;:27::i;:::-;57337:57;;57452:4;57411:45;;57427:19;57411:45;;;57407:86;;57465:28;;;;;;;;;;;;;;57407:86;57507:27;57536:23;57563:35;57590:7;57563:26;:35::i;:::-;57506:92;;;;57698:68;57723:15;57740:4;57746:19;:17;:19::i;:::-;57698:24;:68::i;:::-;57693:180;;57786:43;57803:4;57809:19;:17;:19::i;:::-;57786:16;:43::i;:::-;57781:92;;57838:35;;;;;;;;;;;;;;57781:92;57693:180;57904:1;57890:16;;:2;:16;;;57886:52;;57915:23;;;;;;;;;;;;;;57886:52;57951:43;57973:4;57979:2;57983:7;57992:1;57951:21;:43::i;:::-;58087:15;58084:160;;;58227:1;58206:19;58199:30;58084:160;58624:18;:24;58643:4;58624:24;;;;;;;;;;;;;;;;58622:26;;;;;;;;;;;;58693:18;:22;58712:2;58693:22;;;;;;;;;;;;;;;;58691:24;;;;;;;;;;;59015:146;59052:2;59101:45;59116:4;59122:2;59126:19;59101:14;:45::i;:::-;39215:8;59073:73;59015:18;:146::i;:::-;58986:17;:26;59004:7;58986:26;;;;;;;;;;;:175;;;;59332:1;39215:8;59281:19;:47;:52;59277:627;;59354:19;59386:1;59376:7;:11;59354:33;;59543:1;59509:17;:30;59527:11;59509:30;;;;;;;;;;;;:35;59505:384;;59647:13;;59632:11;:28;59628:242;;59827:19;59794:17;:30;59812:11;59794:30;;;;;;;;;;;:52;;;;59628:242;59505:384;59335:569;59277:627;59951:7;59947:2;59932:27;;59941:4;59932:27;;;;;;;;;;;;59970:42;59991:4;59997:2;60001:7;60010:1;59970:20;:42::i;:::-;57326:2694;;;57195:2825;;;:::o;79598:29::-;;;;:::o;82936:150::-;26180:13;:11;:13::i;:::-;8366:21:::1;:19;:21::i;:::-;82994:7:::2;83015;:5;:7::i;:::-;83007:21;;83036;83007:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;82993:69;;;83077:2;83069:11;;;::::0;::::2;;82986:100;8410:20:::1;:18;:20::i;:::-;82936:150::o:0;60116:193::-;60262:39;60279:4;60285:2;60289:7;60262:39;;;;;;;;;;;;:16;:39::i;:::-;60116:193;;;:::o;81989:71::-;26180:13;:11;:13::i;:::-;82049:5:::1;82042:4;:12;;;;81989:71:::0;:::o;79632:28::-;;;;:::o;82309:132::-;26180:13;:11;:13::i;:::-;82417:18:::1;82397:17;:38;;;;;;:::i;:::-;;82309:132:::0;:::o;79736:27::-;;;;;;;;;;;;;:::o;79452:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;79706:25::-;;;;;;;;;;;;;:::o;79352:95::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48458:152::-;48530:7;48573:27;48592:7;48573:18;:27::i;:::-;48550:52;;48458:152;;;:::o;44000:233::-;44072:7;44113:1;44096:19;;:5;:19;;;44092:60;;44124:28;;;;;;;;;;;;;;44092:60;38159:13;44170:18;:25;44189:5;44170:25;;;;;;;;;;;;;;;;:55;44163:62;;44000:233;;;:::o;26942:103::-;26180:13;:11;:13::i;:::-;27007:30:::1;27034:1;27007:18;:30::i;:::-;26942:103::o:0;82447:100::-;26180:13;:11;:13::i;:::-;82531:10:::1;82519:9;:22;;;;;;:::i;:::-;;82447:100:::0;:::o;26294:87::-;26340:7;26367:6;;;;;;;;;;;26360:13;;26294:87;:::o;79665:34::-;;;;:::o;47241:104::-;47297:13;47330:7;47323:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47241:104;:::o;80436:647::-;80503:6;;;;;;;;;;;80502:7;80494:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;80577:9;;80567:6;80551:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;80543:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;80630:11;80644:25;80658:10;80644:13;:25::i;:::-;80630:39;;80702:9;80688:23;;:10;:23;;;80680:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;80782:12;;80772:6;80763;:15;;;;:::i;:::-;:31;;80755:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;80863:1;80853:6;:11;80849:187;;80919:1;80910:6;:10;;;;:::i;:::-;80902:4;;:19;;;;:::i;:::-;80889:9;:32;;80881:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;80849:187;;;81000:6;80993:4;;:13;;;;:::i;:::-;80980:9;:26;;80972:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;80849:187;81046:29;81056:10;81068:6;81046:9;:29::i;:::-;80483:600;80436:647;:::o;54114:234::-;54261:8;54209:18;:39;54228:19;:17;:19::i;:::-;54209:39;;;;;;;;;;;;;;;:49;54249:8;54209:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;54321:8;54285:55;;54300:19;:17;:19::i;:::-;54285:55;;;54331:8;54285:55;;;;;;:::i;:::-;;;;;;;;54114:234;;:::o;79490:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;82066:127::-;26180:13;:11;:13::i;:::-;82168:19:::1;82147:18;:40;;;;82066:127:::0;:::o;60907:407::-;61082:31;61095:4;61101:2;61105:7;61082:12;:31::i;:::-;61146:1;61128:2;:14;;;:19;61124:183;;61167:56;61198:4;61204:2;61208:7;61217:5;61167:30;:56::i;:::-;61162:145;;61251:40;;;;;;;;;;;;;;61162:145;61124:183;60907:407;;;;:::o;81454:442::-;81525:13;81555:17;81563:8;81555:7;:17::i;:::-;81547:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;81649:5;81637:17;;:8;;;;;;;;;;;:17;;;81633:64;;81672:17;81665:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81633:64;81705:28;81736:10;:8;:10::i;:::-;81705:41;;81791:1;81766:14;81760:28;:32;:130;;;;;;;;;;;;;;;;;81828:14;81844:19;:8;:17;:19::i;:::-;81865:9;81811:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;81760:130;81753:137;;;81454:442;;;;:::o;79565:28::-;;;;:::o;81902:81::-;26180:13;:11;:13::i;:::-;81971:6:::1;81960:8;;:17;;;;;;;;;;;;;;;;;;81902:81:::0;:::o;79770:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;82200:103::-;26180:13;:11;:13::i;:::-;82284::::1;82269:12;:28;;;;82200:103:::0;:::o;82661:91::-;26180:13;:11;:13::i;:::-;82738:10:::1;82726:9;:22;;;;82661:91:::0;:::o;54505:164::-;54602:4;54626:18;:25;54645:5;54626:25;;;;;;;;;;;;;;;:35;54652:8;54626:35;;;;;;;;;;;;;;;;;;;;;;;;;54619:42;;54505:164;;;;:::o;81091:152::-;81174:11;79951:1;79937:11;:15;:52;;;;;79971:18;;79956:11;:33;;79937:52;79929:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;80070:12;;80043:23;80053:12;:10;:12::i;:::-;80043:9;:23::i;:::-;80029:11;:37;;;;:::i;:::-;:53;;80021:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;80162:9;;80147:11;80131:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;80123:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26180:13:::1;:11;:13::i;:::-;81204:33:::2;81214:9;81225:11;81204:9;:33::i;:::-;81091:152:::0;;;:::o;27200:201::-;26180:13;:11;:13::i;:::-;27309:1:::1;27289:22;;:8;:22;;::::0;27281:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;27365:28;27384:8;27365:18;:28::i;:::-;27200:201:::0;:::o;82841:89::-;26180:13;:11;:13::i;:::-;82916:8:::1;82903:10;:21;;;;82841:89:::0;:::o;54927:282::-;54992:4;55048:7;55029:15;:13;:15::i;:::-;:26;;:66;;;;;55082:13;;55072:7;:23;55029:66;:153;;;;;55181:1;38935:8;55133:17;:26;55151:7;55133:26;;;;;;;;;;;;:44;:49;55029:153;55009:173;;54927:282;;;:::o;77235:105::-;77295:7;77322:10;77315:17;;77235:105;:::o;26459:132::-;26534:12;:10;:12::i;:::-;26523:23;;:7;:5;:7::i;:::-;:23;;;26515:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26459:132::o;81249:87::-;81314:7;81332:1;81325:8;;81249:87;:::o;49613:1275::-;49680:7;49700:12;49715:7;49700:22;;49783:4;49764:15;:13;:15::i;:::-;:23;49760:1061;;49817:13;;49810:4;:20;49806:1015;;;49855:14;49872:17;:23;49890:4;49872:23;;;;;;;;;;;;49855:40;;49989:1;38935:8;49961:6;:24;:29;49957:845;;50626:113;50643:1;50633:6;:11;50626:113;;50686:17;:25;50704:6;;;;;;;50686:25;;;;;;;;;;;;50677:34;;50626:113;;;50772:6;50765:13;;;;;;49957:845;49832:989;49806:1015;49760:1061;50849:31;;;;;;;;;;;;;;49613:1275;;;;:::o;56090:485::-;56192:27;56221:23;56262:38;56303:15;:24;56319:7;56303:24;;;;;;;;;;;56262:65;;56480:18;56457:41;;56537:19;56531:26;56512:45;;56442:126;56090:485;;;:::o;55318:659::-;55467:11;55632:16;55625:5;55621:28;55612:37;;55792:16;55781:9;55777:32;55764:45;;55942:15;55931:9;55928:30;55920:5;55909:9;55906:20;55903:56;55893:66;;55318:659;;;;;:::o;61976:159::-;;;;;:::o;76544:311::-;76679:7;76699:16;39339:3;76725:19;:41;;76699:68;;39339:3;76793:31;76804:4;76810:2;76814:9;76793:10;:31::i;:::-;76785:40;;:62;;76778:69;;;76544:311;;;;;:::o;51436:450::-;51516:14;51684:16;51677:5;51673:28;51664:37;;51861:5;51847:11;51822:23;51818:41;51815:52;51808:5;51805:63;51795:73;;51436:450;;;;:::o;62800:158::-;;;;;:::o;8446:293::-;7848:1;8580:7;;:19;8572:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7848:1;8713:7;:18;;;;8446:293::o;8747:213::-;7804:1;8930:7;:22;;;;8747:213::o;27561:191::-;27635:16;27654:6;;;;;;;;;;;27635:25;;27680:8;27671:6;;:17;;;;;;;;;;;;;;;;;;27735:8;27704:40;;27725:8;27704:40;;;;;;;;;;;;27624:128;27561:191;:::o;44315:178::-;44376:7;38159:13;38297:2;44404:18;:25;44423:5;44404:25;;;;;;;;;;;;;;;;:50;;44403:82;44396:89;;44315:178;;;:::o;71067:112::-;71144:27;71154:2;71158:8;71144:27;;;;;;;;;;;;:9;:27::i;:::-;71067:112;;:::o;63398:716::-;63561:4;63607:2;63582:45;;;63628:19;:17;:19::i;:::-;63649:4;63655:7;63664:5;63582:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;63578:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63882:1;63865:6;:13;:18;63861:235;;63911:40;;;;;;;;;;;;;;63861:235;64054:6;64048:13;64039:6;64035:2;64031:15;64024:38;63578:529;63751:54;;;63741:64;;;:6;:64;;;;63734:71;;;63398:716;;;;;;:::o;81344:104::-;81404:13;81433:9;81426:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81344:104;:::o;22272:716::-;22328:13;22379:14;22416:1;22396:17;22407:5;22396:10;:17::i;:::-;:21;22379:38;;22432:20;22466:6;22455:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22432:41;;22488:11;22617:6;22613:2;22609:15;22601:6;22597:28;22590:35;;22654:288;22661:4;22654:288;;;22686:5;;;;;;;;22828:8;22823:2;22816:5;22812:14;22807:30;22802:3;22794:44;22884:2;22875:11;;;;;;:::i;:::-;;;;;22918:1;22909:5;:10;22654:288;22905:21;22654:288;22963:6;22956:13;;;;;22272:716;;;:::o;24845:98::-;24898:7;24925:10;24918:17;;24845:98;:::o;76245:147::-;76382:6;76245:147;;;;;:::o;70294:689::-;70425:19;70431:2;70435:8;70425:5;:19::i;:::-;70504:1;70486:2;:14;;;:19;70482:483;;70526:11;70540:13;;70526:27;;70572:13;70594:8;70588:3;:14;70572:30;;70621:233;70652:62;70691:1;70695:2;70699:7;;;;;;70708:5;70652:30;:62::i;:::-;70647:167;;70750:40;;;;;;;;;;;;;;70647:167;70849:3;70841:5;:11;70621:233;;70936:3;70919:13;;:20;70915:34;;70941:8;;;70915:34;70507:458;;70482:483;70294:689;;;:::o;19138:922::-;19191:7;19211:14;19228:1;19211:18;;19278:6;19269:5;:15;19265:102;;19314:6;19305:15;;;;;;:::i;:::-;;;;;19349:2;19339:12;;;;19265:102;19394:6;19385:5;:15;19381:102;;19430:6;19421:15;;;;;;:::i;:::-;;;;;19465:2;19455:12;;;;19381:102;19510:6;19501:5;:15;19497:102;;19546:6;19537:15;;;;;;:::i;:::-;;;;;19581:2;19571:12;;;;19497:102;19626:5;19617;:14;19613:99;;19661:5;19652:14;;;;;;:::i;:::-;;;;;19695:1;19685:11;;;;19613:99;19739:5;19730;:14;19726:99;;19774:5;19765:14;;;;;;:::i;:::-;;;;;19808:1;19798:11;;;;19726:99;19852:5;19843;:14;19839:99;;19887:5;19878:14;;;;;;:::i;:::-;;;;;19921:1;19911:11;;;;19839:99;19965:5;19956;:14;19952:66;;20001:1;19991:11;;;;19952:66;20046:6;20039:13;;;19138:922;;;:::o;64576:2966::-;64649:20;64672:13;;64649:36;;64712:1;64700:8;:13;64696:44;;64722:18;;;;;;;;;;;;;;64696:44;64753:61;64783:1;64787:2;64791:12;64805:8;64753:21;:61::i;:::-;65297:1;38297:2;65267:1;:26;;65266:32;65254:8;:45;65228:18;:22;65247:2;65228:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;65576:139;65613:2;65667:33;65690:1;65694:2;65698:1;65667:14;:33::i;:::-;65634:30;65655:8;65634:20;:30::i;:::-;:66;65576:18;:139::i;:::-;65542:17;:31;65560:12;65542:31;;;;;;;;;;;:173;;;;65732:16;65763:11;65792:8;65777:12;:23;65763:37;;66313:16;66309:2;66305:25;66293:37;;66685:12;66645:8;66604:1;66542:25;66483:1;66422;66395:335;67056:1;67042:12;67038:20;66996:346;67097:3;67088:7;67085:16;66996:346;;67315:7;67305:8;67302:1;67275:25;67272:1;67269;67264:59;67150:1;67141:7;67137:15;67126:26;;66996:346;;;67000:77;67387:1;67375:8;:13;67371:45;;67397:19;;;;;;;;;;;;;;67371:45;67449:3;67433:13;:19;;;;65002:2462;;67474:60;67503:1;67507:2;67511:12;67525:8;67474:20;:60::i;:::-;64638:2904;64576:2966;;:::o;51988:324::-;52058:14;52291:1;52281:8;52278:15;52252:24;52248:46;52238:56;;51988:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:117::-;5351:1;5348;5341:12;5365:117;5474:1;5471;5464:12;5488:180;5536:77;5533:1;5526:88;5633:4;5630:1;5623:15;5657:4;5654:1;5647:15;5674:281;5757:27;5779:4;5757:27;:::i;:::-;5749:6;5745:40;5887:6;5875:10;5872:22;5851:18;5839:10;5836:34;5833:62;5830:88;;;5898:18;;:::i;:::-;5830:88;5938:10;5934:2;5927:22;5717:238;5674:281;;:::o;5961:129::-;5995:6;6022:20;;:::i;:::-;6012:30;;6051:33;6079:4;6071:6;6051:33;:::i;:::-;5961:129;;;:::o;6096:308::-;6158:4;6248:18;6240:6;6237:30;6234:56;;;6270:18;;:::i;:::-;6234:56;6308:29;6330:6;6308:29;:::i;:::-;6300:37;;6392:4;6386;6382:15;6374:23;;6096:308;;;:::o;6410:146::-;6507:6;6502:3;6497;6484:30;6548:1;6539:6;6534:3;6530:16;6523:27;6410:146;;;:::o;6562:425::-;6640:5;6665:66;6681:49;6723:6;6681:49;:::i;:::-;6665:66;:::i;:::-;6656:75;;6754:6;6747:5;6740:21;6792:4;6785:5;6781:16;6830:3;6821:6;6816:3;6812:16;6809:25;6806:112;;;6837:79;;:::i;:::-;6806:112;6927:54;6974:6;6969:3;6964;6927:54;:::i;:::-;6646:341;6562:425;;;;;:::o;7007:340::-;7063:5;7112:3;7105:4;7097:6;7093:17;7089:27;7079:122;;7120:79;;:::i;:::-;7079:122;7237:6;7224:20;7262:79;7337:3;7329:6;7322:4;7314:6;7310:17;7262:79;:::i;:::-;7253:88;;7069:278;7007:340;;;;:::o;7353:509::-;7422:6;7471:2;7459:9;7450:7;7446:23;7442:32;7439:119;;;7477:79;;:::i;:::-;7439:119;7625:1;7614:9;7610:17;7597:31;7655:18;7647:6;7644:30;7641:117;;;7677:79;;:::i;:::-;7641:117;7782:63;7837:7;7828:6;7817:9;7813:22;7782:63;:::i;:::-;7772:73;;7568:287;7353:509;;;;:::o;7868:116::-;7938:21;7953:5;7938:21;:::i;:::-;7931:5;7928:32;7918:60;;7974:1;7971;7964:12;7918:60;7868:116;:::o;7990:133::-;8033:5;8071:6;8058:20;8049:29;;8087:30;8111:5;8087:30;:::i;:::-;7990:133;;;;:::o;8129:323::-;8185:6;8234:2;8222:9;8213:7;8209:23;8205:32;8202:119;;;8240:79;;:::i;:::-;8202:119;8360:1;8385:50;8427:7;8418:6;8407:9;8403:22;8385:50;:::i;:::-;8375:60;;8331:114;8129:323;;;;:::o;8458:619::-;8535:6;8543;8551;8600:2;8588:9;8579:7;8575:23;8571:32;8568:119;;;8606:79;;:::i;:::-;8568:119;8726:1;8751:53;8796:7;8787:6;8776:9;8772:22;8751:53;:::i;:::-;8741:63;;8697:117;8853:2;8879:53;8924:7;8915:6;8904:9;8900:22;8879:53;:::i;:::-;8869:63;;8824:118;8981:2;9007:53;9052:7;9043:6;9032:9;9028:22;9007:53;:::i;:::-;8997:63;;8952:118;8458:619;;;;;:::o;9083:329::-;9142:6;9191:2;9179:9;9170:7;9166:23;9162:32;9159:119;;;9197:79;;:::i;:::-;9159:119;9317:1;9342:53;9387:7;9378:6;9367:9;9363:22;9342:53;:::i;:::-;9332:63;;9288:117;9083:329;;;;:::o;9418:468::-;9483:6;9491;9540:2;9528:9;9519:7;9515:23;9511:32;9508:119;;;9546:79;;:::i;:::-;9508:119;9666:1;9691:53;9736:7;9727:6;9716:9;9712:22;9691:53;:::i;:::-;9681:63;;9637:117;9793:2;9819:50;9861:7;9852:6;9841:9;9837:22;9819:50;:::i;:::-;9809:60;;9764:115;9418:468;;;;;:::o;9892:307::-;9953:4;10043:18;10035:6;10032:30;10029:56;;;10065:18;;:::i;:::-;10029:56;10103:29;10125:6;10103:29;:::i;:::-;10095:37;;10187:4;10181;10177:15;10169:23;;9892:307;;;:::o;10205:423::-;10282:5;10307:65;10323:48;10364:6;10323:48;:::i;:::-;10307:65;:::i;:::-;10298:74;;10395:6;10388:5;10381:21;10433:4;10426:5;10422:16;10471:3;10462:6;10457:3;10453:16;10450:25;10447:112;;;10478:79;;:::i;:::-;10447:112;10568:54;10615:6;10610:3;10605;10568:54;:::i;:::-;10288:340;10205:423;;;;;:::o;10647:338::-;10702:5;10751:3;10744:4;10736:6;10732:17;10728:27;10718:122;;10759:79;;:::i;:::-;10718:122;10876:6;10863:20;10901:78;10975:3;10967:6;10960:4;10952:6;10948:17;10901:78;:::i;:::-;10892:87;;10708:277;10647:338;;;;:::o;10991:943::-;11086:6;11094;11102;11110;11159:3;11147:9;11138:7;11134:23;11130:33;11127:120;;;11166:79;;:::i;:::-;11127:120;11286:1;11311:53;11356:7;11347:6;11336:9;11332:22;11311:53;:::i;:::-;11301:63;;11257:117;11413:2;11439:53;11484:7;11475:6;11464:9;11460:22;11439:53;:::i;:::-;11429:63;;11384:118;11541:2;11567:53;11612:7;11603:6;11592:9;11588:22;11567:53;:::i;:::-;11557:63;;11512:118;11697:2;11686:9;11682:18;11669:32;11728:18;11720:6;11717:30;11714:117;;;11750:79;;:::i;:::-;11714:117;11855:62;11909:7;11900:6;11889:9;11885:22;11855:62;:::i;:::-;11845:72;;11640:287;10991:943;;;;;;;:::o;11940:474::-;12008:6;12016;12065:2;12053:9;12044:7;12040:23;12036:32;12033:119;;;12071:79;;:::i;:::-;12033:119;12191:1;12216:53;12261:7;12252:6;12241:9;12237:22;12216:53;:::i;:::-;12206:63;;12162:117;12318:2;12344:53;12389:7;12380:6;12369:9;12365:22;12344:53;:::i;:::-;12334:63;;12289:118;11940:474;;;;;:::o;12420:::-;12488:6;12496;12545:2;12533:9;12524:7;12520:23;12516:32;12513:119;;;12551:79;;:::i;:::-;12513:119;12671:1;12696:53;12741:7;12732:6;12721:9;12717:22;12696:53;:::i;:::-;12686:63;;12642:117;12798:2;12824:53;12869:7;12860:6;12849:9;12845:22;12824:53;:::i;:::-;12814:63;;12769:118;12420:474;;;;;:::o;12900:180::-;12948:77;12945:1;12938:88;13045:4;13042:1;13035:15;13069:4;13066:1;13059:15;13086:320;13130:6;13167:1;13161:4;13157:12;13147:22;;13214:1;13208:4;13204:12;13235:18;13225:81;;13291:4;13283:6;13279:17;13269:27;;13225:81;13353:2;13345:6;13342:14;13322:18;13319:38;13316:84;;13372:18;;:::i;:::-;13316:84;13137:269;13086:320;;;:::o;13412:141::-;13461:4;13484:3;13476:11;;13507:3;13504:1;13497:14;13541:4;13538:1;13528:18;13520:26;;13412:141;;;:::o;13559:93::-;13596:6;13643:2;13638;13631:5;13627:14;13623:23;13613:33;;13559:93;;;:::o;13658:107::-;13702:8;13752:5;13746:4;13742:16;13721:37;;13658:107;;;;:::o;13771:393::-;13840:6;13890:1;13878:10;13874:18;13913:97;13943:66;13932:9;13913:97;:::i;:::-;14031:39;14061:8;14050:9;14031:39;:::i;:::-;14019:51;;14103:4;14099:9;14092:5;14088:21;14079:30;;14152:4;14142:8;14138:19;14131:5;14128:30;14118:40;;13847:317;;13771:393;;;;;:::o;14170:60::-;14198:3;14219:5;14212:12;;14170:60;;;:::o;14236:142::-;14286:9;14319:53;14337:34;14346:24;14364:5;14346:24;:::i;:::-;14337:34;:::i;:::-;14319:53;:::i;:::-;14306:66;;14236:142;;;:::o;14384:75::-;14427:3;14448:5;14441:12;;14384:75;;;:::o;14465:269::-;14575:39;14606:7;14575:39;:::i;:::-;14636:91;14685:41;14709:16;14685:41;:::i;:::-;14677:6;14670:4;14664:11;14636:91;:::i;:::-;14630:4;14623:105;14541:193;14465:269;;;:::o;14740:73::-;14785:3;14740:73;:::o;14819:189::-;14896:32;;:::i;:::-;14937:65;14995:6;14987;14981:4;14937:65;:::i;:::-;14872:136;14819:189;;:::o;15014:186::-;15074:120;15091:3;15084:5;15081:14;15074:120;;;15145:39;15182:1;15175:5;15145:39;:::i;:::-;15118:1;15111:5;15107:13;15098:22;;15074:120;;;15014:186;;:::o;15206:543::-;15307:2;15302:3;15299:11;15296:446;;;15341:38;15373:5;15341:38;:::i;:::-;15425:29;15443:10;15425:29;:::i;:::-;15415:8;15411:44;15608:2;15596:10;15593:18;15590:49;;;15629:8;15614:23;;15590:49;15652:80;15708:22;15726:3;15708:22;:::i;:::-;15698:8;15694:37;15681:11;15652:80;:::i;:::-;15311:431;;15296:446;15206:543;;;:::o;15755:117::-;15809:8;15859:5;15853:4;15849:16;15828:37;;15755:117;;;;:::o;15878:169::-;15922:6;15955:51;16003:1;15999:6;15991:5;15988:1;15984:13;15955:51;:::i;:::-;15951:56;16036:4;16030;16026:15;16016:25;;15929:118;15878:169;;;;:::o;16052:295::-;16128:4;16274:29;16299:3;16293:4;16274:29;:::i;:::-;16266:37;;16336:3;16333:1;16329:11;16323:4;16320:21;16312:29;;16052:295;;;;:::o;16352:1395::-;16469:37;16502:3;16469:37;:::i;:::-;16571:18;16563:6;16560:30;16557:56;;;16593:18;;:::i;:::-;16557:56;16637:38;16669:4;16663:11;16637:38;:::i;:::-;16722:67;16782:6;16774;16768:4;16722:67;:::i;:::-;16816:1;16840:4;16827:17;;16872:2;16864:6;16861:14;16889:1;16884:618;;;;17546:1;17563:6;17560:77;;;17612:9;17607:3;17603:19;17597:26;17588:35;;17560:77;17663:67;17723:6;17716:5;17663:67;:::i;:::-;17657:4;17650:81;17519:222;16854:887;;16884:618;16936:4;16932:9;16924:6;16920:22;16970:37;17002:4;16970:37;:::i;:::-;17029:1;17043:208;17057:7;17054:1;17051:14;17043:208;;;17136:9;17131:3;17127:19;17121:26;17113:6;17106:42;17187:1;17179:6;17175:14;17165:24;;17234:2;17223:9;17219:18;17206:31;;17080:4;17077:1;17073:12;17068:17;;17043:208;;;17279:6;17270:7;17267:19;17264:179;;;17337:9;17332:3;17328:19;17322:26;17380:48;17422:4;17414:6;17410:17;17399:9;17380:48;:::i;:::-;17372:6;17365:64;17287:156;17264:179;17489:1;17485;17477:6;17473:14;17469:22;17463:4;17456:36;16891:611;;;16854:887;;16444:1303;;;16352:1395;;:::o;17753:147::-;17854:11;17891:3;17876:18;;17753:147;;;;:::o;17906:114::-;;:::o;18026:398::-;18185:3;18206:83;18287:1;18282:3;18206:83;:::i;:::-;18199:90;;18298:93;18387:3;18298:93;:::i;:::-;18416:1;18411:3;18407:11;18400:18;;18026:398;;;:::o;18430:379::-;18614:3;18636:147;18779:3;18636:147;:::i;:::-;18629:154;;18800:3;18793:10;;18430:379;;;:::o;18815:166::-;18955:18;18951:1;18943:6;18939:14;18932:42;18815:166;:::o;18987:366::-;19129:3;19150:67;19214:2;19209:3;19150:67;:::i;:::-;19143:74;;19226:93;19315:3;19226:93;:::i;:::-;19344:2;19339:3;19335:12;19328:19;;18987:366;;;:::o;19359:419::-;19525:4;19563:2;19552:9;19548:18;19540:26;;19612:9;19606:4;19602:20;19598:1;19587:9;19583:17;19576:47;19640:131;19766:4;19640:131;:::i;:::-;19632:139;;19359:419;;;:::o;19784:180::-;19832:77;19829:1;19822:88;19929:4;19926:1;19919:15;19953:4;19950:1;19943:15;19970:191;20010:3;20029:20;20047:1;20029:20;:::i;:::-;20024:25;;20063:20;20081:1;20063:20;:::i;:::-;20058:25;;20106:1;20103;20099:9;20092:16;;20127:3;20124:1;20121:10;20118:36;;;20134:18;;:::i;:::-;20118:36;19970:191;;;;:::o;20167:178::-;20307:30;20303:1;20295:6;20291:14;20284:54;20167:178;:::o;20351:366::-;20493:3;20514:67;20578:2;20573:3;20514:67;:::i;:::-;20507:74;;20590:93;20679:3;20590:93;:::i;:::-;20708:2;20703:3;20699:12;20692:19;;20351:366;;;:::o;20723:419::-;20889:4;20927:2;20916:9;20912:18;20904:26;;20976:9;20970:4;20966:20;20962:1;20951:9;20947:17;20940:47;21004:131;21130:4;21004:131;:::i;:::-;20996:139;;20723:419;;;:::o;21148:178::-;21288:30;21284:1;21276:6;21272:14;21265:54;21148:178;:::o;21332:366::-;21474:3;21495:67;21559:2;21554:3;21495:67;:::i;:::-;21488:74;;21571:93;21660:3;21571:93;:::i;:::-;21689:2;21684:3;21680:12;21673:19;;21332:366;;;:::o;21704:419::-;21870:4;21908:2;21897:9;21893:18;21885:26;;21957:9;21951:4;21947:20;21943:1;21932:9;21928:17;21921:47;21985:131;22111:4;21985:131;:::i;:::-;21977:139;;21704:419;;;:::o;22129:224::-;22269:34;22265:1;22257:6;22253:14;22246:58;22338:7;22333:2;22325:6;22321:15;22314:32;22129:224;:::o;22359:366::-;22501:3;22522:67;22586:2;22581:3;22522:67;:::i;:::-;22515:74;;22598:93;22687:3;22598:93;:::i;:::-;22716:2;22711:3;22707:12;22700:19;;22359:366;;;:::o;22731:419::-;22897:4;22935:2;22924:9;22920:18;22912:26;;22984:9;22978:4;22974:20;22970:1;22959:9;22955:17;22948:47;23012:131;23138:4;23012:131;:::i;:::-;23004:139;;22731:419;;;:::o;23156:194::-;23196:4;23216:20;23234:1;23216:20;:::i;:::-;23211:25;;23250:20;23268:1;23250:20;:::i;:::-;23245:25;;23294:1;23291;23287:9;23279:17;;23318:1;23312:4;23309:11;23306:37;;;23323:18;;:::i;:::-;23306:37;23156:194;;;;:::o;23356:410::-;23396:7;23419:20;23437:1;23419:20;:::i;:::-;23414:25;;23453:20;23471:1;23453:20;:::i;:::-;23448:25;;23508:1;23505;23501:9;23530:30;23548:11;23530:30;:::i;:::-;23519:41;;23709:1;23700:7;23696:15;23693:1;23690:22;23670:1;23663:9;23643:83;23620:139;;23739:18;;:::i;:::-;23620:139;23404:362;23356:410;;;;:::o;23772:163::-;23912:15;23908:1;23900:6;23896:14;23889:39;23772:163;:::o;23941:366::-;24083:3;24104:67;24168:2;24163:3;24104:67;:::i;:::-;24097:74;;24180:93;24269:3;24180:93;:::i;:::-;24298:2;24293:3;24289:12;24282:19;;23941:366;;;:::o;24313:419::-;24479:4;24517:2;24506:9;24502:18;24494:26;;24566:9;24560:4;24556:20;24552:1;24541:9;24537:17;24530:47;24594:131;24720:4;24594:131;:::i;:::-;24586:139;;24313:419;;;:::o;24738:234::-;24878:34;24874:1;24866:6;24862:14;24855:58;24947:17;24942:2;24934:6;24930:15;24923:42;24738:234;:::o;24978:366::-;25120:3;25141:67;25205:2;25200:3;25141:67;:::i;:::-;25134:74;;25217:93;25306:3;25217:93;:::i;:::-;25335:2;25330:3;25326:12;25319:19;;24978:366;;;:::o;25350:419::-;25516:4;25554:2;25543:9;25539:18;25531:26;;25603:9;25597:4;25593:20;25589:1;25578:9;25574:17;25567:47;25631:131;25757:4;25631:131;:::i;:::-;25623:139;;25350:419;;;:::o;25775:148::-;25877:11;25914:3;25899:18;;25775:148;;;;:::o;25929:390::-;26035:3;26063:39;26096:5;26063:39;:::i;:::-;26118:89;26200:6;26195:3;26118:89;:::i;:::-;26111:96;;26216:65;26274:6;26269:3;26262:4;26255:5;26251:16;26216:65;:::i;:::-;26306:6;26301:3;26297:16;26290:23;;26039:280;25929:390;;;;:::o;26349:874::-;26452:3;26489:5;26483:12;26518:36;26544:9;26518:36;:::i;:::-;26570:89;26652:6;26647:3;26570:89;:::i;:::-;26563:96;;26690:1;26679:9;26675:17;26706:1;26701:166;;;;26881:1;26876:341;;;;26668:549;;26701:166;26785:4;26781:9;26770;26766:25;26761:3;26754:38;26847:6;26840:14;26833:22;26825:6;26821:35;26816:3;26812:45;26805:52;;26701:166;;26876:341;26943:38;26975:5;26943:38;:::i;:::-;27003:1;27017:154;27031:6;27028:1;27025:13;27017:154;;;27105:7;27099:14;27095:1;27090:3;27086:11;27079:35;27155:1;27146:7;27142:15;27131:26;;27053:4;27050:1;27046:12;27041:17;;27017:154;;;27200:6;27195:3;27191:16;27184:23;;26883:334;;26668:549;;26456:767;;26349:874;;;;:::o;27229:589::-;27454:3;27476:95;27567:3;27558:6;27476:95;:::i;:::-;27469:102;;27588:95;27679:3;27670:6;27588:95;:::i;:::-;27581:102;;27700:92;27788:3;27779:6;27700:92;:::i;:::-;27693:99;;27809:3;27802:10;;27229:589;;;;;;:::o;27824:170::-;27964:22;27960:1;27952:6;27948:14;27941:46;27824:170;:::o;28000:366::-;28142:3;28163:67;28227:2;28222:3;28163:67;:::i;:::-;28156:74;;28239:93;28328:3;28239:93;:::i;:::-;28357:2;28352:3;28348:12;28341:19;;28000:366;;;:::o;28372:419::-;28538:4;28576:2;28565:9;28561:18;28553:26;;28625:9;28619:4;28615:20;28611:1;28600:9;28596:17;28589:47;28653:131;28779:4;28653:131;:::i;:::-;28645:139;;28372:419;;;:::o;28797:179::-;28937:31;28933:1;28925:6;28921:14;28914:55;28797:179;:::o;28982:366::-;29124:3;29145:67;29209:2;29204:3;29145:67;:::i;:::-;29138:74;;29221:93;29310:3;29221:93;:::i;:::-;29339:2;29334:3;29330:12;29323:19;;28982:366;;;:::o;29354:419::-;29520:4;29558:2;29547:9;29543:18;29535:26;;29607:9;29601:4;29597:20;29593:1;29582:9;29578:17;29571:47;29635:131;29761:4;29635:131;:::i;:::-;29627:139;;29354:419;;;:::o;29779:170::-;29919:22;29915:1;29907:6;29903:14;29896:46;29779:170;:::o;29955:366::-;30097:3;30118:67;30182:2;30177:3;30118:67;:::i;:::-;30111:74;;30194:93;30283:3;30194:93;:::i;:::-;30312:2;30307:3;30303:12;30296:19;;29955:366;;;:::o;30327:419::-;30493:4;30531:2;30520:9;30516:18;30508:26;;30580:9;30574:4;30570:20;30566:1;30555:9;30551:17;30544:47;30608:131;30734:4;30608:131;:::i;:::-;30600:139;;30327:419;;;:::o;30752:225::-;30892:34;30888:1;30880:6;30876:14;30869:58;30961:8;30956:2;30948:6;30944:15;30937:33;30752:225;:::o;30983:366::-;31125:3;31146:67;31210:2;31205:3;31146:67;:::i;:::-;31139:74;;31222:93;31311:3;31222:93;:::i;:::-;31340:2;31335:3;31331:12;31324:19;;30983:366;;;:::o;31355:419::-;31521:4;31559:2;31548:9;31544:18;31536:26;;31608:9;31602:4;31598:20;31594:1;31583:9;31579:17;31572:47;31636:131;31762:4;31636:131;:::i;:::-;31628:139;;31355:419;;;:::o;31780:182::-;31920:34;31916:1;31908:6;31904:14;31897:58;31780:182;:::o;31968:366::-;32110:3;32131:67;32195:2;32190:3;32131:67;:::i;:::-;32124:74;;32207:93;32296:3;32207:93;:::i;:::-;32325:2;32320:3;32316:12;32309:19;;31968:366;;;:::o;32340:419::-;32506:4;32544:2;32533:9;32529:18;32521:26;;32593:9;32587:4;32583:20;32579:1;32568:9;32564:17;32557:47;32621:131;32747:4;32621:131;:::i;:::-;32613:139;;32340:419;;;:::o;32765:181::-;32905:33;32901:1;32893:6;32889:14;32882:57;32765:181;:::o;32952:366::-;33094:3;33115:67;33179:2;33174:3;33115:67;:::i;:::-;33108:74;;33191:93;33280:3;33191:93;:::i;:::-;33309:2;33304:3;33300:12;33293:19;;32952:366;;;:::o;33324:419::-;33490:4;33528:2;33517:9;33513:18;33505:26;;33577:9;33571:4;33567:20;33563:1;33552:9;33548:17;33541:47;33605:131;33731:4;33605:131;:::i;:::-;33597:139;;33324:419;;;:::o;33749:98::-;33800:6;33834:5;33828:12;33818:22;;33749:98;;;:::o;33853:168::-;33936:11;33970:6;33965:3;33958:19;34010:4;34005:3;34001:14;33986:29;;33853:168;;;;:::o;34027:373::-;34113:3;34141:38;34173:5;34141:38;:::i;:::-;34195:70;34258:6;34253:3;34195:70;:::i;:::-;34188:77;;34274:65;34332:6;34327:3;34320:4;34313:5;34309:16;34274:65;:::i;:::-;34364:29;34386:6;34364:29;:::i;:::-;34359:3;34355:39;34348:46;;34117:283;34027:373;;;;:::o;34406:640::-;34601:4;34639:3;34628:9;34624:19;34616:27;;34653:71;34721:1;34710:9;34706:17;34697:6;34653:71;:::i;:::-;34734:72;34802:2;34791:9;34787:18;34778:6;34734:72;:::i;:::-;34816;34884:2;34873:9;34869:18;34860:6;34816:72;:::i;:::-;34935:9;34929:4;34925:20;34920:2;34909:9;34905:18;34898:48;34963:76;35034:4;35025:6;34963:76;:::i;:::-;34955:84;;34406:640;;;;;;;:::o;35052:141::-;35108:5;35139:6;35133:13;35124:22;;35155:32;35181:5;35155:32;:::i;:::-;35052:141;;;;:::o;35199:349::-;35268:6;35317:2;35305:9;35296:7;35292:23;35288:32;35285:119;;;35323:79;;:::i;:::-;35285:119;35443:1;35468:63;35523:7;35514:6;35503:9;35499:22;35468:63;:::i;:::-;35458:73;;35414:127;35199:349;;;;:::o;35554:180::-;35602:77;35599:1;35592:88;35699:4;35696:1;35689:15;35723:4;35720:1;35713:15

Swarm Source

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