ETH Price: $3,110.57 (+1.38%)
Gas: 6 Gwei

Token

Piratez (PRTZ)
 

Overview

Max Total Supply

665 PRTZ

Holders

455

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
4 PRTZ
0x77d6f5c54bbe2192281f7f49f673e786b0fb88fc
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:
Piratez

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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










pragma solidity ^0.8.17;

contract Piratez is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint;

  string public uriPrefix = "ipfs://bafybeiati655sinz633y33qahgy2ly7huxyc2wa6mlvwtfeu7yrwi5fsyq/";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint public cost = 0.003 ether;
  uint public maxSupply = 3333;
  uint public freeSupply = 3333;
  uint public maxPerWallet = 6;
  uint public maxMintAmountPerTx = 6;

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

  mapping(address => bool) public freeMintClaimed;


  constructor() ERC721A("Piratez", "PRTZ") {
  }

  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, "contract is paused");

        require(totalSupply() + amount <= maxSupply, "max supply would be exceeded");
        uint minted = _numberMinted(msg.sender);

        require(minted + amount <= maxPerWallet, "max mint per wallet would be exceeded");

        uint chargeableCount;

        if (minted == 0) {
            chargeableCount = amount - 1;
            require(amount > 0, "amount must be greater than 0");
            require(msg.value >= cost * chargeableCount, "value not met");
        } else {
            chargeableCount = amount;
            require(amount > 0, "amount must be greater than 0");
            require(msg.sender == tx.origin, "no smart contracts");
            require(msg.value >= cost * chargeableCount, "value not met");
        }
        _safeMint(msg.sender, amount);
    }
  
  function mintForAddress(uint _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

    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 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":"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"}]

608060405260405180608001604052806043815260200162003fdb60439139600a90816200002e9190620004fe565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9081620000759190620004fe565b50660aa87bee538000600d55610d05600e55610d05600f55600660105560066011556001601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff021916908315150217905550348015620000da57600080fd5b506040518060400160405280600781526020017f5069726174657a000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5052545a000000000000000000000000000000000000000000000000000000008152508160029081620001589190620004fe565b5080600390816200016a9190620004fe565b506200017b620001b160201b60201c565b6000819055505050620001a362000197620001b660201b60201c565b620001be60201b60201c565b6001600981905550620005e5565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200030657607f821691505b6020821081036200031c576200031b620002be565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000347565b62000392868362000347565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003df620003d9620003d384620003aa565b620003b4565b620003aa565b9050919050565b6000819050919050565b620003fb83620003be565b620004136200040a82620003e6565b84845462000354565b825550505050565b600090565b6200042a6200041b565b62000437818484620003f0565b505050565b5b818110156200045f576200045360008262000420565b6001810190506200043d565b5050565b601f821115620004ae57620004788162000322565b620004838462000337565b8101602085101562000493578190505b620004ab620004a28562000337565b8301826200043c565b50505b505050565b600082821c905092915050565b6000620004d360001984600802620004b3565b1980831691505092915050565b6000620004ee8383620004c0565b9150826002028217905092915050565b620005098262000284565b67ffffffffffffffff8111156200052557620005246200028f565b5b620005318254620002ed565b6200053e82828562000463565b600060209050601f83116001811462000576576000841562000561578287015190505b6200056d8582620004e0565b865550620005dd565b601f198416620005868662000322565b60005b82811015620005b05784890151825560018201915060208501945060208101905062000589565b86831015620005d05784890151620005cc601f891682620004c0565b8355505b6001600288020188555050505b505050505050565b6139e680620005f56000396000f3fe60806040526004361061023b5760003560e01c806370a082311161012e578063b88d4fde116100ab578063e268e4d31161006f578063e268e4d31461080a578063e985e9c514610833578063efbd73f414610870578063f2fde38b14610899578063f676308a146108c25761023b565b8063b88d4fde14610720578063c87b56dd1461073c578063d5abeb0114610779578063e0a80853146107a4578063e0ec7c36146107cd5761023b565b806395d89b41116100f257806395d89b411461065c578063a0712d6814610687578063a22cb465146106a3578063a45ba8e7146106cc578063b071401b146106f75761023b565b806370a0823114610589578063715018a6146105c65780637ec4a659146105dd5780638da5cb5b1461060657806394354fd0146106315761023b565b80633ccfd60b116101bc578063518302271161018057806351830227146104a05780635503a0e8146104cb5780635c975abb146104f657806362b99ad4146105215780636352211e1461054c5761023b565b80633ccfd60b146103f057806342842e0e1461040757806344a0d68a14610423578063453c23101461044c5780634fdd43cb146104775761023b565b806316ba10e01161020357806316ba10e01461032c57806316c38b3c1461035557806318160ddd1461037e57806323b872dd146103a957806324a6ab0c146103c55761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede614610301575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061271e565b6108eb565b6040516102749190612766565b60405180910390f35b34801561028957600080fd5b5061029261097d565b60405161029f9190612811565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612869565b610a0f565b6040516102dc91906128d7565b60405180910390f35b6102ff60048036038101906102fa919061291e565b610a8e565b005b34801561030d57600080fd5b50610316610bd2565b604051610323919061296d565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e9190612abd565b610bd8565b005b34801561036157600080fd5b5061037c60048036038101906103779190612b32565b610bf3565b005b34801561038a57600080fd5b50610393610c18565b6040516103a0919061296d565b60405180910390f35b6103c360048036038101906103be9190612b5f565b610c2f565b005b3480156103d157600080fd5b506103da610f51565b6040516103e7919061296d565b60405180910390f35b3480156103fc57600080fd5b50610405610f57565b005b610421600480360381019061041c9190612b5f565b610fef565b005b34801561042f57600080fd5b5061044a60048036038101906104459190612869565b61100f565b005b34801561045857600080fd5b50610461611021565b60405161046e919061296d565b60405180910390f35b34801561048357600080fd5b5061049e60048036038101906104999190612abd565b611027565b005b3480156104ac57600080fd5b506104b5611042565b6040516104c29190612766565b60405180910390f35b3480156104d757600080fd5b506104e0611055565b6040516104ed9190612811565b60405180910390f35b34801561050257600080fd5b5061050b6110e3565b6040516105189190612766565b60405180910390f35b34801561052d57600080fd5b506105366110f6565b6040516105439190612811565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612869565b611184565b60405161058091906128d7565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190612bb2565b611196565b6040516105bd919061296d565b60405180910390f35b3480156105d257600080fd5b506105db61124e565b005b3480156105e957600080fd5b5061060460048036038101906105ff9190612abd565b611262565b005b34801561061257600080fd5b5061061b61127d565b60405161062891906128d7565b60405180910390f35b34801561063d57600080fd5b506106466112a7565b604051610653919061296d565b60405180910390f35b34801561066857600080fd5b506106716112ad565b60405161067e9190612811565b60405180910390f35b6106a1600480360381019061069c9190612869565b61133f565b005b3480156106af57600080fd5b506106ca60048036038101906106c59190612bdf565b611607565b005b3480156106d857600080fd5b506106e1611712565b6040516106ee9190612811565b60405180910390f35b34801561070357600080fd5b5061071e60048036038101906107199190612869565b6117a0565b005b61073a60048036038101906107359190612cc0565b6117b2565b005b34801561074857600080fd5b50610763600480360381019061075e9190612869565b611825565b6040516107709190612811565b60405180910390f35b34801561078557600080fd5b5061078e61197d565b60405161079b919061296d565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c69190612b32565b611983565b005b3480156107d957600080fd5b506107f460048036038101906107ef9190612bb2565b6119a8565b6040516108019190612766565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c9190612869565b6119c8565b005b34801561083f57600080fd5b5061085a60048036038101906108559190612d43565b6119da565b6040516108679190612766565b60405180910390f35b34801561087c57600080fd5b5061089760048036038101906108929190612d83565b611a6e565b005b3480156108a557600080fd5b506108c060048036038101906108bb9190612bb2565b611b8d565b005b3480156108ce57600080fd5b506108e960048036038101906108e49190612869565b611c10565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109765750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461098c90612df2565b80601f01602080910402602001604051908101604052809291908181526020018280546109b890612df2565b8015610a055780601f106109da57610100808354040283529160200191610a05565b820191906000526020600020905b8154815290600101906020018083116109e857829003601f168201915b5050505050905090565b6000610a1a82611c22565b610a50576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9982611184565b90508073ffffffffffffffffffffffffffffffffffffffff16610aba611c81565b73ffffffffffffffffffffffffffffffffffffffff1614610b1d57610ae681610ae1611c81565b6119da565b610b1c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610be0611c89565b80600b9081610bef9190612fcf565b5050565b610bfb611c89565b80601260006101000a81548160ff02191690831515021790555050565b6000610c22611d07565b6001546000540303905090565b6000610c3a82611d0c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ca1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610cad84611dd8565b91509150610cc38187610cbe611c81565b611dff565b610d0f57610cd886610cd3611c81565b6119da565b610d0e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d75576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d828686866001611e43565b8015610d8d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e5b85610e37888887611e49565b7c020000000000000000000000000000000000000000000000000000000017611e71565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ee15760006001850190506000600460008381526020019081526020016000205403610edf576000548114610ede578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f498686866001611e9c565b505050505050565b600f5481565b610f5f611c89565b610f67611ea2565b6000610f7161127d565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f94906130d2565b60006040518083038185875af1925050503d8060008114610fd1576040519150601f19603f3d011682016040523d82523d6000602084013e610fd6565b606091505b5050905080610fe457600080fd5b50610fed611ef1565b565b61100a838383604051806020016040528060008152506117b2565b505050565b611017611c89565b80600d8190555050565b60105481565b61102f611c89565b80600c908161103e9190612fcf565b5050565b601260019054906101000a900460ff1681565b600b805461106290612df2565b80601f016020809104026020016040519081016040528092919081815260200182805461108e90612df2565b80156110db5780601f106110b0576101008083540402835291602001916110db565b820191906000526020600020905b8154815290600101906020018083116110be57829003601f168201915b505050505081565b601260009054906101000a900460ff1681565b600a805461110390612df2565b80601f016020809104026020016040519081016040528092919081815260200182805461112f90612df2565b801561117c5780601f106111515761010080835404028352916020019161117c565b820191906000526020600020905b81548152906001019060200180831161115f57829003601f168201915b505050505081565b600061118f82611d0c565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111fd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611256611c89565b6112606000611efb565b565b61126a611c89565b80600a90816112799190612fcf565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6060600380546112bc90612df2565b80601f01602080910402602001604051908101604052809291908181526020018280546112e890612df2565b80156113355780601f1061130a57610100808354040283529160200191611335565b820191906000526020600020905b81548152906001019060200180831161131857829003601f168201915b5050505050905090565b601260009054906101000a900460ff161561138f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138690613133565b60405180910390fd5b600e548161139b610c18565b6113a59190613182565b11156113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd90613202565b60405180910390fd5b60006113f133611fc1565b905060105482826114029190613182565b1115611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90613294565b60405180910390fd5b60008082036114f35760018361145991906132b4565b90506000831161149e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149590613334565b60405180910390fd5b80600d546114ac9190613354565b3410156114ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e5906133e2565b60405180910390fd5b6115f8565b82905060008311611539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153090613334565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e9061344e565b60405180910390fd5b80600d546115b59190613354565b3410156115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee906133e2565b60405180910390fd5b5b6116023384612018565b505050565b8060076000611614611c81565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116c1611c81565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117069190612766565b60405180910390a35050565b600c805461171f90612df2565b80601f016020809104026020016040519081016040528092919081815260200182805461174b90612df2565b80156117985780601f1061176d57610100808354040283529160200191611798565b820191906000526020600020905b81548152906001019060200180831161177b57829003601f168201915b505050505081565b6117a8611c89565b8060118190555050565b6117bd848484610c2f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461181f576117e884848484612036565b61181e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061183082611c22565b61186f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611866906134e0565b60405180910390fd5b60001515601260019054906101000a900460ff1615150361191c57600c805461189790612df2565b80601f01602080910402602001604051908101604052809291908181526020018280546118c390612df2565b80156119105780601f106118e557610100808354040283529160200191611910565b820191906000526020600020905b8154815290600101906020018083116118f357829003601f168201915b50505050509050611978565b6000611926612186565b905060008151116119465760405180602001604052806000815250611974565b8061195084612218565b600b604051602001611964939291906135bf565b6040516020818303038152906040525b9150505b919050565b600e5481565b61198b611c89565b80601260016101000a81548160ff02191690831515021790555050565b60136020528060005260406000206000915054906101000a900460ff1681565b6119d0611c89565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611a8157506011548111155b611ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab79061363c565b60405180910390fd5b601054611ad3611ace6122e6565b611196565b82611ade9190613182565b1115611b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b16906136a8565b60405180910390fd5b600e5481611b2b610c18565b611b359190613182565b1115611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d90613714565b60405180910390fd5b611b7e611c89565b611b888284612018565b505050565b611b95611c89565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfb906137a6565b60405180910390fd5b611c0d81611efb565b50565b611c18611c89565b80600f8190555050565b600081611c2d611d07565b11158015611c3c575060005482105b8015611c7a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611c916122e6565b73ffffffffffffffffffffffffffffffffffffffff16611caf61127d565b73ffffffffffffffffffffffffffffffffffffffff1614611d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfc90613812565b60405180910390fd5b565b600090565b60008082905080611d1b611d07565b11611da157600054811015611da05760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d9e575b60008103611d94576004600083600190039350838152602001908152602001600020549050611d6a565b8092505050611dd3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e608686846122ee565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600260095403611ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ede9061387e565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6120328282604051806020016040528060008152506122f7565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261205c611c81565b8786866040518563ffffffff1660e01b815260040161207e94939291906138f3565b6020604051808303816000875af19250505080156120ba57506040513d601f19601f820116820180604052508101906120b79190613954565b60015b612133573d80600081146120ea576040519150601f19603f3d011682016040523d82523d6000602084013e6120ef565b606091505b50600081510361212b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461219590612df2565b80601f01602080910402602001604051908101604052809291908181526020018280546121c190612df2565b801561220e5780601f106121e35761010080835404028352916020019161220e565b820191906000526020600020905b8154815290600101906020018083116121f157829003601f168201915b5050505050905090565b60606000600161222784612394565b01905060008167ffffffffffffffff81111561224657612245612992565b5b6040519080825280601f01601f1916602001820160405280156122785781602001600182028036833780820191505090505b509050600082602001820190505b6001156122db578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816122cf576122ce613981565b5b04945060008503612286575b819350505050919050565b600033905090565b60009392505050565b61230183836124e7565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461238f57600080549050600083820390505b6123416000868380600101945086612036565b612377576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061232e57816000541461238c57600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106123f2577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816123e8576123e7613981565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061242f576d04ee2d6d415b85acef8100000000838161242557612424613981565b5b0492506020810190505b662386f26fc10000831061245e57662386f26fc10000838161245457612453613981565b5b0492506010810190505b6305f5e1008310612487576305f5e100838161247d5761247c613981565b5b0492506008810190505b61271083106124ac5761271083816124a2576124a1613981565b5b0492506004810190505b606483106124cf57606483816124c5576124c4613981565b5b0492506002810190505b600a83106124de576001810190505b80915050919050565b60008054905060008203612527576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125346000848385611e43565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125ab8361259c6000866000611e49565b6125a5856126a2565b17611e71565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461264c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612611565b5060008203612687576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061269d6000848385611e9c565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126fb816126c6565b811461270657600080fd5b50565b600081359050612718816126f2565b92915050565b600060208284031215612734576127336126bc565b5b600061274284828501612709565b91505092915050565b60008115159050919050565b6127608161274b565b82525050565b600060208201905061277b6000830184612757565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127bb5780820151818401526020810190506127a0565b60008484015250505050565b6000601f19601f8301169050919050565b60006127e382612781565b6127ed818561278c565b93506127fd81856020860161279d565b612806816127c7565b840191505092915050565b6000602082019050818103600083015261282b81846127d8565b905092915050565b6000819050919050565b61284681612833565b811461285157600080fd5b50565b6000813590506128638161283d565b92915050565b60006020828403121561287f5761287e6126bc565b5b600061288d84828501612854565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128c182612896565b9050919050565b6128d1816128b6565b82525050565b60006020820190506128ec60008301846128c8565b92915050565b6128fb816128b6565b811461290657600080fd5b50565b600081359050612918816128f2565b92915050565b60008060408385031215612935576129346126bc565b5b600061294385828601612909565b925050602061295485828601612854565b9150509250929050565b61296781612833565b82525050565b6000602082019050612982600083018461295e565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129ca826127c7565b810181811067ffffffffffffffff821117156129e9576129e8612992565b5b80604052505050565b60006129fc6126b2565b9050612a0882826129c1565b919050565b600067ffffffffffffffff821115612a2857612a27612992565b5b612a31826127c7565b9050602081019050919050565b82818337600083830152505050565b6000612a60612a5b84612a0d565b6129f2565b905082815260208101848484011115612a7c57612a7b61298d565b5b612a87848285612a3e565b509392505050565b600082601f830112612aa457612aa3612988565b5b8135612ab4848260208601612a4d565b91505092915050565b600060208284031215612ad357612ad26126bc565b5b600082013567ffffffffffffffff811115612af157612af06126c1565b5b612afd84828501612a8f565b91505092915050565b612b0f8161274b565b8114612b1a57600080fd5b50565b600081359050612b2c81612b06565b92915050565b600060208284031215612b4857612b476126bc565b5b6000612b5684828501612b1d565b91505092915050565b600080600060608486031215612b7857612b776126bc565b5b6000612b8686828701612909565b9350506020612b9786828701612909565b9250506040612ba886828701612854565b9150509250925092565b600060208284031215612bc857612bc76126bc565b5b6000612bd684828501612909565b91505092915050565b60008060408385031215612bf657612bf56126bc565b5b6000612c0485828601612909565b9250506020612c1585828601612b1d565b9150509250929050565b600067ffffffffffffffff821115612c3a57612c39612992565b5b612c43826127c7565b9050602081019050919050565b6000612c63612c5e84612c1f565b6129f2565b905082815260208101848484011115612c7f57612c7e61298d565b5b612c8a848285612a3e565b509392505050565b600082601f830112612ca757612ca6612988565b5b8135612cb7848260208601612c50565b91505092915050565b60008060008060808587031215612cda57612cd96126bc565b5b6000612ce887828801612909565b9450506020612cf987828801612909565b9350506040612d0a87828801612854565b925050606085013567ffffffffffffffff811115612d2b57612d2a6126c1565b5b612d3787828801612c92565b91505092959194509250565b60008060408385031215612d5a57612d596126bc565b5b6000612d6885828601612909565b9250506020612d7985828601612909565b9150509250929050565b60008060408385031215612d9a57612d996126bc565b5b6000612da885828601612854565b9250506020612db985828601612909565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e0a57607f821691505b602082108103612e1d57612e1c612dc3565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612e857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612e48565b612e8f8683612e48565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612ecc612ec7612ec284612833565b612ea7565b612833565b9050919050565b6000819050919050565b612ee683612eb1565b612efa612ef282612ed3565b848454612e55565b825550505050565b600090565b612f0f612f02565b612f1a818484612edd565b505050565b5b81811015612f3e57612f33600082612f07565b600181019050612f20565b5050565b601f821115612f8357612f5481612e23565b612f5d84612e38565b81016020851015612f6c578190505b612f80612f7885612e38565b830182612f1f565b50505b505050565b600082821c905092915050565b6000612fa660001984600802612f88565b1980831691505092915050565b6000612fbf8383612f95565b9150826002028217905092915050565b612fd882612781565b67ffffffffffffffff811115612ff157612ff0612992565b5b612ffb8254612df2565b613006828285612f42565b600060209050601f8311600181146130395760008415613027578287015190505b6130318582612fb3565b865550613099565b601f19841661304786612e23565b60005b8281101561306f5784890151825560018201915060208501945060208101905061304a565b8683101561308c5784890151613088601f891682612f95565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b50565b60006130bc6000836130a1565b91506130c7826130ac565b600082019050919050565b60006130dd826130af565b9150819050919050565b7f636f6e7472616374206973207061757365640000000000000000000000000000600082015250565b600061311d60128361278c565b9150613128826130e7565b602082019050919050565b6000602082019050818103600083015261314c81613110565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061318d82612833565b915061319883612833565b92508282019050808211156131b0576131af613153565b5b92915050565b7f6d617820737570706c7920776f756c6420626520657863656564656400000000600082015250565b60006131ec601c8361278c565b91506131f7826131b6565b602082019050919050565b6000602082019050818103600083015261321b816131df565b9050919050565b7f6d6178206d696e74207065722077616c6c657420776f756c642062652065786360008201527f6565646564000000000000000000000000000000000000000000000000000000602082015250565b600061327e60258361278c565b915061328982613222565b604082019050919050565b600060208201905081810360008301526132ad81613271565b9050919050565b60006132bf82612833565b91506132ca83612833565b92508282039050818111156132e2576132e1613153565b5b92915050565b7f616d6f756e74206d7573742062652067726561746572207468616e2030000000600082015250565b600061331e601d8361278c565b9150613329826132e8565b602082019050919050565b6000602082019050818103600083015261334d81613311565b9050919050565b600061335f82612833565b915061336a83612833565b925082820261337881612833565b9150828204841483151761338f5761338e613153565b5b5092915050565b7f76616c7565206e6f74206d657400000000000000000000000000000000000000600082015250565b60006133cc600d8361278c565b91506133d782613396565b602082019050919050565b600060208201905081810360008301526133fb816133bf565b9050919050565b7f6e6f20736d61727420636f6e7472616374730000000000000000000000000000600082015250565b600061343860128361278c565b915061344382613402565b602082019050919050565b600060208201905081810360008301526134678161342b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006134ca602f8361278c565b91506134d58261346e565b604082019050919050565b600060208201905081810360008301526134f9816134bd565b9050919050565b600081905092915050565b600061351682612781565b6135208185613500565b935061353081856020860161279d565b80840191505092915050565b6000815461354981612df2565b6135538186613500565b9450600182166000811461356e5760018114613583576135b6565b60ff19831686528115158202860193506135b6565b61358c85612e23565b60005b838110156135ae5781548189015260018201915060208101905061358f565b838801955050505b50505092915050565b60006135cb828661350b565b91506135d7828561350b565b91506135e3828461353c565b9150819050949350505050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600061362660148361278c565b9150613631826135f0565b602082019050919050565b6000602082019050818103600083015261365581613619565b9050919050565b7f4f6e6c79206669766520616c6c6f776564207065722077616c6c657421000000600082015250565b6000613692601d8361278c565b915061369d8261365c565b602082019050919050565b600060208201905081810360008301526136c181613685565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006136fe60148361278c565b9150613709826136c8565b602082019050919050565b6000602082019050818103600083015261372d816136f1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061379060268361278c565b915061379b82613734565b604082019050919050565b600060208201905081810360008301526137bf81613783565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137fc60208361278c565b9150613807826137c6565b602082019050919050565b6000602082019050818103600083015261382b816137ef565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613868601f8361278c565b915061387382613832565b602082019050919050565b600060208201905081810360008301526138978161385b565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006138c58261389e565b6138cf81856138a9565b93506138df81856020860161279d565b6138e8816127c7565b840191505092915050565b600060808201905061390860008301876128c8565b61391560208301866128c8565b613922604083018561295e565b818103606083015261393481846138ba565b905095945050505050565b60008151905061394e816126f2565b92915050565b60006020828403121561396a576139696126bc565b5b60006139788482850161393f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea26469706673582212205795a2e1cef0cdc40d8beb31a544239e7d23c62f792b5ff3d828ea371d76eec764736f6c63430008110033697066733a2f2f6261667962656961746936353573696e7a3633337933337161686779326c79376875787963327761366d6c767774666575377972776935667379712f

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806370a082311161012e578063b88d4fde116100ab578063e268e4d31161006f578063e268e4d31461080a578063e985e9c514610833578063efbd73f414610870578063f2fde38b14610899578063f676308a146108c25761023b565b8063b88d4fde14610720578063c87b56dd1461073c578063d5abeb0114610779578063e0a80853146107a4578063e0ec7c36146107cd5761023b565b806395d89b41116100f257806395d89b411461065c578063a0712d6814610687578063a22cb465146106a3578063a45ba8e7146106cc578063b071401b146106f75761023b565b806370a0823114610589578063715018a6146105c65780637ec4a659146105dd5780638da5cb5b1461060657806394354fd0146106315761023b565b80633ccfd60b116101bc578063518302271161018057806351830227146104a05780635503a0e8146104cb5780635c975abb146104f657806362b99ad4146105215780636352211e1461054c5761023b565b80633ccfd60b146103f057806342842e0e1461040757806344a0d68a14610423578063453c23101461044c5780634fdd43cb146104775761023b565b806316ba10e01161020357806316ba10e01461032c57806316c38b3c1461035557806318160ddd1461037e57806323b872dd146103a957806324a6ab0c146103c55761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede614610301575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061271e565b6108eb565b6040516102749190612766565b60405180910390f35b34801561028957600080fd5b5061029261097d565b60405161029f9190612811565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190612869565b610a0f565b6040516102dc91906128d7565b60405180910390f35b6102ff60048036038101906102fa919061291e565b610a8e565b005b34801561030d57600080fd5b50610316610bd2565b604051610323919061296d565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e9190612abd565b610bd8565b005b34801561036157600080fd5b5061037c60048036038101906103779190612b32565b610bf3565b005b34801561038a57600080fd5b50610393610c18565b6040516103a0919061296d565b60405180910390f35b6103c360048036038101906103be9190612b5f565b610c2f565b005b3480156103d157600080fd5b506103da610f51565b6040516103e7919061296d565b60405180910390f35b3480156103fc57600080fd5b50610405610f57565b005b610421600480360381019061041c9190612b5f565b610fef565b005b34801561042f57600080fd5b5061044a60048036038101906104459190612869565b61100f565b005b34801561045857600080fd5b50610461611021565b60405161046e919061296d565b60405180910390f35b34801561048357600080fd5b5061049e60048036038101906104999190612abd565b611027565b005b3480156104ac57600080fd5b506104b5611042565b6040516104c29190612766565b60405180910390f35b3480156104d757600080fd5b506104e0611055565b6040516104ed9190612811565b60405180910390f35b34801561050257600080fd5b5061050b6110e3565b6040516105189190612766565b60405180910390f35b34801561052d57600080fd5b506105366110f6565b6040516105439190612811565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e9190612869565b611184565b60405161058091906128d7565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab9190612bb2565b611196565b6040516105bd919061296d565b60405180910390f35b3480156105d257600080fd5b506105db61124e565b005b3480156105e957600080fd5b5061060460048036038101906105ff9190612abd565b611262565b005b34801561061257600080fd5b5061061b61127d565b60405161062891906128d7565b60405180910390f35b34801561063d57600080fd5b506106466112a7565b604051610653919061296d565b60405180910390f35b34801561066857600080fd5b506106716112ad565b60405161067e9190612811565b60405180910390f35b6106a1600480360381019061069c9190612869565b61133f565b005b3480156106af57600080fd5b506106ca60048036038101906106c59190612bdf565b611607565b005b3480156106d857600080fd5b506106e1611712565b6040516106ee9190612811565b60405180910390f35b34801561070357600080fd5b5061071e60048036038101906107199190612869565b6117a0565b005b61073a60048036038101906107359190612cc0565b6117b2565b005b34801561074857600080fd5b50610763600480360381019061075e9190612869565b611825565b6040516107709190612811565b60405180910390f35b34801561078557600080fd5b5061078e61197d565b60405161079b919061296d565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c69190612b32565b611983565b005b3480156107d957600080fd5b506107f460048036038101906107ef9190612bb2565b6119a8565b6040516108019190612766565b60405180910390f35b34801561081657600080fd5b50610831600480360381019061082c9190612869565b6119c8565b005b34801561083f57600080fd5b5061085a60048036038101906108559190612d43565b6119da565b6040516108679190612766565b60405180910390f35b34801561087c57600080fd5b5061089760048036038101906108929190612d83565b611a6e565b005b3480156108a557600080fd5b506108c060048036038101906108bb9190612bb2565b611b8d565b005b3480156108ce57600080fd5b506108e960048036038101906108e49190612869565b611c10565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109765750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461098c90612df2565b80601f01602080910402602001604051908101604052809291908181526020018280546109b890612df2565b8015610a055780601f106109da57610100808354040283529160200191610a05565b820191906000526020600020905b8154815290600101906020018083116109e857829003601f168201915b5050505050905090565b6000610a1a82611c22565b610a50576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a9982611184565b90508073ffffffffffffffffffffffffffffffffffffffff16610aba611c81565b73ffffffffffffffffffffffffffffffffffffffff1614610b1d57610ae681610ae1611c81565b6119da565b610b1c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600d5481565b610be0611c89565b80600b9081610bef9190612fcf565b5050565b610bfb611c89565b80601260006101000a81548160ff02191690831515021790555050565b6000610c22611d07565b6001546000540303905090565b6000610c3a82611d0c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ca1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610cad84611dd8565b91509150610cc38187610cbe611c81565b611dff565b610d0f57610cd886610cd3611c81565b6119da565b610d0e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d75576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d828686866001611e43565b8015610d8d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e5b85610e37888887611e49565b7c020000000000000000000000000000000000000000000000000000000017611e71565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ee15760006001850190506000600460008381526020019081526020016000205403610edf576000548114610ede578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f498686866001611e9c565b505050505050565b600f5481565b610f5f611c89565b610f67611ea2565b6000610f7161127d565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f94906130d2565b60006040518083038185875af1925050503d8060008114610fd1576040519150601f19603f3d011682016040523d82523d6000602084013e610fd6565b606091505b5050905080610fe457600080fd5b50610fed611ef1565b565b61100a838383604051806020016040528060008152506117b2565b505050565b611017611c89565b80600d8190555050565b60105481565b61102f611c89565b80600c908161103e9190612fcf565b5050565b601260019054906101000a900460ff1681565b600b805461106290612df2565b80601f016020809104026020016040519081016040528092919081815260200182805461108e90612df2565b80156110db5780601f106110b0576101008083540402835291602001916110db565b820191906000526020600020905b8154815290600101906020018083116110be57829003601f168201915b505050505081565b601260009054906101000a900460ff1681565b600a805461110390612df2565b80601f016020809104026020016040519081016040528092919081815260200182805461112f90612df2565b801561117c5780601f106111515761010080835404028352916020019161117c565b820191906000526020600020905b81548152906001019060200180831161115f57829003601f168201915b505050505081565b600061118f82611d0c565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111fd576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611256611c89565b6112606000611efb565b565b61126a611c89565b80600a90816112799190612fcf565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6060600380546112bc90612df2565b80601f01602080910402602001604051908101604052809291908181526020018280546112e890612df2565b80156113355780601f1061130a57610100808354040283529160200191611335565b820191906000526020600020905b81548152906001019060200180831161131857829003601f168201915b5050505050905090565b601260009054906101000a900460ff161561138f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138690613133565b60405180910390fd5b600e548161139b610c18565b6113a59190613182565b11156113e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113dd90613202565b60405180910390fd5b60006113f133611fc1565b905060105482826114029190613182565b1115611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90613294565b60405180910390fd5b60008082036114f35760018361145991906132b4565b90506000831161149e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149590613334565b60405180910390fd5b80600d546114ac9190613354565b3410156114ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e5906133e2565b60405180910390fd5b6115f8565b82905060008311611539576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153090613334565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e9061344e565b60405180910390fd5b80600d546115b59190613354565b3410156115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee906133e2565b60405180910390fd5b5b6116023384612018565b505050565b8060076000611614611c81565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116c1611c81565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117069190612766565b60405180910390a35050565b600c805461171f90612df2565b80601f016020809104026020016040519081016040528092919081815260200182805461174b90612df2565b80156117985780601f1061176d57610100808354040283529160200191611798565b820191906000526020600020905b81548152906001019060200180831161177b57829003601f168201915b505050505081565b6117a8611c89565b8060118190555050565b6117bd848484610c2f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461181f576117e884848484612036565b61181e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061183082611c22565b61186f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611866906134e0565b60405180910390fd5b60001515601260019054906101000a900460ff1615150361191c57600c805461189790612df2565b80601f01602080910402602001604051908101604052809291908181526020018280546118c390612df2565b80156119105780601f106118e557610100808354040283529160200191611910565b820191906000526020600020905b8154815290600101906020018083116118f357829003601f168201915b50505050509050611978565b6000611926612186565b905060008151116119465760405180602001604052806000815250611974565b8061195084612218565b600b604051602001611964939291906135bf565b6040516020818303038152906040525b9150505b919050565b600e5481565b61198b611c89565b80601260016101000a81548160ff02191690831515021790555050565b60136020528060005260406000206000915054906101000a900460ff1681565b6119d0611c89565b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611a8157506011548111155b611ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab79061363c565b60405180910390fd5b601054611ad3611ace6122e6565b611196565b82611ade9190613182565b1115611b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b16906136a8565b60405180910390fd5b600e5481611b2b610c18565b611b359190613182565b1115611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d90613714565b60405180910390fd5b611b7e611c89565b611b888284612018565b505050565b611b95611c89565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfb906137a6565b60405180910390fd5b611c0d81611efb565b50565b611c18611c89565b80600f8190555050565b600081611c2d611d07565b11158015611c3c575060005482105b8015611c7a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b611c916122e6565b73ffffffffffffffffffffffffffffffffffffffff16611caf61127d565b73ffffffffffffffffffffffffffffffffffffffff1614611d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfc90613812565b60405180910390fd5b565b600090565b60008082905080611d1b611d07565b11611da157600054811015611da05760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611d9e575b60008103611d94576004600083600190039350838152602001908152602001600020549050611d6a565b8092505050611dd3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611e608686846122ee565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600260095403611ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ede9061387e565b60405180910390fd5b6002600981905550565b6001600981905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6120328282604051806020016040528060008152506122f7565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261205c611c81565b8786866040518563ffffffff1660e01b815260040161207e94939291906138f3565b6020604051808303816000875af19250505080156120ba57506040513d601f19601f820116820180604052508101906120b79190613954565b60015b612133573d80600081146120ea576040519150601f19603f3d011682016040523d82523d6000602084013e6120ef565b606091505b50600081510361212b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461219590612df2565b80601f01602080910402602001604051908101604052809291908181526020018280546121c190612df2565b801561220e5780601f106121e35761010080835404028352916020019161220e565b820191906000526020600020905b8154815290600101906020018083116121f157829003601f168201915b5050505050905090565b60606000600161222784612394565b01905060008167ffffffffffffffff81111561224657612245612992565b5b6040519080825280601f01601f1916602001820160405280156122785781602001600182028036833780820191505090505b509050600082602001820190505b6001156122db578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816122cf576122ce613981565b5b04945060008503612286575b819350505050919050565b600033905090565b60009392505050565b61230183836124e7565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461238f57600080549050600083820390505b6123416000868380600101945086612036565b612377576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061232e57816000541461238c57600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106123f2577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816123e8576123e7613981565b5b0492506040810190505b6d04ee2d6d415b85acef8100000000831061242f576d04ee2d6d415b85acef8100000000838161242557612424613981565b5b0492506020810190505b662386f26fc10000831061245e57662386f26fc10000838161245457612453613981565b5b0492506010810190505b6305f5e1008310612487576305f5e100838161247d5761247c613981565b5b0492506008810190505b61271083106124ac5761271083816124a2576124a1613981565b5b0492506004810190505b606483106124cf57606483816124c5576124c4613981565b5b0492506002810190505b600a83106124de576001810190505b80915050919050565b60008054905060008203612527576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125346000848385611e43565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125ab8361259c6000866000611e49565b6125a5856126a2565b17611e71565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461264c57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612611565b5060008203612687576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061269d6000848385611e9c565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126fb816126c6565b811461270657600080fd5b50565b600081359050612718816126f2565b92915050565b600060208284031215612734576127336126bc565b5b600061274284828501612709565b91505092915050565b60008115159050919050565b6127608161274b565b82525050565b600060208201905061277b6000830184612757565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127bb5780820151818401526020810190506127a0565b60008484015250505050565b6000601f19601f8301169050919050565b60006127e382612781565b6127ed818561278c565b93506127fd81856020860161279d565b612806816127c7565b840191505092915050565b6000602082019050818103600083015261282b81846127d8565b905092915050565b6000819050919050565b61284681612833565b811461285157600080fd5b50565b6000813590506128638161283d565b92915050565b60006020828403121561287f5761287e6126bc565b5b600061288d84828501612854565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006128c182612896565b9050919050565b6128d1816128b6565b82525050565b60006020820190506128ec60008301846128c8565b92915050565b6128fb816128b6565b811461290657600080fd5b50565b600081359050612918816128f2565b92915050565b60008060408385031215612935576129346126bc565b5b600061294385828601612909565b925050602061295485828601612854565b9150509250929050565b61296781612833565b82525050565b6000602082019050612982600083018461295e565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6129ca826127c7565b810181811067ffffffffffffffff821117156129e9576129e8612992565b5b80604052505050565b60006129fc6126b2565b9050612a0882826129c1565b919050565b600067ffffffffffffffff821115612a2857612a27612992565b5b612a31826127c7565b9050602081019050919050565b82818337600083830152505050565b6000612a60612a5b84612a0d565b6129f2565b905082815260208101848484011115612a7c57612a7b61298d565b5b612a87848285612a3e565b509392505050565b600082601f830112612aa457612aa3612988565b5b8135612ab4848260208601612a4d565b91505092915050565b600060208284031215612ad357612ad26126bc565b5b600082013567ffffffffffffffff811115612af157612af06126c1565b5b612afd84828501612a8f565b91505092915050565b612b0f8161274b565b8114612b1a57600080fd5b50565b600081359050612b2c81612b06565b92915050565b600060208284031215612b4857612b476126bc565b5b6000612b5684828501612b1d565b91505092915050565b600080600060608486031215612b7857612b776126bc565b5b6000612b8686828701612909565b9350506020612b9786828701612909565b9250506040612ba886828701612854565b9150509250925092565b600060208284031215612bc857612bc76126bc565b5b6000612bd684828501612909565b91505092915050565b60008060408385031215612bf657612bf56126bc565b5b6000612c0485828601612909565b9250506020612c1585828601612b1d565b9150509250929050565b600067ffffffffffffffff821115612c3a57612c39612992565b5b612c43826127c7565b9050602081019050919050565b6000612c63612c5e84612c1f565b6129f2565b905082815260208101848484011115612c7f57612c7e61298d565b5b612c8a848285612a3e565b509392505050565b600082601f830112612ca757612ca6612988565b5b8135612cb7848260208601612c50565b91505092915050565b60008060008060808587031215612cda57612cd96126bc565b5b6000612ce887828801612909565b9450506020612cf987828801612909565b9350506040612d0a87828801612854565b925050606085013567ffffffffffffffff811115612d2b57612d2a6126c1565b5b612d3787828801612c92565b91505092959194509250565b60008060408385031215612d5a57612d596126bc565b5b6000612d6885828601612909565b9250506020612d7985828601612909565b9150509250929050565b60008060408385031215612d9a57612d996126bc565b5b6000612da885828601612854565b9250506020612db985828601612909565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e0a57607f821691505b602082108103612e1d57612e1c612dc3565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612e857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612e48565b612e8f8683612e48565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612ecc612ec7612ec284612833565b612ea7565b612833565b9050919050565b6000819050919050565b612ee683612eb1565b612efa612ef282612ed3565b848454612e55565b825550505050565b600090565b612f0f612f02565b612f1a818484612edd565b505050565b5b81811015612f3e57612f33600082612f07565b600181019050612f20565b5050565b601f821115612f8357612f5481612e23565b612f5d84612e38565b81016020851015612f6c578190505b612f80612f7885612e38565b830182612f1f565b50505b505050565b600082821c905092915050565b6000612fa660001984600802612f88565b1980831691505092915050565b6000612fbf8383612f95565b9150826002028217905092915050565b612fd882612781565b67ffffffffffffffff811115612ff157612ff0612992565b5b612ffb8254612df2565b613006828285612f42565b600060209050601f8311600181146130395760008415613027578287015190505b6130318582612fb3565b865550613099565b601f19841661304786612e23565b60005b8281101561306f5784890151825560018201915060208501945060208101905061304a565b8683101561308c5784890151613088601f891682612f95565b8355505b6001600288020188555050505b505050505050565b600081905092915050565b50565b60006130bc6000836130a1565b91506130c7826130ac565b600082019050919050565b60006130dd826130af565b9150819050919050565b7f636f6e7472616374206973207061757365640000000000000000000000000000600082015250565b600061311d60128361278c565b9150613128826130e7565b602082019050919050565b6000602082019050818103600083015261314c81613110565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061318d82612833565b915061319883612833565b92508282019050808211156131b0576131af613153565b5b92915050565b7f6d617820737570706c7920776f756c6420626520657863656564656400000000600082015250565b60006131ec601c8361278c565b91506131f7826131b6565b602082019050919050565b6000602082019050818103600083015261321b816131df565b9050919050565b7f6d6178206d696e74207065722077616c6c657420776f756c642062652065786360008201527f6565646564000000000000000000000000000000000000000000000000000000602082015250565b600061327e60258361278c565b915061328982613222565b604082019050919050565b600060208201905081810360008301526132ad81613271565b9050919050565b60006132bf82612833565b91506132ca83612833565b92508282039050818111156132e2576132e1613153565b5b92915050565b7f616d6f756e74206d7573742062652067726561746572207468616e2030000000600082015250565b600061331e601d8361278c565b9150613329826132e8565b602082019050919050565b6000602082019050818103600083015261334d81613311565b9050919050565b600061335f82612833565b915061336a83612833565b925082820261337881612833565b9150828204841483151761338f5761338e613153565b5b5092915050565b7f76616c7565206e6f74206d657400000000000000000000000000000000000000600082015250565b60006133cc600d8361278c565b91506133d782613396565b602082019050919050565b600060208201905081810360008301526133fb816133bf565b9050919050565b7f6e6f20736d61727420636f6e7472616374730000000000000000000000000000600082015250565b600061343860128361278c565b915061344382613402565b602082019050919050565b600060208201905081810360008301526134678161342b565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006134ca602f8361278c565b91506134d58261346e565b604082019050919050565b600060208201905081810360008301526134f9816134bd565b9050919050565b600081905092915050565b600061351682612781565b6135208185613500565b935061353081856020860161279d565b80840191505092915050565b6000815461354981612df2565b6135538186613500565b9450600182166000811461356e5760018114613583576135b6565b60ff19831686528115158202860193506135b6565b61358c85612e23565b60005b838110156135ae5781548189015260018201915060208101905061358f565b838801955050505b50505092915050565b60006135cb828661350b565b91506135d7828561350b565b91506135e3828461353c565b9150819050949350505050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600061362660148361278c565b9150613631826135f0565b602082019050919050565b6000602082019050818103600083015261365581613619565b9050919050565b7f4f6e6c79206669766520616c6c6f776564207065722077616c6c657421000000600082015250565b6000613692601d8361278c565b915061369d8261365c565b602082019050919050565b600060208201905081810360008301526136c181613685565b9050919050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006136fe60148361278c565b9150613709826136c8565b602082019050919050565b6000602082019050818103600083015261372d816136f1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061379060268361278c565b915061379b82613734565b604082019050919050565b600060208201905081810360008301526137bf81613783565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137fc60208361278c565b9150613807826137c6565b602082019050919050565b6000602082019050818103600083015261382b816137ef565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613868601f8361278c565b915061387382613832565b602082019050919050565b600060208201905081810360008301526138978161385b565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006138c58261389e565b6138cf81856138a9565b93506138df81856020860161279d565b6138e8816127c7565b840191505092915050565b600060808201905061390860008301876128c8565b61391560208301866128c8565b613922604083018561295e565b818103606083015261393481846138ba565b905095945050505050565b60008151905061394e816126f2565b92915050565b60006020828403121561396a576139696126bc565b5b60006139788482850161393f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea26469706673582212205795a2e1cef0cdc40d8beb31a544239e7d23c62f792b5ff3d828ea371d76eec764736f6c63430008110033

Deployed Bytecode Sourcemap

79264:3893:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46163:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47065:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53556:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52989:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79532:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82720:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82826:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42816:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57195:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79600:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83004:150;;;;;;;;;;;;;:::i;:::-;;60116:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82156:71;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79634:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82476:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79738:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79454:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79708:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79354:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48458:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44000:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26942:103;;;;;;;;;;;;;:::i;:::-;;82614:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26294:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79667:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47241:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80437:906;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54114:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79492:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82233:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60907:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81621:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79567:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82069:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79772:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82367:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54505:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81351:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27200:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82909: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;79532:30::-;;;;:::o;82720:100::-;26180:13;:11;:13::i;:::-;82804:10:::1;82792:9;:22;;;;;;:::i;:::-;;82720:100:::0;:::o;82826:77::-;26180:13;:11;:13::i;:::-;82891:6:::1;82882;;:15;;;;;;;;;;;;;;;;;;82826: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;79600:29::-;;;;:::o;83004:150::-;26180:13;:11;:13::i;:::-;8366:21:::1;:19;:21::i;:::-;83062:7:::2;83083;:5;:7::i;:::-;83075:21;;83104;83075:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83061:69;;;83145:2;83137:11;;;::::0;::::2;;83054:100;8410:20:::1;:18;:20::i;:::-;83004:150::o:0;60116:193::-;60262:39;60279:4;60285:2;60289:7;60262:39;;;;;;;;;;;;:16;:39::i;:::-;60116:193;;;:::o;82156:71::-;26180:13;:11;:13::i;:::-;82216:5:::1;82209:4;:12;;;;82156:71:::0;:::o;79634:28::-;;;;:::o;82476:132::-;26180:13;:11;:13::i;:::-;82584:18:::1;82564:17;:38;;;;;;:::i;:::-;;82476:132:::0;:::o;79738:27::-;;;;;;;;;;;;;:::o;79454:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;79708:25::-;;;;;;;;;;;;;:::o;79354: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;82614:100::-;26180:13;:11;:13::i;:::-;82698:10:::1;82686:9;:22;;;;;;:::i;:::-;;82614:100:::0;:::o;26294:87::-;26340:7;26367:6;;;;;;;;;;;26360:13;;26294:87;:::o;79667:34::-;;;;:::o;47241:104::-;47297:13;47330:7;47323:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47241:104;:::o;80437:906::-;80504:6;;;;;;;;;;;80503:7;80495:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;80580:9;;80570:6;80554:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;80546:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;80633:11;80647:25;80661:10;80647:13;:25::i;:::-;80633:39;;80712:12;;80702:6;80693;:15;;;;:::i;:::-;:31;;80685:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;80779:20;80826:1;80816:6;:11;80812:484;;80871:1;80862:6;:10;;;;:::i;:::-;80844:28;;80904:1;80895:6;:10;80887:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;80982:15;80975:4;;:22;;;;:::i;:::-;80962:9;:35;;80954:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;80812:484;;;81066:6;81048:24;;81104:1;81095:6;:10;81087:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;81176:9;81162:23;;:10;:23;;;81154:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;81251:15;81244:4;;:22;;;;:::i;:::-;81231:9;:35;;81223:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;80812:484;81306:29;81316:10;81328:6;81306:9;:29::i;:::-;80484:859;;80437:906;:::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;79492:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;82233:127::-;26180:13;:11;:13::i;:::-;82335:19:::1;82314:18;:40;;;;82233: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;81621:442::-;81692:13;81722:17;81730:8;81722:7;:17::i;:::-;81714:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;81816:5;81804:17;;:8;;;;;;;;;;;:17;;;81800:64;;81839:17;81832:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81800:64;81872:28;81903:10;:8;:10::i;:::-;81872:41;;81958:1;81933:14;81927:28;:32;:130;;;;;;;;;;;;;;;;;81995:14;82011:19;:8;:17;:19::i;:::-;82032:9;81978:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;81927:130;81920:137;;;81621:442;;;;:::o;79567:28::-;;;;:::o;82069:81::-;26180:13;:11;:13::i;:::-;82138:6:::1;82127:8;;:17;;;;;;;;;;;;;;;;;;82069:81:::0;:::o;79772:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;82367:103::-;26180:13;:11;:13::i;:::-;82451::::1;82436:12;:28;;;;82367:103:::0;:::o;54505:164::-;54602:4;54626:18;:25;54645:5;54626:25;;;;;;;;;;;;;;;:35;54652:8;54626:35;;;;;;;;;;;;;;;;;;;;;;;;;54619:42;;54505:164;;;;:::o;81351:152::-;81434:11;79952:1;79938:11;:15;:52;;;;;79972:18;;79957:11;:33;;79938:52;79930:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;80071:12;;80044:23;80054:12;:10;:12::i;:::-;80044:9;:23::i;:::-;80030:11;:37;;;;:::i;:::-;:53;;80022:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;80163:9;;80148:11;80132:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;80124:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26180:13:::1;:11;:13::i;:::-;81464:33:::2;81474:9;81485:11;81464:9;:33::i;:::-;81351: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;82909:89::-;26180:13;:11;:13::i;:::-;82984:8:::1;82971:10;:21;;;;82909: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;42332:92::-;42388:7;42332:92;:::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;81511:104::-;81571:13;81600:9;81593:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81511: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:168::-;18955:20;18951:1;18943:6;18939:14;18932:44;18815:168;:::o;18989:366::-;19131:3;19152:67;19216:2;19211:3;19152:67;:::i;:::-;19145:74;;19228:93;19317:3;19228:93;:::i;:::-;19346:2;19341:3;19337:12;19330:19;;18989:366;;;:::o;19361:419::-;19527:4;19565:2;19554:9;19550:18;19542:26;;19614:9;19608:4;19604:20;19600:1;19589:9;19585:17;19578:47;19642:131;19768:4;19642:131;:::i;:::-;19634:139;;19361:419;;;:::o;19786:180::-;19834:77;19831:1;19824:88;19931:4;19928:1;19921:15;19955:4;19952:1;19945:15;19972:191;20012:3;20031:20;20049:1;20031:20;:::i;:::-;20026:25;;20065:20;20083:1;20065:20;:::i;:::-;20060:25;;20108:1;20105;20101:9;20094:16;;20129:3;20126:1;20123:10;20120:36;;;20136:18;;:::i;:::-;20120:36;19972:191;;;;:::o;20169:178::-;20309:30;20305:1;20297:6;20293:14;20286:54;20169:178;:::o;20353:366::-;20495:3;20516:67;20580:2;20575:3;20516:67;:::i;:::-;20509:74;;20592:93;20681:3;20592:93;:::i;:::-;20710:2;20705:3;20701:12;20694:19;;20353:366;;;:::o;20725:419::-;20891:4;20929:2;20918:9;20914:18;20906:26;;20978:9;20972:4;20968:20;20964:1;20953:9;20949:17;20942:47;21006:131;21132:4;21006:131;:::i;:::-;20998:139;;20725:419;;;:::o;21150:224::-;21290:34;21286:1;21278:6;21274:14;21267:58;21359:7;21354:2;21346:6;21342:15;21335:32;21150:224;:::o;21380:366::-;21522:3;21543:67;21607:2;21602:3;21543:67;:::i;:::-;21536:74;;21619:93;21708:3;21619:93;:::i;:::-;21737:2;21732:3;21728:12;21721:19;;21380:366;;;:::o;21752:419::-;21918:4;21956:2;21945:9;21941:18;21933:26;;22005:9;21999:4;21995:20;21991:1;21980:9;21976:17;21969:47;22033:131;22159:4;22033:131;:::i;:::-;22025:139;;21752:419;;;:::o;22177:194::-;22217:4;22237:20;22255:1;22237:20;:::i;:::-;22232:25;;22271:20;22289:1;22271:20;:::i;:::-;22266:25;;22315:1;22312;22308:9;22300:17;;22339:1;22333:4;22330:11;22327:37;;;22344:18;;:::i;:::-;22327:37;22177:194;;;;:::o;22377:179::-;22517:31;22513:1;22505:6;22501:14;22494:55;22377:179;:::o;22562:366::-;22704:3;22725:67;22789:2;22784:3;22725:67;:::i;:::-;22718:74;;22801:93;22890:3;22801:93;:::i;:::-;22919:2;22914:3;22910:12;22903:19;;22562:366;;;:::o;22934:419::-;23100:4;23138:2;23127:9;23123:18;23115:26;;23187:9;23181:4;23177:20;23173:1;23162:9;23158:17;23151:47;23215:131;23341:4;23215:131;:::i;:::-;23207:139;;22934:419;;;:::o;23359:410::-;23399:7;23422:20;23440:1;23422:20;:::i;:::-;23417:25;;23456:20;23474:1;23456:20;:::i;:::-;23451:25;;23511:1;23508;23504:9;23533:30;23551:11;23533:30;:::i;:::-;23522:41;;23712:1;23703:7;23699:15;23696:1;23693:22;23673:1;23666:9;23646:83;23623:139;;23742:18;;:::i;:::-;23623:139;23407:362;23359:410;;;;:::o;23775:163::-;23915:15;23911:1;23903:6;23899:14;23892:39;23775:163;:::o;23944:366::-;24086:3;24107:67;24171:2;24166:3;24107:67;:::i;:::-;24100:74;;24183:93;24272:3;24183:93;:::i;:::-;24301:2;24296:3;24292:12;24285:19;;23944:366;;;:::o;24316:419::-;24482:4;24520:2;24509:9;24505:18;24497:26;;24569:9;24563:4;24559:20;24555:1;24544:9;24540:17;24533:47;24597:131;24723:4;24597:131;:::i;:::-;24589:139;;24316:419;;;:::o;24741:168::-;24881:20;24877:1;24869:6;24865:14;24858:44;24741:168;:::o;24915:366::-;25057:3;25078:67;25142:2;25137:3;25078:67;:::i;:::-;25071:74;;25154:93;25243:3;25154:93;:::i;:::-;25272:2;25267:3;25263:12;25256:19;;24915:366;;;:::o;25287:419::-;25453:4;25491:2;25480:9;25476:18;25468:26;;25540:9;25534:4;25530:20;25526:1;25515:9;25511:17;25504:47;25568:131;25694:4;25568:131;:::i;:::-;25560:139;;25287:419;;;:::o;25712:234::-;25852:34;25848:1;25840:6;25836:14;25829:58;25921:17;25916:2;25908:6;25904:15;25897:42;25712:234;:::o;25952:366::-;26094:3;26115:67;26179:2;26174:3;26115:67;:::i;:::-;26108:74;;26191:93;26280:3;26191:93;:::i;:::-;26309:2;26304:3;26300:12;26293:19;;25952:366;;;:::o;26324:419::-;26490:4;26528:2;26517:9;26513:18;26505:26;;26577:9;26571:4;26567:20;26563:1;26552:9;26548:17;26541:47;26605:131;26731:4;26605:131;:::i;:::-;26597:139;;26324:419;;;:::o;26749:148::-;26851:11;26888:3;26873:18;;26749:148;;;;:::o;26903:390::-;27009:3;27037:39;27070:5;27037:39;:::i;:::-;27092:89;27174:6;27169:3;27092:89;:::i;:::-;27085:96;;27190:65;27248:6;27243:3;27236:4;27229:5;27225:16;27190:65;:::i;:::-;27280:6;27275:3;27271:16;27264:23;;27013:280;26903:390;;;;:::o;27323:874::-;27426:3;27463:5;27457:12;27492:36;27518:9;27492:36;:::i;:::-;27544:89;27626:6;27621:3;27544:89;:::i;:::-;27537:96;;27664:1;27653:9;27649:17;27680:1;27675:166;;;;27855:1;27850:341;;;;27642:549;;27675:166;27759:4;27755:9;27744;27740:25;27735:3;27728:38;27821:6;27814:14;27807:22;27799:6;27795:35;27790:3;27786:45;27779:52;;27675:166;;27850:341;27917:38;27949:5;27917:38;:::i;:::-;27977:1;27991:154;28005:6;28002:1;27999:13;27991:154;;;28079:7;28073:14;28069:1;28064:3;28060:11;28053:35;28129:1;28120:7;28116:15;28105:26;;28027:4;28024:1;28020:12;28015:17;;27991:154;;;28174:6;28169:3;28165:16;28158:23;;27857:334;;27642:549;;27430:767;;27323:874;;;;:::o;28203:589::-;28428:3;28450:95;28541:3;28532:6;28450:95;:::i;:::-;28443:102;;28562:95;28653:3;28644:6;28562:95;:::i;:::-;28555:102;;28674:92;28762:3;28753:6;28674:92;:::i;:::-;28667:99;;28783:3;28776:10;;28203:589;;;;;;:::o;28798:170::-;28938:22;28934:1;28926:6;28922:14;28915:46;28798:170;:::o;28974:366::-;29116:3;29137:67;29201:2;29196:3;29137:67;:::i;:::-;29130:74;;29213:93;29302:3;29213:93;:::i;:::-;29331:2;29326:3;29322:12;29315:19;;28974:366;;;:::o;29346:419::-;29512:4;29550:2;29539:9;29535:18;29527:26;;29599:9;29593:4;29589:20;29585:1;29574:9;29570:17;29563:47;29627:131;29753:4;29627:131;:::i;:::-;29619:139;;29346:419;;;:::o;29771:179::-;29911:31;29907:1;29899:6;29895:14;29888:55;29771:179;:::o;29956:366::-;30098:3;30119:67;30183:2;30178:3;30119:67;:::i;:::-;30112:74;;30195:93;30284:3;30195:93;:::i;:::-;30313:2;30308:3;30304:12;30297:19;;29956:366;;;:::o;30328:419::-;30494:4;30532:2;30521:9;30517:18;30509:26;;30581:9;30575:4;30571:20;30567:1;30556:9;30552:17;30545:47;30609:131;30735:4;30609:131;:::i;:::-;30601:139;;30328:419;;;:::o;30753:170::-;30893:22;30889:1;30881:6;30877:14;30870:46;30753:170;:::o;30929:366::-;31071:3;31092:67;31156:2;31151:3;31092:67;:::i;:::-;31085:74;;31168:93;31257:3;31168:93;:::i;:::-;31286:2;31281:3;31277:12;31270:19;;30929:366;;;:::o;31301:419::-;31467:4;31505:2;31494:9;31490:18;31482:26;;31554:9;31548:4;31544:20;31540:1;31529:9;31525:17;31518:47;31582:131;31708:4;31582:131;:::i;:::-;31574:139;;31301:419;;;:::o;31726:225::-;31866:34;31862:1;31854:6;31850:14;31843:58;31935:8;31930:2;31922:6;31918:15;31911:33;31726:225;:::o;31957:366::-;32099:3;32120:67;32184:2;32179:3;32120:67;:::i;:::-;32113:74;;32196:93;32285:3;32196:93;:::i;:::-;32314:2;32309:3;32305:12;32298:19;;31957:366;;;:::o;32329:419::-;32495:4;32533:2;32522:9;32518:18;32510:26;;32582:9;32576:4;32572:20;32568:1;32557:9;32553:17;32546:47;32610:131;32736:4;32610:131;:::i;:::-;32602:139;;32329:419;;;:::o;32754:182::-;32894:34;32890:1;32882:6;32878:14;32871:58;32754:182;:::o;32942:366::-;33084:3;33105:67;33169:2;33164:3;33105:67;:::i;:::-;33098:74;;33181:93;33270:3;33181:93;:::i;:::-;33299:2;33294:3;33290:12;33283:19;;32942:366;;;:::o;33314:419::-;33480:4;33518:2;33507:9;33503:18;33495:26;;33567:9;33561:4;33557:20;33553:1;33542:9;33538:17;33531:47;33595:131;33721:4;33595:131;:::i;:::-;33587:139;;33314:419;;;:::o;33739:181::-;33879:33;33875:1;33867:6;33863:14;33856:57;33739:181;:::o;33926:366::-;34068:3;34089:67;34153:2;34148:3;34089:67;:::i;:::-;34082:74;;34165:93;34254:3;34165:93;:::i;:::-;34283:2;34278:3;34274:12;34267:19;;33926:366;;;:::o;34298:419::-;34464:4;34502:2;34491:9;34487:18;34479:26;;34551:9;34545:4;34541:20;34537:1;34526:9;34522:17;34515:47;34579:131;34705:4;34579:131;:::i;:::-;34571:139;;34298:419;;;:::o;34723:98::-;34774:6;34808:5;34802:12;34792:22;;34723:98;;;:::o;34827:168::-;34910:11;34944:6;34939:3;34932:19;34984:4;34979:3;34975:14;34960:29;;34827:168;;;;:::o;35001:373::-;35087:3;35115:38;35147:5;35115:38;:::i;:::-;35169:70;35232:6;35227:3;35169:70;:::i;:::-;35162:77;;35248:65;35306:6;35301:3;35294:4;35287:5;35283:16;35248:65;:::i;:::-;35338:29;35360:6;35338:29;:::i;:::-;35333:3;35329:39;35322:46;;35091:283;35001:373;;;;:::o;35380:640::-;35575:4;35613:3;35602:9;35598:19;35590:27;;35627:71;35695:1;35684:9;35680:17;35671:6;35627:71;:::i;:::-;35708:72;35776:2;35765:9;35761:18;35752:6;35708:72;:::i;:::-;35790;35858:2;35847:9;35843:18;35834:6;35790:72;:::i;:::-;35909:9;35903:4;35899:20;35894:2;35883:9;35879:18;35872:48;35937:76;36008:4;35999:6;35937:76;:::i;:::-;35929:84;;35380:640;;;;;;;:::o;36026:141::-;36082:5;36113:6;36107:13;36098:22;;36129:32;36155:5;36129:32;:::i;:::-;36026:141;;;;:::o;36173:349::-;36242:6;36291:2;36279:9;36270:7;36266:23;36262:32;36259:119;;;36297:79;;:::i;:::-;36259:119;36417:1;36442:63;36497:7;36488:6;36477:9;36473:22;36442:63;:::i;:::-;36432:73;;36388:127;36173:349;;;;:::o;36528:180::-;36576:77;36573:1;36566:88;36673:4;36670:1;36663:15;36697:4;36694:1;36687:15

Swarm Source

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