ETH Price: $2,452.18 (-0.81%)

Token

Cameo with Goddess Isis Bust (Cameo with Goddess Isis Bust)
 

Overview

Max Total Supply

330 Cameo with Goddess Isis Bust

Holders

269

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Cameo with Goddess Isis Bust
0x3F416066e0A127D3173439D4a241A476bdF58c6E
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:
Cameo_with_Goddess_Isis_Bust

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-27
*/

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


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

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

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

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.9.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) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 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 256, 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 << 3) < value ? 1 : 0);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v4.9.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 `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

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

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol


// OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV // Deprecated in v4.8
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, "\x19Ethereum Signed Message:\n32")
            mstore(0x1c, hash)
            message := keccak256(0x00, 0x3c)
        }
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) {
        /// @solidity memory-safe-assembly
        assembly {
            let ptr := mload(0x40)
            mstore(ptr, "\x19\x01")
            mstore(add(ptr, 0x02), domainSeparator)
            mstore(add(ptr, 0x22), structHash)
            data := keccak256(ptr, 0x42)
        }
    }

    /**
     * @dev Returns an Ethereum Signed Data with intended validator, created from a
     * `validator` and `data` according to the version 0 of EIP-191.
     *
     * See {recover}.
     */
    function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x00", validator, data));
    }
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

        return (royalty.receiver, royaltyAmount);
    }

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

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

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

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

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

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

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

// File: @openzeppelin/contracts/utils/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.9.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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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: isis.sol



pragma solidity ^0.8.0;






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

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

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


/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe) internal virtual {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy))
            // prettier-ignore
            for {} iszero(subscribe) {} {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            pop(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x00))
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if `from` is a blocked operator.
    /// Can be turned on / off via `enabled`.
    /// For gas efficiency, you can use tight variable packing to efficiently read / write
    /// the boolean value for `enabled`.
    modifier onlyAllowedOperator(address from, bool enabled) virtual {
        /// @solidity memory-safe-assembly
        assembly {
            // This code prioritizes runtime gas costs on a chain with the registry.
            // As such, we will not use `extcodesize`, but rather abuse the behavior
            // of `staticcall` returning 1 when called on an empty / missing contract,
            // to avoid reverting when a chain does not have the registry.

            if enabled {
                // Check if `from` is not equal to `msg.sender`,
                // discarding the upper 96 bits of `from` in case they are dirty.
                if iszero(eq(shr(96, shl(96, from)), caller())) {
                    // Store the function selector of `isOperatorAllowed(address,address)`,
                    // shifted left by 6 bytes, which is enough for 8tb of memory.
                    // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
                    mstore(0x00, 0xc6171134001122334455)
                    // Store the `address(this)`.
                    mstore(0x1a, address())
                    // Store the `msg.sender`.
                    mstore(0x3a, caller())

                    // `isOperatorAllowed` always returns true if it does not revert.
                    if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                        // Bubble up the revert if the staticcall reverts.
                        returndatacopy(0x00, 0x00, returndatasize())
                        revert(0x00, returndatasize())
                    }

                    // We'll skip checking if `from` is inside the blacklist.
                    // Even though that can block transferring out of wrapper contracts,
                    // we don't want tokens to be stuck.

                    // Restore the part of the free memory pointer that was overwritten,
                    // which is guaranteed to be zero, if less than 8tb of memory is used.
                    mstore(0x3a, 0)
                }
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator.
    /// Can be turned on / off via `enabled`.
    /// For efficiency, you can use tight variable packing to efficiently read / write
    /// the boolean value for `enabled`.
    modifier onlyAllowedOperatorApproval(address operator, bool enabled) virtual {
        /// @solidity memory-safe-assembly
        assembly {
            // For more information on the optimization techniques used,
            // see the comments in `onlyAllowedOperator`.

            if enabled {
                // Store the function selector of `isOperatorAllowed(address,address)`,
                mstore(0x00, 0xc6171134001122334455)
                // Store the `address(this)`.
                mstore(0x1a, address())
                // Store the `operator`, discarding the upper 96 bits in case they are dirty.
                mstore(0x3a, shr(96, shl(96, operator)))

                // `isOperatorAllowed` always returns true if it does not revert.
                if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                    // Bubble up the revert if the staticcall reverts.
                    returndatacopy(0x00, 0x00, returndatasize())
                    revert(0x00, returndatasize())
                }

                // Restore the part of the free memory pointer that was overwritten.
                mstore(0x3a, 0)
            }
        }
        _;
    }
}

error AlreadyReservedTokens();
error CallerNotOffsetter();
error FunctionLocked();
error InsufficientValue();
error InsufficientMints();
error InsufficientSupply();
error InvalidSignature();
error NoContractMinting();
error ProvenanceHashAlreadySet();
error ProvenanceHashNotSet();
error TokenOffsetAlreadySet();
error TokenOffsetNotSet();
error WithdrawFailed();

interface Offsetable { function setOffset(uint256 randomness) external; }

contract Cameo_with_Goddess_Isis_Bust is ERC721A, ERC2981, OperatorFilterer, Ownable {
    using ECDSA for bytes32;

    string private _baseTokenURI;
    string public baseExtension = ".json";
    uint256 public constant RESERVED = 330;
    uint256 public SEC_RESERVED = 0;
    uint256 public constant MAX_SUPPLY = 330; 
    uint256 public PUBLIC_SUPPLY = 0;   
    uint256 public mintPrice = 0.031 ether;
    string public provenanceHash;
    bool public operatorFilteringEnabled;
    bool public mintEnable = false;
    mapping(bytes4 => bool) public functionLocked;
    mapping(address => bool) public isUk;
    mapping(address => bool) public minter;

    constructor(
        address _royaltyReceiver,
        uint96 _royaltyFraction
    )
        ERC721A("Cameo with Goddess Isis Bust", "Cameo with Goddess Isis Bust")
    {

        _registerForOperatorFiltering();
        operatorFilteringEnabled = true;
        minter[0xa8C10eC49dF815e73A881ABbE0Aa7b210f39E2Df] = true;
        minter[0x79bB164367BB64742E993f381372961a945BF447] = true;
        minter[0xFd88229910A28D6B319E147b40c822FA5CF38a45] = true;
        minter[0x6b40a842e05D60081F5474046c713b294B4BbC63] = true;
        minter[0x8528fA2503c49893B704B981e0cBAC021E678789] = true;

        _setDefaultRoyalty(_royaltyReceiver, _royaltyFraction);
    }

    /**
     * @notice Modifier applied to functions that will be disabled when they're no longer needed
     */
    modifier lockable() {
        if (functionLocked[msg.sig]) revert FunctionLocked();
        _;
    }

    modifier onlyMinter() {
        require(minter[msg.sender] == true, "You're not a minter");
        _;
    }

    /**
     * @inheritdoc ERC721A
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721A, ERC2981)
        returns (bool)
    {
        return
            ERC721A.supportsInterface(interfaceId)
            || ERC2981.supportsInterface(interfaceId);
    }

    /**
     * @notice Override ERC721A _baseURI function to use base URI pattern
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
        baseExtension = _newBaseExtension;
    }

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

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


    /**
     * @notice Return the number of tokens an address has minted
     * @param account Address to return the number of tokens minted for
     */
    function numberMinted(address account) external view returns (uint256) {
        return _numberMinted(account);
    }

    /**
     * @notice Lock a function so that it can no longer be called
     * @dev WARNING: THIS CANNOT BE UNDONE
     * @param id Function signature
     */
    function lockFunction(bytes4 id) external onlyOwner {
        functionLocked[id] = true;
    }

    /**
     * @notice Set the state of the OpenSea operator filter
     * @param value Flag indicating if the operator filter should be applied to transfers and approvals
     */
    function setOperatorFilteringEnabled(bool value) external lockable onlyOwner {
        operatorFilteringEnabled = value;
    }

    /**
     * @notice Set new royalties settings for the collection
     * @param receiver Address to receive royalties
     * @param royaltyFraction Royalty fee respective to fee denominator (10_000)
     */
    function setRoyalties(address receiver, uint96 royaltyFraction) external onlyOwner {
        _setDefaultRoyalty(receiver, royaltyFraction);
    }


    /**
     * @notice Set token metadata base URI
     * @param _newBaseURI New base URI
     */
    function setBaseURI(string calldata _newBaseURI) external lockable onlyOwner {
        _baseTokenURI = _newBaseURI;
    }

    /**
     * @notice Set provenance hash for the collection
     * @param _provenanceHash New hash of the metadata
     */
    function setProvenanceHash(string calldata _provenanceHash) external lockable onlyOwner {
        if (bytes(provenanceHash).length != 0) revert ProvenanceHashAlreadySet();

        provenanceHash = _provenanceHash;
    }


    /**
     * @notice Mint `RESERVED` amount of tokens to an address
     * @param to Address to send the reserved tokens
     */
    function reserve(address to) external lockable onlyOwner {
        if (_totalMinted() >= RESERVED) revert AlreadyReservedTokens();
        _mint(to, RESERVED);
    }

    function secondaryReserve(address to, uint256 quantity) external lockable onlyOwner {
        require(_totalMinted() + quantity <= MAX_SUPPLY,"Exceeds Maximum Supply");
        _mint(to, quantity);
    }

    function publicMint(address to, uint256 quantity, bool _isUk) external payable onlyMinter{
        require(mintEnable == true, "Minting is not yet open.");
        require(quantity <= PUBLIC_SUPPLY, "NFT amount exceeds");
        require(_totalMinted() + quantity <= MAX_SUPPLY , "Exceeds Maximum Supply" );
        uint totalCost = quantity * mintPrice;
        require( msg.value >= totalCost, "Ether sent is not correct." );
        _mint(to, quantity);
        PUBLIC_SUPPLY -= quantity;
        isUk[to] = _isUk;
        if (msg.value > totalCost) {
            payable(msg.sender).transfer(msg.value - totalCost);
        }
    }

    function setMintPrice(uint256 _newPrice) external onlyOwner() {
        mintPrice = _newPrice;
    }

    function setPublicSupply(uint256 _newSupply) external onlyOwner() {
        PUBLIC_SUPPLY = _newSupply;
    }

    function setSecondaryReserve(uint256 amount) external onlyOwner() {
        SEC_RESERVED = amount;
    }
    function enableMinting(bool _enable) external onlyOwner{
        mintEnable = _enable;
    }

    function assignMinterRole(address _minter) external onlyOwner{
        require(minter[_minter] == false, "Already a minter");
        minter[_minter] = true;
    }

    function revokeMinterRole(address _minter) external onlyOwner{
        require(minter[_minter] == true, "Not a minter");
        minter[_minter] = false;
    }

    /**
     * @notice Withdraw all ETH sent to the contract
     */
    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        if (!success) revert WithdrawFailed();
    }

    /**
     * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties
     * @inheritdoc ERC721A
     */
    function setApprovalForAll(address operator, bool approved)
        public
        override
        onlyAllowedOperatorApproval(operator, operatorFilteringEnabled)
    {
        super.setApprovalForAll(operator, approved);
    }

    /**
     * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties
     * @inheritdoc ERC721A
     */
    function approve(address operator, uint256 tokenId)
        public
        payable
        override
        onlyAllowedOperatorApproval(operator, operatorFilteringEnabled)
    {
        super.approve(operator, tokenId);
    }

    /**
     * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties
     * @inheritdoc ERC721A
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override onlyAllowedOperator(from, operatorFilteringEnabled) {
        super.transferFrom(from, to, tokenId);
    }

    /**
     * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties
     * @inheritdoc ERC721A
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable override onlyAllowedOperator(from, operatorFilteringEnabled) {
        super.safeTransferFrom(from, to, tokenId);
    }

    /**
     * @notice Override to enforce OpenSea's operator filter requirement to receive collection royalties
     * @inheritdoc ERC721A
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public payable override onlyAllowedOperator(from, operatorFilteringEnabled) {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_royaltyReceiver","type":"address"},{"internalType":"uint96","name":"_royaltyFraction","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyReservedTokens","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"FunctionLocked","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":"ProvenanceHashAlreadySet","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"},{"inputs":[],"name":"WithdrawFailed","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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SEC_RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"assignMinterRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"enableMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"name":"functionLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isUk","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"id","type":"bytes4"}],"name":"lockFunction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bool","name":"_isUk","type":"bool"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"revokeMinterRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"secondaryReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setPublicSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"royaltyFraction","type":"uint96"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSecondaryReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90816200004a919062000960565b506000600d556000600e55666e2255f4098000600f556000601160016101000a81548160ff0219169083151502179055503480156200008857600080fd5b5060405162005547380380620055478339818101604052810190620000ae919062000afa565b6040518060400160405280601c81526020017f43616d656f207769746820476f646465737320497369732042757374000000008152506040518060400160405280601c81526020017f43616d656f207769746820476f6464657373204973697320427573740000000081525081600290816200012b919062000960565b5080600390816200013d919062000960565b506200014e620003d760201b60201c565b6000819055505050620001766200016a620003e060201b60201c565b620003e860201b60201c565b62000186620004ae60201b60201c565b6001601160006101000a81548160ff02191690831515021790555060016014600073a8c10ec49df815e73a881abbe0aa7b210f39e2df73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601460007379bb164367bb64742e993f381372961a945bf44773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016014600073fd88229910a28d6b319e147b40c822fa5cf38a4573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160146000736b40a842e05d60081f5474046c713b294b4bbc6373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160146000738528fa2503c49893b704b981e0cbac021e67878973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003cf8282620004d760201b60201c565b505062000c5c565b60006001905090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004d5733cc6cdda760b79bafa08df41ecfa224f810dceb660016200067a60201b60201c565b565b620004e7620006dc60201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111562000548576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200053f9062000bc8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620005ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005b19062000c3a565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b637d3e3dbe8260601b60601c925081620006a95782620006a157634420e4869050620006a9565b63a0af290390505b8060e01b600052306004528260245260008060446000806daaeb6d7670e522a718067333cd4e5af1506000602452505050565b6000612710905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200076857607f821691505b6020821081036200077e576200077d62000720565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007e87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007a9565b620007f48683620007a9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008416200083b62000835846200080c565b62000816565b6200080c565b9050919050565b6000819050919050565b6200085d8362000820565b620008756200086c8262000848565b848454620007b6565b825550505050565b600090565b6200088c6200087d565b6200089981848462000852565b505050565b5b81811015620008c157620008b560008262000882565b6001810190506200089f565b5050565b601f8211156200091057620008da8162000784565b620008e58462000799565b81016020851015620008f5578190505b6200090d620009048562000799565b8301826200089e565b50505b505050565b600082821c905092915050565b6000620009356000198460080262000915565b1980831691505092915050565b600062000950838362000922565b9150826002028217905092915050565b6200096b82620006e6565b67ffffffffffffffff811115620009875762000986620006f1565b5b6200099382546200074f565b620009a0828285620008c5565b600060209050601f831160018114620009d85760008415620009c3578287015190505b620009cf858262000942565b86555062000a3f565b601f198416620009e88662000784565b60005b8281101562000a1257848901518255600182019150602085019450602081019050620009eb565b8683101562000a32578489015162000a2e601f89168262000922565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a798262000a4c565b9050919050565b62000a8b8162000a6c565b811462000a9757600080fd5b50565b60008151905062000aab8162000a80565b92915050565b60006bffffffffffffffffffffffff82169050919050565b62000ad48162000ab1565b811462000ae057600080fd5b50565b60008151905062000af48162000ac9565b92915050565b6000806040838503121562000b145762000b1362000a47565b5b600062000b248582860162000a9a565b925050602062000b378582860162000ae3565b9150509250929050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000bb0602a8362000b41565b915062000bbd8262000b52565b604082019050919050565b6000602082019050818103600083015262000be38162000ba1565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000c2260198362000b41565b915062000c2f8262000bea565b602082019050919050565b6000602082019050818103600083015262000c558162000c13565b9050919050565b6148db8062000c6c6000396000f3fe6080604052600436106102885760003560e01c806374d0101d1161015a578063c1e1ce29116100c1578063dc33e6811161007a578063dc33e68114610986578063e75179a4146109c3578063e985e9c5146109ec578063f2fde38b14610a29578063f4a0a52814610a52578063fb796e6c14610a7b57610288565b8063c1e1ce2914610876578063c21b471b146108a1578063c6682862146108ca578063c6ab67a3146108f5578063c87b56dd14610920578063da3ef23f1461095d57610288565b8063aa592f2511610113578063aa592f2514610763578063b366d6131461078e578063b629f192146107b7578063b7c0b8e8146107f4578063b88d4fde1461081d578063bbadfe761461083957610288565b806374d0101d1461066757806378acea1e146106905780638342083a146106b95780638da5cb5b146106e457806395d89b411461070f578063a22cb4651461073a57610288565b80633ccfd60b116101fe578063601e5e77116101b7578063601e5e77146105575780636352211e146105825780636817c76c146105bf57806369e2f0fb146105ea57806370a0823114610613578063715018a61461065057610288565b80633ccfd60b146104795780633dd08c3814610490578063402c3856146104cd57806342842e0e146104e9578063559c55b91461050557806355f804b31461052e57610288565b806318160ddd1161025057806318160ddd1461037757806323b872dd146103a257806326aa420a146103be5780632a55205a146103e757806332cb6b0c14610425578063345318281461045057610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f5578063095ea7b314610332578063109695231461034e575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af91906133c6565b610aa6565b6040516102c1919061340e565b60405180910390f35b3480156102d657600080fd5b506102df610ac8565b6040516102ec91906134b9565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190613511565b610b5a565b604051610329919061357f565b60405180910390f35b61034c600480360381019061034791906135c6565b610bd9565b005b34801561035a57600080fd5b506103756004803603810190610370919061366b565b610c48565b005b34801561038357600080fd5b5061038c610d67565b60405161039991906136c7565b60405180910390f35b6103bc60048036038101906103b791906136e2565b610d7e565b005b3480156103ca57600080fd5b506103e560048036038101906103e09190613511565b610df7565b005b3480156103f357600080fd5b5061040e60048036038101906104099190613735565b610e09565b60405161041c929190613775565b60405180910390f35b34801561043157600080fd5b5061043a610ff3565b60405161044791906136c7565b60405180910390f35b34801561045c57600080fd5b50610477600480360381019061047291906133c6565b610ff9565b005b34801561048557600080fd5b5061048e61106e565b005b34801561049c57600080fd5b506104b760048036038101906104b2919061379e565b61111c565b6040516104c4919061340e565b60405180910390f35b6104e760048036038101906104e291906137f7565b61113c565b005b61050360048036038101906104fe91906136e2565b6113f1565b005b34801561051157600080fd5b5061052c60048036038101906105279190613511565b61146a565b005b34801561053a57600080fd5b506105556004803603810190610550919061366b565b61147c565b005b34801561056357600080fd5b5061056c611553565b60405161057991906136c7565b60405180910390f35b34801561058e57600080fd5b506105a960048036038101906105a49190613511565b611559565b6040516105b6919061357f565b60405180910390f35b3480156105cb57600080fd5b506105d461156b565b6040516105e191906136c7565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c919061379e565b611571565b005b34801561061f57600080fd5b5061063a6004803603810190610635919061379e565b611667565b60405161064791906136c7565b60405180910390f35b34801561065c57600080fd5b5061066561171f565b005b34801561067357600080fd5b5061068e600480360381019061068991906135c6565b611733565b005b34801561069c57600080fd5b506106b760048036038101906106b2919061384a565b611859565b005b3480156106c557600080fd5b506106ce61187e565b6040516106db91906136c7565b60405180910390f35b3480156106f057600080fd5b506106f9611884565b604051610706919061357f565b60405180910390f35b34801561071b57600080fd5b506107246118ae565b60405161073191906134b9565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190613877565b611940565b005b34801561076f57600080fd5b506107786119af565b60405161078591906136c7565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b0919061379e565b6119b5565b005b3480156107c357600080fd5b506107de60048036038101906107d9919061379e565b611aab565b6040516107eb919061340e565b60405180910390f35b34801561080057600080fd5b5061081b6004803603810190610816919061384a565b611acb565b005b610837600480360381019061083291906139e7565b611ba9565b005b34801561084557600080fd5b50610860600480360381019061085b91906133c6565b611c24565b60405161086d919061340e565b60405180910390f35b34801561088257600080fd5b5061088b611c44565b604051610898919061340e565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c39190613aae565b611c57565b005b3480156108d657600080fd5b506108df611c6d565b6040516108ec91906134b9565b60405180910390f35b34801561090157600080fd5b5061090a611cfb565b60405161091791906134b9565b60405180910390f35b34801561092c57600080fd5b5061094760048036038101906109429190613511565b611d89565b60405161095491906134b9565b60405180910390f35b34801561096957600080fd5b50610984600480360381019061097f9190613b8f565b611e33565b005b34801561099257600080fd5b506109ad60048036038101906109a8919061379e565b611e4e565b6040516109ba91906136c7565b60405180910390f35b3480156109cf57600080fd5b506109ea60048036038101906109e5919061379e565b611e60565b005b3480156109f857600080fd5b50610a136004803603810190610a0e9190613bd8565b611f72565b604051610a20919061340e565b60405180910390f35b348015610a3557600080fd5b50610a506004803603810190610a4b919061379e565b612006565b005b348015610a5e57600080fd5b50610a796004803603810190610a749190613511565b612089565b005b348015610a8757600080fd5b50610a9061209b565b604051610a9d919061340e565b60405180910390f35b6000610ab1826120ae565b80610ac15750610ac082612140565b5b9050919050565b606060028054610ad790613c47565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0390613c47565b8015610b505780601f10610b2557610100808354040283529160200191610b50565b820191906000526020600020905b815481529060010190602001808311610b3357829003601f168201915b5050505050905090565b6000610b65826121ba565b610b9b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81601160009054906101000a900460ff168015610c385769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610c32573d6000803e3d6000fd5b6000603a525b610c428484612219565b50505050565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615610d01576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d0961235d565b600060108054610d1890613c47565b905014610d51576040517f19e24c1100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818160109182610d62929190613e2f565b505050565b6000610d716123db565b6001546000540303905090565b82601160009054906101000a900460ff168015610de557338260601b60601c14610de45769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610dde573d6000803e3d6000fd5b6000603a525b5b610df08585856123e4565b5050505050565b610dff61235d565b80600e8190555050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610f9e5760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610fa8612706565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610fd49190613f2e565b610fde9190613f9f565b90508160000151819350935050509250929050565b61014a81565b61100161235d565b600160126000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61107661235d565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161109c90614001565b60006040518083038185875af1925050503d80600081146110d9576040519150601f19603f3d011682016040523d82523d6000602084013e6110de565b606091505b5050905080611119576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b60146020528060005260406000206000915054906101000a900460ff1681565b60011515601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690614062565b60405180910390fd5b60011515601160019054906101000a900460ff16151514611225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121c906140ce565b60405180910390fd5b600e5482111561126a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112619061413a565b60405180910390fd5b61014a82611276612710565b611280919061415a565b11156112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b8906141da565b60405180910390fd5b6000600f54836112d19190613f2e565b905080341015611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90614246565b60405180910390fd5b6113208484612723565b82600e60008282546113329190614266565b9250508190555081601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550803411156113eb573373ffffffffffffffffffffffffffffffffffffffff166108fc82346113be9190614266565b9081150290604051600060405180830381858888f193505050501580156113e9573d6000803e3d6000fd5b505b50505050565b82601160009054906101000a900460ff16801561145857338260601b60601c146114575769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611451573d6000803e3d6000fd5b6000603a525b5b6114638585856128de565b5050505050565b61147261235d565b80600d8190555050565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611535576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61153d61235d565b8181600b918261154e929190613e2f565b505050565b600d5481565b6000611564826128fe565b9050919050565b600f5481565b61157961235d565b60011515601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461160c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611603906142e6565b60405180910390fd5b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116ce576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61172761235d565b61173160006129ca565b565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff16156117ec576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117f461235d565b61014a81611800612710565b61180a919061415a565b111561184b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611842906141da565b60405180910390fd5b6118558282612723565b5050565b61186161235d565b80601160016101000a81548160ff02191690831515021790555050565b600e5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546118bd90613c47565b80601f01602080910402602001604051908101604052809291908181526020018280546118e990613c47565b80156119365780601f1061190b57610100808354040283529160200191611936565b820191906000526020600020905b81548152906001019060200180831161191957829003601f168201915b5050505050905090565b81601160009054906101000a900460ff16801561199f5769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611999573d6000803e3d6000fd5b6000603a525b6119a98484612a90565b50505050565b61014a81565b6119bd61235d565b60001515601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4790614352565b60405180910390fd5b6001601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60136020528060005260406000206000915054906101000a900460ff1681565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611b84576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b8c61235d565b80601160006101000a81548160ff02191690831515021790555050565b83601160009054906101000a900460ff168015611c1057338260601b60601c14611c0f5769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611c09573d6000803e3d6000fd5b6000603a525b5b611c1c86868686612b9b565b505050505050565b60126020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611c5f61235d565b611c698282612c0e565b5050565b600c8054611c7a90613c47565b80601f0160208091040260200160405190810160405280929190818152602001828054611ca690613c47565b8015611cf35780601f10611cc857610100808354040283529160200191611cf3565b820191906000526020600020905b815481529060010190602001808311611cd657829003601f168201915b505050505081565b60108054611d0890613c47565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3490613c47565b8015611d815780601f10611d5657610100808354040283529160200191611d81565b820191906000526020600020905b815481529060010190602001808311611d6457829003601f168201915b505050505081565b6060611d94826121ba565b611dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dca906143e4565b60405180910390fd5b6000611ddd612da3565b90506000815111611dfd5760405180602001604052806000815250611e2b565b80611e0784612e35565b600c604051602001611e1b939291906144c3565b6040516020818303038152906040525b915050919050565b611e3b61235d565b80600c9081611e4a91906144f4565b5050565b6000611e5982612f03565b9050919050565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611f19576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f2161235d565b61014a611f2c612710565b10611f63576040517f1f0f14ca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f6f8161014a612723565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61200e61235d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361207d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207490614638565b60405180910390fd5b612086816129ca565b50565b61209161235d565b80600f8190555050565b601160009054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061210957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806121395750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806121b357506121b282612f5a565b5b9050919050565b6000816121c56123db565b111580156121d4575060005482105b8015612212575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061222482611559565b90508073ffffffffffffffffffffffffffffffffffffffff16612245612fc4565b73ffffffffffffffffffffffffffffffffffffffff16146122a8576122718161226c612fc4565b611f72565b6122a7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612365612fcc565b73ffffffffffffffffffffffffffffffffffffffff16612383611884565b73ffffffffffffffffffffffffffffffffffffffff16146123d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d0906146a4565b60405180910390fd5b565b60006001905090565b60006123ef826128fe565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612456576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061246284612fd4565b915091506124788187612473612fc4565b612ffb565b6124c45761248d86612488612fc4565b611f72565b6124c3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361252a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612537868686600161303f565b801561254257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612610856125ec888887613045565b7c02000000000000000000000000000000000000000000000000000000001761306d565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036126965760006001850190506000600460008381526020019081526020016000205403612694576000548114612693578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126fe8686866001613098565b505050505050565b6000612710905090565b600061271a6123db565b60005403905090565b60008054905060008203612763576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612770600084838561303f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506127e7836127d86000866000613045565b6127e18561309e565b1761306d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461288857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061284d565b50600082036128c3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506128d96000848385613098565b505050565b6128f983838360405180602001604052806000815250611ba9565b505050565b6000808290508061290d6123db565b11612993576000548110156129925760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612990575b6000810361298657600460008360019003935083815260200190815260200160002054905061295c565b80925050506129c5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000612a9d612fc4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612b4a612fc4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b8f919061340e565b60405180910390a35050565b612ba6848484610d7e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612c0857612bd1848484846130ae565b612c07576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612c16612706565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6b90614736565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cda906147a2565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6060600b8054612db290613c47565b80601f0160208091040260200160405190810160405280929190818152602001828054612dde90613c47565b8015612e2b5780601f10612e0057610100808354040283529160200191612e2b565b820191906000526020600020905b815481529060010190602001808311612e0e57829003601f168201915b5050505050905090565b606060006001612e44846131fe565b01905060008167ffffffffffffffff811115612e6357612e626138bc565b5b6040519080825280601f01601f191660200182016040528015612e955781602001600182028036833780820191505090505b509050600082602001820190505b600115612ef8578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612eec57612eeb613f70565b5b04945060008503612ea3575b819350505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861305c868684613351565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130d4612fc4565b8786866040518563ffffffff1660e01b81526004016130f69493929190614817565b6020604051808303816000875af192505050801561313257506040513d601f19601f8201168201806040525081019061312f9190614878565b60015b6131ab573d8060008114613162576040519150601f19603f3d011682016040523d82523d6000602084013e613167565b606091505b5060008151036131a3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061325c577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161325257613251613f70565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613299576d04ee2d6d415b85acef8100000000838161328f5761328e613f70565b5b0492506020810190505b662386f26fc1000083106132c857662386f26fc1000083816132be576132bd613f70565b5b0492506010810190505b6305f5e10083106132f1576305f5e10083816132e7576132e6613f70565b5b0492506008810190505b612710831061331657612710838161330c5761330b613f70565b5b0492506004810190505b60648310613339576064838161332f5761332e613f70565b5b0492506002810190505b600a8310613348576001810190505b80915050919050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133a38161336e565b81146133ae57600080fd5b50565b6000813590506133c08161339a565b92915050565b6000602082840312156133dc576133db613364565b5b60006133ea848285016133b1565b91505092915050565b60008115159050919050565b613408816133f3565b82525050565b600060208201905061342360008301846133ff565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613463578082015181840152602081019050613448565b60008484015250505050565b6000601f19601f8301169050919050565b600061348b82613429565b6134958185613434565b93506134a5818560208601613445565b6134ae8161346f565b840191505092915050565b600060208201905081810360008301526134d38184613480565b905092915050565b6000819050919050565b6134ee816134db565b81146134f957600080fd5b50565b60008135905061350b816134e5565b92915050565b60006020828403121561352757613526613364565b5b6000613535848285016134fc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006135698261353e565b9050919050565b6135798161355e565b82525050565b60006020820190506135946000830184613570565b92915050565b6135a38161355e565b81146135ae57600080fd5b50565b6000813590506135c08161359a565b92915050565b600080604083850312156135dd576135dc613364565b5b60006135eb858286016135b1565b92505060206135fc858286016134fc565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261362b5761362a613606565b5b8235905067ffffffffffffffff8111156136485761364761360b565b5b60208301915083600182028301111561366457613663613610565b5b9250929050565b6000806020838503121561368257613681613364565b5b600083013567ffffffffffffffff8111156136a05761369f613369565b5b6136ac85828601613615565b92509250509250929050565b6136c1816134db565b82525050565b60006020820190506136dc60008301846136b8565b92915050565b6000806000606084860312156136fb576136fa613364565b5b6000613709868287016135b1565b935050602061371a868287016135b1565b925050604061372b868287016134fc565b9150509250925092565b6000806040838503121561374c5761374b613364565b5b600061375a858286016134fc565b925050602061376b858286016134fc565b9150509250929050565b600060408201905061378a6000830185613570565b61379760208301846136b8565b9392505050565b6000602082840312156137b4576137b3613364565b5b60006137c2848285016135b1565b91505092915050565b6137d4816133f3565b81146137df57600080fd5b50565b6000813590506137f1816137cb565b92915050565b6000806000606084860312156138105761380f613364565b5b600061381e868287016135b1565b935050602061382f868287016134fc565b9250506040613840868287016137e2565b9150509250925092565b6000602082840312156138605761385f613364565b5b600061386e848285016137e2565b91505092915050565b6000806040838503121561388e5761388d613364565b5b600061389c858286016135b1565b92505060206138ad858286016137e2565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138f48261346f565b810181811067ffffffffffffffff82111715613913576139126138bc565b5b80604052505050565b600061392661335a565b905061393282826138eb565b919050565b600067ffffffffffffffff821115613952576139516138bc565b5b61395b8261346f565b9050602081019050919050565b82818337600083830152505050565b600061398a61398584613937565b61391c565b9050828152602081018484840111156139a6576139a56138b7565b5b6139b1848285613968565b509392505050565b600082601f8301126139ce576139cd613606565b5b81356139de848260208601613977565b91505092915050565b60008060008060808587031215613a0157613a00613364565b5b6000613a0f878288016135b1565b9450506020613a20878288016135b1565b9350506040613a31878288016134fc565b925050606085013567ffffffffffffffff811115613a5257613a51613369565b5b613a5e878288016139b9565b91505092959194509250565b60006bffffffffffffffffffffffff82169050919050565b613a8b81613a6a565b8114613a9657600080fd5b50565b600081359050613aa881613a82565b92915050565b60008060408385031215613ac557613ac4613364565b5b6000613ad3858286016135b1565b9250506020613ae485828601613a99565b9150509250929050565b600067ffffffffffffffff821115613b0957613b086138bc565b5b613b128261346f565b9050602081019050919050565b6000613b32613b2d84613aee565b61391c565b905082815260208101848484011115613b4e57613b4d6138b7565b5b613b59848285613968565b509392505050565b600082601f830112613b7657613b75613606565b5b8135613b86848260208601613b1f565b91505092915050565b600060208284031215613ba557613ba4613364565b5b600082013567ffffffffffffffff811115613bc357613bc2613369565b5b613bcf84828501613b61565b91505092915050565b60008060408385031215613bef57613bee613364565b5b6000613bfd858286016135b1565b9250506020613c0e858286016135b1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c5f57607f821691505b602082108103613c7257613c71613c18565b5b50919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613ce57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613ca8565b613cef8683613ca8565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613d2c613d27613d22846134db565b613d07565b6134db565b9050919050565b6000819050919050565b613d4683613d11565b613d5a613d5282613d33565b848454613cb5565b825550505050565b600090565b613d6f613d62565b613d7a818484613d3d565b505050565b5b81811015613d9e57613d93600082613d67565b600181019050613d80565b5050565b601f821115613de357613db481613c83565b613dbd84613c98565b81016020851015613dcc578190505b613de0613dd885613c98565b830182613d7f565b50505b505050565b600082821c905092915050565b6000613e0660001984600802613de8565b1980831691505092915050565b6000613e1f8383613df5565b9150826002028217905092915050565b613e398383613c78565b67ffffffffffffffff811115613e5257613e516138bc565b5b613e5c8254613c47565b613e67828285613da2565b6000601f831160018114613e965760008415613e84578287013590505b613e8e8582613e13565b865550613ef6565b601f198416613ea486613c83565b60005b82811015613ecc57848901358255600182019150602085019450602081019050613ea7565b86831015613ee95784890135613ee5601f891682613df5565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f39826134db565b9150613f44836134db565b9250828202613f52816134db565b91508282048414831517613f6957613f68613eff565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613faa826134db565b9150613fb5836134db565b925082613fc557613fc4613f70565b5b828204905092915050565b600081905092915050565b50565b6000613feb600083613fd0565b9150613ff682613fdb565b600082019050919050565b600061400c82613fde565b9150819050919050565b7f596f75277265206e6f742061206d696e74657200000000000000000000000000600082015250565b600061404c601383613434565b915061405782614016565b602082019050919050565b6000602082019050818103600083015261407b8161403f565b9050919050565b7f4d696e74696e67206973206e6f7420796574206f70656e2e0000000000000000600082015250565b60006140b8601883613434565b91506140c382614082565b602082019050919050565b600060208201905081810360008301526140e7816140ab565b9050919050565b7f4e465420616d6f756e7420657863656564730000000000000000000000000000600082015250565b6000614124601283613434565b915061412f826140ee565b602082019050919050565b6000602082019050818103600083015261415381614117565b9050919050565b6000614165826134db565b9150614170836134db565b925082820190508082111561418857614187613eff565b5b92915050565b7f45786365656473204d6178696d756d20537570706c7900000000000000000000600082015250565b60006141c4601683613434565b91506141cf8261418e565b602082019050919050565b600060208201905081810360008301526141f3816141b7565b9050919050565b7f45746865722073656e74206973206e6f7420636f72726563742e000000000000600082015250565b6000614230601a83613434565b915061423b826141fa565b602082019050919050565b6000602082019050818103600083015261425f81614223565b9050919050565b6000614271826134db565b915061427c836134db565b925082820390508181111561429457614293613eff565b5b92915050565b7f4e6f742061206d696e7465720000000000000000000000000000000000000000600082015250565b60006142d0600c83613434565b91506142db8261429a565b602082019050919050565b600060208201905081810360008301526142ff816142c3565b9050919050565b7f416c72656164792061206d696e74657200000000000000000000000000000000600082015250565b600061433c601083613434565b915061434782614306565b602082019050919050565b6000602082019050818103600083015261436b8161432f565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006143ce602f83613434565b91506143d982614372565b604082019050919050565b600060208201905081810360008301526143fd816143c1565b9050919050565b600081905092915050565b600061441a82613429565b6144248185614404565b9350614434818560208601613445565b80840191505092915050565b6000815461444d81613c47565b6144578186614404565b945060018216600081146144725760018114614487576144ba565b60ff19831686528115158202860193506144ba565b61449085613c83565b60005b838110156144b257815481890152600182019150602081019050614493565b838801955050505b50505092915050565b60006144cf828661440f565b91506144db828561440f565b91506144e78284614440565b9150819050949350505050565b6144fd82613429565b67ffffffffffffffff811115614516576145156138bc565b5b6145208254613c47565b61452b828285613da2565b600060209050601f83116001811461455e576000841561454c578287015190505b6145568582613e13565b8655506145be565b601f19841661456c86613c83565b60005b828110156145945784890151825560018201915060208501945060208101905061456f565b868310156145b157848901516145ad601f891682613df5565b8355505b6001600288020188555050505b505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614622602683613434565b915061462d826145c6565b604082019050919050565b6000602082019050818103600083015261465181614615565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061468e602083613434565b915061469982614658565b602082019050919050565b600060208201905081810360008301526146bd81614681565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000614720602a83613434565b915061472b826146c4565b604082019050919050565b6000602082019050818103600083015261474f81614713565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600061478c601983613434565b915061479782614756565b602082019050919050565b600060208201905081810360008301526147bb8161477f565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006147e9826147c2565b6147f381856147cd565b9350614803818560208601613445565b61480c8161346f565b840191505092915050565b600060808201905061482c6000830187613570565b6148396020830186613570565b61484660408301856136b8565b818103606083015261485881846147de565b905095945050505050565b6000815190506148728161339a565b92915050565b60006020828403121561488e5761488d613364565b5b600061489c84828501614863565b9150509291505056fea2646970667358221220e17ac95d05521c3a3d309820d3e0645424f9b519e7dfa6f3464f30069861ffe664736f6c63430008120033000000000000000000000000bb1d20b0250b298aa325219d56896fb6c1566c9c00000000000000000000000000000000000000000000000000000000000003e8

Deployed Bytecode

0x6080604052600436106102885760003560e01c806374d0101d1161015a578063c1e1ce29116100c1578063dc33e6811161007a578063dc33e68114610986578063e75179a4146109c3578063e985e9c5146109ec578063f2fde38b14610a29578063f4a0a52814610a52578063fb796e6c14610a7b57610288565b8063c1e1ce2914610876578063c21b471b146108a1578063c6682862146108ca578063c6ab67a3146108f5578063c87b56dd14610920578063da3ef23f1461095d57610288565b8063aa592f2511610113578063aa592f2514610763578063b366d6131461078e578063b629f192146107b7578063b7c0b8e8146107f4578063b88d4fde1461081d578063bbadfe761461083957610288565b806374d0101d1461066757806378acea1e146106905780638342083a146106b95780638da5cb5b146106e457806395d89b411461070f578063a22cb4651461073a57610288565b80633ccfd60b116101fe578063601e5e77116101b7578063601e5e77146105575780636352211e146105825780636817c76c146105bf57806369e2f0fb146105ea57806370a0823114610613578063715018a61461065057610288565b80633ccfd60b146104795780633dd08c3814610490578063402c3856146104cd57806342842e0e146104e9578063559c55b91461050557806355f804b31461052e57610288565b806318160ddd1161025057806318160ddd1461037757806323b872dd146103a257806326aa420a146103be5780632a55205a146103e757806332cb6b0c14610425578063345318281461045057610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f5578063095ea7b314610332578063109695231461034e575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af91906133c6565b610aa6565b6040516102c1919061340e565b60405180910390f35b3480156102d657600080fd5b506102df610ac8565b6040516102ec91906134b9565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190613511565b610b5a565b604051610329919061357f565b60405180910390f35b61034c600480360381019061034791906135c6565b610bd9565b005b34801561035a57600080fd5b506103756004803603810190610370919061366b565b610c48565b005b34801561038357600080fd5b5061038c610d67565b60405161039991906136c7565b60405180910390f35b6103bc60048036038101906103b791906136e2565b610d7e565b005b3480156103ca57600080fd5b506103e560048036038101906103e09190613511565b610df7565b005b3480156103f357600080fd5b5061040e60048036038101906104099190613735565b610e09565b60405161041c929190613775565b60405180910390f35b34801561043157600080fd5b5061043a610ff3565b60405161044791906136c7565b60405180910390f35b34801561045c57600080fd5b50610477600480360381019061047291906133c6565b610ff9565b005b34801561048557600080fd5b5061048e61106e565b005b34801561049c57600080fd5b506104b760048036038101906104b2919061379e565b61111c565b6040516104c4919061340e565b60405180910390f35b6104e760048036038101906104e291906137f7565b61113c565b005b61050360048036038101906104fe91906136e2565b6113f1565b005b34801561051157600080fd5b5061052c60048036038101906105279190613511565b61146a565b005b34801561053a57600080fd5b506105556004803603810190610550919061366b565b61147c565b005b34801561056357600080fd5b5061056c611553565b60405161057991906136c7565b60405180910390f35b34801561058e57600080fd5b506105a960048036038101906105a49190613511565b611559565b6040516105b6919061357f565b60405180910390f35b3480156105cb57600080fd5b506105d461156b565b6040516105e191906136c7565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c919061379e565b611571565b005b34801561061f57600080fd5b5061063a6004803603810190610635919061379e565b611667565b60405161064791906136c7565b60405180910390f35b34801561065c57600080fd5b5061066561171f565b005b34801561067357600080fd5b5061068e600480360381019061068991906135c6565b611733565b005b34801561069c57600080fd5b506106b760048036038101906106b2919061384a565b611859565b005b3480156106c557600080fd5b506106ce61187e565b6040516106db91906136c7565b60405180910390f35b3480156106f057600080fd5b506106f9611884565b604051610706919061357f565b60405180910390f35b34801561071b57600080fd5b506107246118ae565b60405161073191906134b9565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190613877565b611940565b005b34801561076f57600080fd5b506107786119af565b60405161078591906136c7565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b0919061379e565b6119b5565b005b3480156107c357600080fd5b506107de60048036038101906107d9919061379e565b611aab565b6040516107eb919061340e565b60405180910390f35b34801561080057600080fd5b5061081b6004803603810190610816919061384a565b611acb565b005b610837600480360381019061083291906139e7565b611ba9565b005b34801561084557600080fd5b50610860600480360381019061085b91906133c6565b611c24565b60405161086d919061340e565b60405180910390f35b34801561088257600080fd5b5061088b611c44565b604051610898919061340e565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c39190613aae565b611c57565b005b3480156108d657600080fd5b506108df611c6d565b6040516108ec91906134b9565b60405180910390f35b34801561090157600080fd5b5061090a611cfb565b60405161091791906134b9565b60405180910390f35b34801561092c57600080fd5b5061094760048036038101906109429190613511565b611d89565b60405161095491906134b9565b60405180910390f35b34801561096957600080fd5b50610984600480360381019061097f9190613b8f565b611e33565b005b34801561099257600080fd5b506109ad60048036038101906109a8919061379e565b611e4e565b6040516109ba91906136c7565b60405180910390f35b3480156109cf57600080fd5b506109ea60048036038101906109e5919061379e565b611e60565b005b3480156109f857600080fd5b50610a136004803603810190610a0e9190613bd8565b611f72565b604051610a20919061340e565b60405180910390f35b348015610a3557600080fd5b50610a506004803603810190610a4b919061379e565b612006565b005b348015610a5e57600080fd5b50610a796004803603810190610a749190613511565b612089565b005b348015610a8757600080fd5b50610a9061209b565b604051610a9d919061340e565b60405180910390f35b6000610ab1826120ae565b80610ac15750610ac082612140565b5b9050919050565b606060028054610ad790613c47565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0390613c47565b8015610b505780601f10610b2557610100808354040283529160200191610b50565b820191906000526020600020905b815481529060010190602001808311610b3357829003601f168201915b5050505050905090565b6000610b65826121ba565b610b9b576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81601160009054906101000a900460ff168015610c385769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610c32573d6000803e3d6000fd5b6000603a525b610c428484612219565b50505050565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615610d01576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d0961235d565b600060108054610d1890613c47565b905014610d51576040517f19e24c1100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818160109182610d62929190613e2f565b505050565b6000610d716123db565b6001546000540303905090565b82601160009054906101000a900460ff168015610de557338260601b60601c14610de45769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610dde573d6000803e3d6000fd5b6000603a525b5b610df08585856123e4565b5050505050565b610dff61235d565b80600e8190555050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610f9e5760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610fa8612706565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610fd49190613f2e565b610fde9190613f9f565b90508160000151819350935050509250929050565b61014a81565b61100161235d565b600160126000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61107661235d565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161109c90614001565b60006040518083038185875af1925050503d80600081146110d9576040519150601f19603f3d011682016040523d82523d6000602084013e6110de565b606091505b5050905080611119576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b60146020528060005260406000206000915054906101000a900460ff1681565b60011515601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690614062565b60405180910390fd5b60011515601160019054906101000a900460ff16151514611225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121c906140ce565b60405180910390fd5b600e5482111561126a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112619061413a565b60405180910390fd5b61014a82611276612710565b611280919061415a565b11156112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b8906141da565b60405180910390fd5b6000600f54836112d19190613f2e565b905080341015611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90614246565b60405180910390fd5b6113208484612723565b82600e60008282546113329190614266565b9250508190555081601360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550803411156113eb573373ffffffffffffffffffffffffffffffffffffffff166108fc82346113be9190614266565b9081150290604051600060405180830381858888f193505050501580156113e9573d6000803e3d6000fd5b505b50505050565b82601160009054906101000a900460ff16801561145857338260601b60601c146114575769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611451573d6000803e3d6000fd5b6000603a525b5b6114638585856128de565b5050505050565b61147261235d565b80600d8190555050565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611535576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61153d61235d565b8181600b918261154e929190613e2f565b505050565b600d5481565b6000611564826128fe565b9050919050565b600f5481565b61157961235d565b60011515601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461160c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611603906142e6565b60405180910390fd5b6000601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116ce576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61172761235d565b61173160006129ca565b565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff16156117ec576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117f461235d565b61014a81611800612710565b61180a919061415a565b111561184b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611842906141da565b60405180910390fd5b6118558282612723565b5050565b61186161235d565b80601160016101000a81548160ff02191690831515021790555050565b600e5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546118bd90613c47565b80601f01602080910402602001604051908101604052809291908181526020018280546118e990613c47565b80156119365780601f1061190b57610100808354040283529160200191611936565b820191906000526020600020905b81548152906001019060200180831161191957829003601f168201915b5050505050905090565b81601160009054906101000a900460ff16801561199f5769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611999573d6000803e3d6000fd5b6000603a525b6119a98484612a90565b50505050565b61014a81565b6119bd61235d565b60001515601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4790614352565b60405180910390fd5b6001601460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60136020528060005260406000206000915054906101000a900460ff1681565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611b84576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b8c61235d565b80601160006101000a81548160ff02191690831515021790555050565b83601160009054906101000a900460ff168015611c1057338260601b60601c14611c0f5769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611c09573d6000803e3d6000fd5b6000603a525b5b611c1c86868686612b9b565b505050505050565b60126020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611c5f61235d565b611c698282612c0e565b5050565b600c8054611c7a90613c47565b80601f0160208091040260200160405190810160405280929190818152602001828054611ca690613c47565b8015611cf35780601f10611cc857610100808354040283529160200191611cf3565b820191906000526020600020905b815481529060010190602001808311611cd657829003601f168201915b505050505081565b60108054611d0890613c47565b80601f0160208091040260200160405190810160405280929190818152602001828054611d3490613c47565b8015611d815780601f10611d5657610100808354040283529160200191611d81565b820191906000526020600020905b815481529060010190602001808311611d6457829003601f168201915b505050505081565b6060611d94826121ba565b611dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dca906143e4565b60405180910390fd5b6000611ddd612da3565b90506000815111611dfd5760405180602001604052806000815250611e2b565b80611e0784612e35565b600c604051602001611e1b939291906144c3565b6040516020818303038152906040525b915050919050565b611e3b61235d565b80600c9081611e4a91906144f4565b5050565b6000611e5982612f03565b9050919050565b6012600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611f19576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f2161235d565b61014a611f2c612710565b10611f63576040517f1f0f14ca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f6f8161014a612723565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61200e61235d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361207d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207490614638565b60405180910390fd5b612086816129ca565b50565b61209161235d565b80600f8190555050565b601160009054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061210957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806121395750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806121b357506121b282612f5a565b5b9050919050565b6000816121c56123db565b111580156121d4575060005482105b8015612212575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061222482611559565b90508073ffffffffffffffffffffffffffffffffffffffff16612245612fc4565b73ffffffffffffffffffffffffffffffffffffffff16146122a8576122718161226c612fc4565b611f72565b6122a7576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612365612fcc565b73ffffffffffffffffffffffffffffffffffffffff16612383611884565b73ffffffffffffffffffffffffffffffffffffffff16146123d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d0906146a4565b60405180910390fd5b565b60006001905090565b60006123ef826128fe565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612456576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061246284612fd4565b915091506124788187612473612fc4565b612ffb565b6124c45761248d86612488612fc4565b611f72565b6124c3576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361252a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612537868686600161303f565b801561254257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612610856125ec888887613045565b7c02000000000000000000000000000000000000000000000000000000001761306d565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036126965760006001850190506000600460008381526020019081526020016000205403612694576000548114612693578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126fe8686866001613098565b505050505050565b6000612710905090565b600061271a6123db565b60005403905090565b60008054905060008203612763576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612770600084838561303f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506127e7836127d86000866000613045565b6127e18561309e565b1761306d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461288857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061284d565b50600082036128c3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506128d96000848385613098565b505050565b6128f983838360405180602001604052806000815250611ba9565b505050565b6000808290508061290d6123db565b11612993576000548110156129925760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612990575b6000810361298657600460008360019003935083815260200190815260200160002054905061295c565b80925050506129c5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060076000612a9d612fc4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612b4a612fc4565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b8f919061340e565b60405180910390a35050565b612ba6848484610d7e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612c0857612bd1848484846130ae565b612c07576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612c16612706565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6b90614736565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cda906147a2565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6060600b8054612db290613c47565b80601f0160208091040260200160405190810160405280929190818152602001828054612dde90613c47565b8015612e2b5780601f10612e0057610100808354040283529160200191612e2b565b820191906000526020600020905b815481529060010190602001808311612e0e57829003601f168201915b5050505050905090565b606060006001612e44846131fe565b01905060008167ffffffffffffffff811115612e6357612e626138bc565b5b6040519080825280601f01601f191660200182016040528015612e955781602001600182028036833780820191505090505b509050600082602001820190505b600115612ef8578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612eec57612eeb613f70565b5b04945060008503612ea3575b819350505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861305c868684613351565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130d4612fc4565b8786866040518563ffffffff1660e01b81526004016130f69493929190614817565b6020604051808303816000875af192505050801561313257506040513d601f19601f8201168201806040525081019061312f9190614878565b60015b6131ab573d8060008114613162576040519150601f19603f3d011682016040523d82523d6000602084013e613167565b606091505b5060008151036131a3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061325c577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161325257613251613f70565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613299576d04ee2d6d415b85acef8100000000838161328f5761328e613f70565b5b0492506020810190505b662386f26fc1000083106132c857662386f26fc1000083816132be576132bd613f70565b5b0492506010810190505b6305f5e10083106132f1576305f5e10083816132e7576132e6613f70565b5b0492506008810190505b612710831061331657612710838161330c5761330b613f70565b5b0492506004810190505b60648310613339576064838161332f5761332e613f70565b5b0492506002810190505b600a8310613348576001810190505b80915050919050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133a38161336e565b81146133ae57600080fd5b50565b6000813590506133c08161339a565b92915050565b6000602082840312156133dc576133db613364565b5b60006133ea848285016133b1565b91505092915050565b60008115159050919050565b613408816133f3565b82525050565b600060208201905061342360008301846133ff565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613463578082015181840152602081019050613448565b60008484015250505050565b6000601f19601f8301169050919050565b600061348b82613429565b6134958185613434565b93506134a5818560208601613445565b6134ae8161346f565b840191505092915050565b600060208201905081810360008301526134d38184613480565b905092915050565b6000819050919050565b6134ee816134db565b81146134f957600080fd5b50565b60008135905061350b816134e5565b92915050565b60006020828403121561352757613526613364565b5b6000613535848285016134fc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006135698261353e565b9050919050565b6135798161355e565b82525050565b60006020820190506135946000830184613570565b92915050565b6135a38161355e565b81146135ae57600080fd5b50565b6000813590506135c08161359a565b92915050565b600080604083850312156135dd576135dc613364565b5b60006135eb858286016135b1565b92505060206135fc858286016134fc565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261362b5761362a613606565b5b8235905067ffffffffffffffff8111156136485761364761360b565b5b60208301915083600182028301111561366457613663613610565b5b9250929050565b6000806020838503121561368257613681613364565b5b600083013567ffffffffffffffff8111156136a05761369f613369565b5b6136ac85828601613615565b92509250509250929050565b6136c1816134db565b82525050565b60006020820190506136dc60008301846136b8565b92915050565b6000806000606084860312156136fb576136fa613364565b5b6000613709868287016135b1565b935050602061371a868287016135b1565b925050604061372b868287016134fc565b9150509250925092565b6000806040838503121561374c5761374b613364565b5b600061375a858286016134fc565b925050602061376b858286016134fc565b9150509250929050565b600060408201905061378a6000830185613570565b61379760208301846136b8565b9392505050565b6000602082840312156137b4576137b3613364565b5b60006137c2848285016135b1565b91505092915050565b6137d4816133f3565b81146137df57600080fd5b50565b6000813590506137f1816137cb565b92915050565b6000806000606084860312156138105761380f613364565b5b600061381e868287016135b1565b935050602061382f868287016134fc565b9250506040613840868287016137e2565b9150509250925092565b6000602082840312156138605761385f613364565b5b600061386e848285016137e2565b91505092915050565b6000806040838503121561388e5761388d613364565b5b600061389c858286016135b1565b92505060206138ad858286016137e2565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6138f48261346f565b810181811067ffffffffffffffff82111715613913576139126138bc565b5b80604052505050565b600061392661335a565b905061393282826138eb565b919050565b600067ffffffffffffffff821115613952576139516138bc565b5b61395b8261346f565b9050602081019050919050565b82818337600083830152505050565b600061398a61398584613937565b61391c565b9050828152602081018484840111156139a6576139a56138b7565b5b6139b1848285613968565b509392505050565b600082601f8301126139ce576139cd613606565b5b81356139de848260208601613977565b91505092915050565b60008060008060808587031215613a0157613a00613364565b5b6000613a0f878288016135b1565b9450506020613a20878288016135b1565b9350506040613a31878288016134fc565b925050606085013567ffffffffffffffff811115613a5257613a51613369565b5b613a5e878288016139b9565b91505092959194509250565b60006bffffffffffffffffffffffff82169050919050565b613a8b81613a6a565b8114613a9657600080fd5b50565b600081359050613aa881613a82565b92915050565b60008060408385031215613ac557613ac4613364565b5b6000613ad3858286016135b1565b9250506020613ae485828601613a99565b9150509250929050565b600067ffffffffffffffff821115613b0957613b086138bc565b5b613b128261346f565b9050602081019050919050565b6000613b32613b2d84613aee565b61391c565b905082815260208101848484011115613b4e57613b4d6138b7565b5b613b59848285613968565b509392505050565b600082601f830112613b7657613b75613606565b5b8135613b86848260208601613b1f565b91505092915050565b600060208284031215613ba557613ba4613364565b5b600082013567ffffffffffffffff811115613bc357613bc2613369565b5b613bcf84828501613b61565b91505092915050565b60008060408385031215613bef57613bee613364565b5b6000613bfd858286016135b1565b9250506020613c0e858286016135b1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c5f57607f821691505b602082108103613c7257613c71613c18565b5b50919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613ce57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613ca8565b613cef8683613ca8565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613d2c613d27613d22846134db565b613d07565b6134db565b9050919050565b6000819050919050565b613d4683613d11565b613d5a613d5282613d33565b848454613cb5565b825550505050565b600090565b613d6f613d62565b613d7a818484613d3d565b505050565b5b81811015613d9e57613d93600082613d67565b600181019050613d80565b5050565b601f821115613de357613db481613c83565b613dbd84613c98565b81016020851015613dcc578190505b613de0613dd885613c98565b830182613d7f565b50505b505050565b600082821c905092915050565b6000613e0660001984600802613de8565b1980831691505092915050565b6000613e1f8383613df5565b9150826002028217905092915050565b613e398383613c78565b67ffffffffffffffff811115613e5257613e516138bc565b5b613e5c8254613c47565b613e67828285613da2565b6000601f831160018114613e965760008415613e84578287013590505b613e8e8582613e13565b865550613ef6565b601f198416613ea486613c83565b60005b82811015613ecc57848901358255600182019150602085019450602081019050613ea7565b86831015613ee95784890135613ee5601f891682613df5565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613f39826134db565b9150613f44836134db565b9250828202613f52816134db565b91508282048414831517613f6957613f68613eff565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613faa826134db565b9150613fb5836134db565b925082613fc557613fc4613f70565b5b828204905092915050565b600081905092915050565b50565b6000613feb600083613fd0565b9150613ff682613fdb565b600082019050919050565b600061400c82613fde565b9150819050919050565b7f596f75277265206e6f742061206d696e74657200000000000000000000000000600082015250565b600061404c601383613434565b915061405782614016565b602082019050919050565b6000602082019050818103600083015261407b8161403f565b9050919050565b7f4d696e74696e67206973206e6f7420796574206f70656e2e0000000000000000600082015250565b60006140b8601883613434565b91506140c382614082565b602082019050919050565b600060208201905081810360008301526140e7816140ab565b9050919050565b7f4e465420616d6f756e7420657863656564730000000000000000000000000000600082015250565b6000614124601283613434565b915061412f826140ee565b602082019050919050565b6000602082019050818103600083015261415381614117565b9050919050565b6000614165826134db565b9150614170836134db565b925082820190508082111561418857614187613eff565b5b92915050565b7f45786365656473204d6178696d756d20537570706c7900000000000000000000600082015250565b60006141c4601683613434565b91506141cf8261418e565b602082019050919050565b600060208201905081810360008301526141f3816141b7565b9050919050565b7f45746865722073656e74206973206e6f7420636f72726563742e000000000000600082015250565b6000614230601a83613434565b915061423b826141fa565b602082019050919050565b6000602082019050818103600083015261425f81614223565b9050919050565b6000614271826134db565b915061427c836134db565b925082820390508181111561429457614293613eff565b5b92915050565b7f4e6f742061206d696e7465720000000000000000000000000000000000000000600082015250565b60006142d0600c83613434565b91506142db8261429a565b602082019050919050565b600060208201905081810360008301526142ff816142c3565b9050919050565b7f416c72656164792061206d696e74657200000000000000000000000000000000600082015250565b600061433c601083613434565b915061434782614306565b602082019050919050565b6000602082019050818103600083015261436b8161432f565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006143ce602f83613434565b91506143d982614372565b604082019050919050565b600060208201905081810360008301526143fd816143c1565b9050919050565b600081905092915050565b600061441a82613429565b6144248185614404565b9350614434818560208601613445565b80840191505092915050565b6000815461444d81613c47565b6144578186614404565b945060018216600081146144725760018114614487576144ba565b60ff19831686528115158202860193506144ba565b61449085613c83565b60005b838110156144b257815481890152600182019150602081019050614493565b838801955050505b50505092915050565b60006144cf828661440f565b91506144db828561440f565b91506144e78284614440565b9150819050949350505050565b6144fd82613429565b67ffffffffffffffff811115614516576145156138bc565b5b6145208254613c47565b61452b828285613da2565b600060209050601f83116001811461455e576000841561454c578287015190505b6145568582613e13565b8655506145be565b601f19841661456c86613c83565b60005b828110156145945784890151825560018201915060208501945060208101905061456f565b868310156145b157848901516145ad601f891682613df5565b8355505b6001600288020188555050505b505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614622602683613434565b915061462d826145c6565b604082019050919050565b6000602082019050818103600083015261465181614615565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061468e602083613434565b915061469982614658565b602082019050919050565b600060208201905081810360008301526146bd81614681565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000614720602a83613434565b915061472b826146c4565b604082019050919050565b6000602082019050818103600083015261474f81614713565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600061478c601983613434565b915061479782614756565b602082019050919050565b600060208201905081810360008301526147bb8161477f565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006147e9826147c2565b6147f381856147cd565b9350614803818560208601613445565b61480c8161346f565b840191505092915050565b600060808201905061482c6000830187613570565b6148396020830186613570565b61484660408301856136b8565b818103606083015261485881846147de565b905095945050505050565b6000815190506148728161339a565b92915050565b60006020828403121561488e5761488d613364565b5b600061489c84828501614863565b9150509291505056fea2646970667358221220e17ac95d05521c3a3d309820d3e0645424f9b519e7dfa6f3464f30069861ffe664736f6c63430008120033

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

000000000000000000000000bb1d20b0250b298aa325219d56896fb6c1566c9c00000000000000000000000000000000000000000000000000000000000003e8

-----Decoded View---------------
Arg [0] : _royaltyReceiver (address): 0xbb1d20B0250B298aa325219D56896fB6c1566C9c
Arg [1] : _royaltyFraction (uint96): 1000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000bb1d20b0250b298aa325219d56896fb6c1566c9c
Arg [1] : 00000000000000000000000000000000000000000000000000000000000003e8


Deployed Bytecode Sourcemap

95548:8919:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97301:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56336:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62827:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;103009:232;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;99999:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52087:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;103401:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;101523:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31178:438;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;95834:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;98841:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;102272:183;;;;;;;;;;;;;:::i;:::-;;96179:38;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100758:647;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;103792:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;101642:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;99739:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95796:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57729:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95924:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102030:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53271:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36406:103;;;;;;;;;;;;;:::i;:::-;;100544:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;101754:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95882:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35765:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56512:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102615:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95751:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;101856:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;96136:36;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99129:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;104191:273;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;96084:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96047:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99480:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95707:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95969:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97934:446;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97798:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98548:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100368:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63776:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36664:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;101413:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;96004:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97301:274;97432:4;97474:38;97500:11;97474:25;:38::i;:::-;:93;;;;97529:38;97555:11;97529:25;:38::i;:::-;97474:93;97454:113;;97301:274;;;:::o;56336:100::-;56390:13;56423:5;56416:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56336:100;:::o;62827:218::-;62903:7;62928:16;62936:7;62928;:16::i;:::-;62923:64;;62953:34;;;;;;;;;;;;;;62923:64;63007:15;:24;63023:7;63007:24;;;;;;;;;;;:30;;;;;;;;;;;;63000:37;;62827:218;;;:::o;103009:232::-;103149:8;103159:24;;;;;;;;;;;94133:7;94130:925;;;94262:22;94256:4;94249:36;94363:9;94357:4;94350:23;94515:8;94511:2;94507:17;94503:2;94499:26;94493:4;94486:40;94702:4;94696;94690;94684;94657:25;94650:5;94639:68;94629:290;;94831:16;94825:4;94819;94804:44;94883:16;94877:4;94870:30;94629:290;95038:1;95032:4;95025:15;94130:925;103201:32:::1;103215:8;103225:7;103201:13;:32::i;:::-;103009:232:::0;;;;:::o;99999:224::-;97060:14;:23;97075:7;;;;97060:23;;;;;;;;;;;;;;;;;;;;;;;;;;;97056:52;;;97092:16;;;;;;;;;;;;;;97056:52;35651:13:::1;:11;:13::i;:::-;100134:1:::2;100108:14;100102:28;;;;;:::i;:::-;;;:33;100098:72;;100144:26;;;;;;;;;;;;;;100098:72;100200:15;;100183:14;:32;;;;;;;:::i;:::-;;99999:224:::0;;:::o;52087:323::-;52148:7;52376:15;:13;:15::i;:::-;52361:12;;52345:13;;:28;:46;52338:53;;52087:323;:::o;103401:231::-;103544:4;103550:24;;;;;;;;;;;91906:7;91903:1643;;;92119:8;92111:4;92107:2;92103:13;92099:2;92095:22;92092:36;92082:1449;;92434:22;92428:4;92421:36;92543:9;92537:4;92530:23;92636:8;92630:4;92623:22;92829:4;92823;92817;92811;92784:25;92777:5;92766:68;92756:306;;92966:16;92960:4;92954;92939:44;93022:16;93016:4;93009:30;92756:306;93510:1;93504:4;93497:15;92082:1449;91903:1643;103587:37:::1;103606:4;103612:2;103616:7;103587:18;:37::i;:::-;103401:231:::0;;;;;:::o;101523:111::-;35651:13;:11;:13::i;:::-;101616:10:::1;101600:13;:26;;;;101523:111:::0;:::o;31178:438::-;31273:7;31282;31302:26;31331:17;:26;31349:7;31331:26;;;;;;;;;;;31302:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31402:1;31374:30;;:7;:16;;;:30;;;31370:92;;31431:19;31421:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31370:92;31474:21;31538:17;:15;:17::i;:::-;31498:57;;31511:7;:23;;;31499:35;;:9;:35;;;;:::i;:::-;31498:57;;;;:::i;:::-;31474:81;;31576:7;:16;;;31594:13;31568:40;;;;;;31178:438;;;;;:::o;95834:40::-;95871:3;95834:40;:::o;98841:96::-;35651:13;:11;:13::i;:::-;98925:4:::1;98904:14;:18;98919:2;98904:18;;;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;98841:96:::0;:::o;102272:183::-;35651:13;:11;:13::i;:::-;102323:12:::1;102349:10;102341:24;;102373:21;102341:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102322:77;;;102415:7;102410:37;;102431:16;;;;;;;;;;;;;;102410:37;102311:144;102272:183::o:0;96179:38::-;;;;;;;;;;;;;;;;;;;;;;:::o;100758:647::-;97199:4;97177:26;;:6;:18;97184:10;97177:18;;;;;;;;;;;;;;;;;;;;;;;;;:26;;;97169:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;100880:4:::1;100866:18;;:10;;;;;;;;;;;:18;;;100858:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;100944:13;;100932:8;:25;;100924:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;95871:3;101016:8;100999:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:39;;100991:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;101078:14;101106:9;;101095:8;:20;;;;:::i;:::-;101078:37;;101148:9;101135;:22;;101126:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;101200:19;101206:2;101210:8;101200:5;:19::i;:::-;101247:8;101230:13;;:25;;;;;;;:::i;:::-;;;;;;;;101277:5;101266:4;:8;101271:2;101266:8;;;;;;;;;;;;;;;;:16;;;;;;;;;;;;;;;;;;101309:9;101297;:21;101293:105;;;101343:10;101335:28;;:51;101376:9;101364;:21;;;;:::i;:::-;101335:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;101293:105;100847:558;100758:647:::0;;;:::o;103792:239::-;103939:4;103945:24;;;;;;;;;;;91906:7;91903:1643;;;92119:8;92111:4;92107:2;92103:13;92099:2;92095:22;92092:36;92082:1449;;92434:22;92428:4;92421:36;92543:9;92537:4;92530:23;92636:8;92630:4;92623:22;92829:4;92823;92817;92811;92784:25;92777:5;92766:68;92756:306;;92966:16;92960:4;92954;92939:44;93022:16;93016:4;93009:30;92756:306;93510:1;93504:4;93497:15;92082:1449;91903:1643;103982:41:::1;104005:4;104011:2;104015:7;103982:22;:41::i;:::-;103792:239:::0;;;;;:::o;101642:106::-;35651:13;:11;:13::i;:::-;101734:6:::1;101719:12;:21;;;;101642:106:::0;:::o;99739:123::-;97060:14;:23;97075:7;;;;97060:23;;;;;;;;;;;;;;;;;;;;;;;;;;;97056:52;;;97092:16;;;;;;;;;;;;;;97056:52;35651:13:::1;:11;:13::i;:::-;99843:11:::2;;99827:13;:27;;;;;;;:::i;:::-;;99739:123:::0;;:::o;95796:31::-;;;;:::o;57729:152::-;57801:7;57844:27;57863:7;57844:18;:27::i;:::-;57821:52;;57729:152;;;:::o;95924:38::-;;;;:::o;102030:162::-;35651:13;:11;:13::i;:::-;102129:4:::1;102110:23;;:6;:15;102117:7;102110:15;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;102102:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;102179:5;102161:6;:15;102168:7;102161:15;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;102030:162:::0;:::o;53271:233::-;53343:7;53384:1;53367:19;;:5;:19;;;53363:60;;53395:28;;;;;;;;;;;;;;53363:60;47430:13;53441:18;:25;53460:5;53441:25;;;;;;;;;;;;;;;;:55;53434:62;;53271:233;;;:::o;36406:103::-;35651:13;:11;:13::i;:::-;36471:30:::1;36498:1;36471:18;:30::i;:::-;36406:103::o:0;100544:206::-;97060:14;:23;97075:7;;;;97060:23;;;;;;;;;;;;;;;;;;;;;;;;;;;97056:52;;;97092:16;;;;;;;;;;;;;;97056:52;35651:13:::1;:11;:13::i;:::-;95871:3:::2;100664:8;100647:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:39;;100639:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;100723:19;100729:2;100733:8;100723:5;:19::i;:::-;100544:206:::0;;:::o;101754:94::-;35651:13;:11;:13::i;:::-;101833:7:::1;101820:10;;:20;;;;;;;;;;;;;;;;;;101754:94:::0;:::o;95882:32::-;;;;:::o;35765:87::-;35811:7;35838:6;;;;;;;;;;;35831:13;;35765:87;:::o;56512:104::-;56568:13;56601:7;56594:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56512:104;:::o;102615:234::-;102746:8;102756:24;;;;;;;;;;;94133:7;94130:925;;;94262:22;94256:4;94249:36;94363:9;94357:4;94350:23;94515:8;94511:2;94507:17;94503:2;94499:26;94493:4;94486:40;94702:4;94696;94690;94684;94657:25;94650:5;94639:68;94629:290;;94831:16;94825:4;94819;94804:44;94883:16;94877:4;94870:30;94629:290;95038:1;95032:4;95025:15;94130:925;102798:43:::1;102822:8;102832;102798:23;:43::i;:::-;102615:234:::0;;;;:::o;95751:38::-;95786:3;95751:38;:::o;101856:166::-;35651:13;:11;:13::i;:::-;101955:5:::1;101936:24;;:6;:15;101943:7;101936:15;;;;;;;;;;;;;;;;;;;;;;;;;:24;;;101928:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;102010:4;101992:6;:15;101999:7;101992:15;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;101856:166:::0;:::o;96136:36::-;;;;;;;;;;;;;;;;;;;;;;:::o;99129:128::-;97060:14;:23;97075:7;;;;97060:23;;;;;;;;;;;;;;;;;;;;;;;;;;;97056:52;;;97092:16;;;;;;;;;;;;;;97056:52;35651:13:::1;:11;:13::i;:::-;99244:5:::2;99217:24;;:32;;;;;;;;;;;;;;;;;;99129:128:::0;:::o;104191:273::-;104366:4;104372:24;;;;;;;;;;;91906:7;91903:1643;;;92119:8;92111:4;92107:2;92103:13;92099:2;92095:22;92092:36;92082:1449;;92434:22;92428:4;92421:36;92543:9;92537:4;92530:23;92636:8;92630:4;92623:22;92829:4;92823;92817;92811;92784:25;92777:5;92766:68;92756:306;;92966:16;92960:4;92954;92939:44;93022:16;93016:4;93009:30;92756:306;93510:1;93504:4;93497:15;92082:1449;91903:1643;104409:47:::1;104432:4;104438:2;104442:7;104451:4;104409:22;:47::i;:::-;104191:273:::0;;;;;;:::o;96084:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;96047:30::-;;;;;;;;;;;;;:::o;99480:147::-;35651:13;:11;:13::i;:::-;99574:45:::1;99593:8;99603:15;99574:18;:45::i;:::-;99480:147:::0;;:::o;95707:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;95969:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;97934:446::-;98032:13;98075:16;98083:7;98075;:16::i;:::-;98059:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;98177:28;98208:10;:8;:10::i;:::-;98177:41;;98263:1;98238:14;98232:28;:32;:140;;;;;;;;;;;;;;;;;98300:14;98316:25;98333:7;98316:16;:25::i;:::-;98343:13;98283:74;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;98232:140;98225:147;;;97934:446;;;:::o;97798:128::-;35651:13;:11;:13::i;:::-;97901:17:::1;97885:13;:33;;;;;;:::i;:::-;;97798:128:::0;:::o;98548:119::-;98610:7;98637:22;98651:7;98637:13;:22::i;:::-;98630:29;;98548:119;;;:::o;100368:168::-;97060:14;:23;97075:7;;;;97060:23;;;;;;;;;;;;;;;;;;;;;;;;;;;97056:52;;;97092:16;;;;;;;;;;;;;;97056:52;35651:13:::1;:11;:13::i;:::-;95786:3:::2;100440:14;:12;:14::i;:::-;:26;100436:62;;100475:23;;;;;;;;;;;;;;100436:62;100509:19;100515:2;95786:3;100509:5;:19::i;:::-;100368:168:::0;:::o;63776:164::-;63873:4;63897:18;:25;63916:5;63897:25;;;;;;;;;;;;;;;:35;63923:8;63897:35;;;;;;;;;;;;;;;;;;;;;;;;;63890:42;;63776:164;;;;:::o;36664:201::-;35651:13;:11;:13::i;:::-;36773:1:::1;36753:22;;:8;:22;;::::0;36745:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;36829:28;36848:8;36829:18;:28::i;:::-;36664:201:::0;:::o;101413:102::-;35651:13;:11;:13::i;:::-;101498:9:::1;101486;:21;;;;101413:102:::0;:::o;96004:36::-;;;;;;;;;;;;;:::o;55434:639::-;55519:4;55858:10;55843:25;;:11;:25;;;;:102;;;;55935:10;55920:25;;:11;:25;;;;55843:102;:179;;;;56012:10;55997:25;;:11;:25;;;;55843:179;55823:199;;55434:639;;;:::o;30908:215::-;31010:4;31049:26;31034:41;;;:11;:41;;;;:81;;;;31079:36;31103:11;31079:23;:36::i;:::-;31034:81;31027:88;;30908:215;;;:::o;64198:282::-;64263:4;64319:7;64300:15;:13;:15::i;:::-;:26;;:66;;;;;64353:13;;64343:7;:23;64300:66;:153;;;;;64452:1;48206:8;64404:17;:26;64422:7;64404:26;;;;;;;;;;;;:44;:49;64300:153;64280:173;;64198:282;;;:::o;62260:408::-;62349:13;62365:16;62373:7;62365;:16::i;:::-;62349:32;;62421:5;62398:28;;:19;:17;:19::i;:::-;:28;;;62394:175;;62446:44;62463:5;62470:19;:17;:19::i;:::-;62446:16;:44::i;:::-;62441:128;;62518:35;;;;;;;;;;;;;;62441:128;62394:175;62614:2;62581:15;:24;62597:7;62581:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;62652:7;62648:2;62632:28;;62641:5;62632:28;;;;;;;;;;;;62338:330;62260:408;;:::o;35930:132::-;36005:12;:10;:12::i;:::-;35994:23;;:7;:5;:7::i;:::-;:23;;;35986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35930:132::o;51603:92::-;51659:7;51686:1;51679:8;;51603:92;:::o;66466:2825::-;66608:27;66638;66657:7;66638:18;:27::i;:::-;66608:57;;66723:4;66682:45;;66698:19;66682:45;;;66678:86;;66736:28;;;;;;;;;;;;;;66678:86;66778:27;66807:23;66834:35;66861:7;66834:26;:35::i;:::-;66777:92;;;;66969:68;66994:15;67011:4;67017:19;:17;:19::i;:::-;66969:24;:68::i;:::-;66964:180;;67057:43;67074:4;67080:19;:17;:19::i;:::-;67057:16;:43::i;:::-;67052:92;;67109:35;;;;;;;;;;;;;;67052:92;66964:180;67175:1;67161:16;;:2;:16;;;67157:52;;67186:23;;;;;;;;;;;;;;67157:52;67222:43;67244:4;67250:2;67254:7;67263:1;67222:21;:43::i;:::-;67358:15;67355:160;;;67498:1;67477:19;67470:30;67355:160;67895:18;:24;67914:4;67895:24;;;;;;;;;;;;;;;;67893:26;;;;;;;;;;;;67964:18;:22;67983:2;67964:22;;;;;;;;;;;;;;;;67962:24;;;;;;;;;;;68286:146;68323:2;68372:45;68387:4;68393:2;68397:19;68372:14;:45::i;:::-;48486:8;68344:73;68286:18;:146::i;:::-;68257:17;:26;68275:7;68257:26;;;;;;;;;;;:175;;;;68603:1;48486:8;68552:19;:47;:52;68548:627;;68625:19;68657:1;68647:7;:11;68625:33;;68814:1;68780:17;:30;68798:11;68780:30;;;;;;;;;;;;:35;68776:384;;68918:13;;68903:11;:28;68899:242;;69098:19;69065:17;:30;69083:11;69065:30;;;;;;;;;;;:52;;;;68899:242;68776:384;68606:569;68548:627;69222:7;69218:2;69203:27;;69212:4;69203:27;;;;;;;;;;;;69241:42;69262:4;69268:2;69272:7;69281:1;69241:20;:42::i;:::-;66597:2694;;;66466:2825;;;:::o;31898:97::-;31956:6;31982:5;31975:12;;31898:97;:::o;52508:296::-;52563:7;52770:15;:13;:15::i;:::-;52754:13;;:31;52747:38;;52508:296;:::o;73847:2966::-;73920:20;73943:13;;73920:36;;73983:1;73971:8;:13;73967:44;;73993:18;;;;;;;;;;;;;;73967:44;74024:61;74054:1;74058:2;74062:12;74076:8;74024:21;:61::i;:::-;74568:1;47568:2;74538:1;:26;;74537:32;74525:8;:45;74499:18;:22;74518:2;74499:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;74847:139;74884:2;74938:33;74961:1;74965:2;74969:1;74938:14;:33::i;:::-;74905:30;74926:8;74905:20;:30::i;:::-;:66;74847:18;:139::i;:::-;74813:17;:31;74831:12;74813:31;;;;;;;;;;;:173;;;;75003:16;75034:11;75063:8;75048:12;:23;75034:37;;75584:16;75580:2;75576:25;75564:37;;75956:12;75916:8;75875:1;75813:25;75754:1;75693;75666:335;76327:1;76313:12;76309:20;76267:346;76368:3;76359:7;76356:16;76267:346;;76586:7;76576:8;76573:1;76546:25;76543:1;76540;76535:59;76421:1;76412:7;76408:15;76397:26;;76267:346;;;76271:77;76658:1;76646:8;:13;76642:45;;76668:19;;;;;;;;;;;;;;76642:45;76720:3;76704:13;:19;;;;74273:2462;;76745:60;76774:1;76778:2;76782:12;76796:8;76745:20;:60::i;:::-;73909:2904;73847:2966;;:::o;69387:193::-;69533:39;69550:4;69556:2;69560:7;69533:39;;;;;;;;;;;;:16;:39::i;:::-;69387:193;;;:::o;58884:1275::-;58951:7;58971:12;58986:7;58971:22;;59054:4;59035:15;:13;:15::i;:::-;:23;59031:1061;;59088:13;;59081:4;:20;59077:1015;;;59126:14;59143:17;:23;59161:4;59143:23;;;;;;;;;;;;59126:40;;59260:1;48206:8;59232:6;:24;:29;59228:845;;59897:113;59914:1;59904:6;:11;59897:113;;59957:17;:25;59975:6;;;;;;;59957:25;;;;;;;;;;;;59948:34;;59897:113;;;60043:6;60036:13;;;;;;59228:845;59103:989;59077:1015;59031:1061;60120:31;;;;;;;;;;;;;;58884:1275;;;;:::o;37025:191::-;37099:16;37118:6;;;;;;;;;;;37099:25;;37144:8;37135:6;;:17;;;;;;;;;;;;;;;;;;37199:8;37168:40;;37189:8;37168:40;;;;;;;;;;;;37088:128;37025:191;:::o;63385:234::-;63532:8;63480:18;:39;63499:19;:17;:19::i;:::-;63480:39;;;;;;;;;;;;;;;:49;63520:8;63480:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;63592:8;63556:55;;63571:19;:17;:19::i;:::-;63556:55;;;63602:8;63556:55;;;;;;:::i;:::-;;;;;;;;63385:234;;:::o;70178:407::-;70353:31;70366:4;70372:2;70376:7;70353:12;:31::i;:::-;70417:1;70399:2;:14;;;:19;70395:183;;70438:56;70469:4;70475:2;70479:7;70488:5;70438:30;:56::i;:::-;70433:145;;70522:40;;;;;;;;;;;;;;70433:145;70395:183;70178:407;;;;:::o;32266:332::-;32385:17;:15;:17::i;:::-;32369:33;;:12;:33;;;;32361:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;32488:1;32468:22;;:8;:22;;;32460:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;32555:35;;;;;;;;32567:8;32555:35;;;;;;32577:12;32555:35;;;;;32533:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32266:332;;:::o;97676:114::-;97736:13;97769;97762:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97676:114;:::o;14920:716::-;14976:13;15027:14;15064:1;15044:17;15055:5;15044:10;:17::i;:::-;:21;15027:38;;15080:20;15114:6;15103:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15080:41;;15136:11;15265:6;15261:2;15257:15;15249:6;15245:28;15238:35;;15302:288;15309:4;15302:288;;;15334:5;;;;;;;;15476:8;15471:2;15464:5;15460:14;15455:30;15450:3;15442:44;15532:2;15523:11;;;;;;:::i;:::-;;;;;15566:1;15557:5;:10;15302:288;15553:21;15302:288;15611:6;15604:13;;;;;14920:716;;;:::o;53586:178::-;53647:7;47430:13;47568:2;53675:18;:25;53694:5;53675:25;;;;;;;;;;;;;;;;:50;;53674:82;53667:89;;53586:178;;;:::o;28462:157::-;28547:4;28586:25;28571:40;;;:11;:40;;;;28564:47;;28462:157;;;:::o;86506:105::-;86566:7;86593:10;86586:17;;86506:105;:::o;34316:98::-;34369:7;34396:10;34389:17;;34316:98;:::o;65361:485::-;65463:27;65492:23;65533:38;65574:15;:24;65590:7;65574:24;;;;;;;;;;;65533:65;;65751:18;65728:41;;65808:19;65802:26;65783:45;;65713:126;65361:485;;;:::o;64589:659::-;64738:11;64903:16;64896:5;64892:28;64883:37;;65063:16;65052:9;65048:32;65035:45;;65213:15;65202:9;65199:30;65191:5;65180:9;65177:20;65174:56;65164:66;;64589:659;;;;;:::o;71247:159::-;;;;;:::o;85815:311::-;85950:7;85970:16;48610:3;85996:19;:41;;85970:68;;48610:3;86064:31;86075:4;86081:2;86085:9;86064:10;:31::i;:::-;86056:40;;:62;;86049:69;;;85815:311;;;;;:::o;60707:450::-;60787:14;60955:16;60948:5;60944:28;60935:37;;61132:5;61118:11;61093:23;61089:41;61086:52;61079:5;61076:63;61066:73;;60707:450;;;;:::o;72071:158::-;;;;;:::o;61259:324::-;61329:14;61562:1;61552:8;61549:15;61523:24;61519:46;61509:56;;61259:324;;;:::o;72669:716::-;72832:4;72878:2;72853:45;;;72899:19;:17;:19::i;:::-;72920:4;72926:7;72935:5;72853:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;72849:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73153:1;73136:6;:13;:18;73132:235;;73182:40;;;;;;;;;;;;;;73132:235;73325:6;73319:13;73310:6;73306:2;73302:15;73295:38;72849:529;73022:54;;;73012:64;;;:6;:64;;;;73005:71;;;72669:716;;;;;;:::o;11754:948::-;11807:7;11827:14;11844:1;11827:18;;11894:8;11885:5;:17;11881:106;;11932:8;11923:17;;;;;;:::i;:::-;;;;;11969:2;11959:12;;;;11881:106;12014:8;12005:5;:17;12001:106;;12052:8;12043:17;;;;;;:::i;:::-;;;;;12089:2;12079:12;;;;12001:106;12134:8;12125:5;:17;12121:106;;12172:8;12163:17;;;;;;:::i;:::-;;;;;12209:2;12199:12;;;;12121:106;12254:7;12245:5;:16;12241:103;;12291:7;12282:16;;;;;;:::i;:::-;;;;;12327:1;12317:11;;;;12241:103;12371:7;12362:5;:16;12358:103;;12408:7;12399:16;;;;;;:::i;:::-;;;;;12444:1;12434:11;;;;12358:103;12488:7;12479:5;:16;12475:103;;12525:7;12516:16;;;;;;:::i;:::-;;;;;12561:1;12551:11;;;;12475:103;12605:7;12596:5;:16;12592:68;;12643:1;12633:11;;;;12592:68;12688:6;12681:13;;;11754:948;;;:::o;85516:147::-;85653:6;85516:147;;;;;:::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:117::-;4999:1;4996;4989:12;5013:117;5122:1;5119;5112:12;5136:117;5245:1;5242;5235:12;5273:553;5331:8;5341:6;5391:3;5384:4;5376:6;5372:17;5368:27;5358:122;;5399:79;;:::i;:::-;5358:122;5512:6;5499:20;5489:30;;5542:18;5534:6;5531:30;5528:117;;;5564:79;;:::i;:::-;5528:117;5678:4;5670:6;5666:17;5654:29;;5732:3;5724:4;5716:6;5712:17;5702:8;5698:32;5695:41;5692:128;;;5739:79;;:::i;:::-;5692:128;5273:553;;;;;:::o;5832:529::-;5903:6;5911;5960:2;5948:9;5939:7;5935:23;5931:32;5928:119;;;5966:79;;:::i;:::-;5928:119;6114:1;6103:9;6099:17;6086:31;6144:18;6136:6;6133:30;6130:117;;;6166:79;;:::i;:::-;6130:117;6279:65;6336:7;6327:6;6316:9;6312:22;6279:65;:::i;:::-;6261:83;;;;6057:297;5832:529;;;;;:::o;6367:118::-;6454:24;6472:5;6454:24;:::i;:::-;6449:3;6442:37;6367:118;;:::o;6491:222::-;6584:4;6622:2;6611:9;6607:18;6599:26;;6635:71;6703:1;6692:9;6688:17;6679:6;6635:71;:::i;:::-;6491:222;;;;:::o;6719:619::-;6796:6;6804;6812;6861:2;6849:9;6840:7;6836:23;6832:32;6829:119;;;6867:79;;:::i;:::-;6829:119;6987:1;7012:53;7057:7;7048:6;7037:9;7033:22;7012:53;:::i;:::-;7002:63;;6958:117;7114:2;7140:53;7185:7;7176:6;7165:9;7161:22;7140:53;:::i;:::-;7130:63;;7085:118;7242:2;7268:53;7313:7;7304:6;7293:9;7289:22;7268:53;:::i;:::-;7258:63;;7213:118;6719:619;;;;;:::o;7344:474::-;7412:6;7420;7469:2;7457:9;7448:7;7444:23;7440:32;7437:119;;;7475:79;;:::i;:::-;7437:119;7595:1;7620:53;7665:7;7656:6;7645:9;7641:22;7620:53;:::i;:::-;7610:63;;7566:117;7722:2;7748:53;7793:7;7784:6;7773:9;7769:22;7748:53;:::i;:::-;7738:63;;7693:118;7344:474;;;;;:::o;7824:332::-;7945:4;7983:2;7972:9;7968:18;7960:26;;7996:71;8064:1;8053:9;8049:17;8040:6;7996:71;:::i;:::-;8077:72;8145:2;8134:9;8130:18;8121:6;8077:72;:::i;:::-;7824:332;;;;;:::o;8162:329::-;8221:6;8270:2;8258:9;8249:7;8245:23;8241:32;8238:119;;;8276:79;;:::i;:::-;8238:119;8396:1;8421:53;8466:7;8457:6;8446:9;8442:22;8421:53;:::i;:::-;8411:63;;8367:117;8162:329;;;;:::o;8497:116::-;8567:21;8582:5;8567:21;:::i;:::-;8560:5;8557:32;8547:60;;8603:1;8600;8593:12;8547:60;8497:116;:::o;8619:133::-;8662:5;8700:6;8687:20;8678:29;;8716:30;8740:5;8716:30;:::i;:::-;8619:133;;;;:::o;8758:613::-;8832:6;8840;8848;8897:2;8885:9;8876:7;8872:23;8868:32;8865:119;;;8903:79;;:::i;:::-;8865:119;9023:1;9048:53;9093:7;9084:6;9073:9;9069:22;9048:53;:::i;:::-;9038:63;;8994:117;9150:2;9176:53;9221:7;9212:6;9201:9;9197:22;9176:53;:::i;:::-;9166:63;;9121:118;9278:2;9304:50;9346:7;9337:6;9326:9;9322:22;9304:50;:::i;:::-;9294:60;;9249:115;8758:613;;;;;:::o;9377:323::-;9433:6;9482:2;9470:9;9461:7;9457:23;9453:32;9450:119;;;9488:79;;:::i;:::-;9450:119;9608:1;9633:50;9675:7;9666:6;9655:9;9651:22;9633:50;:::i;:::-;9623:60;;9579:114;9377:323;;;;:::o;9706:468::-;9771:6;9779;9828:2;9816:9;9807:7;9803:23;9799:32;9796:119;;;9834:79;;:::i;:::-;9796:119;9954:1;9979:53;10024:7;10015:6;10004:9;10000:22;9979:53;:::i;:::-;9969:63;;9925:117;10081:2;10107:50;10149:7;10140:6;10129:9;10125:22;10107:50;:::i;:::-;10097:60;;10052:115;9706:468;;;;;:::o;10180:117::-;10289:1;10286;10279:12;10303:180;10351:77;10348:1;10341:88;10448:4;10445:1;10438:15;10472:4;10469:1;10462:15;10489:281;10572:27;10594:4;10572:27;:::i;:::-;10564:6;10560:40;10702:6;10690:10;10687:22;10666:18;10654:10;10651:34;10648:62;10645:88;;;10713:18;;:::i;:::-;10645:88;10753:10;10749:2;10742:22;10532:238;10489:281;;:::o;10776:129::-;10810:6;10837:20;;:::i;:::-;10827:30;;10866:33;10894:4;10886:6;10866:33;:::i;:::-;10776:129;;;:::o;10911:307::-;10972:4;11062:18;11054:6;11051:30;11048:56;;;11084:18;;:::i;:::-;11048:56;11122:29;11144:6;11122:29;:::i;:::-;11114:37;;11206:4;11200;11196:15;11188:23;;10911:307;;;:::o;11224:146::-;11321:6;11316:3;11311;11298:30;11362:1;11353:6;11348:3;11344:16;11337:27;11224:146;;;:::o;11376:423::-;11453:5;11478:65;11494:48;11535:6;11494:48;:::i;:::-;11478:65;:::i;:::-;11469:74;;11566:6;11559:5;11552:21;11604:4;11597:5;11593:16;11642:3;11633:6;11628:3;11624:16;11621:25;11618:112;;;11649:79;;:::i;:::-;11618:112;11739:54;11786:6;11781:3;11776;11739:54;:::i;:::-;11459:340;11376:423;;;;;:::o;11818:338::-;11873:5;11922:3;11915:4;11907:6;11903:17;11899:27;11889:122;;11930:79;;:::i;:::-;11889:122;12047:6;12034:20;12072:78;12146:3;12138:6;12131:4;12123:6;12119:17;12072:78;:::i;:::-;12063:87;;11879:277;11818:338;;;;:::o;12162:943::-;12257:6;12265;12273;12281;12330:3;12318:9;12309:7;12305:23;12301:33;12298:120;;;12337:79;;:::i;:::-;12298:120;12457:1;12482:53;12527:7;12518:6;12507:9;12503:22;12482:53;:::i;:::-;12472:63;;12428:117;12584:2;12610:53;12655:7;12646:6;12635:9;12631:22;12610:53;:::i;:::-;12600:63;;12555:118;12712:2;12738:53;12783:7;12774:6;12763:9;12759:22;12738:53;:::i;:::-;12728:63;;12683:118;12868:2;12857:9;12853:18;12840:32;12899:18;12891:6;12888:30;12885:117;;;12921:79;;:::i;:::-;12885:117;13026:62;13080:7;13071:6;13060:9;13056:22;13026:62;:::i;:::-;13016:72;;12811:287;12162:943;;;;;;;:::o;13111:109::-;13147:7;13187:26;13180:5;13176:38;13165:49;;13111:109;;;:::o;13226:120::-;13298:23;13315:5;13298:23;:::i;:::-;13291:5;13288:34;13278:62;;13336:1;13333;13326:12;13278:62;13226:120;:::o;13352:137::-;13397:5;13435:6;13422:20;13413:29;;13451:32;13477:5;13451:32;:::i;:::-;13352:137;;;;:::o;13495:472::-;13562:6;13570;13619:2;13607:9;13598:7;13594:23;13590:32;13587:119;;;13625:79;;:::i;:::-;13587:119;13745:1;13770:53;13815:7;13806:6;13795:9;13791:22;13770:53;:::i;:::-;13760:63;;13716:117;13872:2;13898:52;13942:7;13933:6;13922:9;13918:22;13898:52;:::i;:::-;13888:62;;13843:117;13495:472;;;;;:::o;13973:308::-;14035:4;14125:18;14117:6;14114:30;14111:56;;;14147:18;;:::i;:::-;14111:56;14185:29;14207:6;14185:29;:::i;:::-;14177:37;;14269:4;14263;14259:15;14251:23;;13973:308;;;:::o;14287:425::-;14365:5;14390:66;14406:49;14448:6;14406:49;:::i;:::-;14390:66;:::i;:::-;14381:75;;14479:6;14472:5;14465:21;14517:4;14510:5;14506:16;14555:3;14546:6;14541:3;14537:16;14534:25;14531:112;;;14562:79;;:::i;:::-;14531:112;14652:54;14699:6;14694:3;14689;14652:54;:::i;:::-;14371:341;14287:425;;;;;:::o;14732:340::-;14788:5;14837:3;14830:4;14822:6;14818:17;14814:27;14804:122;;14845:79;;:::i;:::-;14804:122;14962:6;14949:20;14987:79;15062:3;15054:6;15047:4;15039:6;15035:17;14987:79;:::i;:::-;14978:88;;14794:278;14732:340;;;;:::o;15078:509::-;15147:6;15196:2;15184:9;15175:7;15171:23;15167:32;15164:119;;;15202:79;;:::i;:::-;15164:119;15350:1;15339:9;15335:17;15322:31;15380:18;15372:6;15369:30;15366:117;;;15402:79;;:::i;:::-;15366:117;15507:63;15562:7;15553:6;15542:9;15538:22;15507:63;:::i;:::-;15497:73;;15293:287;15078:509;;;;:::o;15593:474::-;15661:6;15669;15718:2;15706:9;15697:7;15693:23;15689:32;15686:119;;;15724:79;;:::i;:::-;15686:119;15844:1;15869:53;15914:7;15905:6;15894:9;15890:22;15869:53;:::i;:::-;15859:63;;15815:117;15971:2;15997:53;16042:7;16033:6;16022:9;16018:22;15997:53;:::i;:::-;15987:63;;15942:118;15593:474;;;;;:::o;16073:180::-;16121:77;16118:1;16111:88;16218:4;16215:1;16208:15;16242:4;16239:1;16232:15;16259:320;16303:6;16340:1;16334:4;16330:12;16320:22;;16387:1;16381:4;16377:12;16408:18;16398:81;;16464:4;16456:6;16452:17;16442:27;;16398:81;16526:2;16518:6;16515:14;16495:18;16492:38;16489:84;;16545:18;;:::i;:::-;16489:84;16310:269;16259:320;;;:::o;16585:97::-;16644:6;16672:3;16662:13;;16585:97;;;;:::o;16688:141::-;16737:4;16760:3;16752:11;;16783:3;16780:1;16773:14;16817:4;16814:1;16804:18;16796:26;;16688:141;;;:::o;16835:93::-;16872:6;16919:2;16914;16907:5;16903:14;16899:23;16889:33;;16835:93;;;:::o;16934:107::-;16978:8;17028:5;17022:4;17018:16;16997:37;;16934:107;;;;:::o;17047:393::-;17116:6;17166:1;17154:10;17150:18;17189:97;17219:66;17208:9;17189:97;:::i;:::-;17307:39;17337:8;17326:9;17307:39;:::i;:::-;17295:51;;17379:4;17375:9;17368:5;17364:21;17355:30;;17428:4;17418:8;17414:19;17407:5;17404:30;17394:40;;17123:317;;17047:393;;;;;:::o;17446:60::-;17474:3;17495:5;17488:12;;17446:60;;;:::o;17512:142::-;17562:9;17595:53;17613:34;17622:24;17640:5;17622:24;:::i;:::-;17613:34;:::i;:::-;17595:53;:::i;:::-;17582:66;;17512:142;;;:::o;17660:75::-;17703:3;17724:5;17717:12;;17660:75;;;:::o;17741:269::-;17851:39;17882:7;17851:39;:::i;:::-;17912:91;17961:41;17985:16;17961:41;:::i;:::-;17953:6;17946:4;17940:11;17912:91;:::i;:::-;17906:4;17899:105;17817:193;17741:269;;;:::o;18016:73::-;18061:3;18016:73;:::o;18095:189::-;18172:32;;:::i;:::-;18213:65;18271:6;18263;18257:4;18213:65;:::i;:::-;18148:136;18095:189;;:::o;18290:186::-;18350:120;18367:3;18360:5;18357:14;18350:120;;;18421:39;18458:1;18451:5;18421:39;:::i;:::-;18394:1;18387:5;18383:13;18374:22;;18350:120;;;18290:186;;:::o;18482:543::-;18583:2;18578:3;18575:11;18572:446;;;18617:38;18649:5;18617:38;:::i;:::-;18701:29;18719:10;18701:29;:::i;:::-;18691:8;18687:44;18884:2;18872:10;18869:18;18866:49;;;18905:8;18890:23;;18866:49;18928:80;18984:22;19002:3;18984:22;:::i;:::-;18974:8;18970:37;18957:11;18928:80;:::i;:::-;18587:431;;18572:446;18482:543;;;:::o;19031:117::-;19085:8;19135:5;19129:4;19125:16;19104:37;;19031:117;;;;:::o;19154:169::-;19198:6;19231:51;19279:1;19275:6;19267:5;19264:1;19260:13;19231:51;:::i;:::-;19227:56;19312:4;19306;19302:15;19292:25;;19205:118;19154:169;;;;:::o;19328:295::-;19404:4;19550:29;19575:3;19569:4;19550:29;:::i;:::-;19542:37;;19612:3;19609:1;19605:11;19599:4;19596:21;19588:29;;19328:295;;;;:::o;19628:1403::-;19752:44;19792:3;19787;19752:44;:::i;:::-;19861:18;19853:6;19850:30;19847:56;;;19883:18;;:::i;:::-;19847:56;19927:38;19959:4;19953:11;19927:38;:::i;:::-;20012:67;20072:6;20064;20058:4;20012:67;:::i;:::-;20106:1;20135:2;20127:6;20124:14;20152:1;20147:632;;;;20823:1;20840:6;20837:84;;;20896:9;20891:3;20887:19;20874:33;20865:42;;20837:84;20947:67;21007:6;21000:5;20947:67;:::i;:::-;20941:4;20934:81;20796:229;20117:908;;20147:632;20199:4;20195:9;20187:6;20183:22;20233:37;20265:4;20233:37;:::i;:::-;20292:1;20306:215;20320:7;20317:1;20314:14;20306:215;;;20406:9;20401:3;20397:19;20384:33;20376:6;20369:49;20457:1;20449:6;20445:14;20435:24;;20504:2;20493:9;20489:18;20476:31;;20343:4;20340:1;20336:12;20331:17;;20306:215;;;20549:6;20540:7;20537:19;20534:186;;;20614:9;20609:3;20605:19;20592:33;20657:48;20699:4;20691:6;20687:17;20676:9;20657:48;:::i;:::-;20649:6;20642:64;20557:163;20534:186;20766:1;20762;20754:6;20750:14;20746:22;20740:4;20733:36;20154:625;;;20117:908;;19727:1304;;;19628:1403;;;:::o;21037:180::-;21085:77;21082:1;21075:88;21182:4;21179:1;21172:15;21206:4;21203:1;21196:15;21223:410;21263:7;21286:20;21304:1;21286:20;:::i;:::-;21281:25;;21320:20;21338:1;21320:20;:::i;:::-;21315:25;;21375:1;21372;21368:9;21397:30;21415:11;21397:30;:::i;:::-;21386:41;;21576:1;21567:7;21563:15;21560:1;21557:22;21537:1;21530:9;21510:83;21487:139;;21606:18;;:::i;:::-;21487:139;21271:362;21223:410;;;;:::o;21639:180::-;21687:77;21684:1;21677:88;21784:4;21781:1;21774:15;21808:4;21805:1;21798:15;21825:185;21865:1;21882:20;21900:1;21882:20;:::i;:::-;21877:25;;21916:20;21934:1;21916:20;:::i;:::-;21911:25;;21955:1;21945:35;;21960:18;;:::i;:::-;21945:35;22002:1;21999;21995:9;21990:14;;21825:185;;;;:::o;22016:147::-;22117:11;22154:3;22139:18;;22016:147;;;;:::o;22169:114::-;;:::o;22289:398::-;22448:3;22469:83;22550:1;22545:3;22469:83;:::i;:::-;22462:90;;22561:93;22650:3;22561:93;:::i;:::-;22679:1;22674:3;22670:11;22663:18;;22289:398;;;:::o;22693:379::-;22877:3;22899:147;23042:3;22899:147;:::i;:::-;22892:154;;23063:3;23056:10;;22693:379;;;:::o;23078:169::-;23218:21;23214:1;23206:6;23202:14;23195:45;23078:169;:::o;23253:366::-;23395:3;23416:67;23480:2;23475:3;23416:67;:::i;:::-;23409:74;;23492:93;23581:3;23492:93;:::i;:::-;23610:2;23605:3;23601:12;23594:19;;23253:366;;;:::o;23625:419::-;23791:4;23829:2;23818:9;23814:18;23806:26;;23878:9;23872:4;23868:20;23864:1;23853:9;23849:17;23842:47;23906:131;24032:4;23906:131;:::i;:::-;23898:139;;23625:419;;;:::o;24050:174::-;24190:26;24186:1;24178:6;24174:14;24167:50;24050:174;:::o;24230:366::-;24372:3;24393:67;24457:2;24452:3;24393:67;:::i;:::-;24386:74;;24469:93;24558:3;24469:93;:::i;:::-;24587:2;24582:3;24578:12;24571:19;;24230:366;;;:::o;24602:419::-;24768:4;24806:2;24795:9;24791:18;24783:26;;24855:9;24849:4;24845:20;24841:1;24830:9;24826:17;24819:47;24883:131;25009:4;24883:131;:::i;:::-;24875:139;;24602:419;;;:::o;25027:168::-;25167:20;25163:1;25155:6;25151:14;25144:44;25027:168;:::o;25201:366::-;25343:3;25364:67;25428:2;25423:3;25364:67;:::i;:::-;25357:74;;25440:93;25529:3;25440:93;:::i;:::-;25558:2;25553:3;25549:12;25542:19;;25201:366;;;:::o;25573:419::-;25739:4;25777:2;25766:9;25762:18;25754:26;;25826:9;25820:4;25816:20;25812:1;25801:9;25797:17;25790:47;25854:131;25980:4;25854:131;:::i;:::-;25846:139;;25573:419;;;:::o;25998:191::-;26038:3;26057:20;26075:1;26057:20;:::i;:::-;26052:25;;26091:20;26109:1;26091:20;:::i;:::-;26086:25;;26134:1;26131;26127:9;26120:16;;26155:3;26152:1;26149:10;26146:36;;;26162:18;;:::i;:::-;26146:36;25998:191;;;;:::o;26195:172::-;26335:24;26331:1;26323:6;26319:14;26312:48;26195:172;:::o;26373:366::-;26515:3;26536:67;26600:2;26595:3;26536:67;:::i;:::-;26529:74;;26612:93;26701:3;26612:93;:::i;:::-;26730:2;26725:3;26721:12;26714:19;;26373:366;;;:::o;26745:419::-;26911:4;26949:2;26938:9;26934:18;26926:26;;26998:9;26992:4;26988:20;26984:1;26973:9;26969:17;26962:47;27026:131;27152:4;27026:131;:::i;:::-;27018:139;;26745:419;;;:::o;27170:176::-;27310:28;27306:1;27298:6;27294:14;27287:52;27170:176;:::o;27352:366::-;27494:3;27515:67;27579:2;27574:3;27515:67;:::i;:::-;27508:74;;27591:93;27680:3;27591:93;:::i;:::-;27709:2;27704:3;27700:12;27693:19;;27352:366;;;:::o;27724:419::-;27890:4;27928:2;27917:9;27913:18;27905:26;;27977:9;27971:4;27967:20;27963:1;27952:9;27948:17;27941:47;28005:131;28131:4;28005:131;:::i;:::-;27997:139;;27724:419;;;:::o;28149:194::-;28189:4;28209:20;28227:1;28209:20;:::i;:::-;28204:25;;28243:20;28261:1;28243:20;:::i;:::-;28238:25;;28287:1;28284;28280:9;28272:17;;28311:1;28305:4;28302:11;28299:37;;;28316:18;;:::i;:::-;28299:37;28149:194;;;;:::o;28349:162::-;28489:14;28485:1;28477:6;28473:14;28466:38;28349:162;:::o;28517:366::-;28659:3;28680:67;28744:2;28739:3;28680:67;:::i;:::-;28673:74;;28756:93;28845:3;28756:93;:::i;:::-;28874:2;28869:3;28865:12;28858:19;;28517:366;;;:::o;28889:419::-;29055:4;29093:2;29082:9;29078:18;29070:26;;29142:9;29136:4;29132:20;29128:1;29117:9;29113:17;29106:47;29170:131;29296:4;29170:131;:::i;:::-;29162:139;;28889:419;;;:::o;29314:166::-;29454:18;29450:1;29442:6;29438:14;29431:42;29314:166;:::o;29486:366::-;29628:3;29649:67;29713:2;29708:3;29649:67;:::i;:::-;29642:74;;29725:93;29814:3;29725:93;:::i;:::-;29843:2;29838:3;29834:12;29827:19;;29486:366;;;:::o;29858:419::-;30024:4;30062:2;30051:9;30047:18;30039:26;;30111:9;30105:4;30101:20;30097:1;30086:9;30082:17;30075:47;30139:131;30265:4;30139:131;:::i;:::-;30131:139;;29858:419;;;:::o;30283:234::-;30423:34;30419:1;30411:6;30407:14;30400:58;30492:17;30487:2;30479:6;30475:15;30468:42;30283:234;:::o;30523:366::-;30665:3;30686:67;30750:2;30745:3;30686:67;:::i;:::-;30679:74;;30762:93;30851:3;30762:93;:::i;:::-;30880:2;30875:3;30871:12;30864:19;;30523:366;;;:::o;30895:419::-;31061:4;31099:2;31088:9;31084:18;31076:26;;31148:9;31142:4;31138:20;31134:1;31123:9;31119:17;31112:47;31176:131;31302:4;31176:131;:::i;:::-;31168:139;;30895:419;;;:::o;31320:148::-;31422:11;31459:3;31444:18;;31320:148;;;;:::o;31474:390::-;31580:3;31608:39;31641:5;31608:39;:::i;:::-;31663:89;31745:6;31740:3;31663:89;:::i;:::-;31656:96;;31761:65;31819:6;31814:3;31807:4;31800:5;31796:16;31761:65;:::i;:::-;31851:6;31846:3;31842:16;31835:23;;31584:280;31474:390;;;;:::o;31894:874::-;31997:3;32034:5;32028:12;32063:36;32089:9;32063:36;:::i;:::-;32115:89;32197:6;32192:3;32115:89;:::i;:::-;32108:96;;32235:1;32224:9;32220:17;32251:1;32246:166;;;;32426:1;32421:341;;;;32213:549;;32246:166;32330:4;32326:9;32315;32311:25;32306:3;32299:38;32392:6;32385:14;32378:22;32370:6;32366:35;32361:3;32357:45;32350:52;;32246:166;;32421:341;32488:38;32520:5;32488:38;:::i;:::-;32548:1;32562:154;32576:6;32573:1;32570:13;32562:154;;;32650:7;32644:14;32640:1;32635:3;32631:11;32624:35;32700:1;32691:7;32687:15;32676:26;;32598:4;32595:1;32591:12;32586:17;;32562:154;;;32745:6;32740:3;32736:16;32729:23;;32428:334;;32213:549;;32001:767;;31894:874;;;;:::o;32774:589::-;32999:3;33021:95;33112:3;33103:6;33021:95;:::i;:::-;33014:102;;33133:95;33224:3;33215:6;33133:95;:::i;:::-;33126:102;;33245:92;33333:3;33324:6;33245:92;:::i;:::-;33238:99;;33354:3;33347:10;;32774:589;;;;;;:::o;33369:1395::-;33486:37;33519:3;33486:37;:::i;:::-;33588:18;33580:6;33577:30;33574:56;;;33610:18;;:::i;:::-;33574:56;33654:38;33686:4;33680:11;33654:38;:::i;:::-;33739:67;33799:6;33791;33785:4;33739:67;:::i;:::-;33833:1;33857:4;33844:17;;33889:2;33881:6;33878:14;33906:1;33901:618;;;;34563:1;34580:6;34577:77;;;34629:9;34624:3;34620:19;34614:26;34605:35;;34577:77;34680:67;34740:6;34733:5;34680:67;:::i;:::-;34674:4;34667:81;34536:222;33871:887;;33901:618;33953:4;33949:9;33941:6;33937:22;33987:37;34019:4;33987:37;:::i;:::-;34046:1;34060:208;34074:7;34071:1;34068:14;34060:208;;;34153:9;34148:3;34144:19;34138:26;34130:6;34123:42;34204:1;34196:6;34192:14;34182:24;;34251:2;34240:9;34236:18;34223:31;;34097:4;34094:1;34090:12;34085:17;;34060:208;;;34296:6;34287:7;34284:19;34281:179;;;34354:9;34349:3;34345:19;34339:26;34397:48;34439:4;34431:6;34427:17;34416:9;34397:48;:::i;:::-;34389:6;34382:64;34304:156;34281:179;34506:1;34502;34494:6;34490:14;34486:22;34480:4;34473:36;33908:611;;;33871:887;;33461:1303;;;33369:1395;;:::o;34770:225::-;34910:34;34906:1;34898:6;34894:14;34887:58;34979:8;34974:2;34966:6;34962:15;34955:33;34770:225;:::o;35001:366::-;35143:3;35164:67;35228:2;35223:3;35164:67;:::i;:::-;35157:74;;35240:93;35329:3;35240:93;:::i;:::-;35358:2;35353:3;35349:12;35342:19;;35001:366;;;:::o;35373:419::-;35539:4;35577:2;35566:9;35562:18;35554:26;;35626:9;35620:4;35616:20;35612:1;35601:9;35597:17;35590:47;35654:131;35780:4;35654:131;:::i;:::-;35646:139;;35373:419;;;:::o;35798:182::-;35938:34;35934:1;35926:6;35922:14;35915:58;35798:182;:::o;35986:366::-;36128:3;36149:67;36213:2;36208:3;36149:67;:::i;:::-;36142:74;;36225:93;36314:3;36225:93;:::i;:::-;36343:2;36338:3;36334:12;36327:19;;35986:366;;;:::o;36358:419::-;36524:4;36562:2;36551:9;36547:18;36539:26;;36611:9;36605:4;36601:20;36597:1;36586:9;36582:17;36575:47;36639:131;36765:4;36639:131;:::i;:::-;36631:139;;36358:419;;;:::o;36783:229::-;36923:34;36919:1;36911:6;36907:14;36900:58;36992:12;36987:2;36979:6;36975:15;36968:37;36783:229;:::o;37018:366::-;37160:3;37181:67;37245:2;37240:3;37181:67;:::i;:::-;37174:74;;37257:93;37346:3;37257:93;:::i;:::-;37375:2;37370:3;37366:12;37359:19;;37018:366;;;:::o;37390:419::-;37556:4;37594:2;37583:9;37579:18;37571:26;;37643:9;37637:4;37633:20;37629:1;37618:9;37614:17;37607:47;37671:131;37797:4;37671:131;:::i;:::-;37663:139;;37390:419;;;:::o;37815:175::-;37955:27;37951:1;37943:6;37939:14;37932:51;37815:175;:::o;37996:366::-;38138:3;38159:67;38223:2;38218:3;38159:67;:::i;:::-;38152:74;;38235:93;38324:3;38235:93;:::i;:::-;38353:2;38348:3;38344:12;38337:19;;37996:366;;;:::o;38368:419::-;38534:4;38572:2;38561:9;38557:18;38549:26;;38621:9;38615:4;38611:20;38607:1;38596:9;38592:17;38585:47;38649:131;38775:4;38649:131;:::i;:::-;38641:139;;38368:419;;;:::o;38793:98::-;38844:6;38878:5;38872:12;38862:22;;38793:98;;;:::o;38897:168::-;38980:11;39014:6;39009:3;39002:19;39054:4;39049:3;39045:14;39030:29;;38897:168;;;;:::o;39071:373::-;39157:3;39185:38;39217:5;39185:38;:::i;:::-;39239:70;39302:6;39297:3;39239:70;:::i;:::-;39232:77;;39318:65;39376:6;39371:3;39364:4;39357:5;39353:16;39318:65;:::i;:::-;39408:29;39430:6;39408:29;:::i;:::-;39403:3;39399:39;39392:46;;39161:283;39071:373;;;;:::o;39450:640::-;39645:4;39683:3;39672:9;39668:19;39660:27;;39697:71;39765:1;39754:9;39750:17;39741:6;39697:71;:::i;:::-;39778:72;39846:2;39835:9;39831:18;39822:6;39778:72;:::i;:::-;39860;39928:2;39917:9;39913:18;39904:6;39860:72;:::i;:::-;39979:9;39973:4;39969:20;39964:2;39953:9;39949:18;39942:48;40007:76;40078:4;40069:6;40007:76;:::i;:::-;39999:84;;39450:640;;;;;;;:::o;40096:141::-;40152:5;40183:6;40177:13;40168:22;;40199:32;40225:5;40199:32;:::i;:::-;40096:141;;;;:::o;40243:349::-;40312:6;40361:2;40349:9;40340:7;40336:23;40332:32;40329:119;;;40367:79;;:::i;:::-;40329:119;40487:1;40512:63;40567:7;40558:6;40547:9;40543:22;40512:63;:::i;:::-;40502:73;;40458:127;40243:349;;;;:::o

Swarm Source

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