ETH Price: $3,349.86 (-0.20%)
 

Overview

Max Total Supply

138 Bust of John the Baptist

Holders

111

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 Bust of John the Baptist
0x174cceef0f78993cd1d8160c52f2e85d59fe0143
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:
Bust_of_John_the_Baptist

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-10-03
*/

// File: @openzeppelin/contracts/cryptography/MerkleProof.sol



pragma solidity >=0.8.0;

/**
 * @dev These functions deal with verification of Merkle trees (hash trees),
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

// 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: johnthebaptist.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 Bust_of_John_the_Baptist is ERC721A, ERC2981, OperatorFilterer, Ownable {
    using ECDSA for bytes32;

    string private _baseTokenURI;
    bytes32 public merkleRoot;
    string public baseExtension = ".json";
    address public contractAddress1;
    address public contractAddress2;
    uint256 public constant RESERVED = 1;
    uint256 public SEC_RESERVED = 0;
    uint256 public PUBLIC_SUPPLY = 0;
    uint256 public WHITELIST_SUPPLY = 0;
    uint256 public mintPrice =  0.044 ether;
    uint256 public whiteListPrice = 0.035 ether;
    string public provenanceHash;
    bool public operatorFilteringEnabled;
    mapping(bytes4 => bool) public functionLocked;
    bool public saleStatus = false;
    uint256 private startTime;
    uint256 public mintingTime = 30 minutes;
    mapping(address => bool) public isUk;
    mapping(address => bool) public minter;
    mapping(address => uint256) public Claimed;
    uint256 public totalClaimed = 0;

    constructor(
        address _royaltyReceiver,
        uint96 _royaltyFraction
    ) ERC721A(unicode"Bust of John the Baptist", unicode"Bust of John the Baptist") {
        _registerForOperatorFiltering();
        operatorFilteringEnabled = true;
        minter[0xa8C10eC49dF815e73A881ABbE0Aa7b210f39E2Df] = true;
        minter[0x79bB164367BB64742E993f381372961a945BF447] = true;
        minter[0xFd88229910A28D6B319E147b40c822FA5CF38a45] = true;
        minter[0x6b40a842e05D60081F5474046c713b294B4BbC63] = true;
        minter[0x8528fA2503c49893B704B981e0cBAC021E678789] = true;
        contractAddress1 = 0x67B7861a095FCAfe92a2771edD03B63b391Ad7Ae;
        contractAddress2 = 0x7716bA3395c6B5831723307434dD0f1dbC6d43D0;

        _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;
    }

    function setMintingTime(uint256 time) external onlyOwner{
        mintingTime = time;
    }

    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, "minter doesn't exist");
        minter[_minter] = false;
    }

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

    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    /**
     * @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
    {
        _mint(to, quantity);
    }

    function whiteListMint(
        address to,
        uint256 quantity,
        bool _isUk,
        bytes32[] calldata merkleProof
    ) external payable onlyMinter {
        require(saleStatus == true, "Minting is not yet open.");
        require(block.timestamp <= (startTime + mintingTime),"Minting time is over now");
        IERC721A whiteListContract1 = IERC721A(contractAddress1);
        IERC721A whiteListContract2 = IERC721A(contractAddress2);
        require(
            Claimed[to] < whiteListContract1.balanceOf(to) + whiteListContract2.balanceOf(to),
            "Invalid Whitelist Proof or Already Claimed"
        );
        bytes32 node = keccak256(abi.encodePacked(to, quantity));
        require(
            MerkleProof.verify(merkleProof, merkleRoot, node),
            "Invalid Whitelist Proof."
        );
        uint256 totalCost = quantity * whiteListPrice;
        require(msg.value >= totalCost, "Ether sent is not correct.");
        _mint(to, quantity);
        Claimed[to] += quantity;
        isUk[to] = _isUk;
        if (msg.value > totalCost) {
            payable(msg.sender).transfer(msg.value - totalCost);
        }
    }

    function publicMint(
        address to,
        uint256 quantity,
        bool _isUk
    ) external payable onlyMinter {
        require(saleStatus == true, "Minting is not yet open.");
        require(block.timestamp <= (startTime + mintingTime),"Minting time is over now");
        uint256 totalCost = quantity * mintPrice;
        require(msg.value >= totalCost, "Ether sent is not correct.");
        _mint(to, quantity);
        isUk[to] = _isUk;
        if (msg.value > totalCost) {
            payable(msg.sender).transfer(msg.value - totalCost);
        }
    }

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

    function setWhiteListPrice(uint256 _newPrice) external onlyOwner {
        whiteListPrice = _newPrice;
    }

    function enableMint() external onlyOwner {
            saleStatus = true;
            startTime = block.timestamp;
    }


    /**
     * @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":[{"internalType":"address","name":"","type":"address"}],"name":"Claimed","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":[],"name":"WHITELIST_SUPPLY","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":[],"name":"contractAddress1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractAddress2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableMint","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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"mintingTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"saleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"setMintingTime","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":"_newPrice","type":"uint256"}],"name":"setPublicMintPrice","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":"_newPrice","type":"uint256"}],"name":"setWhiteListPrice","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":"totalClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bool","name":"_isUk","type":"bool"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whiteListPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d90816200004a919062000a25565b50600060105560006011556000601255669c51c4521e0000601355667c5850872380006014556000601860006101000a81548160ff021916908315150217905550610708601a556000601e55348015620000a357600080fd5b50604051620061ba380380620061ba8339818101604052810190620000c9919062000bbf565b6040518060400160405280601881526020017f42757374206f66204a6f686e20746865204261707469737400000000000000008152506040518060400160405280601881526020017f42757374206f66204a6f686e2074686520426170746973740000000000000000815250816002908162000146919062000a25565b50806003908162000158919062000a25565b50620001696200049c60201b60201c565b60008190555050506200019162000185620004a560201b60201c565b620004ad60201b60201c565b620001a16200057360201b60201c565b6001601660006101000a81548160ff0219169083151502179055506001601c600073a8c10ec49df815e73a881abbe0aa7b210f39e2df73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601c60007379bb164367bb64742e993f381372961a945bf44773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601c600073fd88229910a28d6b319e147b40c822fa5cf38a4573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601c6000736b40a842e05d60081f5474046c713b294b4bbc6373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601c6000738528fa2503c49893b704b981e0cbac021e67878973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507367b7861a095fcafe92a2771edd03b63b391ad7ae600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737716ba3395c6b5831723307434dd0f1dbc6d43d0600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200049482826200059c60201b60201c565b505062000d21565b60006001905090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200059a733cc6cdda760b79bafa08df41ecfa224f810dceb660016200073f60201b60201c565b565b620005ac620007a160201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156200060d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006049062000c8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200067f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006769062000cff565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b637d3e3dbe8260601b60601c9250816200076e57826200076657634420e48690506200076e565b63a0af290390505b8060e01b600052306004528260245260008060446000806daaeb6d7670e522a718067333cd4e5af1506000602452505050565b6000612710905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200082d57607f821691505b602082108103620008435762000842620007e5565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008ad7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200086e565b620008b986836200086e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200090662000900620008fa84620008d1565b620008db565b620008d1565b9050919050565b6000819050919050565b6200092283620008e5565b6200093a62000931826200090d565b8484546200087b565b825550505050565b600090565b6200095162000942565b6200095e81848462000917565b505050565b5b8181101562000986576200097a60008262000947565b60018101905062000964565b5050565b601f821115620009d5576200099f8162000849565b620009aa846200085e565b81016020851015620009ba578190505b620009d2620009c9856200085e565b83018262000963565b50505b505050565b600082821c905092915050565b6000620009fa60001984600802620009da565b1980831691505092915050565b600062000a158383620009e7565b9150826002028217905092915050565b62000a3082620007ab565b67ffffffffffffffff81111562000a4c5762000a4b620007b6565b5b62000a58825462000814565b62000a658282856200098a565b600060209050601f83116001811462000a9d576000841562000a88578287015190505b62000a94858262000a07565b86555062000b04565b601f19841662000aad8662000849565b60005b8281101562000ad75784890151825560018201915060208501945060208101905062000ab0565b8683101562000af7578489015162000af3601f891682620009e7565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b3e8262000b11565b9050919050565b62000b508162000b31565b811462000b5c57600080fd5b50565b60008151905062000b708162000b45565b92915050565b60006bffffffffffffffffffffffff82169050919050565b62000b998162000b76565b811462000ba557600080fd5b50565b60008151905062000bb98162000b8e565b92915050565b6000806040838503121562000bd95762000bd862000b0c565b5b600062000be98582860162000b5f565b925050602062000bfc8582860162000ba8565b9150509250929050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000c75602a8362000c06565b915062000c828262000c17565b604082019050919050565b6000602082019050818103600083015262000ca88162000c66565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000ce760198362000c06565b915062000cf48262000caf565b602082019050919050565b6000602082019050818103600083015262000d1a8162000cd8565b9050919050565b6154898062000d316000396000f3fe60806040526004361061036b5760003560e01c806378bfbdbb116101c6578063bbadfe76116100f7578063da3ef23f11610095578063e985e9c51161006f578063e985e9c514610c3f578063f2fde38b14610c7c578063f9020e3314610ca5578063fb796e6c14610cd05761036b565b8063da3ef23f14610bb0578063dc33e68114610bd9578063e75179a414610c165761036b565b8063c6682862116100d1578063c668286214610af2578063c6ab67a314610b1d578063c87b56dd14610b48578063d54ad2a114610b855761036b565b8063bbadfe7614610a63578063beafc89b14610aa0578063c21b471b14610ac95761036b565b8063a22cb46511610164578063b449c24d1161013e578063b449c24d146109a4578063b629f192146109e1578063b7c0b8e814610a1e578063b88d4fde14610a475761036b565b8063a22cb46514610927578063aa592f2514610950578063b366d6131461097b5761036b565b80637ec9e156116101a05780637ec9e1561461087b5780638342083a146108a65780638da5cb5b146108d157806395d89b41146108fc5761036b565b806378bfbdbb1461080b5780637bc02806146108275780637cb64759146108525761036b565b806342842e0e116102a05780636817c76c1161023e5780636e56539b116102185780636e56539b1461076357806370a082311461078e578063715018a6146107cb57806374d0101d146107e25761036b565b80636817c76c146106e4578063685756851461070f57806369e2f0fb1461073a5761036b565b80635d82cf6e1161027a5780635d82cf6e1461062a578063601e5e77146106535780636352211e1461067e5780636368928f146106bb5761036b565b806342842e0e146105ce57806344b28d59146105ea57806355f804b3146106015761036b565b806323b872dd1161030d57806334531828116102e757806334531828146105355780633ccfd60b1461055e5780633dd08c3814610575578063402c3856146105b25761036b565b806323b872dd146104b05780632a55205a146104cc5780632eb4a7ab1461050a5761036b565b8063095ea7b311610349578063095ea7b3146104155780630d5a5a7714610431578063109695231461045c57806318160ddd146104855761036b565b806301ffc9a71461037057806306fdde03146103ad578063081812fc146103d8575b600080fd5b34801561037c57600080fd5b5061039760048036038101906103929190613bdc565b610cfb565b6040516103a49190613c24565b60405180910390f35b3480156103b957600080fd5b506103c2610d1d565b6040516103cf9190613ccf565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa9190613d27565b610daf565b60405161040c9190613d95565b60405180910390f35b61042f600480360381019061042a9190613ddc565b610e2e565b005b34801561043d57600080fd5b50610446610e9d565b6040516104539190613e2b565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e9190613eab565b610ea3565b005b34801561049157600080fd5b5061049a610fc2565b6040516104a79190613e2b565b60405180910390f35b6104ca60048036038101906104c59190613ef8565b610fd9565b005b3480156104d857600080fd5b506104f360048036038101906104ee9190613f4b565b611052565b604051610501929190613f8b565b60405180910390f35b34801561051657600080fd5b5061051f61123c565b60405161052c9190613fcd565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190613bdc565b611242565b005b34801561056a57600080fd5b506105736112b7565b005b34801561058157600080fd5b5061059c60048036038101906105979190613fe8565b611365565b6040516105a99190613c24565b60405180910390f35b6105cc60048036038101906105c79190614041565b611385565b005b6105e860048036038101906105e39190613ef8565b6115d7565b005b3480156105f657600080fd5b506105ff611650565b005b34801561060d57600080fd5b5061062860048036038101906106239190613eab565b61167c565b005b34801561063657600080fd5b50610651600480360381019061064c9190613d27565b611753565b005b34801561065f57600080fd5b50610668611765565b6040516106759190613e2b565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a09190613d27565b61176b565b6040516106b29190613d95565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd9190613d27565b61177d565b005b3480156106f057600080fd5b506106f961178f565b6040516107069190613e2b565b60405180910390f35b34801561071b57600080fd5b50610724611795565b6040516107319190613e2b565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190613fe8565b61179b565b005b34801561076f57600080fd5b50610778611891565b6040516107859190613e2b565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b09190613fe8565b611897565b6040516107c29190613e2b565b60405180910390f35b3480156107d757600080fd5b506107e061194f565b005b3480156107ee57600080fd5b5061080960048036038101906108049190613ddc565b611963565b005b610825600480360381019061082091906140ea565b611a32565b005b34801561083357600080fd5b5061083c611f65565b6040516108499190613d95565b60405180910390f35b34801561085e57600080fd5b506108796004803603810190610874919061419e565b611f8b565b005b34801561088757600080fd5b50610890611f9d565b60405161089d9190613d95565b60405180910390f35b3480156108b257600080fd5b506108bb611fc3565b6040516108c89190613e2b565b60405180910390f35b3480156108dd57600080fd5b506108e6611fc9565b6040516108f39190613d95565b60405180910390f35b34801561090857600080fd5b50610911611ff3565b60405161091e9190613ccf565b60405180910390f35b34801561093357600080fd5b5061094e600480360381019061094991906141cb565b612085565b005b34801561095c57600080fd5b506109656120f4565b6040516109729190613e2b565b60405180910390f35b34801561098757600080fd5b506109a2600480360381019061099d9190613fe8565b6120f9565b005b3480156109b057600080fd5b506109cb60048036038101906109c69190613fe8565b6121ef565b6040516109d89190613e2b565b60405180910390f35b3480156109ed57600080fd5b50610a086004803603810190610a039190613fe8565b612207565b604051610a159190613c24565b60405180910390f35b348015610a2a57600080fd5b50610a456004803603810190610a40919061420b565b612227565b005b610a616004803603810190610a5c9190614368565b612305565b005b348015610a6f57600080fd5b50610a8a6004803603810190610a859190613bdc565b612380565b604051610a979190613c24565b60405180910390f35b348015610aac57600080fd5b50610ac76004803603810190610ac29190613d27565b6123a0565b005b348015610ad557600080fd5b50610af06004803603810190610aeb919061442f565b6123b2565b005b348015610afe57600080fd5b50610b076123c8565b604051610b149190613ccf565b60405180910390f35b348015610b2957600080fd5b50610b32612456565b604051610b3f9190613ccf565b60405180910390f35b348015610b5457600080fd5b50610b6f6004803603810190610b6a9190613d27565b6124e4565b604051610b7c9190613ccf565b60405180910390f35b348015610b9157600080fd5b50610b9a61258e565b604051610ba79190613e2b565b60405180910390f35b348015610bbc57600080fd5b50610bd76004803603810190610bd29190614510565b612594565b005b348015610be557600080fd5b50610c006004803603810190610bfb9190613fe8565b6125af565b604051610c0d9190613e2b565b60405180910390f35b348015610c2257600080fd5b50610c3d6004803603810190610c389190613fe8565b6125c1565b005b348015610c4b57600080fd5b50610c666004803603810190610c619190614559565b6126d1565b604051610c739190613c24565b60405180910390f35b348015610c8857600080fd5b50610ca36004803603810190610c9e9190613fe8565b612765565b005b348015610cb157600080fd5b50610cba6127e8565b604051610cc79190613c24565b60405180910390f35b348015610cdc57600080fd5b50610ce56127fb565b604051610cf29190613c24565b60405180910390f35b6000610d068261280e565b80610d165750610d15826128a0565b5b9050919050565b606060028054610d2c906145c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610d58906145c8565b8015610da55780601f10610d7a57610100808354040283529160200191610da5565b820191906000526020600020905b815481529060010190602001808311610d8857829003601f168201915b5050505050905090565b6000610dba8261291a565b610df0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81601660009054906101000a900460ff168015610e8d5769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610e87573d6000803e3d6000fd5b6000603a525b610e978484612979565b50505050565b601a5481565b6017600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615610f5c576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f64612abd565b600060158054610f73906145c8565b905014610fac576040517f19e24c1100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818160159182610fbd9291906147b0565b505050565b6000610fcc612b3b565b6001546000540303905090565b82601660009054906101000a900460ff16801561104057338260601b60601c1461103f5769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611039573d6000803e3d6000fd5b6000603a525b5b61104b858585612b44565b5050505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16036111e75760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006111f1612e66565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff168661121d91906148af565b6112279190614920565b90508160000151819350935050509250929050565b600c5481565b61124a612abd565b600160176000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6112bf612abd565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516112e590614982565b60006040518083038185875af1925050503d8060008114611322576040519150601f19603f3d011682016040523d82523d6000602084013e611327565b606091505b5050905080611362576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b601c6020528060005260406000206000915054906101000a900460ff1681565b60011515601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f906149e3565b60405180910390fd5b60011515601860009054906101000a900460ff1615151461146e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146590614a4f565b60405180910390fd5b601a5460195461147e9190614a6f565b4211156114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b790614aef565b60405180910390fd5b6000601354836114d091906148af565b905080341015611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c90614b5b565b60405180910390fd5b61151f8484612e70565b81601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550803411156115d1573373ffffffffffffffffffffffffffffffffffffffff166108fc82346115a49190614b7b565b9081150290604051600060405180830381858888f193505050501580156115cf573d6000803e3d6000fd5b505b50505050565b82601660009054906101000a900460ff16801561163e57338260601b60601c1461163d5769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611637573d6000803e3d6000fd5b6000603a525b5b61164985858561302b565b5050505050565b611658612abd565b6001601860006101000a81548160ff02191690831515021790555042601981905550565b6017600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611735576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61173d612abd565b8181600b918261174e9291906147b0565b505050565b61175b612abd565b8060138190555050565b60105481565b60006117768261304b565b9050919050565b611785612abd565b80601a8190555050565b60135481565b60145481565b6117a3612abd565b60011515601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d90614bfb565b60405180910390fd5b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60125481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118fe576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611957612abd565b6119616000613117565b565b6017600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611a1c576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a24612abd565b611a2e8282612e70565b5050565b60011515601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc906149e3565b60405180910390fd5b60011515601860009054906101000a900460ff16151514611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1290614a4f565b60405180910390fd5b601a54601954611b2b9190614a6f565b421115611b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6490614aef565b60405180910390fd5b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166370a08231886040518263ffffffff1660e01b8152600401611bf49190613d95565b602060405180830381865afa158015611c11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c359190614c30565b8273ffffffffffffffffffffffffffffffffffffffff166370a08231896040518263ffffffff1660e01b8152600401611c6e9190613d95565b602060405180830381865afa158015611c8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611caf9190614c30565b611cb99190614a6f565b601d60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3090614ccf565b60405180910390fd5b60008787604051602001611d4e929190614d58565b604051602081830303815290604052805190602001209050611db4858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c54836131dd565b611df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dea90614dd0565b60405180910390fd5b600060145488611e0391906148af565b905080341015611e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3f90614b5b565b60405180910390fd5b611e528989612e70565b87601d60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ea19190614a6f565b9250508190555086601b60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080341115611f5a573373ffffffffffffffffffffffffffffffffffffffff166108fc8234611f2d9190614b7b565b9081150290604051600060405180830381858888f19350505050158015611f58573d6000803e3d6000fd5b505b505050505050505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611f93612abd565b80600c8190555050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054612002906145c8565b80601f016020809104026020016040519081016040528092919081815260200182805461202e906145c8565b801561207b5780601f106120505761010080835404028352916020019161207b565b820191906000526020600020905b81548152906001019060200180831161205e57829003601f168201915b5050505050905090565b81601660009054906101000a900460ff1680156120e45769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa6120de573d6000803e3d6000fd5b6000603a525b6120ee8484613293565b50505050565b600181565b612101612abd565b60001515601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514612194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218b90614e3c565b60405180910390fd5b6001601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b601d6020528060005260406000206000915090505481565b601b6020528060005260406000206000915054906101000a900460ff1681565b6017600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff16156122e0576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122e8612abd565b80601660006101000a81548160ff02191690831515021790555050565b83601660009054906101000a900460ff16801561236c57338260601b60601c1461236b5769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa612365573d6000803e3d6000fd5b6000603a525b5b6123788686868661339e565b505050505050565b60176020528060005260406000206000915054906101000a900460ff1681565b6123a8612abd565b8060148190555050565b6123ba612abd565b6123c48282613411565b5050565b600d80546123d5906145c8565b80601f0160208091040260200160405190810160405280929190818152602001828054612401906145c8565b801561244e5780601f106124235761010080835404028352916020019161244e565b820191906000526020600020905b81548152906001019060200180831161243157829003601f168201915b505050505081565b60158054612463906145c8565b80601f016020809104026020016040519081016040528092919081815260200182805461248f906145c8565b80156124dc5780601f106124b1576101008083540402835291602001916124dc565b820191906000526020600020905b8154815290600101906020018083116124bf57829003601f168201915b505050505081565b60606124ef8261291a565b61252e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252590614ece565b60405180910390fd5b60006125386135a6565b905060008151116125585760405180602001604052806000815250612586565b8061256284613638565b600d60405160200161257693929190614fad565b6040516020818303038152906040525b915050919050565b601e5481565b61259c612abd565b80600d90816125ab9190614fde565b5050565b60006125ba82613706565b9050919050565b6017600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff161561267a576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612682612abd565b600161268c61375d565b106126c3576040517f1f0f14ca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126ce816001612e70565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61276d612abd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036127dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d390615122565b60405180910390fd5b6127e581613117565b50565b601860009054906101000a900460ff1681565b601660009054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061286957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806128995750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612913575061291282613770565b5b9050919050565b600081612925612b3b565b11158015612934575060005482105b8015612972575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006129848261176b565b90508073ffffffffffffffffffffffffffffffffffffffff166129a56137da565b73ffffffffffffffffffffffffffffffffffffffff1614612a08576129d1816129cc6137da565b6126d1565b612a07576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612ac56137e2565b73ffffffffffffffffffffffffffffffffffffffff16612ae3611fc9565b73ffffffffffffffffffffffffffffffffffffffff1614612b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b309061518e565b60405180910390fd5b565b60006001905090565b6000612b4f8261304b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612bb6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080612bc2846137ea565b91509150612bd88187612bd36137da565b613811565b612c2457612bed86612be86137da565b6126d1565b612c23576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612c8a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c978686866001613855565b8015612ca257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612d7085612d4c88888761385b565b7c020000000000000000000000000000000000000000000000000000000017613883565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612df65760006001850190506000600460008381526020019081526020016000205403612df4576000548114612df3578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e5e86868660016138ae565b505050505050565b6000612710905090565b60008054905060008203612eb0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ebd6000848385613855565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612f3483612f25600086600061385b565b612f2e856138b4565b17613883565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612fd557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612f9a565b5060008203613010576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061302660008483856138ae565b505050565b61304683838360405180602001604052806000815250612305565b505050565b6000808290508061305a612b3b565b116130e0576000548110156130df5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036130dd575b600081036130d35760046000836001900393508381526020019081526020016000205490506130a9565b8092505050613112565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008082905060005b8551811015613285576000868281518110613204576132036151ae565b5b602002602001015190508083116132455782816040516020016132289291906151fe565b604051602081830303815290604052805190602001209250613271565b80836040516020016132589291906151fe565b6040516020818303038152906040528051906020012092505b50808061327d9061522a565b9150506131e6565b508381149150509392505050565b80600760006132a06137da565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661334d6137da565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516133929190613c24565b60405180910390a35050565b6133a9848484610fd9565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461340b576133d4848484846138c4565b61340a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b613419612e66565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115613477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346e906152e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036134e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134dd90615350565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6060600b80546135b5906145c8565b80601f01602080910402602001604051908101604052809291908181526020018280546135e1906145c8565b801561362e5780601f106136035761010080835404028352916020019161362e565b820191906000526020600020905b81548152906001019060200180831161361157829003601f168201915b5050505050905090565b60606000600161364784613a14565b01905060008167ffffffffffffffff8111156136665761366561423d565b5b6040519080825280601f01601f1916602001820160405280156136985781602001600182028036833780820191505090505b509050600082602001820190505b6001156136fb578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816136ef576136ee6148f1565b5b049450600085036136a6575b819350505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000613767612b3b565b60005403905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8613872868684613b67565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026138ea6137da565b8786866040518563ffffffff1660e01b815260040161390c94939291906153c5565b6020604051808303816000875af192505050801561394857506040513d601f19601f820116820180604052508101906139459190615426565b60015b6139c1573d8060008114613978576040519150601f19603f3d011682016040523d82523d6000602084013e61397d565b606091505b5060008151036139b9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613a72577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381613a6857613a676148f1565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613aaf576d04ee2d6d415b85acef81000000008381613aa557613aa46148f1565b5b0492506020810190505b662386f26fc100008310613ade57662386f26fc100008381613ad457613ad36148f1565b5b0492506010810190505b6305f5e1008310613b07576305f5e1008381613afd57613afc6148f1565b5b0492506008810190505b6127108310613b2c576127108381613b2257613b216148f1565b5b0492506004810190505b60648310613b4f5760648381613b4557613b446148f1565b5b0492506002810190505b600a8310613b5e576001810190505b80915050919050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613bb981613b84565b8114613bc457600080fd5b50565b600081359050613bd681613bb0565b92915050565b600060208284031215613bf257613bf1613b7a565b5b6000613c0084828501613bc7565b91505092915050565b60008115159050919050565b613c1e81613c09565b82525050565b6000602082019050613c396000830184613c15565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c79578082015181840152602081019050613c5e565b60008484015250505050565b6000601f19601f8301169050919050565b6000613ca182613c3f565b613cab8185613c4a565b9350613cbb818560208601613c5b565b613cc481613c85565b840191505092915050565b60006020820190508181036000830152613ce98184613c96565b905092915050565b6000819050919050565b613d0481613cf1565b8114613d0f57600080fd5b50565b600081359050613d2181613cfb565b92915050565b600060208284031215613d3d57613d3c613b7a565b5b6000613d4b84828501613d12565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d7f82613d54565b9050919050565b613d8f81613d74565b82525050565b6000602082019050613daa6000830184613d86565b92915050565b613db981613d74565b8114613dc457600080fd5b50565b600081359050613dd681613db0565b92915050565b60008060408385031215613df357613df2613b7a565b5b6000613e0185828601613dc7565b9250506020613e1285828601613d12565b9150509250929050565b613e2581613cf1565b82525050565b6000602082019050613e406000830184613e1c565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613e6b57613e6a613e46565b5b8235905067ffffffffffffffff811115613e8857613e87613e4b565b5b602083019150836001820283011115613ea457613ea3613e50565b5b9250929050565b60008060208385031215613ec257613ec1613b7a565b5b600083013567ffffffffffffffff811115613ee057613edf613b7f565b5b613eec85828601613e55565b92509250509250929050565b600080600060608486031215613f1157613f10613b7a565b5b6000613f1f86828701613dc7565b9350506020613f3086828701613dc7565b9250506040613f4186828701613d12565b9150509250925092565b60008060408385031215613f6257613f61613b7a565b5b6000613f7085828601613d12565b9250506020613f8185828601613d12565b9150509250929050565b6000604082019050613fa06000830185613d86565b613fad6020830184613e1c565b9392505050565b6000819050919050565b613fc781613fb4565b82525050565b6000602082019050613fe26000830184613fbe565b92915050565b600060208284031215613ffe57613ffd613b7a565b5b600061400c84828501613dc7565b91505092915050565b61401e81613c09565b811461402957600080fd5b50565b60008135905061403b81614015565b92915050565b60008060006060848603121561405a57614059613b7a565b5b600061406886828701613dc7565b935050602061407986828701613d12565b925050604061408a8682870161402c565b9150509250925092565b60008083601f8401126140aa576140a9613e46565b5b8235905067ffffffffffffffff8111156140c7576140c6613e4b565b5b6020830191508360208202830111156140e3576140e2613e50565b5b9250929050565b60008060008060006080868803121561410657614105613b7a565b5b600061411488828901613dc7565b955050602061412588828901613d12565b94505060406141368882890161402c565b935050606086013567ffffffffffffffff81111561415757614156613b7f565b5b61416388828901614094565b92509250509295509295909350565b61417b81613fb4565b811461418657600080fd5b50565b60008135905061419881614172565b92915050565b6000602082840312156141b4576141b3613b7a565b5b60006141c284828501614189565b91505092915050565b600080604083850312156141e2576141e1613b7a565b5b60006141f085828601613dc7565b92505060206142018582860161402c565b9150509250929050565b60006020828403121561422157614220613b7a565b5b600061422f8482850161402c565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61427582613c85565b810181811067ffffffffffffffff821117156142945761429361423d565b5b80604052505050565b60006142a7613b70565b90506142b3828261426c565b919050565b600067ffffffffffffffff8211156142d3576142d261423d565b5b6142dc82613c85565b9050602081019050919050565b82818337600083830152505050565b600061430b614306846142b8565b61429d565b90508281526020810184848401111561432757614326614238565b5b6143328482856142e9565b509392505050565b600082601f83011261434f5761434e613e46565b5b813561435f8482602086016142f8565b91505092915050565b6000806000806080858703121561438257614381613b7a565b5b600061439087828801613dc7565b94505060206143a187828801613dc7565b93505060406143b287828801613d12565b925050606085013567ffffffffffffffff8111156143d3576143d2613b7f565b5b6143df8782880161433a565b91505092959194509250565b60006bffffffffffffffffffffffff82169050919050565b61440c816143eb565b811461441757600080fd5b50565b60008135905061442981614403565b92915050565b6000806040838503121561444657614445613b7a565b5b600061445485828601613dc7565b92505060206144658582860161441a565b9150509250929050565b600067ffffffffffffffff82111561448a5761448961423d565b5b61449382613c85565b9050602081019050919050565b60006144b36144ae8461446f565b61429d565b9050828152602081018484840111156144cf576144ce614238565b5b6144da8482856142e9565b509392505050565b600082601f8301126144f7576144f6613e46565b5b81356145078482602086016144a0565b91505092915050565b60006020828403121561452657614525613b7a565b5b600082013567ffffffffffffffff81111561454457614543613b7f565b5b614550848285016144e2565b91505092915050565b600080604083850312156145705761456f613b7a565b5b600061457e85828601613dc7565b925050602061458f85828601613dc7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806145e057607f821691505b6020821081036145f3576145f2614599565b5b50919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026146667fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614629565b6146708683614629565b95508019841693508086168417925050509392505050565b6000819050919050565b60006146ad6146a86146a384613cf1565b614688565b613cf1565b9050919050565b6000819050919050565b6146c783614692565b6146db6146d3826146b4565b848454614636565b825550505050565b600090565b6146f06146e3565b6146fb8184846146be565b505050565b5b8181101561471f576147146000826146e8565b600181019050614701565b5050565b601f8211156147645761473581614604565b61473e84614619565b8101602085101561474d578190505b61476161475985614619565b830182614700565b50505b505050565b600082821c905092915050565b600061478760001984600802614769565b1980831691505092915050565b60006147a08383614776565b9150826002028217905092915050565b6147ba83836145f9565b67ffffffffffffffff8111156147d3576147d261423d565b5b6147dd82546145c8565b6147e8828285614723565b6000601f8311600181146148175760008415614805578287013590505b61480f8582614794565b865550614877565b601f19841661482586614604565b60005b8281101561484d57848901358255600182019150602085019450602081019050614828565b8683101561486a5784890135614866601f891682614776565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006148ba82613cf1565b91506148c583613cf1565b92508282026148d381613cf1565b915082820484148315176148ea576148e9614880565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061492b82613cf1565b915061493683613cf1565b925082614946576149456148f1565b5b828204905092915050565b600081905092915050565b50565b600061496c600083614951565b91506149778261495c565b600082019050919050565b600061498d8261495f565b9150819050919050565b7f596f75277265206e6f742061206d696e74657200000000000000000000000000600082015250565b60006149cd601383613c4a565b91506149d882614997565b602082019050919050565b600060208201905081810360008301526149fc816149c0565b9050919050565b7f4d696e74696e67206973206e6f7420796574206f70656e2e0000000000000000600082015250565b6000614a39601883613c4a565b9150614a4482614a03565b602082019050919050565b60006020820190508181036000830152614a6881614a2c565b9050919050565b6000614a7a82613cf1565b9150614a8583613cf1565b9250828201905080821115614a9d57614a9c614880565b5b92915050565b7f4d696e74696e672074696d65206973206f766572206e6f770000000000000000600082015250565b6000614ad9601883613c4a565b9150614ae482614aa3565b602082019050919050565b60006020820190508181036000830152614b0881614acc565b9050919050565b7f45746865722073656e74206973206e6f7420636f72726563742e000000000000600082015250565b6000614b45601a83613c4a565b9150614b5082614b0f565b602082019050919050565b60006020820190508181036000830152614b7481614b38565b9050919050565b6000614b8682613cf1565b9150614b9183613cf1565b9250828203905081811115614ba957614ba8614880565b5b92915050565b7f6d696e74657220646f65736e2774206578697374000000000000000000000000600082015250565b6000614be5601483613c4a565b9150614bf082614baf565b602082019050919050565b60006020820190508181036000830152614c1481614bd8565b9050919050565b600081519050614c2a81613cfb565b92915050565b600060208284031215614c4657614c45613b7a565b5b6000614c5484828501614c1b565b91505092915050565b7f496e76616c69642057686974656c6973742050726f6f66206f7220416c72656160008201527f647920436c61696d656400000000000000000000000000000000000000000000602082015250565b6000614cb9602a83613c4a565b9150614cc482614c5d565b604082019050919050565b60006020820190508181036000830152614ce881614cac565b9050919050565b60008160601b9050919050565b6000614d0782614cef565b9050919050565b6000614d1982614cfc565b9050919050565b614d31614d2c82613d74565b614d0e565b82525050565b6000819050919050565b614d52614d4d82613cf1565b614d37565b82525050565b6000614d648285614d20565b601482019150614d748284614d41565b6020820191508190509392505050565b7f496e76616c69642057686974656c6973742050726f6f662e0000000000000000600082015250565b6000614dba601883613c4a565b9150614dc582614d84565b602082019050919050565b60006020820190508181036000830152614de981614dad565b9050919050565b7f616c72656164792061206d696e74657200000000000000000000000000000000600082015250565b6000614e26601083613c4a565b9150614e3182614df0565b602082019050919050565b60006020820190508181036000830152614e5581614e19565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614eb8602f83613c4a565b9150614ec382614e5c565b604082019050919050565b60006020820190508181036000830152614ee781614eab565b9050919050565b600081905092915050565b6000614f0482613c3f565b614f0e8185614eee565b9350614f1e818560208601613c5b565b80840191505092915050565b60008154614f37816145c8565b614f418186614eee565b94506001821660008114614f5c5760018114614f7157614fa4565b60ff1983168652811515820286019350614fa4565b614f7a85614604565b60005b83811015614f9c57815481890152600182019150602081019050614f7d565b838801955050505b50505092915050565b6000614fb98286614ef9565b9150614fc58285614ef9565b9150614fd18284614f2a565b9150819050949350505050565b614fe782613c3f565b67ffffffffffffffff81111561500057614fff61423d565b5b61500a82546145c8565b615015828285614723565b600060209050601f8311600181146150485760008415615036578287015190505b6150408582614794565b8655506150a8565b601f19841661505686614604565b60005b8281101561507e57848901518255600182019150602085019450602081019050615059565b8683101561509b5784890151615097601f891682614776565b8355505b6001600288020188555050505b505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061510c602683613c4a565b9150615117826150b0565b604082019050919050565b6000602082019050818103600083015261513b816150ff565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615178602083613c4a565b915061518382615142565b602082019050919050565b600060208201905081810360008301526151a78161516b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6151f86151f382613fb4565b6151dd565b82525050565b600061520a82856151e7565b60208201915061521a82846151e7565b6020820191508190509392505050565b600061523582613cf1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361526757615266614880565b5b600182019050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006152ce602a83613c4a565b91506152d982615272565b604082019050919050565b600060208201905081810360008301526152fd816152c1565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600061533a601983613c4a565b915061534582615304565b602082019050919050565b600060208201905081810360008301526153698161532d565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061539782615370565b6153a1818561537b565b93506153b1818560208601613c5b565b6153ba81613c85565b840191505092915050565b60006080820190506153da6000830187613d86565b6153e76020830186613d86565b6153f46040830185613e1c565b8181036060830152615406818461538c565b905095945050505050565b60008151905061542081613bb0565b92915050565b60006020828403121561543c5761543b613b7a565b5b600061544a84828501615411565b9150509291505056fea264697066735822122077c6a50064a88ca29249cfbf339958054d28ca14a7f2136469599aa422322a4f64736f6c63430008120033000000000000000000000000391ee4f1f3b0d85e3499b3b5b20be2637f52033300000000000000000000000000000000000000000000000000000000000003e8

Deployed Bytecode

0x60806040526004361061036b5760003560e01c806378bfbdbb116101c6578063bbadfe76116100f7578063da3ef23f11610095578063e985e9c51161006f578063e985e9c514610c3f578063f2fde38b14610c7c578063f9020e3314610ca5578063fb796e6c14610cd05761036b565b8063da3ef23f14610bb0578063dc33e68114610bd9578063e75179a414610c165761036b565b8063c6682862116100d1578063c668286214610af2578063c6ab67a314610b1d578063c87b56dd14610b48578063d54ad2a114610b855761036b565b8063bbadfe7614610a63578063beafc89b14610aa0578063c21b471b14610ac95761036b565b8063a22cb46511610164578063b449c24d1161013e578063b449c24d146109a4578063b629f192146109e1578063b7c0b8e814610a1e578063b88d4fde14610a475761036b565b8063a22cb46514610927578063aa592f2514610950578063b366d6131461097b5761036b565b80637ec9e156116101a05780637ec9e1561461087b5780638342083a146108a65780638da5cb5b146108d157806395d89b41146108fc5761036b565b806378bfbdbb1461080b5780637bc02806146108275780637cb64759146108525761036b565b806342842e0e116102a05780636817c76c1161023e5780636e56539b116102185780636e56539b1461076357806370a082311461078e578063715018a6146107cb57806374d0101d146107e25761036b565b80636817c76c146106e4578063685756851461070f57806369e2f0fb1461073a5761036b565b80635d82cf6e1161027a5780635d82cf6e1461062a578063601e5e77146106535780636352211e1461067e5780636368928f146106bb5761036b565b806342842e0e146105ce57806344b28d59146105ea57806355f804b3146106015761036b565b806323b872dd1161030d57806334531828116102e757806334531828146105355780633ccfd60b1461055e5780633dd08c3814610575578063402c3856146105b25761036b565b806323b872dd146104b05780632a55205a146104cc5780632eb4a7ab1461050a5761036b565b8063095ea7b311610349578063095ea7b3146104155780630d5a5a7714610431578063109695231461045c57806318160ddd146104855761036b565b806301ffc9a71461037057806306fdde03146103ad578063081812fc146103d8575b600080fd5b34801561037c57600080fd5b5061039760048036038101906103929190613bdc565b610cfb565b6040516103a49190613c24565b60405180910390f35b3480156103b957600080fd5b506103c2610d1d565b6040516103cf9190613ccf565b60405180910390f35b3480156103e457600080fd5b506103ff60048036038101906103fa9190613d27565b610daf565b60405161040c9190613d95565b60405180910390f35b61042f600480360381019061042a9190613ddc565b610e2e565b005b34801561043d57600080fd5b50610446610e9d565b6040516104539190613e2b565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e9190613eab565b610ea3565b005b34801561049157600080fd5b5061049a610fc2565b6040516104a79190613e2b565b60405180910390f35b6104ca60048036038101906104c59190613ef8565b610fd9565b005b3480156104d857600080fd5b506104f360048036038101906104ee9190613f4b565b611052565b604051610501929190613f8b565b60405180910390f35b34801561051657600080fd5b5061051f61123c565b60405161052c9190613fcd565b60405180910390f35b34801561054157600080fd5b5061055c60048036038101906105579190613bdc565b611242565b005b34801561056a57600080fd5b506105736112b7565b005b34801561058157600080fd5b5061059c60048036038101906105979190613fe8565b611365565b6040516105a99190613c24565b60405180910390f35b6105cc60048036038101906105c79190614041565b611385565b005b6105e860048036038101906105e39190613ef8565b6115d7565b005b3480156105f657600080fd5b506105ff611650565b005b34801561060d57600080fd5b5061062860048036038101906106239190613eab565b61167c565b005b34801561063657600080fd5b50610651600480360381019061064c9190613d27565b611753565b005b34801561065f57600080fd5b50610668611765565b6040516106759190613e2b565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a09190613d27565b61176b565b6040516106b29190613d95565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd9190613d27565b61177d565b005b3480156106f057600080fd5b506106f961178f565b6040516107069190613e2b565b60405180910390f35b34801561071b57600080fd5b50610724611795565b6040516107319190613e2b565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190613fe8565b61179b565b005b34801561076f57600080fd5b50610778611891565b6040516107859190613e2b565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b09190613fe8565b611897565b6040516107c29190613e2b565b60405180910390f35b3480156107d757600080fd5b506107e061194f565b005b3480156107ee57600080fd5b5061080960048036038101906108049190613ddc565b611963565b005b610825600480360381019061082091906140ea565b611a32565b005b34801561083357600080fd5b5061083c611f65565b6040516108499190613d95565b60405180910390f35b34801561085e57600080fd5b506108796004803603810190610874919061419e565b611f8b565b005b34801561088757600080fd5b50610890611f9d565b60405161089d9190613d95565b60405180910390f35b3480156108b257600080fd5b506108bb611fc3565b6040516108c89190613e2b565b60405180910390f35b3480156108dd57600080fd5b506108e6611fc9565b6040516108f39190613d95565b60405180910390f35b34801561090857600080fd5b50610911611ff3565b60405161091e9190613ccf565b60405180910390f35b34801561093357600080fd5b5061094e600480360381019061094991906141cb565b612085565b005b34801561095c57600080fd5b506109656120f4565b6040516109729190613e2b565b60405180910390f35b34801561098757600080fd5b506109a2600480360381019061099d9190613fe8565b6120f9565b005b3480156109b057600080fd5b506109cb60048036038101906109c69190613fe8565b6121ef565b6040516109d89190613e2b565b60405180910390f35b3480156109ed57600080fd5b50610a086004803603810190610a039190613fe8565b612207565b604051610a159190613c24565b60405180910390f35b348015610a2a57600080fd5b50610a456004803603810190610a40919061420b565b612227565b005b610a616004803603810190610a5c9190614368565b612305565b005b348015610a6f57600080fd5b50610a8a6004803603810190610a859190613bdc565b612380565b604051610a979190613c24565b60405180910390f35b348015610aac57600080fd5b50610ac76004803603810190610ac29190613d27565b6123a0565b005b348015610ad557600080fd5b50610af06004803603810190610aeb919061442f565b6123b2565b005b348015610afe57600080fd5b50610b076123c8565b604051610b149190613ccf565b60405180910390f35b348015610b2957600080fd5b50610b32612456565b604051610b3f9190613ccf565b60405180910390f35b348015610b5457600080fd5b50610b6f6004803603810190610b6a9190613d27565b6124e4565b604051610b7c9190613ccf565b60405180910390f35b348015610b9157600080fd5b50610b9a61258e565b604051610ba79190613e2b565b60405180910390f35b348015610bbc57600080fd5b50610bd76004803603810190610bd29190614510565b612594565b005b348015610be557600080fd5b50610c006004803603810190610bfb9190613fe8565b6125af565b604051610c0d9190613e2b565b60405180910390f35b348015610c2257600080fd5b50610c3d6004803603810190610c389190613fe8565b6125c1565b005b348015610c4b57600080fd5b50610c666004803603810190610c619190614559565b6126d1565b604051610c739190613c24565b60405180910390f35b348015610c8857600080fd5b50610ca36004803603810190610c9e9190613fe8565b612765565b005b348015610cb157600080fd5b50610cba6127e8565b604051610cc79190613c24565b60405180910390f35b348015610cdc57600080fd5b50610ce56127fb565b604051610cf29190613c24565b60405180910390f35b6000610d068261280e565b80610d165750610d15826128a0565b5b9050919050565b606060028054610d2c906145c8565b80601f0160208091040260200160405190810160405280929190818152602001828054610d58906145c8565b8015610da55780601f10610d7a57610100808354040283529160200191610da5565b820191906000526020600020905b815481529060010190602001808311610d8857829003601f168201915b5050505050905090565b6000610dba8261291a565b610df0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81601660009054906101000a900460ff168015610e8d5769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610e87573d6000803e3d6000fd5b6000603a525b610e978484612979565b50505050565b601a5481565b6017600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615610f5c576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f64612abd565b600060158054610f73906145c8565b905014610fac576040517f19e24c1100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818160159182610fbd9291906147b0565b505050565b6000610fcc612b3b565b6001546000540303905090565b82601660009054906101000a900460ff16801561104057338260601b60601c1461103f5769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611039573d6000803e3d6000fd5b6000603a525b5b61104b858585612b44565b5050505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16036111e75760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b60006111f1612e66565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff168661121d91906148af565b6112279190614920565b90508160000151819350935050509250929050565b600c5481565b61124a612abd565b600160176000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6112bf612abd565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516112e590614982565b60006040518083038185875af1925050503d8060008114611322576040519150601f19603f3d011682016040523d82523d6000602084013e611327565b606091505b5050905080611362576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b601c6020528060005260406000206000915054906101000a900460ff1681565b60011515601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f906149e3565b60405180910390fd5b60011515601860009054906101000a900460ff1615151461146e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146590614a4f565b60405180910390fd5b601a5460195461147e9190614a6f565b4211156114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b790614aef565b60405180910390fd5b6000601354836114d091906148af565b905080341015611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c90614b5b565b60405180910390fd5b61151f8484612e70565b81601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550803411156115d1573373ffffffffffffffffffffffffffffffffffffffff166108fc82346115a49190614b7b565b9081150290604051600060405180830381858888f193505050501580156115cf573d6000803e3d6000fd5b505b50505050565b82601660009054906101000a900460ff16801561163e57338260601b60601c1461163d5769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611637573d6000803e3d6000fd5b6000603a525b5b61164985858561302b565b5050505050565b611658612abd565b6001601860006101000a81548160ff02191690831515021790555042601981905550565b6017600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611735576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61173d612abd565b8181600b918261174e9291906147b0565b505050565b61175b612abd565b8060138190555050565b60105481565b60006117768261304b565b9050919050565b611785612abd565b80601a8190555050565b60135481565b60145481565b6117a3612abd565b60011515601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611836576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182d90614bfb565b60405180910390fd5b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60125481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118fe576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611957612abd565b6119616000613117565b565b6017600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611a1c576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a24612abd565b611a2e8282612e70565b5050565b60011515601c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abc906149e3565b60405180910390fd5b60011515601860009054906101000a900460ff16151514611b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1290614a4f565b60405180910390fd5b601a54601954611b2b9190614a6f565b421115611b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6490614aef565b60405180910390fd5b6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff166370a08231886040518263ffffffff1660e01b8152600401611bf49190613d95565b602060405180830381865afa158015611c11573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c359190614c30565b8273ffffffffffffffffffffffffffffffffffffffff166370a08231896040518263ffffffff1660e01b8152600401611c6e9190613d95565b602060405180830381865afa158015611c8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611caf9190614c30565b611cb99190614a6f565b601d60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3090614ccf565b60405180910390fd5b60008787604051602001611d4e929190614d58565b604051602081830303815290604052805190602001209050611db4858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c54836131dd565b611df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dea90614dd0565b60405180910390fd5b600060145488611e0391906148af565b905080341015611e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3f90614b5b565b60405180910390fd5b611e528989612e70565b87601d60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ea19190614a6f565b9250508190555086601b60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080341115611f5a573373ffffffffffffffffffffffffffffffffffffffff166108fc8234611f2d9190614b7b565b9081150290604051600060405180830381858888f19350505050158015611f58573d6000803e3d6000fd5b505b505050505050505050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611f93612abd565b80600c8190555050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054612002906145c8565b80601f016020809104026020016040519081016040528092919081815260200182805461202e906145c8565b801561207b5780601f106120505761010080835404028352916020019161207b565b820191906000526020600020905b81548152906001019060200180831161205e57829003601f168201915b5050505050905090565b81601660009054906101000a900460ff1680156120e45769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa6120de573d6000803e3d6000fd5b6000603a525b6120ee8484613293565b50505050565b600181565b612101612abd565b60001515601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514612194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218b90614e3c565b60405180910390fd5b6001601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b601d6020528060005260406000206000915090505481565b601b6020528060005260406000206000915054906101000a900460ff1681565b6017600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff16156122e0576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122e8612abd565b80601660006101000a81548160ff02191690831515021790555050565b83601660009054906101000a900460ff16801561236c57338260601b60601c1461236b5769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa612365573d6000803e3d6000fd5b6000603a525b5b6123788686868661339e565b505050505050565b60176020528060005260406000206000915054906101000a900460ff1681565b6123a8612abd565b8060148190555050565b6123ba612abd565b6123c48282613411565b5050565b600d80546123d5906145c8565b80601f0160208091040260200160405190810160405280929190818152602001828054612401906145c8565b801561244e5780601f106124235761010080835404028352916020019161244e565b820191906000526020600020905b81548152906001019060200180831161243157829003601f168201915b505050505081565b60158054612463906145c8565b80601f016020809104026020016040519081016040528092919081815260200182805461248f906145c8565b80156124dc5780601f106124b1576101008083540402835291602001916124dc565b820191906000526020600020905b8154815290600101906020018083116124bf57829003601f168201915b505050505081565b60606124ef8261291a565b61252e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252590614ece565b60405180910390fd5b60006125386135a6565b905060008151116125585760405180602001604052806000815250612586565b8061256284613638565b600d60405160200161257693929190614fad565b6040516020818303038152906040525b915050919050565b601e5481565b61259c612abd565b80600d90816125ab9190614fde565b5050565b60006125ba82613706565b9050919050565b6017600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff161561267a576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612682612abd565b600161268c61375d565b106126c3576040517f1f0f14ca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126ce816001612e70565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61276d612abd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036127dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d390615122565b60405180910390fd5b6127e581613117565b50565b601860009054906101000a900460ff1681565b601660009054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061286957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806128995750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612913575061291282613770565b5b9050919050565b600081612925612b3b565b11158015612934575060005482105b8015612972575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006129848261176b565b90508073ffffffffffffffffffffffffffffffffffffffff166129a56137da565b73ffffffffffffffffffffffffffffffffffffffff1614612a08576129d1816129cc6137da565b6126d1565b612a07576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612ac56137e2565b73ffffffffffffffffffffffffffffffffffffffff16612ae3611fc9565b73ffffffffffffffffffffffffffffffffffffffff1614612b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b309061518e565b60405180910390fd5b565b60006001905090565b6000612b4f8261304b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612bb6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080612bc2846137ea565b91509150612bd88187612bd36137da565b613811565b612c2457612bed86612be86137da565b6126d1565b612c23576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612c8a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c978686866001613855565b8015612ca257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550612d7085612d4c88888761385b565b7c020000000000000000000000000000000000000000000000000000000017613883565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603612df65760006001850190506000600460008381526020019081526020016000205403612df4576000548114612df3578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e5e86868660016138ae565b505050505050565b6000612710905090565b60008054905060008203612eb0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ebd6000848385613855565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612f3483612f25600086600061385b565b612f2e856138b4565b17613883565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612fd557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612f9a565b5060008203613010576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061302660008483856138ae565b505050565b61304683838360405180602001604052806000815250612305565b505050565b6000808290508061305a612b3b565b116130e0576000548110156130df5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036130dd575b600081036130d35760046000836001900393508381526020019081526020016000205490506130a9565b8092505050613112565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008082905060005b8551811015613285576000868281518110613204576132036151ae565b5b602002602001015190508083116132455782816040516020016132289291906151fe565b604051602081830303815290604052805190602001209250613271565b80836040516020016132589291906151fe565b6040516020818303038152906040528051906020012092505b50808061327d9061522a565b9150506131e6565b508381149150509392505050565b80600760006132a06137da565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661334d6137da565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516133929190613c24565b60405180910390a35050565b6133a9848484610fd9565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461340b576133d4848484846138c4565b61340a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b613419612e66565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115613477576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346e906152e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036134e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134dd90615350565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6060600b80546135b5906145c8565b80601f01602080910402602001604051908101604052809291908181526020018280546135e1906145c8565b801561362e5780601f106136035761010080835404028352916020019161362e565b820191906000526020600020905b81548152906001019060200180831161361157829003601f168201915b5050505050905090565b60606000600161364784613a14565b01905060008167ffffffffffffffff8111156136665761366561423d565b5b6040519080825280601f01601f1916602001820160405280156136985781602001600182028036833780820191505090505b509050600082602001820190505b6001156136fb578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816136ef576136ee6148f1565b5b049450600085036136a6575b819350505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000613767612b3b565b60005403905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8613872868684613b67565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026138ea6137da565b8786866040518563ffffffff1660e01b815260040161390c94939291906153c5565b6020604051808303816000875af192505050801561394857506040513d601f19601f820116820180604052508101906139459190615426565b60015b6139c1573d8060008114613978576040519150601f19603f3d011682016040523d82523d6000602084013e61397d565b606091505b5060008151036139b9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613a72577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381613a6857613a676148f1565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613aaf576d04ee2d6d415b85acef81000000008381613aa557613aa46148f1565b5b0492506020810190505b662386f26fc100008310613ade57662386f26fc100008381613ad457613ad36148f1565b5b0492506010810190505b6305f5e1008310613b07576305f5e1008381613afd57613afc6148f1565b5b0492506008810190505b6127108310613b2c576127108381613b2257613b216148f1565b5b0492506004810190505b60648310613b4f5760648381613b4557613b446148f1565b5b0492506002810190505b600a8310613b5e576001810190505b80915050919050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613bb981613b84565b8114613bc457600080fd5b50565b600081359050613bd681613bb0565b92915050565b600060208284031215613bf257613bf1613b7a565b5b6000613c0084828501613bc7565b91505092915050565b60008115159050919050565b613c1e81613c09565b82525050565b6000602082019050613c396000830184613c15565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c79578082015181840152602081019050613c5e565b60008484015250505050565b6000601f19601f8301169050919050565b6000613ca182613c3f565b613cab8185613c4a565b9350613cbb818560208601613c5b565b613cc481613c85565b840191505092915050565b60006020820190508181036000830152613ce98184613c96565b905092915050565b6000819050919050565b613d0481613cf1565b8114613d0f57600080fd5b50565b600081359050613d2181613cfb565b92915050565b600060208284031215613d3d57613d3c613b7a565b5b6000613d4b84828501613d12565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d7f82613d54565b9050919050565b613d8f81613d74565b82525050565b6000602082019050613daa6000830184613d86565b92915050565b613db981613d74565b8114613dc457600080fd5b50565b600081359050613dd681613db0565b92915050565b60008060408385031215613df357613df2613b7a565b5b6000613e0185828601613dc7565b9250506020613e1285828601613d12565b9150509250929050565b613e2581613cf1565b82525050565b6000602082019050613e406000830184613e1c565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613e6b57613e6a613e46565b5b8235905067ffffffffffffffff811115613e8857613e87613e4b565b5b602083019150836001820283011115613ea457613ea3613e50565b5b9250929050565b60008060208385031215613ec257613ec1613b7a565b5b600083013567ffffffffffffffff811115613ee057613edf613b7f565b5b613eec85828601613e55565b92509250509250929050565b600080600060608486031215613f1157613f10613b7a565b5b6000613f1f86828701613dc7565b9350506020613f3086828701613dc7565b9250506040613f4186828701613d12565b9150509250925092565b60008060408385031215613f6257613f61613b7a565b5b6000613f7085828601613d12565b9250506020613f8185828601613d12565b9150509250929050565b6000604082019050613fa06000830185613d86565b613fad6020830184613e1c565b9392505050565b6000819050919050565b613fc781613fb4565b82525050565b6000602082019050613fe26000830184613fbe565b92915050565b600060208284031215613ffe57613ffd613b7a565b5b600061400c84828501613dc7565b91505092915050565b61401e81613c09565b811461402957600080fd5b50565b60008135905061403b81614015565b92915050565b60008060006060848603121561405a57614059613b7a565b5b600061406886828701613dc7565b935050602061407986828701613d12565b925050604061408a8682870161402c565b9150509250925092565b60008083601f8401126140aa576140a9613e46565b5b8235905067ffffffffffffffff8111156140c7576140c6613e4b565b5b6020830191508360208202830111156140e3576140e2613e50565b5b9250929050565b60008060008060006080868803121561410657614105613b7a565b5b600061411488828901613dc7565b955050602061412588828901613d12565b94505060406141368882890161402c565b935050606086013567ffffffffffffffff81111561415757614156613b7f565b5b61416388828901614094565b92509250509295509295909350565b61417b81613fb4565b811461418657600080fd5b50565b60008135905061419881614172565b92915050565b6000602082840312156141b4576141b3613b7a565b5b60006141c284828501614189565b91505092915050565b600080604083850312156141e2576141e1613b7a565b5b60006141f085828601613dc7565b92505060206142018582860161402c565b9150509250929050565b60006020828403121561422157614220613b7a565b5b600061422f8482850161402c565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61427582613c85565b810181811067ffffffffffffffff821117156142945761429361423d565b5b80604052505050565b60006142a7613b70565b90506142b3828261426c565b919050565b600067ffffffffffffffff8211156142d3576142d261423d565b5b6142dc82613c85565b9050602081019050919050565b82818337600083830152505050565b600061430b614306846142b8565b61429d565b90508281526020810184848401111561432757614326614238565b5b6143328482856142e9565b509392505050565b600082601f83011261434f5761434e613e46565b5b813561435f8482602086016142f8565b91505092915050565b6000806000806080858703121561438257614381613b7a565b5b600061439087828801613dc7565b94505060206143a187828801613dc7565b93505060406143b287828801613d12565b925050606085013567ffffffffffffffff8111156143d3576143d2613b7f565b5b6143df8782880161433a565b91505092959194509250565b60006bffffffffffffffffffffffff82169050919050565b61440c816143eb565b811461441757600080fd5b50565b60008135905061442981614403565b92915050565b6000806040838503121561444657614445613b7a565b5b600061445485828601613dc7565b92505060206144658582860161441a565b9150509250929050565b600067ffffffffffffffff82111561448a5761448961423d565b5b61449382613c85565b9050602081019050919050565b60006144b36144ae8461446f565b61429d565b9050828152602081018484840111156144cf576144ce614238565b5b6144da8482856142e9565b509392505050565b600082601f8301126144f7576144f6613e46565b5b81356145078482602086016144a0565b91505092915050565b60006020828403121561452657614525613b7a565b5b600082013567ffffffffffffffff81111561454457614543613b7f565b5b614550848285016144e2565b91505092915050565b600080604083850312156145705761456f613b7a565b5b600061457e85828601613dc7565b925050602061458f85828601613dc7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806145e057607f821691505b6020821081036145f3576145f2614599565b5b50919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026146667fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614629565b6146708683614629565b95508019841693508086168417925050509392505050565b6000819050919050565b60006146ad6146a86146a384613cf1565b614688565b613cf1565b9050919050565b6000819050919050565b6146c783614692565b6146db6146d3826146b4565b848454614636565b825550505050565b600090565b6146f06146e3565b6146fb8184846146be565b505050565b5b8181101561471f576147146000826146e8565b600181019050614701565b5050565b601f8211156147645761473581614604565b61473e84614619565b8101602085101561474d578190505b61476161475985614619565b830182614700565b50505b505050565b600082821c905092915050565b600061478760001984600802614769565b1980831691505092915050565b60006147a08383614776565b9150826002028217905092915050565b6147ba83836145f9565b67ffffffffffffffff8111156147d3576147d261423d565b5b6147dd82546145c8565b6147e8828285614723565b6000601f8311600181146148175760008415614805578287013590505b61480f8582614794565b865550614877565b601f19841661482586614604565b60005b8281101561484d57848901358255600182019150602085019450602081019050614828565b8683101561486a5784890135614866601f891682614776565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006148ba82613cf1565b91506148c583613cf1565b92508282026148d381613cf1565b915082820484148315176148ea576148e9614880565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061492b82613cf1565b915061493683613cf1565b925082614946576149456148f1565b5b828204905092915050565b600081905092915050565b50565b600061496c600083614951565b91506149778261495c565b600082019050919050565b600061498d8261495f565b9150819050919050565b7f596f75277265206e6f742061206d696e74657200000000000000000000000000600082015250565b60006149cd601383613c4a565b91506149d882614997565b602082019050919050565b600060208201905081810360008301526149fc816149c0565b9050919050565b7f4d696e74696e67206973206e6f7420796574206f70656e2e0000000000000000600082015250565b6000614a39601883613c4a565b9150614a4482614a03565b602082019050919050565b60006020820190508181036000830152614a6881614a2c565b9050919050565b6000614a7a82613cf1565b9150614a8583613cf1565b9250828201905080821115614a9d57614a9c614880565b5b92915050565b7f4d696e74696e672074696d65206973206f766572206e6f770000000000000000600082015250565b6000614ad9601883613c4a565b9150614ae482614aa3565b602082019050919050565b60006020820190508181036000830152614b0881614acc565b9050919050565b7f45746865722073656e74206973206e6f7420636f72726563742e000000000000600082015250565b6000614b45601a83613c4a565b9150614b5082614b0f565b602082019050919050565b60006020820190508181036000830152614b7481614b38565b9050919050565b6000614b8682613cf1565b9150614b9183613cf1565b9250828203905081811115614ba957614ba8614880565b5b92915050565b7f6d696e74657220646f65736e2774206578697374000000000000000000000000600082015250565b6000614be5601483613c4a565b9150614bf082614baf565b602082019050919050565b60006020820190508181036000830152614c1481614bd8565b9050919050565b600081519050614c2a81613cfb565b92915050565b600060208284031215614c4657614c45613b7a565b5b6000614c5484828501614c1b565b91505092915050565b7f496e76616c69642057686974656c6973742050726f6f66206f7220416c72656160008201527f647920436c61696d656400000000000000000000000000000000000000000000602082015250565b6000614cb9602a83613c4a565b9150614cc482614c5d565b604082019050919050565b60006020820190508181036000830152614ce881614cac565b9050919050565b60008160601b9050919050565b6000614d0782614cef565b9050919050565b6000614d1982614cfc565b9050919050565b614d31614d2c82613d74565b614d0e565b82525050565b6000819050919050565b614d52614d4d82613cf1565b614d37565b82525050565b6000614d648285614d20565b601482019150614d748284614d41565b6020820191508190509392505050565b7f496e76616c69642057686974656c6973742050726f6f662e0000000000000000600082015250565b6000614dba601883613c4a565b9150614dc582614d84565b602082019050919050565b60006020820190508181036000830152614de981614dad565b9050919050565b7f616c72656164792061206d696e74657200000000000000000000000000000000600082015250565b6000614e26601083613c4a565b9150614e3182614df0565b602082019050919050565b60006020820190508181036000830152614e5581614e19565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614eb8602f83613c4a565b9150614ec382614e5c565b604082019050919050565b60006020820190508181036000830152614ee781614eab565b9050919050565b600081905092915050565b6000614f0482613c3f565b614f0e8185614eee565b9350614f1e818560208601613c5b565b80840191505092915050565b60008154614f37816145c8565b614f418186614eee565b94506001821660008114614f5c5760018114614f7157614fa4565b60ff1983168652811515820286019350614fa4565b614f7a85614604565b60005b83811015614f9c57815481890152600182019150602081019050614f7d565b838801955050505b50505092915050565b6000614fb98286614ef9565b9150614fc58285614ef9565b9150614fd18284614f2a565b9150819050949350505050565b614fe782613c3f565b67ffffffffffffffff81111561500057614fff61423d565b5b61500a82546145c8565b615015828285614723565b600060209050601f8311600181146150485760008415615036578287015190505b6150408582614794565b8655506150a8565b601f19841661505686614604565b60005b8281101561507e57848901518255600182019150602085019450602081019050615059565b8683101561509b5784890151615097601f891682614776565b8355505b6001600288020188555050505b505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061510c602683613c4a565b9150615117826150b0565b604082019050919050565b6000602082019050818103600083015261513b816150ff565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615178602083613c4a565b915061518382615142565b602082019050919050565b600060208201905081810360008301526151a78161516b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6151f86151f382613fb4565b6151dd565b82525050565b600061520a82856151e7565b60208201915061521a82846151e7565b6020820191508190509392505050565b600061523582613cf1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361526757615266614880565b5b600182019050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006152ce602a83613c4a565b91506152d982615272565b604082019050919050565b600060208201905081810360008301526152fd816152c1565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600061533a601983613c4a565b915061534582615304565b602082019050919050565b600060208201905081810360008301526153698161532d565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061539782615370565b6153a1818561537b565b93506153b1818560208601613c5b565b6153ba81613c85565b840191505092915050565b60006080820190506153da6000830187613d86565b6153e76020830186613d86565b6153f46040830185613e1c565b8181036060830152615406818461538c565b905095945050505050565b60008151905061542081613bb0565b92915050565b60006020828403121561543c5761543b613b7a565b5b600061544a84828501615411565b9150509291505056fea264697066735822122077c6a50064a88ca29249cfbf339958054d28ca14a7f2136469599aa422322a4f64736f6c63430008120033

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

000000000000000000000000391ee4f1f3b0d85e3499b3b5b20be2637f52033300000000000000000000000000000000000000000000000000000000000003e8

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

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000391ee4f1f3b0d85e3499b3b5b20be2637f520333
Arg [1] : 00000000000000000000000000000000000000000000000000000000000003e8


Deployed Bytecode Sourcemap

99578:11086:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101774:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58072:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65010:268;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;109083:232;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;100342:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;105235:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53645:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;109475:272;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32527:438;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;99733:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;103537:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;108322:207;;;;;;;;;;;;;:::i;:::-;;100431:38;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;107293:584;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;109907:280;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;108117:123;;;;;;;;;;;;;:::i;:::-;;104943:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;107885:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;99928:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59562:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;103641:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;100047:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100093:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;103917:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;100005:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54829:283;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37755:103;;;;;;;;;;;;;:::i;:::-;;105937:154;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;106099:1186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;99809:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;105512:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;99847:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99966:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37114:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58248:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;108689:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;99885:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;103742:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;100476:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100388:36;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;104280:160;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;110347:314;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;100221:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;107999:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;104663:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;99765:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100143:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102430:649;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100525:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102271:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;103244:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;105761:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66041:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38013:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;100273:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100178:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;101774:274;101905:4;101947:38;101973:11;101947:25;:38::i;:::-;:93;;;;102002:38;102028:11;102002:25;:38::i;:::-;101947:93;101927:113;;101774:274;;;:::o;58072:100::-;58126:13;58159:5;58152:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58072:100;:::o;65010:268::-;65131:7;65161:16;65169:7;65161;:16::i;:::-;65156:64;;65186:34;;;;;;;;;;;;;;65156:64;65240:15;:24;65256:7;65240:24;;;;;;;;;;;:30;;;;;;;;;;;;65233:37;;65010:268;;;:::o;109083:232::-;109223:8;109233:24;;;;;;;;;;;97944:7;97941:1138;;;98073:22;98067:4;98060:36;98174:9;98168:4;98161:23;98326:8;98322:2;98318:17;98314:2;98310:26;98304:4;98297:40;98686:4;98655;98624;98593;98541:25;98509:5;98472:241;98440:503;;98855:16;98849:4;98843;98828:44;98907:16;98901:4;98894:30;98440:503;99062:1;99056:4;99049:15;97941:1138;109275:32:::1;109289:8;109299:7;109275:13;:32::i;:::-;109083:232:::0;;;;:::o;100342:39::-;;;;:::o;105235:269::-;101533:14;:23;101548:7;;;;101533:23;;;;;;;;;;;;;;;;;;;;;;;;;;;101529:52;;;101565:16;;;;;;;;;;;;;;101529:52;37000:13:::1;:11;:13::i;:::-;105402:1:::2;105376:14;105370:28;;;;;:::i;:::-;;;:33;105366:85;;105425:26;;;;;;;;;;;;;;105366:85;105481:15;;105464:14;:32;;;;;;;:::i;:::-;;105235:269:::0;;:::o;53645:323::-;53706:7;53934:15;:13;:15::i;:::-;53919:12;;53903:13;;:28;:46;53896:53;;53645:323;:::o;109475:272::-;109654:4;109660:24;;;;;;;;;;;95459:7;95456:1892;;;95672:8;95664:4;95660:2;95656:13;95652:2;95648:22;95645:36;95635:1698;;95987:22;95981:4;95974:36;96096:9;96090:4;96083:23;96189:8;96183:4;96176:22;96583:4;96548;96513;96478;96422:25;96386:5;96345:269;96309:555;;96768:16;96762:4;96756;96741:44;96824:16;96818:4;96811:30;96309:555;97312:1;97306:4;97299:15;95635:1698;95456:1892;109702:37:::1;109721:4;109727:2;109731:7;109702:18;:37::i;:::-;109475:272:::0;;;;;:::o;32527:438::-;32622:7;32631;32651:26;32680:17;:26;32698:7;32680:26;;;;;;;;;;;32651:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32751:1;32723:30;;:7;:16;;;:30;;;32719:92;;32780:19;32770:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32719:92;32823:21;32887:17;:15;:17::i;:::-;32847:57;;32860:7;:23;;;32848:35;;:9;:35;;;;:::i;:::-;32847:57;;;;:::i;:::-;32823:81;;32925:7;:16;;;32943:13;32917:40;;;;;;32527:438;;;;;:::o;99733:25::-;;;;:::o;103537:96::-;37000:13;:11;:13::i;:::-;103621:4:::1;103600:14;:18;103615:2;103600:18;;;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;103537:96:::0;:::o;108322:207::-;37000:13;:11;:13::i;:::-;108373:12:::1;108399:10;108391:24;;108437:21;108391:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108372:101;;;108489:7;108484:37;;108505:16;;;;;;;;;;;;;;108484:37;108361:168;108322:207::o:0;100431:38::-;;;;;;;;;;;;;;;;;;;;;;:::o;107293:584::-;101672:4;101650:26;;:6;:18;101657:10;101650:18;;;;;;;;;;;;;;;;;;;;;;;;;:26;;;101642:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;107450:4:::1;107436:18;;:10;;;;;;;;;;;:18;;;107428:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;107534:11;;107522:9;;:23;;;;:::i;:::-;107502:15;:44;;107494:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;107585:17;107616:9;;107605:8;:20;;;;:::i;:::-;107585:40;;107657:9;107644;:22;;107636:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;107708:19;107714:2;107718:8;107708:5;:19::i;:::-;107749:5;107738:4;:8;107743:2;107738:8;;;;;;;;;;;;;;;;:16;;;;;;;;;;;;;;;;;;107781:9;107769;:21;107765:105;;;107815:10;107807:28;;:51;107848:9;107836;:21;;;;:::i;:::-;107807:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;107765:105;107417:460;107293:584:::0;;;:::o;109907:280::-;110090:4;110096:24;;;;;;;;;;;95459:7;95456:1892;;;95672:8;95664:4;95660:2;95656:13;95652:2;95648:22;95645:36;95635:1698;;95987:22;95981:4;95974:36;96096:9;96090:4;96083:23;96189:8;96183:4;96176:22;96583:4;96548;96513;96478;96422:25;96386:5;96345:269;96309:555;;96768:16;96762:4;96756;96741:44;96824:16;96818:4;96811:30;96309:555;97312:1;97306:4;97299:15;95635:1698;95456:1892;110138:41:::1;110161:4;110167:2;110171:7;110138:22;:41::i;:::-;109907:280:::0;;;;;:::o;108117:123::-;37000:13;:11;:13::i;:::-;108186:4:::1;108173:10;;:17;;;;;;;;;;;;;;;;;;108217:15;108205:9;:27;;;;108117:123::o:0;104943:155::-;101533:14;:23;101548:7;;;;101533:23;;;;;;;;;;;;;;;;;;;;;;;;;;;101529:52;;;101565:16;;;;;;;;;;;;;;101529:52;37000:13:::1;:11;:13::i;:::-;105079:11:::2;;105063:13;:27;;;;;;;:::i;:::-;;104943:155:::0;;:::o;107885:106::-;37000:13;:11;:13::i;:::-;107974:9:::1;107962;:21;;;;107885:106:::0;:::o;99928:31::-;;;;:::o;59562:202::-;59679:7;59727:27;59746:7;59727:18;:27::i;:::-;59704:52;;59562:202;;;:::o;103641:93::-;37000:13;:11;:13::i;:::-;103722:4:::1;103708:11;:18;;;;103641:93:::0;:::o;100047:39::-;;;;:::o;100093:43::-;;;;:::o;103917:171::-;37000:13;:11;:13::i;:::-;104017:4:::1;103998:23;;:6;:15;104005:7;103998:15;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;103990:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;104075:5;104057:6;:15;104064:7;104057:15;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;103917:171:::0;:::o;100005:35::-;;;;:::o;54829:283::-;54946:7;54992:1;54975:19;;:5;:19;;;54971:60;;55003:28;;;;;;;;;;;;;;54971:60;48988:13;55049:18;:25;55068:5;55049:25;;;;;;;;;;;;;;;;:55;55042:62;;54829:283;;;:::o;37755:103::-;37000:13;:11;:13::i;:::-;37820:30:::1;37847:1;37820:18;:30::i;:::-;37755:103::o:0;105937:154::-;101533:14;:23;101548:7;;;;101533:23;;;;;;;;;;;;;;;;;;;;;;;;;;;101529:52;;;101565:16;;;;;;;;;;;;;;101529:52;37000:13:::1;:11;:13::i;:::-;106064:19:::2;106070:2;106074:8;106064:5;:19::i;:::-;105937:154:::0;;:::o;106099:1186::-;101672:4;101650:26;;:6;:18;101657:10;101650:18;;;;;;;;;;;;;;;;;;;;;;;;;:26;;;101642:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;106300:4:::1;106286:18;;:10;;;;;;;;;;;:18;;;106278:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;106384:11;;106372:9;;:23;;;;:::i;:::-;106352:15;:44;;106344:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;106435:27;106474:16;;;;;;;;;;;106435:56;;106502:27;106541:16;;;;;;;;;;;106502:56;;106640:18;:28;;;106669:2;106640:32;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;106605:18;:28;;;106634:2;106605:32;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:67;;;;:::i;:::-;106591:7;:11;106599:2;106591:11;;;;;;;;;;;;;;;;:81;106569:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;106753:12;106795:2;106799:8;106778:30;;;;;;;;;:::i;:::-;;;;;;;;;;;;;106768:41;;;;;;106753:56;;106842:49;106861:11;;106842:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106874:10;;106886:4;106842:18;:49::i;:::-;106820:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;106954:17;106985:14;;106974:8;:25;;;;:::i;:::-;106954:45;;107031:9;107018;:22;;107010:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;107082:19;107088:2;107092:8;107082:5;:19::i;:::-;107127:8;107112:7;:11;107120:2;107112:11;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;107157:5;107146:4;:8;107151:2;107146:8;;;;;;;;;;;;;;;;:16;;;;;;;;;;;;;;;;;;107189:9;107177;:21;107173:105;;;107223:10;107215:28;;:51;107256:9;107244;:21;;;;:::i;:::-;107215:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;107173:105;106267:1018;;;;106099:1186:::0;;;;;:::o;99809:31::-;;;;;;;;;;;;;:::o;105512:106::-;37000:13;:11;:13::i;:::-;105599:11:::1;105586:10;:24;;;;105512:106:::0;:::o;99847:31::-;;;;;;;;;;;;;:::o;99966:32::-;;;;:::o;37114:87::-;37160:7;37187:6;;;;;;;;;;;37180:13;;37114:87;:::o;58248:104::-;58304:13;58337:7;58330:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58248:104;:::o;108689:234::-;108820:8;108830:24;;;;;;;;;;;97944:7;97941:1138;;;98073:22;98067:4;98060:36;98174:9;98168:4;98161:23;98326:8;98322:2;98318:17;98314:2;98310:26;98304:4;98297:40;98686:4;98655;98624;98593;98541:25;98509:5;98472:241;98440:503;;98855:16;98849:4;98843;98828:44;98907:16;98901:4;98894:30;98440:503;99062:1;99056:4;99049:15;97941:1138;108872:43:::1;108896:8;108906;108872:23;:43::i;:::-;108689:234:::0;;;;:::o;99885:36::-;99920:1;99885:36;:::o;103742:167::-;37000:13;:11;:13::i;:::-;103842:5:::1;103823:24;;:6;:15;103830:7;103823:15;;;;;;;;;;;;;;;;;;;;;;;;;:24;;;103815:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;103897:4;103879:6;:15;103886:7;103879:15;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;103742:167:::0;:::o;100476:42::-;;;;;;;;;;;;;;;;;:::o;100388:36::-;;;;;;;;;;;;;;;;;;;;;;:::o;104280:160::-;101533:14;:23;101548:7;;;;101533:23;;;;;;;;;;;;;;;;;;;;;;;;;;;101529:52;;;101565:16;;;;;;;;;;;;;;101529:52;37000:13:::1;:11;:13::i;:::-;104427:5:::2;104400:24;;:32;;;;;;;;;;;;;;;;;;104280:160:::0;:::o;110347:314::-;110558:4;110564:24;;;;;;;;;;;95459:7;95456:1892;;;95672:8;95664:4;95660:2;95656:13;95652:2;95648:22;95645:36;95635:1698;;95987:22;95981:4;95974:36;96096:9;96090:4;96083:23;96189:8;96183:4;96176:22;96583:4;96548;96513;96478;96422:25;96386:5;96345:269;96309:555;;96768:16;96762:4;96756;96741:44;96824:16;96818:4;96811:30;96309:555;97312:1;97306:4;97299:15;95635:1698;95456:1892;110606:47:::1;110629:4;110635:2;110639:7;110648:4;110606:22;:47::i;:::-;110347:314:::0;;;;;;:::o;100221:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;107999:110::-;37000:13;:11;:13::i;:::-;108092:9:::1;108075:14;:26;;;;107999:110:::0;:::o;104663:170::-;37000:13;:11;:13::i;:::-;104780:45:::1;104799:8;104809:15;104780:18;:45::i;:::-;104663:170:::0;;:::o;99765:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;100143:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;102430:649::-;102548:13;102601:16;102609:7;102601;:16::i;:::-;102579:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;102705:28;102736:10;:8;:10::i;:::-;102705:41;;102808:1;102783:14;102777:28;:32;:294;;;;;;;;;;;;;;;;;102901:14;102942:25;102959:7;102942:16;:25::i;:::-;102994:13;102858:172;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;102777:294;102757:314;;;102430:649;;;:::o;100525:31::-;;;;:::o;102271:151::-;37000:13;:11;:13::i;:::-;102397:17:::1;102381:13;:33;;;;;;:::i;:::-;;102271:151:::0;:::o;103244:119::-;103306:7;103333:22;103347:7;103333:13;:22::i;:::-;103326:29;;103244:119;;;:::o;105761:168::-;101533:14;:23;101548:7;;;;101533:23;;;;;;;;;;;;;;;;;;;;;;;;;;;101529:52;;;101565:16;;;;;;;;;;;;;;101529:52;37000:13:::1;:11;:13::i;:::-;99920:1:::2;105833:14;:12;:14::i;:::-;:26;105829:62;;105868:23;;;;;;;;;;;;;;105829:62;105902:19;105908:2;99920:1;105902:5;:19::i;:::-;105761:168:::0;:::o;66041:214::-;66183:4;66212:18;:25;66231:5;66212:25;;;;;;;;;;;;;;;:35;66238:8;66212:35;;;;;;;;;;;;;;;;;;;;;;;;;66205:42;;66041:214;;;;:::o;38013:201::-;37000:13;:11;:13::i;:::-;38122:1:::1;38102:22;;:8;:22;;::::0;38094:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;38178:28;38197:8;38178:18;:28::i;:::-;38013:201:::0;:::o;100273:30::-;;;;;;;;;;;;;:::o;100178:36::-;;;;;;;;;;;;;:::o;57120:689::-;57250:4;57594:10;57579:25;;:11;:25;;;;:102;;;;57671:10;57656:25;;:11;:25;;;;57579:102;:179;;;;57748:10;57733:25;;:11;:25;;;;57579:179;57559:199;;57120:689;;;:::o;32257:215::-;32359:4;32398:26;32383:41;;;:11;:41;;;;:81;;;;32428:36;32452:11;32428:23;:36::i;:::-;32383:81;32376:88;;32257:215;;;:::o;66513:282::-;66578:4;66634:7;66615:15;:13;:15::i;:::-;:26;;:66;;;;;66668:13;;66658:7;:23;66615:66;:153;;;;;66767:1;49764:8;66719:17;:26;66737:7;66719:26;;;;;;;;;;;;:44;:49;66615:153;66595:173;;66513:282;;;:::o;64402:449::-;64532:13;64548:16;64556:7;64548;:16::i;:::-;64532:32;;64604:5;64581:28;;:19;:17;:19::i;:::-;:28;;;64577:175;;64629:44;64646:5;64653:19;:17;:19::i;:::-;64629:16;:44::i;:::-;64624:128;;64701:35;;;;;;;;;;;;;;64624:128;64577:175;64797:2;64764:15;:24;64780:7;64764:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;64835:7;64831:2;64815:28;;64824:5;64815:28;;;;;;;;;;;;64521:330;64402:449;;:::o;37279:132::-;37354:12;:10;:12::i;:::-;37343:23;;:7;:5;:7::i;:::-;:23;;;37335:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37279:132::o;53161:92::-;53217:7;53244:1;53237:8;;53161:92;:::o;68781:3003::-;68923:27;68953;68972:7;68953:18;:27::i;:::-;68923:57;;69038:4;68997:45;;69013:19;68997:45;;;68993:99;;69064:28;;;;;;;;;;;;;;68993:99;69120:27;69162:23;69199:35;69226:7;69199:26;:35::i;:::-;69105:129;;;;69348:134;69391:15;69425:4;69448:19;:17;:19::i;:::-;69348:24;:134::i;:::-;69329:287;;69512:43;69529:4;69535:19;:17;:19::i;:::-;69512:16;:43::i;:::-;69507:109;;69581:35;;;;;;;;;;;;;;69507:109;69329:287;69647:1;69633:16;;:2;:16;;;69629:52;;69658:23;;;;;;;;;;;;;;69629:52;69694:43;69716:4;69722:2;69726:7;69735:1;69694:21;:43::i;:::-;69830:15;69827:160;;;69970:1;69949:19;69942:30;69827:160;70367:18;:24;70386:4;70367:24;;;;;;;;;;;;;;;;70365:26;;;;;;;;;;;;70436:18;:22;70455:2;70436:22;;;;;;;;;;;;;;;;70434:24;;;;;;;;;;;70758:167;70795:2;70865:45;70880:4;70886:2;70890:19;70865:14;:45::i;:::-;50044:8;70816:94;70758:18;:167::i;:::-;70729:17;:26;70747:7;70729:26;;;;;;;;;;;:196;;;;71096:1;50044:8;71045:19;:47;:52;71041:627;;71118:19;71150:1;71140:7;:11;71118:33;;71307:1;71273:17;:30;71291:11;71273:30;;;;;;;;;;;;:35;71269:384;;71411:13;;71396:11;:28;71392:242;;71591:19;71558:17;:30;71576:11;71558:30;;;;;;;;;;;:52;;;;71392:242;71269:384;71099:569;71041:627;71715:7;71711:2;71696:27;;71705:4;71696:27;;;;;;;;;;;;71734:42;71755:4;71761:2;71765:7;71774:1;71734:20;:42::i;:::-;68912:2872;;;68781:3003;;;:::o;33247:97::-;33305:6;33331:5;33324:12;;33247:97;:::o;76455:3021::-;76528:20;76551:13;;76528:36;;76591:1;76579:8;:13;76575:44;;76601:18;;;;;;;;;;;;;;76575:44;76632:61;76662:1;76666:2;76670:12;76684:8;76632:21;:61::i;:::-;77210:1;49126:2;77180:1;:26;;77179:32;77150:8;:62;77107:18;:22;77126:2;77107:22;;;;;;;;;;;;;;;;:105;;;;;;;;;;;77489:160;77526:2;77601:33;77624:1;77628:2;77632:1;77601:14;:33::i;:::-;77547:30;77568:8;77547:20;:30::i;:::-;:87;77489:18;:160::i;:::-;77455:17;:31;77473:12;77455:31;;;;;;;;;;;:194;;;;77666:16;77697:11;77726:8;77711:12;:23;77697:37;;78247:16;78243:2;78239:25;78227:37;;78619:12;78579:8;78538:1;78476:25;78417:1;78356;78329:335;78990:1;78976:12;78972:20;78930:346;79031:3;79022:7;79019:16;78930:346;;79249:7;79239:8;79236:1;79209:25;79206:1;79203;79198:59;79084:1;79075:7;79071:15;79060:26;;78930:346;;;78934:77;79321:1;79309:8;:13;79305:45;;79331:19;;;;;;;;;;;;;;79305:45;79383:3;79367:13;:19;;;;76881:2517;;79408:60;79437:1;79441:2;79445:12;79459:8;79408:20;:60::i;:::-;76517:2959;76455:3021;;:::o;71880:193::-;72026:39;72043:4;72049:2;72053:7;72026:39;;;;;;;;;;;;:16;:39::i;:::-;71880:193;;;:::o;60849:1307::-;60943:7;60968:12;60983:7;60968:22;;61051:4;61032:15;:13;:15::i;:::-;:23;61028:1061;;61085:13;;61078:4;:20;61074:1015;;;61123:14;61140:17;:23;61158:4;61140:23;;;;;;;;;;;;61123:40;;61257:1;49764:8;61229:6;:24;:29;61225:845;;61894:113;61911:1;61901:6;:11;61894:113;;61954:17;:25;61972:6;;;;;;;61954:25;;;;;;;;;;;;61945:34;;61894:113;;;62040:6;62033:13;;;;;;61225:845;61100:989;61074:1015;61028:1061;62117:31;;;;;;;;;;;;;;60849:1307;;;;:::o;38374:191::-;38448:16;38467:6;;;;;;;;;;;38448:25;;38493:8;38484:6;;:17;;;;;;;;;;;;;;;;;;38548:8;38517:40;;38538:8;38517:40;;;;;;;;;;;;38437:128;38374:191;:::o;546:796::-;637:4;654:20;677:4;654:27;;699:9;694:525;718:5;:12;714:1;:16;694:525;;;752:20;775:5;781:1;775:8;;;;;;;;:::i;:::-;;;;;;;;752:31;;820:12;804;:28;800:408;;974:12;988;957:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;947:55;;;;;;932:70;;800:408;;;1164:12;1178;1147:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1137:55;;;;;;1122:70;;800:408;737:482;732:3;;;;;:::i;:::-;;;;694:525;;;;1330:4;1314:12;:20;1307:27;;;546:796;;;;;:::o;65618:266::-;65797:8;65745:18;:39;65764:19;:17;:19::i;:::-;65745:39;;;;;;;;;;;;;;;:49;65785:8;65745:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;65857:8;65821:55;;65836:19;:17;:19::i;:::-;65821:55;;;65867:8;65821:55;;;;;;:::i;:::-;;;;;;;;65618:266;;:::o;72671:407::-;72846:31;72859:4;72865:2;72869:7;72846:12;:31::i;:::-;72910:1;72892:2;:14;;;:19;72888:183;;72931:56;72962:4;72968:2;72972:7;72981:5;72931:30;:56::i;:::-;72926:145;;73015:40;;;;;;;;;;;;;;72926:145;72888:183;72671:407;;;;:::o;33615:332::-;33734:17;:15;:17::i;:::-;33718:33;;:12;:33;;;;33710:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;33837:1;33817:22;;:8;:22;;;33809:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;33904:35;;;;;;;;33916:8;33904:35;;;;;;33926:12;33904:35;;;;;33882:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33615:332;;:::o;102149:114::-;102209:13;102242;102235:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;102149:114;:::o;16269:716::-;16325:13;16376:14;16413:1;16393:17;16404:5;16393:10;:17::i;:::-;:21;16376:38;;16429:20;16463:6;16452:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16429:41;;16485:11;16614:6;16610:2;16606:15;16598:6;16594:28;16587:35;;16651:288;16658:4;16651:288;;;16683:5;;;;;;;;16825:8;16820:2;16813:5;16809:14;16804:30;16799:3;16791:44;16881:2;16872:11;;;;;;:::i;:::-;;;;;16915:1;16906:5;:10;16651:288;16902:21;16651:288;16960:6;16953:13;;;;;16269:716;;;:::o;55194:204::-;55255:7;48988:13;49126:2;55296:18;:25;55315:5;55296:25;;;;;;;;;;;;;;;;:50;;55295:95;55275:115;;55194:204;;;:::o;54066:296::-;54121:7;54328:15;:13;:15::i;:::-;54312:13;;:31;54305:38;;54066:296;:::o;29811:157::-;29896:4;29935:25;29920:40;;;:11;:40;;;;29913:47;;29811:157;;;:::o;89730:105::-;89790:7;89817:10;89810:17;;89730:105;:::o;35665:98::-;35718:7;35745:10;35738:17;;35665:98;:::o;67676:485::-;67778:27;67807:23;67848:38;67889:15;:24;67905:7;67889:24;;;;;;;;;;;67848:65;;68066:18;68043:41;;68123:19;68117:26;68098:45;;68028:126;67676:485;;;:::o;66904:659::-;67053:11;67218:16;67211:5;67207:28;67198:37;;67378:16;67367:9;67363:32;67350:45;;67528:15;67517:9;67514:30;67506:5;67495:9;67492:20;67489:56;67479:66;;66904:659;;;;;:::o;73740:159::-;;;;;:::o;89039:311::-;89174:7;89194:16;50168:3;89220:19;:41;;89194:68;;50168:3;89288:31;89299:4;89305:2;89309:9;89288:10;:31::i;:::-;89280:40;;:62;;89273:69;;;89039:311;;;;;:::o;62736:531::-;62843:14;63016:16;63009:5;63005:28;62996:37;;63228:5;63214:11;63189:23;63185:41;63182:52;63158:5;63137:112;63127:122;;62736:531;;;;:::o;74564:158::-;;;;;:::o;63369:356::-;63466:14;63704:1;63694:8;63691:15;63665:24;63661:46;63651:56;;63369:356;;;:::o;75162:831::-;75325:4;75384:2;75359:45;;;75423:19;:17;:19::i;:::-;75461:4;75484:7;75510:5;75359:171;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;75342:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75761:1;75744:6;:13;:18;75740:235;;75790:40;;;;;;;;;;;;;;75740:235;75933:6;75927:13;75918:6;75914:2;75910:15;75903:38;75342:644;75630:54;;;75603:81;;;:6;:81;;;;75579:105;;;75162:831;;;;;;:::o;13103:948::-;13156:7;13176:14;13193:1;13176:18;;13243:8;13234:5;:17;13230:106;;13281:8;13272:17;;;;;;:::i;:::-;;;;;13318:2;13308:12;;;;13230:106;13363:8;13354:5;:17;13350:106;;13401:8;13392:17;;;;;;:::i;:::-;;;;;13438:2;13428:12;;;;13350:106;13483:8;13474:5;:17;13470:106;;13521:8;13512:17;;;;;;:::i;:::-;;;;;13558:2;13548:12;;;;13470:106;13603:7;13594:5;:16;13590:103;;13640:7;13631:16;;;;;;:::i;:::-;;;;;13676:1;13666:11;;;;13590:103;13720:7;13711:5;:16;13707:103;;13757:7;13748:16;;;;;;:::i;:::-;;;;;13793:1;13783:11;;;;13707:103;13837:7;13828:5;:16;13824:103;;13874:7;13865:16;;;;;;:::i;:::-;;;;;13910:1;13900:11;;;;13824:103;13954:7;13945:5;:16;13941:68;;13992:1;13982:11;;;;13941:68;14037:6;14030:13;;;13103:948;;;:::o;88740:147::-;88877:6;88740: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:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:117::-;5351:1;5348;5341:12;5365:117;5474:1;5471;5464:12;5488:117;5597:1;5594;5587:12;5625:553;5683:8;5693:6;5743:3;5736:4;5728:6;5724:17;5720:27;5710:122;;5751:79;;:::i;:::-;5710:122;5864:6;5851:20;5841:30;;5894:18;5886:6;5883:30;5880:117;;;5916:79;;:::i;:::-;5880:117;6030:4;6022:6;6018:17;6006:29;;6084:3;6076:4;6068:6;6064:17;6054:8;6050:32;6047:41;6044:128;;;6091:79;;:::i;:::-;6044:128;5625:553;;;;;:::o;6184:529::-;6255:6;6263;6312:2;6300:9;6291:7;6287:23;6283:32;6280:119;;;6318:79;;:::i;:::-;6280:119;6466:1;6455:9;6451:17;6438:31;6496:18;6488:6;6485:30;6482:117;;;6518:79;;:::i;:::-;6482:117;6631:65;6688:7;6679:6;6668:9;6664:22;6631:65;:::i;:::-;6613:83;;;;6409:297;6184:529;;;;;:::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:77::-;8199:7;8228:5;8217:16;;8162:77;;;:::o;8245:118::-;8332:24;8350:5;8332:24;:::i;:::-;8327:3;8320:37;8245:118;;:::o;8369:222::-;8462:4;8500:2;8489:9;8485:18;8477:26;;8513:71;8581:1;8570:9;8566:17;8557:6;8513:71;:::i;:::-;8369:222;;;;:::o;8597:329::-;8656:6;8705:2;8693:9;8684:7;8680:23;8676:32;8673:119;;;8711:79;;:::i;:::-;8673:119;8831:1;8856:53;8901:7;8892:6;8881:9;8877:22;8856:53;:::i;:::-;8846:63;;8802:117;8597:329;;;;:::o;8932:116::-;9002:21;9017:5;9002:21;:::i;:::-;8995:5;8992:32;8982:60;;9038:1;9035;9028:12;8982:60;8932:116;:::o;9054:133::-;9097:5;9135:6;9122:20;9113:29;;9151:30;9175:5;9151:30;:::i;:::-;9054:133;;;;:::o;9193:613::-;9267:6;9275;9283;9332:2;9320:9;9311:7;9307:23;9303:32;9300:119;;;9338:79;;:::i;:::-;9300:119;9458:1;9483:53;9528:7;9519:6;9508:9;9504:22;9483:53;:::i;:::-;9473:63;;9429:117;9585:2;9611:53;9656:7;9647:6;9636:9;9632:22;9611:53;:::i;:::-;9601:63;;9556:118;9713:2;9739:50;9781:7;9772:6;9761:9;9757:22;9739:50;:::i;:::-;9729:60;;9684:115;9193:613;;;;;:::o;9829:568::-;9902:8;9912:6;9962:3;9955:4;9947:6;9943:17;9939:27;9929:122;;9970:79;;:::i;:::-;9929:122;10083:6;10070:20;10060:30;;10113:18;10105:6;10102:30;10099:117;;;10135:79;;:::i;:::-;10099:117;10249:4;10241:6;10237:17;10225:29;;10303:3;10295:4;10287:6;10283:17;10273:8;10269:32;10266:41;10263:128;;;10310:79;;:::i;:::-;10263:128;9829:568;;;;;:::o;10403:989::-;10513:6;10521;10529;10537;10545;10594:3;10582:9;10573:7;10569:23;10565:33;10562:120;;;10601:79;;:::i;:::-;10562:120;10721:1;10746:53;10791:7;10782:6;10771:9;10767:22;10746:53;:::i;:::-;10736:63;;10692:117;10848:2;10874:53;10919:7;10910:6;10899:9;10895:22;10874:53;:::i;:::-;10864:63;;10819:118;10976:2;11002:50;11044:7;11035:6;11024:9;11020:22;11002:50;:::i;:::-;10992:60;;10947:115;11129:2;11118:9;11114:18;11101:32;11160:18;11152:6;11149:30;11146:117;;;11182:79;;:::i;:::-;11146:117;11295:80;11367:7;11358:6;11347:9;11343:22;11295:80;:::i;:::-;11277:98;;;;11072:313;10403:989;;;;;;;;:::o;11398:122::-;11471:24;11489:5;11471:24;:::i;:::-;11464:5;11461:35;11451:63;;11510:1;11507;11500:12;11451:63;11398:122;:::o;11526:139::-;11572:5;11610:6;11597:20;11588:29;;11626:33;11653:5;11626:33;:::i;:::-;11526:139;;;;:::o;11671:329::-;11730:6;11779:2;11767:9;11758:7;11754:23;11750:32;11747:119;;;11785:79;;:::i;:::-;11747:119;11905:1;11930:53;11975:7;11966:6;11955:9;11951:22;11930:53;:::i;:::-;11920:63;;11876:117;11671:329;;;;:::o;12006:468::-;12071:6;12079;12128:2;12116:9;12107:7;12103:23;12099:32;12096:119;;;12134:79;;:::i;:::-;12096:119;12254:1;12279:53;12324:7;12315:6;12304:9;12300:22;12279:53;:::i;:::-;12269:63;;12225:117;12381:2;12407:50;12449:7;12440:6;12429:9;12425:22;12407:50;:::i;:::-;12397:60;;12352:115;12006:468;;;;;:::o;12480:323::-;12536:6;12585:2;12573:9;12564:7;12560:23;12556:32;12553:119;;;12591:79;;:::i;:::-;12553:119;12711:1;12736:50;12778:7;12769:6;12758:9;12754:22;12736:50;:::i;:::-;12726:60;;12682:114;12480:323;;;;:::o;12809:117::-;12918:1;12915;12908:12;12932:180;12980:77;12977:1;12970:88;13077:4;13074:1;13067:15;13101:4;13098:1;13091:15;13118:281;13201:27;13223:4;13201:27;:::i;:::-;13193:6;13189:40;13331:6;13319:10;13316:22;13295:18;13283:10;13280:34;13277:62;13274:88;;;13342:18;;:::i;:::-;13274:88;13382:10;13378:2;13371:22;13161:238;13118:281;;:::o;13405:129::-;13439:6;13466:20;;:::i;:::-;13456:30;;13495:33;13523:4;13515:6;13495:33;:::i;:::-;13405:129;;;:::o;13540:307::-;13601:4;13691:18;13683:6;13680:30;13677:56;;;13713:18;;:::i;:::-;13677:56;13751:29;13773:6;13751:29;:::i;:::-;13743:37;;13835:4;13829;13825:15;13817:23;;13540:307;;;:::o;13853:146::-;13950:6;13945:3;13940;13927:30;13991:1;13982:6;13977:3;13973:16;13966:27;13853:146;;;:::o;14005:423::-;14082:5;14107:65;14123:48;14164:6;14123:48;:::i;:::-;14107:65;:::i;:::-;14098:74;;14195:6;14188:5;14181:21;14233:4;14226:5;14222:16;14271:3;14262:6;14257:3;14253:16;14250:25;14247:112;;;14278:79;;:::i;:::-;14247:112;14368:54;14415:6;14410:3;14405;14368:54;:::i;:::-;14088:340;14005:423;;;;;:::o;14447:338::-;14502:5;14551:3;14544:4;14536:6;14532:17;14528:27;14518:122;;14559:79;;:::i;:::-;14518:122;14676:6;14663:20;14701:78;14775:3;14767:6;14760:4;14752:6;14748:17;14701:78;:::i;:::-;14692:87;;14508:277;14447:338;;;;:::o;14791:943::-;14886:6;14894;14902;14910;14959:3;14947:9;14938:7;14934:23;14930:33;14927:120;;;14966:79;;:::i;:::-;14927:120;15086:1;15111:53;15156:7;15147:6;15136:9;15132:22;15111:53;:::i;:::-;15101:63;;15057:117;15213:2;15239:53;15284:7;15275:6;15264:9;15260:22;15239:53;:::i;:::-;15229:63;;15184:118;15341:2;15367:53;15412:7;15403:6;15392:9;15388:22;15367:53;:::i;:::-;15357:63;;15312:118;15497:2;15486:9;15482:18;15469:32;15528:18;15520:6;15517:30;15514:117;;;15550:79;;:::i;:::-;15514:117;15655:62;15709:7;15700:6;15689:9;15685:22;15655:62;:::i;:::-;15645:72;;15440:287;14791:943;;;;;;;:::o;15740:109::-;15776:7;15816:26;15809:5;15805:38;15794:49;;15740:109;;;:::o;15855:120::-;15927:23;15944:5;15927:23;:::i;:::-;15920:5;15917:34;15907:62;;15965:1;15962;15955:12;15907:62;15855:120;:::o;15981:137::-;16026:5;16064:6;16051:20;16042:29;;16080:32;16106:5;16080:32;:::i;:::-;15981:137;;;;:::o;16124:472::-;16191:6;16199;16248:2;16236:9;16227:7;16223:23;16219:32;16216:119;;;16254:79;;:::i;:::-;16216:119;16374:1;16399:53;16444:7;16435:6;16424:9;16420:22;16399:53;:::i;:::-;16389:63;;16345:117;16501:2;16527:52;16571:7;16562:6;16551:9;16547:22;16527:52;:::i;:::-;16517:62;;16472:117;16124:472;;;;;:::o;16602:308::-;16664:4;16754:18;16746:6;16743:30;16740:56;;;16776:18;;:::i;:::-;16740:56;16814:29;16836:6;16814:29;:::i;:::-;16806:37;;16898:4;16892;16888:15;16880:23;;16602:308;;;:::o;16916:425::-;16994:5;17019:66;17035:49;17077:6;17035:49;:::i;:::-;17019:66;:::i;:::-;17010:75;;17108:6;17101:5;17094:21;17146:4;17139:5;17135:16;17184:3;17175:6;17170:3;17166:16;17163:25;17160:112;;;17191:79;;:::i;:::-;17160:112;17281:54;17328:6;17323:3;17318;17281:54;:::i;:::-;17000:341;16916:425;;;;;:::o;17361:340::-;17417:5;17466:3;17459:4;17451:6;17447:17;17443:27;17433:122;;17474:79;;:::i;:::-;17433:122;17591:6;17578:20;17616:79;17691:3;17683:6;17676:4;17668:6;17664:17;17616:79;:::i;:::-;17607:88;;17423:278;17361:340;;;;:::o;17707:509::-;17776:6;17825:2;17813:9;17804:7;17800:23;17796:32;17793:119;;;17831:79;;:::i;:::-;17793:119;17979:1;17968:9;17964:17;17951:31;18009:18;18001:6;17998:30;17995:117;;;18031:79;;:::i;:::-;17995:117;18136:63;18191:7;18182:6;18171:9;18167:22;18136:63;:::i;:::-;18126:73;;17922:287;17707:509;;;;:::o;18222:474::-;18290:6;18298;18347:2;18335:9;18326:7;18322:23;18318:32;18315:119;;;18353:79;;:::i;:::-;18315:119;18473:1;18498:53;18543:7;18534:6;18523:9;18519:22;18498:53;:::i;:::-;18488:63;;18444:117;18600:2;18626:53;18671:7;18662:6;18651:9;18647:22;18626:53;:::i;:::-;18616:63;;18571:118;18222:474;;;;;:::o;18702:180::-;18750:77;18747:1;18740:88;18847:4;18844:1;18837:15;18871:4;18868:1;18861:15;18888:320;18932:6;18969:1;18963:4;18959:12;18949:22;;19016:1;19010:4;19006:12;19037:18;19027:81;;19093:4;19085:6;19081:17;19071:27;;19027:81;19155:2;19147:6;19144:14;19124:18;19121:38;19118:84;;19174:18;;:::i;:::-;19118:84;18939:269;18888:320;;;:::o;19214:97::-;19273:6;19301:3;19291:13;;19214:97;;;;:::o;19317:141::-;19366:4;19389:3;19381:11;;19412:3;19409:1;19402:14;19446:4;19443:1;19433:18;19425:26;;19317:141;;;:::o;19464:93::-;19501:6;19548:2;19543;19536:5;19532:14;19528:23;19518:33;;19464:93;;;:::o;19563:107::-;19607:8;19657:5;19651:4;19647:16;19626:37;;19563:107;;;;:::o;19676:393::-;19745:6;19795:1;19783:10;19779:18;19818:97;19848:66;19837:9;19818:97;:::i;:::-;19936:39;19966:8;19955:9;19936:39;:::i;:::-;19924:51;;20008:4;20004:9;19997:5;19993:21;19984:30;;20057:4;20047:8;20043:19;20036:5;20033:30;20023:40;;19752:317;;19676:393;;;;;:::o;20075:60::-;20103:3;20124:5;20117:12;;20075:60;;;:::o;20141:142::-;20191:9;20224:53;20242:34;20251:24;20269:5;20251:24;:::i;:::-;20242:34;:::i;:::-;20224:53;:::i;:::-;20211:66;;20141:142;;;:::o;20289:75::-;20332:3;20353:5;20346:12;;20289:75;;;:::o;20370:269::-;20480:39;20511:7;20480:39;:::i;:::-;20541:91;20590:41;20614:16;20590:41;:::i;:::-;20582:6;20575:4;20569:11;20541:91;:::i;:::-;20535:4;20528:105;20446:193;20370:269;;;:::o;20645:73::-;20690:3;20645:73;:::o;20724:189::-;20801:32;;:::i;:::-;20842:65;20900:6;20892;20886:4;20842:65;:::i;:::-;20777:136;20724:189;;:::o;20919:186::-;20979:120;20996:3;20989:5;20986:14;20979:120;;;21050:39;21087:1;21080:5;21050:39;:::i;:::-;21023:1;21016:5;21012:13;21003:22;;20979:120;;;20919:186;;:::o;21111:543::-;21212:2;21207:3;21204:11;21201:446;;;21246:38;21278:5;21246:38;:::i;:::-;21330:29;21348:10;21330:29;:::i;:::-;21320:8;21316:44;21513:2;21501:10;21498:18;21495:49;;;21534:8;21519:23;;21495:49;21557:80;21613:22;21631:3;21613:22;:::i;:::-;21603:8;21599:37;21586:11;21557:80;:::i;:::-;21216:431;;21201:446;21111:543;;;:::o;21660:117::-;21714:8;21764:5;21758:4;21754:16;21733:37;;21660:117;;;;:::o;21783:169::-;21827:6;21860:51;21908:1;21904:6;21896:5;21893:1;21889:13;21860:51;:::i;:::-;21856:56;21941:4;21935;21931:15;21921:25;;21834:118;21783:169;;;;:::o;21957:295::-;22033:4;22179:29;22204:3;22198:4;22179:29;:::i;:::-;22171:37;;22241:3;22238:1;22234:11;22228:4;22225:21;22217:29;;21957:295;;;;:::o;22257:1403::-;22381:44;22421:3;22416;22381:44;:::i;:::-;22490:18;22482:6;22479:30;22476:56;;;22512:18;;:::i;:::-;22476:56;22556:38;22588:4;22582:11;22556:38;:::i;:::-;22641:67;22701:6;22693;22687:4;22641:67;:::i;:::-;22735:1;22764:2;22756:6;22753:14;22781:1;22776:632;;;;23452:1;23469:6;23466:84;;;23525:9;23520:3;23516:19;23503:33;23494:42;;23466:84;23576:67;23636:6;23629:5;23576:67;:::i;:::-;23570:4;23563:81;23425:229;22746:908;;22776:632;22828:4;22824:9;22816:6;22812:22;22862:37;22894:4;22862:37;:::i;:::-;22921:1;22935:215;22949:7;22946:1;22943:14;22935:215;;;23035:9;23030:3;23026:19;23013:33;23005:6;22998:49;23086:1;23078:6;23074:14;23064:24;;23133:2;23122:9;23118:18;23105:31;;22972:4;22969:1;22965:12;22960:17;;22935:215;;;23178:6;23169:7;23166:19;23163:186;;;23243:9;23238:3;23234:19;23221:33;23286:48;23328:4;23320:6;23316:17;23305:9;23286:48;:::i;:::-;23278:6;23271:64;23186:163;23163:186;23395:1;23391;23383:6;23379:14;23375:22;23369:4;23362:36;22783:625;;;22746:908;;22356:1304;;;22257:1403;;;:::o;23666:180::-;23714:77;23711:1;23704:88;23811:4;23808:1;23801:15;23835:4;23832:1;23825:15;23852:410;23892:7;23915:20;23933:1;23915:20;:::i;:::-;23910:25;;23949:20;23967:1;23949:20;:::i;:::-;23944:25;;24004:1;24001;23997:9;24026:30;24044:11;24026:30;:::i;:::-;24015:41;;24205:1;24196:7;24192:15;24189:1;24186:22;24166:1;24159:9;24139:83;24116:139;;24235:18;;:::i;:::-;24116:139;23900:362;23852:410;;;;:::o;24268:180::-;24316:77;24313:1;24306:88;24413:4;24410:1;24403:15;24437:4;24434:1;24427:15;24454:185;24494:1;24511:20;24529:1;24511:20;:::i;:::-;24506:25;;24545:20;24563:1;24545:20;:::i;:::-;24540:25;;24584:1;24574:35;;24589:18;;:::i;:::-;24574:35;24631:1;24628;24624:9;24619:14;;24454:185;;;;:::o;24645:147::-;24746:11;24783:3;24768:18;;24645:147;;;;:::o;24798:114::-;;:::o;24918:398::-;25077:3;25098:83;25179:1;25174:3;25098:83;:::i;:::-;25091:90;;25190:93;25279:3;25190:93;:::i;:::-;25308:1;25303:3;25299:11;25292:18;;24918:398;;;:::o;25322:379::-;25506:3;25528:147;25671:3;25528:147;:::i;:::-;25521:154;;25692:3;25685:10;;25322:379;;;:::o;25707:169::-;25847:21;25843:1;25835:6;25831:14;25824:45;25707:169;:::o;25882:366::-;26024:3;26045:67;26109:2;26104:3;26045:67;:::i;:::-;26038:74;;26121:93;26210:3;26121:93;:::i;:::-;26239:2;26234:3;26230:12;26223:19;;25882:366;;;:::o;26254:419::-;26420:4;26458:2;26447:9;26443:18;26435:26;;26507:9;26501:4;26497:20;26493:1;26482:9;26478:17;26471:47;26535:131;26661:4;26535:131;:::i;:::-;26527:139;;26254:419;;;:::o;26679:174::-;26819:26;26815:1;26807:6;26803:14;26796:50;26679:174;:::o;26859:366::-;27001:3;27022:67;27086:2;27081:3;27022:67;:::i;:::-;27015:74;;27098:93;27187:3;27098:93;:::i;:::-;27216:2;27211:3;27207:12;27200:19;;26859:366;;;:::o;27231:419::-;27397:4;27435:2;27424:9;27420:18;27412:26;;27484:9;27478:4;27474:20;27470:1;27459:9;27455:17;27448:47;27512:131;27638:4;27512:131;:::i;:::-;27504:139;;27231:419;;;:::o;27656:191::-;27696:3;27715:20;27733:1;27715:20;:::i;:::-;27710:25;;27749:20;27767:1;27749:20;:::i;:::-;27744:25;;27792:1;27789;27785:9;27778:16;;27813:3;27810:1;27807:10;27804:36;;;27820:18;;:::i;:::-;27804:36;27656:191;;;;:::o;27853:174::-;27993:26;27989:1;27981:6;27977:14;27970:50;27853:174;:::o;28033:366::-;28175:3;28196:67;28260:2;28255:3;28196:67;:::i;:::-;28189:74;;28272:93;28361:3;28272:93;:::i;:::-;28390:2;28385:3;28381:12;28374:19;;28033:366;;;:::o;28405:419::-;28571:4;28609:2;28598:9;28594:18;28586:26;;28658:9;28652:4;28648:20;28644:1;28633:9;28629:17;28622:47;28686:131;28812:4;28686:131;:::i;:::-;28678:139;;28405:419;;;:::o;28830:176::-;28970:28;28966:1;28958:6;28954:14;28947:52;28830:176;:::o;29012:366::-;29154:3;29175:67;29239:2;29234:3;29175:67;:::i;:::-;29168:74;;29251:93;29340:3;29251:93;:::i;:::-;29369:2;29364:3;29360:12;29353:19;;29012:366;;;:::o;29384:419::-;29550:4;29588:2;29577:9;29573:18;29565:26;;29637:9;29631:4;29627:20;29623:1;29612:9;29608:17;29601:47;29665:131;29791:4;29665:131;:::i;:::-;29657:139;;29384:419;;;:::o;29809:194::-;29849:4;29869:20;29887:1;29869:20;:::i;:::-;29864:25;;29903:20;29921:1;29903:20;:::i;:::-;29898:25;;29947:1;29944;29940:9;29932:17;;29971:1;29965:4;29962:11;29959:37;;;29976:18;;:::i;:::-;29959:37;29809:194;;;;:::o;30009:170::-;30149:22;30145:1;30137:6;30133:14;30126:46;30009:170;:::o;30185:366::-;30327:3;30348:67;30412:2;30407:3;30348:67;:::i;:::-;30341:74;;30424:93;30513:3;30424:93;:::i;:::-;30542:2;30537:3;30533:12;30526:19;;30185:366;;;:::o;30557:419::-;30723:4;30761:2;30750:9;30746:18;30738:26;;30810:9;30804:4;30800:20;30796:1;30785:9;30781:17;30774:47;30838:131;30964:4;30838:131;:::i;:::-;30830:139;;30557:419;;;:::o;30982:143::-;31039:5;31070:6;31064:13;31055:22;;31086:33;31113:5;31086:33;:::i;:::-;30982:143;;;;:::o;31131:351::-;31201:6;31250:2;31238:9;31229:7;31225:23;31221:32;31218:119;;;31256:79;;:::i;:::-;31218:119;31376:1;31401:64;31457:7;31448:6;31437:9;31433:22;31401:64;:::i;:::-;31391:74;;31347:128;31131:351;;;;:::o;31488:229::-;31628:34;31624:1;31616:6;31612:14;31605:58;31697:12;31692:2;31684:6;31680:15;31673:37;31488:229;:::o;31723:366::-;31865:3;31886:67;31950:2;31945:3;31886:67;:::i;:::-;31879:74;;31962:93;32051:3;31962:93;:::i;:::-;32080:2;32075:3;32071:12;32064:19;;31723:366;;;:::o;32095:419::-;32261:4;32299:2;32288:9;32284:18;32276:26;;32348:9;32342:4;32338:20;32334:1;32323:9;32319:17;32312:47;32376:131;32502:4;32376:131;:::i;:::-;32368:139;;32095:419;;;:::o;32520:94::-;32553:8;32601:5;32597:2;32593:14;32572:35;;32520:94;;;:::o;32620:::-;32659:7;32688:20;32702:5;32688:20;:::i;:::-;32677:31;;32620:94;;;:::o;32720:100::-;32759:7;32788:26;32808:5;32788:26;:::i;:::-;32777:37;;32720:100;;;:::o;32826:157::-;32931:45;32951:24;32969:5;32951:24;:::i;:::-;32931:45;:::i;:::-;32926:3;32919:58;32826:157;;:::o;32989:79::-;33028:7;33057:5;33046:16;;32989:79;;;:::o;33074:157::-;33179:45;33199:24;33217:5;33199:24;:::i;:::-;33179:45;:::i;:::-;33174:3;33167:58;33074:157;;:::o;33237:397::-;33377:3;33392:75;33463:3;33454:6;33392:75;:::i;:::-;33492:2;33487:3;33483:12;33476:19;;33505:75;33576:3;33567:6;33505:75;:::i;:::-;33605:2;33600:3;33596:12;33589:19;;33625:3;33618:10;;33237:397;;;;;:::o;33640:174::-;33780:26;33776:1;33768:6;33764:14;33757:50;33640:174;:::o;33820:366::-;33962:3;33983:67;34047:2;34042:3;33983:67;:::i;:::-;33976:74;;34059:93;34148:3;34059:93;:::i;:::-;34177:2;34172:3;34168:12;34161:19;;33820:366;;;:::o;34192:419::-;34358:4;34396:2;34385:9;34381:18;34373:26;;34445:9;34439:4;34435:20;34431:1;34420:9;34416:17;34409:47;34473:131;34599:4;34473:131;:::i;:::-;34465:139;;34192:419;;;:::o;34617:166::-;34757:18;34753:1;34745:6;34741:14;34734:42;34617:166;:::o;34789:366::-;34931:3;34952:67;35016:2;35011:3;34952:67;:::i;:::-;34945:74;;35028:93;35117:3;35028:93;:::i;:::-;35146:2;35141:3;35137:12;35130:19;;34789:366;;;:::o;35161:419::-;35327:4;35365:2;35354:9;35350:18;35342:26;;35414:9;35408:4;35404:20;35400:1;35389:9;35385:17;35378:47;35442:131;35568:4;35442:131;:::i;:::-;35434:139;;35161:419;;;:::o;35586:234::-;35726:34;35722:1;35714:6;35710:14;35703:58;35795:17;35790:2;35782:6;35778:15;35771:42;35586:234;:::o;35826:366::-;35968:3;35989:67;36053:2;36048:3;35989:67;:::i;:::-;35982:74;;36065:93;36154:3;36065:93;:::i;:::-;36183:2;36178:3;36174:12;36167:19;;35826:366;;;:::o;36198:419::-;36364:4;36402:2;36391:9;36387:18;36379:26;;36451:9;36445:4;36441:20;36437:1;36426:9;36422:17;36415:47;36479:131;36605:4;36479:131;:::i;:::-;36471:139;;36198:419;;;:::o;36623:148::-;36725:11;36762:3;36747:18;;36623:148;;;;:::o;36777:390::-;36883:3;36911:39;36944:5;36911:39;:::i;:::-;36966:89;37048:6;37043:3;36966:89;:::i;:::-;36959:96;;37064:65;37122:6;37117:3;37110:4;37103:5;37099:16;37064:65;:::i;:::-;37154:6;37149:3;37145:16;37138:23;;36887:280;36777:390;;;;:::o;37197:874::-;37300:3;37337:5;37331:12;37366:36;37392:9;37366:36;:::i;:::-;37418:89;37500:6;37495:3;37418:89;:::i;:::-;37411:96;;37538:1;37527:9;37523:17;37554:1;37549:166;;;;37729:1;37724:341;;;;37516:549;;37549:166;37633:4;37629:9;37618;37614:25;37609:3;37602:38;37695:6;37688:14;37681:22;37673:6;37669:35;37664:3;37660:45;37653:52;;37549:166;;37724:341;37791:38;37823:5;37791:38;:::i;:::-;37851:1;37865:154;37879:6;37876:1;37873:13;37865:154;;;37953:7;37947:14;37943:1;37938:3;37934:11;37927:35;38003:1;37994:7;37990:15;37979:26;;37901:4;37898:1;37894:12;37889:17;;37865:154;;;38048:6;38043:3;38039:16;38032:23;;37731:334;;37516:549;;37304:767;;37197:874;;;;:::o;38077:589::-;38302:3;38324:95;38415:3;38406:6;38324:95;:::i;:::-;38317:102;;38436:95;38527:3;38518:6;38436:95;:::i;:::-;38429:102;;38548:92;38636:3;38627:6;38548:92;:::i;:::-;38541:99;;38657:3;38650:10;;38077:589;;;;;;:::o;38672:1395::-;38789:37;38822:3;38789:37;:::i;:::-;38891:18;38883:6;38880:30;38877:56;;;38913:18;;:::i;:::-;38877:56;38957:38;38989:4;38983:11;38957:38;:::i;:::-;39042:67;39102:6;39094;39088:4;39042:67;:::i;:::-;39136:1;39160:4;39147:17;;39192:2;39184:6;39181:14;39209:1;39204:618;;;;39866:1;39883:6;39880:77;;;39932:9;39927:3;39923:19;39917:26;39908:35;;39880:77;39983:67;40043:6;40036:5;39983:67;:::i;:::-;39977:4;39970:81;39839:222;39174:887;;39204:618;39256:4;39252:9;39244:6;39240:22;39290:37;39322:4;39290:37;:::i;:::-;39349:1;39363:208;39377:7;39374:1;39371:14;39363:208;;;39456:9;39451:3;39447:19;39441:26;39433:6;39426:42;39507:1;39499:6;39495:14;39485:24;;39554:2;39543:9;39539:18;39526:31;;39400:4;39397:1;39393:12;39388:17;;39363:208;;;39599:6;39590:7;39587:19;39584:179;;;39657:9;39652:3;39648:19;39642:26;39700:48;39742:4;39734:6;39730:17;39719:9;39700:48;:::i;:::-;39692:6;39685:64;39607:156;39584:179;39809:1;39805;39797:6;39793:14;39789:22;39783:4;39776:36;39211:611;;;39174:887;;38764:1303;;;38672:1395;;:::o;40073:225::-;40213:34;40209:1;40201:6;40197:14;40190:58;40282:8;40277:2;40269:6;40265:15;40258:33;40073:225;:::o;40304:366::-;40446:3;40467:67;40531:2;40526:3;40467:67;:::i;:::-;40460:74;;40543:93;40632:3;40543:93;:::i;:::-;40661:2;40656:3;40652:12;40645:19;;40304:366;;;:::o;40676:419::-;40842:4;40880:2;40869:9;40865:18;40857:26;;40929:9;40923:4;40919:20;40915:1;40904:9;40900:17;40893:47;40957:131;41083:4;40957:131;:::i;:::-;40949:139;;40676:419;;;:::o;41101:182::-;41241:34;41237:1;41229:6;41225:14;41218:58;41101:182;:::o;41289:366::-;41431:3;41452:67;41516:2;41511:3;41452:67;:::i;:::-;41445:74;;41528:93;41617:3;41528:93;:::i;:::-;41646:2;41641:3;41637:12;41630:19;;41289:366;;;:::o;41661:419::-;41827:4;41865:2;41854:9;41850:18;41842:26;;41914:9;41908:4;41904:20;41900:1;41889:9;41885:17;41878:47;41942:131;42068:4;41942:131;:::i;:::-;41934:139;;41661:419;;;:::o;42086:180::-;42134:77;42131:1;42124:88;42231:4;42228:1;42221:15;42255:4;42252:1;42245:15;42272:79;42311:7;42340:5;42329:16;;42272:79;;;:::o;42357:157::-;42462:45;42482:24;42500:5;42482:24;:::i;:::-;42462:45;:::i;:::-;42457:3;42450:58;42357:157;;:::o;42520:397::-;42660:3;42675:75;42746:3;42737:6;42675:75;:::i;:::-;42775:2;42770:3;42766:12;42759:19;;42788:75;42859:3;42850:6;42788:75;:::i;:::-;42888:2;42883:3;42879:12;42872:19;;42908:3;42901:10;;42520:397;;;;;:::o;42923:233::-;42962:3;42985:24;43003:5;42985:24;:::i;:::-;42976:33;;43031:66;43024:5;43021:77;43018:103;;43101:18;;:::i;:::-;43018:103;43148:1;43141:5;43137:13;43130:20;;42923:233;;;:::o;43162:229::-;43302:34;43298:1;43290:6;43286:14;43279:58;43371:12;43366:2;43358:6;43354:15;43347:37;43162:229;:::o;43397:366::-;43539:3;43560:67;43624:2;43619:3;43560:67;:::i;:::-;43553:74;;43636:93;43725:3;43636:93;:::i;:::-;43754:2;43749:3;43745:12;43738:19;;43397:366;;;:::o;43769:419::-;43935:4;43973:2;43962:9;43958:18;43950:26;;44022:9;44016:4;44012:20;44008:1;43997:9;43993:17;43986:47;44050:131;44176:4;44050:131;:::i;:::-;44042:139;;43769:419;;;:::o;44194:175::-;44334:27;44330:1;44322:6;44318:14;44311:51;44194:175;:::o;44375:366::-;44517:3;44538:67;44602:2;44597:3;44538:67;:::i;:::-;44531:74;;44614:93;44703:3;44614:93;:::i;:::-;44732:2;44727:3;44723:12;44716:19;;44375:366;;;:::o;44747:419::-;44913:4;44951:2;44940:9;44936:18;44928:26;;45000:9;44994:4;44990:20;44986:1;44975:9;44971:17;44964:47;45028:131;45154:4;45028:131;:::i;:::-;45020:139;;44747:419;;;:::o;45172:98::-;45223:6;45257:5;45251:12;45241:22;;45172:98;;;:::o;45276:168::-;45359:11;45393:6;45388:3;45381:19;45433:4;45428:3;45424:14;45409:29;;45276:168;;;;:::o;45450:373::-;45536:3;45564:38;45596:5;45564:38;:::i;:::-;45618:70;45681:6;45676:3;45618:70;:::i;:::-;45611:77;;45697:65;45755:6;45750:3;45743:4;45736:5;45732:16;45697:65;:::i;:::-;45787:29;45809:6;45787:29;:::i;:::-;45782:3;45778:39;45771:46;;45540:283;45450:373;;;;:::o;45829:640::-;46024:4;46062:3;46051:9;46047:19;46039:27;;46076:71;46144:1;46133:9;46129:17;46120:6;46076:71;:::i;:::-;46157:72;46225:2;46214:9;46210:18;46201:6;46157:72;:::i;:::-;46239;46307:2;46296:9;46292:18;46283:6;46239:72;:::i;:::-;46358:9;46352:4;46348:20;46343:2;46332:9;46328:18;46321:48;46386:76;46457:4;46448:6;46386:76;:::i;:::-;46378:84;;45829:640;;;;;;;:::o;46475:141::-;46531:5;46562:6;46556:13;46547:22;;46578:32;46604:5;46578:32;:::i;:::-;46475:141;;;;:::o;46622:349::-;46691:6;46740:2;46728:9;46719:7;46715:23;46711:32;46708:119;;;46746:79;;:::i;:::-;46708:119;46866:1;46891:63;46946:7;46937:6;46926:9;46922:22;46891:63;:::i;:::-;46881:73;;46837:127;46622:349;;;;:::o

Swarm Source

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