ETH Price: $2,659.89 (+1.49%)
Gas: 1 Gwei

Token

Bust of Queen Nefertiti (Bust of Queen Nefertiti)
 

Overview

Max Total Supply

186 Bust of Queen Nefertiti

Holders

136

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Bust of Queen Nefertiti
0xab8d748947c2aabcf5896b27d8e0cd653a4f1f2a
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_Queen_Nefertiti

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-04-03
*/

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



pragma solidity 0.8.25;

/**
 * @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 v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

/**
 * @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 v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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 towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (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 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                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.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 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.

            uint256 twos = denominator & (0 - denominator);
            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 (unsignedRoundsUp(rounding) && 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
     * towards zero.
     *
     * 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 + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * 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 + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * 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 + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * 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 + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)

pragma solidity ^0.8.20;



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

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @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), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(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) {
        uint256 localValue = value;
        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] = HEX_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        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 bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.20;

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

    /**
     * @dev The signature derives the `address(0)`.
     */
    error ECDSAInvalidSignature();

    /**
     * @dev The signature has an invalid length.
     */
    error ECDSAInvalidSignatureLength(uint256 length);

    /**
     * @dev The signature has an S value that is in the upper half order.
     */
    error ECDSAInvalidSignatureS(bytes32 s);

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not
     * return address(0) without also returning an error description. Errors are documented using an enum (error type)
     * and a bytes32 providing additional information about the error.
     *
     * If no error is returned, then the address can be used for verification purposes.
     *
     * The `ecrecover` EVM precompile 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 {MessageHashUtils-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]
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError, bytes32) {
        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, bytes32(signature.length));
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM precompile 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 {MessageHashUtils-toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature);
        _throwError(error, errorArg);
        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]
     */
    function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError, bytes32) {
        unchecked {
            bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
            // We do not check for an overflow here since the shift operation results in 0 or 1.
            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.
     */
    function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
        (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError, bytes32) {
        // 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, s);
        }

        // 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, bytes32(0));
        }

        return (signer, RecoverError.NoError, bytes32(0));
    }

    /**
     * @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, bytes32 errorArg) = tryRecover(hash, v, r, s);
        _throwError(error, errorArg);
        return recovered;
    }

    /**
     * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided.
     */
    function _throwError(RecoverError error, bytes32 errorArg) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert ECDSAInvalidSignature();
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert ECDSAInvalidSignatureLength(uint256(errorArg));
        } else if (error == RecoverError.InvalidSignatureS) {
            revert ECDSAInvalidSignatureS(errorArg);
        }
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

/**
 * @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 (last updated v5.0.0) (utils/introspection/ERC165.sol)

pragma solidity ^0.8.20;


/**
 * @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);
 * }
 * ```
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 */
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 v5.0.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.20;



/**
 * @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.
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

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

    /**
     * @dev The default royalty set is invalid (eg. (numerator / denominator) >= 1).
     */
    error ERC2981InvalidDefaultRoyalty(uint256 numerator, uint256 denominator);

    /**
     * @dev The default royalty receiver is invalid.
     */
    error ERC2981InvalidDefaultRoyaltyReceiver(address receiver);

    /**
     * @dev The royalty set for an specific `tokenId` is invalid (eg. (numerator / denominator) >= 1).
     */
    error ERC2981InvalidTokenRoyalty(uint256 tokenId, uint256 numerator, uint256 denominator);

    /**
     * @dev The royalty receiver for `tokenId` is invalid.
     */
    error ERC2981InvalidTokenRoyaltyReceiver(uint256 tokenId, address receiver);

    /**
     * @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 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 {
        uint256 denominator = _feeDenominator();
        if (feeNumerator > denominator) {
            // Royalty fee will exceed the sale price
            revert ERC2981InvalidDefaultRoyalty(feeNumerator, denominator);
        }
        if (receiver == address(0)) {
            revert ERC2981InvalidDefaultRoyaltyReceiver(address(0));
        }

        _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 {
        uint256 denominator = _feeDenominator();
        if (feeNumerator > denominator) {
            // Royalty fee will exceed the sale price
            revert ERC2981InvalidTokenRoyalty(tokenId, feeNumerator, denominator);
        }
        if (receiver == address(0)) {
            revert ERC2981InvalidTokenRoyaltyReceiver(tokenId, address(0));
        }

        _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 (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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: nef.sol



pragma solidity ^0.8.0;








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_Queen_Nefertiti is ERC721A, ERC2981, OperatorFilterer, Ownable {
    using ECDSA for bytes32;

    string private _baseTokenURI;
    bytes32 public merkleRoot;
    string public baseExtension = ".json";
    address public contractAddress1;
    uint256 public MAX_SUPPLY = 330;
    uint256 public constant RESERVED = 35;
    uint256 public PUBLIC_SUPPLY = 295;  
    uint256 public WHITELIST_SUPPLY = 295; 
    uint256 public mintPrice = 0.031 ether;
    uint256 public whiteListPrice = 0.023 ether;
    string public provenanceHash;
    bool public operatorFilteringEnabled;
    mapping(bytes4 => bool) public functionLocked;
    bool public publicSaleStatus = false;
    bool public whitelistSaleStatus = false;
    mapping(address => uint256) public Claimed;
    mapping(address => uint256) public minted;
    uint256 public totalClaimed = 0;
    uint256 public privateSaleStart;

    event WHITELISTMINT(address to, uint256 quantity);
    event PUBLICMINT(address to, uint256 quantity);
    

    constructor(
        address _royaltyReceiver,
        address initialOwner,
        uint96 _royaltyFraction
    ) ERC721A(unicode"Bust of Queen Nefertiti", unicode"Bust of Queen Nefertiti") Ownable(initialOwner) {
        _registerForOperatorFiltering();
        operatorFilteringEnabled = true;
        _setDefaultRoyalty(_royaltyReceiver, _royaltyFraction);
    }

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


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

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

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

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

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

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

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

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

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

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

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

        provenanceHash = _provenanceHash;
    }

    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 onlyOwner{
        require(_totalMinted() + quantity <= MAX_SUPPLY);
        _mint(to, quantity);
    }

    function whiteListMint(
        address to,
        uint256 quantity,
        bytes32[] calldata merkleProof,
        uint256 amount
    ) external payable{
        require(whitelistSaleStatus == true, "Minting is not yet open.");
        require(block.timestamp <= privateSaleStart + 2 hours, "sale time ended");
        require(_totalMinted() + amount <= MAX_SUPPLY , "Exceeds Maximum Supply" );
        require(
            Claimed[to] + amount <= quantity,
            "Invalid Whitelist Proof or Already Claimed"
        );
        require(
            totalClaimed + amount <= WHITELIST_SUPPLY,
            "All NFTs Claimed."
        );
        bytes32 node = keccak256(abi.encodePacked(to, quantity));
        require(
            MerkleProof.verify(merkleProof, merkleRoot, node),
            "Invalid Whitelist Proof."
        );
        uint256 totalCost = amount * whiteListPrice;
        require(msg.value >= totalCost, "Ether sent is not correct.");
        _mint(to, amount);
        totalClaimed += amount;
        Claimed[to] += amount;
        if (msg.value > totalCost) {
            payable(msg.sender).transfer(msg.value - totalCost);
        }
        emit WHITELISTMINT(to, quantity);
    }

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

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

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

    function setWhiteListSupply(uint256 _newSupply) external onlyOwner {
        WHITELIST_SUPPLY = _newSupply;
    }

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

    function enablePublicMint(bool _status) external onlyOwner {
            publicSaleStatus = _status;
    }

    function enablePrivateMint(bool _status) external onlyOwner {
            whitelistSaleStatus = _status;
            privateSaleStart = 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":"address","name":"initialOwner","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":[{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"}],"name":"ERC2981InvalidDefaultRoyalty","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC2981InvalidDefaultRoyaltyReceiver","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"}],"name":"ERC2981InvalidTokenRoyalty","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC2981InvalidTokenRoyaltyReceiver","type":"error"},{"inputs":[],"name":"FunctionLocked","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","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":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"PUBLICMINT","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"WHITELISTMINT","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"enablePrivateMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"enablePublicMint","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":"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":"minted","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":"privateSaleStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"secondaryReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","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":"uint256","name":"_newSupply","type":"uint256"}],"name":"setPublicSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"royaltyFraction","type":"uint96"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setWhiteListPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setWhiteListSupply","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":"bytes32[]","name":"merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"whiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whiteListPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSaleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d90816100489190610768565b5061014a600f55610127601055610127601155666e2255f40980006012556651b660cdd580006013555f60175f6101000a81548160ff0219169083151502179055505f601760016101000a81548160ff0219169083151502179055505f601a553480156100b3575f80fd5b5060405161562d38038061562d83398181016040528101906100d591906108d6565b816040518060400160405280601781526020017f42757374206f6620517565656e204e65666572746974690000000000000000008152506040518060400160405280601781526020017f42757374206f6620517565656e204e656665727469746900000000000000000081525081600290816101519190610768565b5080600390816101619190610768565b5061017061023760201b60201c565b5f8190555050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036101e7575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016101de9190610935565b60405180910390fd5b6101f68161023f60201b60201c565b5061020561030260201b60201c565b600160155f6101000a81548160ff02191690831515021790555061022f838261032960201b60201c565b5050506109b4565b5f6001905090565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610327733cc6cdda760b79bafa08df41ecfa224f810dceb660016104ca60201b60201c565b565b5f61033861052560201b60201c565b6bffffffffffffffffffffffff16905080826bffffffffffffffffffffffff16111561039d5781816040517f6f483d0900000000000000000000000000000000000000000000000000000000815260040161039492919061098d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361040d575f6040517fb6d9900a0000000000000000000000000000000000000000000000000000000081526004016104049190610935565b60405180910390fd5b60405180604001604052808473ffffffffffffffffffffffffffffffffffffffff168152602001836bffffffffffffffffffffffff1681525060085f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b637d3e3dbe8260601b60601c9250816104f657826104ee57634420e48690506104f6565b63a0af290390505b8060e01b5f5230600452826024525f8060445f806daaeb6d7670e522a718067333cd4e5af1505f602452505050565b5f612710905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806105a957607f821691505b6020821081036105bc576105bb610565565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261061e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826105e3565b61062886836105e3565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61066c61066761066284610640565b610649565b610640565b9050919050565b5f819050919050565b61068583610652565b61069961069182610673565b8484546105ef565b825550505050565b5f90565b6106ad6106a1565b6106b881848461067c565b505050565b5b818110156106db576106d05f826106a5565b6001810190506106be565b5050565b601f821115610720576106f1816105c2565b6106fa846105d4565b81016020851015610709578190505b61071d610715856105d4565b8301826106bd565b50505b505050565b5f82821c905092915050565b5f6107405f1984600802610725565b1980831691505092915050565b5f6107588383610731565b9150826002028217905092915050565b6107718261052e565b67ffffffffffffffff81111561078a57610789610538565b5b6107948254610592565b61079f8282856106df565b5f60209050601f8311600181146107d0575f84156107be578287015190505b6107c8858261074d565b86555061082f565b601f1984166107de866105c2565b5f5b82811015610805578489015182556001820191506020850194506020810190506107e0565b86831015610822578489015161081e601f891682610731565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6108648261083b565b9050919050565b6108748161085a565b811461087e575f80fd5b50565b5f8151905061088f8161086b565b92915050565b5f6bffffffffffffffffffffffff82169050919050565b6108b581610895565b81146108bf575f80fd5b50565b5f815190506108d0816108ac565b92915050565b5f805f606084860312156108ed576108ec610837565b5b5f6108fa86828701610881565b935050602061090b86828701610881565b925050604061091c868287016108c2565b9150509250925092565b61092f8161085a565b82525050565b5f6020820190506109485f830184610926565b92915050565b5f61096861096361095e84610895565b610649565b610640565b9050919050565b6109788161094e565b82525050565b61098781610640565b82525050565b5f6040820190506109a05f83018561096f565b6109ad602083018461097e565b9392505050565b614c6c806109c15f395ff3fe60806040526004361061034f575f3560e01c80637cb64759116101c5578063bc1ac5c1116100f6578063d54ad2a111610094578063e75179a41161006e578063e75179a414610bcc578063e985e9c514610bf4578063f2fde38b14610c30578063fb796e6c14610c585761034f565b8063d54ad2a114610b3e578063da3ef23f14610b68578063dc33e68114610b905761034f565b8063c6682862116100d0578063c668286214610a92578063c6ab67a314610abc578063c87b56dd14610ae6578063ce6df2b914610b225761034f565b8063bc1ac5c114610a18578063beafc89b14610a42578063c21b471b14610a6a5761034f565b8063a3b45f6a11610163578063b6c693e51161013d578063b6c693e51461096e578063b7c0b8e814610998578063b88d4fde146109c0578063bbadfe76146109dc5761034f565b8063a3b45f6a146108ec578063aa592f2514610908578063b449c24d146109325761034f565b806395d89b411161019f57806395d89b41146108485780639731a486146108725780639e3545161461089c578063a22cb465146108c45761034f565b80637cb64759146107cc5780638342083a146107f45780638da5cb5b1461081e5761034f565b8063353094d91161029f5780636817c76c1161023d57806370a082311161021757806370a0823114610728578063715018a61461076457806374d0101d1461077a5780637bc02806146107a25761034f565b80636817c76c146106aa57806368575685146106d45780636e56539b146106fe5761034f565b806342842e0e1161027957806342842e0e1461060257806355f804b31461061e5780635d82cf6e146106465780636352211e1461066e5761034f565b8063353094d91461059c578063381a3506146105c45780633ccfd60b146105ec5761034f565b80631e7269c51161030c5780632a55205a116102e65780632a55205a146104e35780632eb4a7ab1461052057806332cb6b0c1461054a57806334531828146105745761034f565b80631e7269c51461046357806323b872dd1461049f57806326aa420a146104bb5761034f565b806301ffc9a71461035357806306fdde031461038f578063081812fc146103b9578063095ea7b3146103f5578063109695231461041157806318160ddd14610439575b5f80fd5b34801561035e575f80fd5b5061037960048036038101906103749190613710565b610c82565b6040516103869190613755565b60405180910390f35b34801561039a575f80fd5b506103a3610ca3565b6040516103b091906137de565b60405180910390f35b3480156103c4575f80fd5b506103df60048036038101906103da9190613831565b610d33565b6040516103ec919061389b565b60405180910390f35b61040f600480360381019061040a91906138de565b610dad565b005b34801561041c575f80fd5b506104376004803603810190610432919061397d565b610e16565b005b348015610444575f80fd5b5061044d610f31565b60405161045a91906139d7565b60405180910390f35b34801561046e575f80fd5b50610489600480360381019061048491906139f0565b610f46565b60405161049691906139d7565b60405180910390f35b6104b960048036038101906104b49190613a1b565b610f5b565b005b3480156104c6575f80fd5b506104e160048036038101906104dc9190613831565b610fce565b005b3480156104ee575f80fd5b5061050960048036038101906105049190613a6b565b610fe0565b604051610517929190613aa9565b60405180910390f35b34801561052b575f80fd5b506105346111bc565b6040516105419190613ae8565b60405180910390f35b348015610555575f80fd5b5061055e6111c2565b60405161056b91906139d7565b60405180910390f35b34801561057f575f80fd5b5061059a60048036038101906105959190613710565b6111c8565b005b3480156105a7575f80fd5b506105c260048036038101906105bd9190613b2b565b61123a565b005b3480156105cf575f80fd5b506105ea60048036038101906105e59190613831565b61125e565b005b3480156105f7575f80fd5b50610600611270565b005b61061c60048036038101906106179190613a1b565b61131a565b005b348015610629575f80fd5b50610644600480360381019061063f919061397d565b61138d565b005b348015610651575f80fd5b5061066c60048036038101906106679190613831565b611461565b005b348015610679575f80fd5b50610694600480360381019061068f9190613831565b611473565b6040516106a1919061389b565b60405180910390f35b3480156106b5575f80fd5b506106be611484565b6040516106cb91906139d7565b60405180910390f35b3480156106df575f80fd5b506106e861148a565b6040516106f591906139d7565b60405180910390f35b348015610709575f80fd5b50610712611490565b60405161071f91906139d7565b60405180910390f35b348015610733575f80fd5b5061074e600480360381019061074991906139f0565b611496565b60405161075b91906139d7565b60405180910390f35b34801561076f575f80fd5b5061077861154b565b005b348015610785575f80fd5b506107a0600480360381019061079b91906138de565b61155e565b005b3480156107ad575f80fd5b506107b6611594565b6040516107c3919061389b565b60405180910390f35b3480156107d7575f80fd5b506107f260048036038101906107ed9190613b80565b6115b9565b005b3480156107ff575f80fd5b506108086115cb565b60405161081591906139d7565b60405180910390f35b348015610829575f80fd5b506108326115d1565b60405161083f919061389b565b60405180910390f35b348015610853575f80fd5b5061085c6115f9565b60405161086991906137de565b60405180910390f35b34801561087d575f80fd5b50610886611689565b60405161089391906139d7565b60405180910390f35b3480156108a7575f80fd5b506108c260048036038101906108bd9190613b2b565b61168f565b005b3480156108cf575f80fd5b506108ea60048036038101906108e59190613bab565b6116bb565b005b61090660048036038101906109019190613c3e565b611724565b005b348015610913575f80fd5b5061091c611b1b565b60405161092991906139d7565b60405180910390f35b34801561093d575f80fd5b50610958600480360381019061095391906139f0565b611b20565b60405161096591906139d7565b60405180910390f35b348015610979575f80fd5b50610982611b35565b60405161098f9190613755565b60405180910390f35b3480156109a3575f80fd5b506109be60048036038101906109b99190613b2b565b611b47565b005b6109da60048036038101906109d59190613dea565b611c21565b005b3480156109e7575f80fd5b50610a0260048036038101906109fd9190613710565b611c96565b604051610a0f9190613755565b60405180910390f35b348015610a23575f80fd5b50610a2c611cb3565b604051610a399190613755565b60405180910390f35b348015610a4d575f80fd5b50610a686004803603810190610a639190613831565b611cc6565b005b348015610a75575f80fd5b50610a906004803603810190610a8b9190613eab565b611cd8565b005b348015610a9d575f80fd5b50610aa6611cee565b604051610ab391906137de565b60405180910390f35b348015610ac7575f80fd5b50610ad0611d7a565b604051610add91906137de565b60405180910390f35b348015610af1575f80fd5b50610b0c6004803603810190610b079190613831565b611e06565b604051610b1991906137de565b60405180910390f35b610b3c6004803603810190610b3791906138de565b611ead565b005b348015610b49575f80fd5b50610b52612144565b604051610b5f91906139d7565b60405180910390f35b348015610b73575f80fd5b50610b8e6004803603810190610b899190613f87565b61214a565b005b348015610b9b575f80fd5b50610bb66004803603810190610bb191906139f0565b612165565b604051610bc391906139d7565b60405180910390f35b348015610bd7575f80fd5b50610bf26004803603810190610bed91906139f0565b612176565b005b348015610bff575f80fd5b50610c1a6004803603810190610c159190613fce565b612283565b604051610c279190613755565b60405180910390f35b348015610c3b575f80fd5b50610c566004803603810190610c5191906139f0565b612311565b005b348015610c63575f80fd5b50610c6c612395565b604051610c799190613755565b60405180910390f35b5f610c8c826123a7565b80610c9c5750610c9b82612438565b5b9050919050565b606060028054610cb290614039565b80601f0160208091040260200160405190810160405280929190818152602001828054610cde90614039565b8015610d295780601f10610d0057610100808354040283529160200191610d29565b820191905f5260205f20905b815481529060010190602001808311610d0c57829003601f168201915b5050505050905090565b5f610d3d826124b1565b610d73576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160155f9054906101000a900460ff168015610e065769c61711340011223344555f5230601a528160601b60601c603a525f80604460166daaeb6d7670e522a718067333cd4e5afa610e01573d5f803e3d5ffd5b5f603a525b610e10848461250b565b50505050565b60165f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff1615610ecc576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ed461264a565b5f60148054610ee290614039565b905014610f1b576040517f19e24c1100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818160149182610f2c929190614210565b505050565b5f610f3a6126d1565b6001545f540303905090565b6019602052805f5260405f205f915090505481565b8260155f9054906101000a900460ff168015610fbc57338260601b60601c14610fbb5769c61711340011223344555f5230601a5233603a525f80604460166daaeb6d7670e522a718067333cd4e5afa610fb6573d5f803e3d5ffd5b5f603a525b5b610fc78585856126d9565b5050505050565b610fd661264a565b8060108190555050565b5f805f60095f8681526020019081526020015f206040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff16036111695760086040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b5f6111726129e7565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff168661119e919061430a565b6111a89190614378565b9050815f0151819350935050509250929050565b600c5481565b600f5481565b6111d061264a565b600160165f837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b61124261264a565b8060175f6101000a81548160ff02191690831515021790555050565b61126661264a565b8060118190555050565b61127861264a565b5f3373ffffffffffffffffffffffffffffffffffffffff164760405161129d906143d5565b5f6040518083038185875af1925050503d805f81146112d7576040519150601f19603f3d011682016040523d82523d5f602084013e6112dc565b606091505b5050905080611317576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b8260155f9054906101000a900460ff16801561137b57338260601b60601c1461137a5769c61711340011223344555f5230601a5233603a525f80604460166daaeb6d7670e522a718067333cd4e5afa611375573d5f803e3d5ffd5b5f603a525b5b6113868585856129f0565b5050505050565b60165f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff1615611443576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61144b61264a565b8181600b918261145c929190614210565b505050565b61146961264a565b8060128190555050565b5f61147d82612a0f565b9050919050565b60125481565b60135481565b60115481565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114fc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b61155361264a565b61155c5f612ad2565b565b61156661264a565b600f5481611572612b95565b61157c91906143e9565b1115611586575f80fd5b6115908282612ba6565b5050565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6115c161264a565b80600c8190555050565b60105481565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461160890614039565b80601f016020809104026020016040519081016040528092919081815260200182805461163490614039565b801561167f5780601f106116565761010080835404028352916020019161167f565b820191905f5260205f20905b81548152906001019060200180831161166257829003601f168201915b5050505050905090565b601b5481565b61169761264a565b80601760016101000a81548160ff02191690831515021790555042601b8190555050565b8160155f9054906101000a900460ff1680156117145769c61711340011223344555f5230601a528160601b60601c603a525f80604460166daaeb6d7670e522a718067333cd4e5afa61170f573d5f803e3d5ffd5b5f603a525b61171e8484612d4f565b50505050565b60011515601760019054906101000a900460ff1615151461177a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177190614466565b60405180910390fd5b611c20601b5461178a91906143e9565b4211156117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c3906144ce565b60405180910390fd5b600f54816117d8612b95565b6117e291906143e9565b1115611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a90614536565b60405180910390fd5b838160185f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461186d91906143e9565b11156118ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a5906145c4565b60405180910390fd5b60115481601a546118bf91906143e9565b1115611900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f79061462c565b60405180910390fd5b5f85856040516020016119149291906146af565b6040516020818303038152906040528051906020012090506119798484808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f82011690508083019250505050505050600c5483612e55565b6119b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119af90614724565b60405180910390fd5b5f601354836119c7919061430a565b905080341015611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a039061478c565b60405180910390fd5b611a168784612ba6565b82601a5f828254611a2791906143e9565b925050819055508260185f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611a7a91906143e9565b9250508190555080341115611ad9573373ffffffffffffffffffffffffffffffffffffffff166108fc8234611aaf91906147aa565b90811502906040515f60405180830381858888f19350505050158015611ad7573d5f803e3d5ffd5b505b7fe85e6d7f4aa53ebaa891bc4adfd88ff29860ba8f8c5f3301c3bfde246670f0928787604051611b0a929190613aa9565b60405180910390a150505050505050565b602381565b6018602052805f5260405f205f915090505481565b60175f9054906101000a900460ff1681565b60165f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff1615611bfd576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c0561264a565b8060155f6101000a81548160ff02191690831515021790555050565b8360155f9054906101000a900460ff168015611c8257338260601b60601c14611c815769c61711340011223344555f5230601a5233603a525f80604460166daaeb6d7670e522a718067333cd4e5afa611c7c573d5f803e3d5ffd5b5f603a525b5b611c8e86868686612f02565b505050505050565b6016602052805f5260405f205f915054906101000a900460ff1681565b601760019054906101000a900460ff1681565b611cce61264a565b8060138190555050565b611ce061264a565b611cea8282612f74565b5050565b600d8054611cfb90614039565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2790614039565b8015611d725780601f10611d4957610100808354040283529160200191611d72565b820191905f5260205f20905b815481529060010190602001808311611d5557829003601f168201915b505050505081565b60148054611d8790614039565b80601f0160208091040260200160405190810160405280929190818152602001828054611db390614039565b8015611dfe5780601f10611dd557610100808354040283529160200191611dfe565b820191905f5260205f20905b815481529060010190602001808311611de157829003601f168201915b505050505081565b6060611e11826124b1565b611e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e479061484d565b60405180910390fd5b5f611e5961310f565b90505f815111611e775760405180602001604052805f815250611ea5565b80611e818461319f565b600d604051602001611e9593929190614925565b6040516020818303038152906040525b915050919050565b6001151560175f9054906101000a900460ff16151514611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef990614466565b60405180910390fd5b60058160195f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611f4d91906143e9565b1115611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f859061499f565b60405180910390fd5b600f5481611f9a612b95565b611fa491906143e9565b1115611fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdc90614536565b60405180910390fd5b5f60125482611ff4919061430a565b905080341015612039576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120309061478c565b60405180910390fd5b6120438383612ba6565b8160105f82825461205491906147aa565b925050819055508160195f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546120a791906143e9565b9250508190555080341115612106573373ffffffffffffffffffffffffffffffffffffffff166108fc82346120dc91906147aa565b90811502906040515f60405180830381858888f19350505050158015612104573d5f803e3d5ffd5b505b7f4baa53bbc2ac9ba07eaaa8ee7f6dbb0b8aff3dc0f8b2ec4a663004d2efcffa718383604051612137929190613aa9565b60405180910390a1505050565b601a5481565b61215261264a565b80600d908161216191906149bd565b5050565b5f61216f82613269565b9050919050565b60165f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff161561222c576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61223461264a565b602361223e612b95565b10612275576040517f1f0f14ca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612280816023612ba6565b50565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61231961264a565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612389575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401612380919061389b565b60405180910390fd5b61239281612ad2565b50565b60155f9054906101000a900460ff1681565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061240157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806124315750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b5f7f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124aa57506124a9826132bd565b5b9050919050565b5f816124bb6126d1565b111580156124c957505f5482105b801561250457505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f61251582611473565b90508073ffffffffffffffffffffffffffffffffffffffff16612536613326565b73ffffffffffffffffffffffffffffffffffffffff1614612599576125628161255d613326565b612283565b612598576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61265261332d565b73ffffffffffffffffffffffffffffffffffffffff166126706115d1565b73ffffffffffffffffffffffffffffffffffffffff16146126cf5761269361332d565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016126c6919061389b565b60405180910390fd5b565b5f6001905090565b5f6126e382612a0f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461274a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8061275584613334565b9150915061276b8187612766613326565b613357565b6127b7576127808661277b613326565b612283565b6127b6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361281c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612829868686600161339a565b8015612833575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055506128fb856128d78888876133a0565b7c0200000000000000000000000000000000000000000000000000000000176133c7565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603612977575f6001850190505f60045f8381526020019081526020015f205403612975575f548114612974578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129df86868660016133f1565b505050505050565b5f612710905090565b612a0a83838360405180602001604052805f815250611c21565b505050565b5f8082905080612a1d6126d1565b11612a9b575f54811015612a9a575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603612a98575b5f8103612a8e5760045f836001900393508381526020019081526020015f20549050612a67565b8092505050612acd565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f612b9e6126d1565b5f5403905090565b5f805490505f8203612be4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bf05f84838561339a565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550612c6283612c535f865f6133a0565b612c5c856133f7565b176133c7565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114612cfc5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050612cc3565b505f8203612d36576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f819055505050612d4a5f8483856133f1565b505050565b8060075f612d5b613326565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612e04613326565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612e499190613755565b60405180910390a35050565b5f808290505f5b8551811015612ef4575f868281518110612e7957612e78614a8c565b5b60200260200101519050808311612eba578281604051602001612e9d929190614ad9565b604051602081830303815290604052805190602001209250612ee6565b8083604051602001612ecd929190614ad9565b6040516020818303038152906040528051906020012092505b508080600101915050612e5c565b508381149150509392505050565b612f0d848484610f5b565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14612f6e57612f3784848484613406565b612f6d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b5f612f7d6129e7565b6bffffffffffffffffffffffff16905080826bffffffffffffffffffffffff161115612fe25781816040517f6f483d09000000000000000000000000000000000000000000000000000000008152600401612fd9929190614b34565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613052575f6040517fb6d9900a000000000000000000000000000000000000000000000000000000008152600401613049919061389b565b60405180910390fd5b60405180604001604052808473ffffffffffffffffffffffffffffffffffffffff168152602001836bffffffffffffffffffffffff1681525060085f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b6060600b805461311e90614039565b80601f016020809104026020016040519081016040528092919081815260200182805461314a90614039565b80156131955780601f1061316c57610100808354040283529160200191613195565b820191905f5260205f20905b81548152906001019060200180831161317857829003601f168201915b5050505050905090565b60605f60016131ad84613551565b0190505f8167ffffffffffffffff8111156131cb576131ca613cc6565b5b6040519080825280601f01601f1916602001820160405280156131fd5781602001600182028036833780820191505090505b5090505f82602001820190505b60011561325e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816132535761325261434b565b5b0494505f850361320a575b819350505050919050565b5f67ffffffffffffffff604060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f33905090565b5f33905090565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86133b68686846136a2565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f6001821460e11b9050919050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261342b613326565b8786866040518563ffffffff1660e01b815260040161344d9493929190614bad565b6020604051808303815f875af192505050801561348857506040513d601f19601f820116820180604052508101906134859190614c0b565b60015b6134fe573d805f81146134b6576040519150601f19603f3d011682016040523d82523d5f602084013e6134bb565b606091505b505f8151036134f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106135ad577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816135a3576135a261434b565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106135ea576d04ee2d6d415b85acef810000000083816135e0576135df61434b565b5b0492506020810190505b662386f26fc10000831061361957662386f26fc10000838161360f5761360e61434b565b5b0492506010810190505b6305f5e1008310613642576305f5e10083816136385761363761434b565b5b0492506008810190505b612710831061366757612710838161365d5761365c61434b565b5b0492506004810190505b6064831061368a57606483816136805761367f61434b565b5b0492506002810190505b600a8310613699576001810190505b80915050919050565b5f9392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6136ef816136bb565b81146136f9575f80fd5b50565b5f8135905061370a816136e6565b92915050565b5f60208284031215613725576137246136b3565b5b5f613732848285016136fc565b91505092915050565b5f8115159050919050565b61374f8161373b565b82525050565b5f6020820190506137685f830184613746565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6137b08261376e565b6137ba8185613778565b93506137ca818560208601613788565b6137d381613796565b840191505092915050565b5f6020820190508181035f8301526137f681846137a6565b905092915050565b5f819050919050565b613810816137fe565b811461381a575f80fd5b50565b5f8135905061382b81613807565b92915050565b5f60208284031215613846576138456136b3565b5b5f6138538482850161381d565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6138858261385c565b9050919050565b6138958161387b565b82525050565b5f6020820190506138ae5f83018461388c565b92915050565b6138bd8161387b565b81146138c7575f80fd5b50565b5f813590506138d8816138b4565b92915050565b5f80604083850312156138f4576138f36136b3565b5b5f613901858286016138ca565b92505060206139128582860161381d565b9150509250929050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261393d5761393c61391c565b5b8235905067ffffffffffffffff81111561395a57613959613920565b5b60208301915083600182028301111561397657613975613924565b5b9250929050565b5f8060208385031215613993576139926136b3565b5b5f83013567ffffffffffffffff8111156139b0576139af6136b7565b5b6139bc85828601613928565b92509250509250929050565b6139d1816137fe565b82525050565b5f6020820190506139ea5f8301846139c8565b92915050565b5f60208284031215613a0557613a046136b3565b5b5f613a12848285016138ca565b91505092915050565b5f805f60608486031215613a3257613a316136b3565b5b5f613a3f868287016138ca565b9350506020613a50868287016138ca565b9250506040613a618682870161381d565b9150509250925092565b5f8060408385031215613a8157613a806136b3565b5b5f613a8e8582860161381d565b9250506020613a9f8582860161381d565b9150509250929050565b5f604082019050613abc5f83018561388c565b613ac960208301846139c8565b9392505050565b5f819050919050565b613ae281613ad0565b82525050565b5f602082019050613afb5f830184613ad9565b92915050565b613b0a8161373b565b8114613b14575f80fd5b50565b5f81359050613b2581613b01565b92915050565b5f60208284031215613b4057613b3f6136b3565b5b5f613b4d84828501613b17565b91505092915050565b613b5f81613ad0565b8114613b69575f80fd5b50565b5f81359050613b7a81613b56565b92915050565b5f60208284031215613b9557613b946136b3565b5b5f613ba284828501613b6c565b91505092915050565b5f8060408385031215613bc157613bc06136b3565b5b5f613bce858286016138ca565b9250506020613bdf85828601613b17565b9150509250929050565b5f8083601f840112613bfe57613bfd61391c565b5b8235905067ffffffffffffffff811115613c1b57613c1a613920565b5b602083019150836020820283011115613c3757613c36613924565b5b9250929050565b5f805f805f60808688031215613c5757613c566136b3565b5b5f613c64888289016138ca565b9550506020613c758882890161381d565b945050604086013567ffffffffffffffff811115613c9657613c956136b7565b5b613ca288828901613be9565b93509350506060613cb58882890161381d565b9150509295509295909350565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b613cfc82613796565b810181811067ffffffffffffffff82111715613d1b57613d1a613cc6565b5b80604052505050565b5f613d2d6136aa565b9050613d398282613cf3565b919050565b5f67ffffffffffffffff821115613d5857613d57613cc6565b5b613d6182613796565b9050602081019050919050565b828183375f83830152505050565b5f613d8e613d8984613d3e565b613d24565b905082815260208101848484011115613daa57613da9613cc2565b5b613db5848285613d6e565b509392505050565b5f82601f830112613dd157613dd061391c565b5b8135613de1848260208601613d7c565b91505092915050565b5f805f8060808587031215613e0257613e016136b3565b5b5f613e0f878288016138ca565b9450506020613e20878288016138ca565b9350506040613e318782880161381d565b925050606085013567ffffffffffffffff811115613e5257613e516136b7565b5b613e5e87828801613dbd565b91505092959194509250565b5f6bffffffffffffffffffffffff82169050919050565b613e8a81613e6a565b8114613e94575f80fd5b50565b5f81359050613ea581613e81565b92915050565b5f8060408385031215613ec157613ec06136b3565b5b5f613ece858286016138ca565b9250506020613edf85828601613e97565b9150509250929050565b5f67ffffffffffffffff821115613f0357613f02613cc6565b5b613f0c82613796565b9050602081019050919050565b5f613f2b613f2684613ee9565b613d24565b905082815260208101848484011115613f4757613f46613cc2565b5b613f52848285613d6e565b509392505050565b5f82601f830112613f6e57613f6d61391c565b5b8135613f7e848260208601613f19565b91505092915050565b5f60208284031215613f9c57613f9b6136b3565b5b5f82013567ffffffffffffffff811115613fb957613fb86136b7565b5b613fc584828501613f5a565b91505092915050565b5f8060408385031215613fe457613fe36136b3565b5b5f613ff1858286016138ca565b9250506020614002858286016138ca565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061405057607f821691505b6020821081036140635761406261400c565b5b50919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026140cf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614094565b6140d98683614094565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61411461410f61410a846137fe565b6140f1565b6137fe565b9050919050565b5f819050919050565b61412d836140fa565b6141416141398261411b565b8484546140a0565b825550505050565b5f90565b614155614149565b614160818484614124565b505050565b5b81811015614183576141785f8261414d565b600181019050614166565b5050565b601f8211156141c85761419981614073565b6141a284614085565b810160208510156141b1578190505b6141c56141bd85614085565b830182614165565b50505b505050565b5f82821c905092915050565b5f6141e85f19846008026141cd565b1980831691505092915050565b5f61420083836141d9565b9150826002028217905092915050565b61421a8383614069565b67ffffffffffffffff81111561423357614232613cc6565b5b61423d8254614039565b614248828285614187565b5f601f831160018114614275575f8415614263578287013590505b61426d85826141f5565b8655506142d4565b601f19841661428386614073565b5f5b828110156142aa57848901358255600182019150602085019450602081019050614285565b868310156142c757848901356142c3601f8916826141d9565b8355505b6001600288020188555050505b50505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f614314826137fe565b915061431f836137fe565b925082820261432d816137fe565b91508282048414831517614344576143436142dd565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f614382826137fe565b915061438d836137fe565b92508261439d5761439c61434b565b5b828204905092915050565b5f81905092915050565b50565b5f6143c05f836143a8565b91506143cb826143b2565b5f82019050919050565b5f6143df826143b5565b9150819050919050565b5f6143f3826137fe565b91506143fe836137fe565b9250828201905080821115614416576144156142dd565b5b92915050565b7f4d696e74696e67206973206e6f7420796574206f70656e2e00000000000000005f82015250565b5f614450601883613778565b915061445b8261441c565b602082019050919050565b5f6020820190508181035f83015261447d81614444565b9050919050565b7f73616c652074696d6520656e64656400000000000000000000000000000000005f82015250565b5f6144b8600f83613778565b91506144c382614484565b602082019050919050565b5f6020820190508181035f8301526144e5816144ac565b9050919050565b7f45786365656473204d6178696d756d20537570706c79000000000000000000005f82015250565b5f614520601683613778565b915061452b826144ec565b602082019050919050565b5f6020820190508181035f83015261454d81614514565b9050919050565b7f496e76616c69642057686974656c6973742050726f6f66206f7220416c7265615f8201527f647920436c61696d656400000000000000000000000000000000000000000000602082015250565b5f6145ae602a83613778565b91506145b982614554565b604082019050919050565b5f6020820190508181035f8301526145db816145a2565b9050919050565b7f416c6c204e46547320436c61696d65642e0000000000000000000000000000005f82015250565b5f614616601183613778565b9150614621826145e2565b602082019050919050565b5f6020820190508181035f8301526146438161460a565b9050919050565b5f8160601b9050919050565b5f6146608261464a565b9050919050565b5f61467182614656565b9050919050565b6146896146848261387b565b614667565b82525050565b5f819050919050565b6146a96146a4826137fe565b61468f565b82525050565b5f6146ba8285614678565b6014820191506146ca8284614698565b6020820191508190509392505050565b7f496e76616c69642057686974656c6973742050726f6f662e00000000000000005f82015250565b5f61470e601883613778565b9150614719826146da565b602082019050919050565b5f6020820190508181035f83015261473b81614702565b9050919050565b7f45746865722073656e74206973206e6f7420636f72726563742e0000000000005f82015250565b5f614776601a83613778565b915061478182614742565b602082019050919050565b5f6020820190508181035f8301526147a38161476a565b9050919050565b5f6147b4826137fe565b91506147bf836137fe565b92508282039050818111156147d7576147d66142dd565b5b92915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f614837602f83613778565b9150614842826147dd565b604082019050919050565b5f6020820190508181035f8301526148648161482b565b9050919050565b5f81905092915050565b5f61487f8261376e565b614889818561486b565b9350614899818560208601613788565b80840191505092915050565b5f81546148b181614039565b6148bb818661486b565b9450600182165f81146148d557600181146148ea5761491c565b60ff198316865281151582028601935061491c565b6148f385614073565b5f5b83811015614914578154818901526001820191506020810190506148f5565b838801955050505b50505092915050565b5f6149308286614875565b915061493c8285614875565b915061494882846148a5565b9150819050949350505050565b7f4e465420616d6f756e74206578636565647300000000000000000000000000005f82015250565b5f614989601283613778565b915061499482614955565b602082019050919050565b5f6020820190508181035f8301526149b68161497d565b9050919050565b6149c68261376e565b67ffffffffffffffff8111156149df576149de613cc6565b5b6149e98254614039565b6149f4828285614187565b5f60209050601f831160018114614a25575f8415614a13578287015190505b614a1d85826141f5565b865550614a84565b601f198416614a3386614073565b5f5b82811015614a5a57848901518255600182019150602085019450602081019050614a35565b86831015614a775784890151614a73601f8916826141d9565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b614ad3614ace82613ad0565b614ab9565b82525050565b5f614ae48285614ac2565b602082019150614af48284614ac2565b6020820191508190509392505050565b5f614b1e614b19614b1484613e6a565b6140f1565b6137fe565b9050919050565b614b2e81614b04565b82525050565b5f604082019050614b475f830185614b25565b614b5460208301846139c8565b9392505050565b5f81519050919050565b5f82825260208201905092915050565b5f614b7f82614b5b565b614b898185614b65565b9350614b99818560208601613788565b614ba281613796565b840191505092915050565b5f608082019050614bc05f83018761388c565b614bcd602083018661388c565b614bda60408301856139c8565b8181036060830152614bec8184614b75565b905095945050505050565b5f81519050614c05816136e6565b92915050565b5f60208284031215614c2057614c1f6136b3565b5b5f614c2d84828501614bf7565b9150509291505056fea264697066735822122045055b810173354262cf8e496d45228257edc744f2bc5ee3e4e6ec531eadd20764736f6c63430008190033000000000000000000000000bb1d20b0250b298aa325219d56896fb6c1566c9c00000000000000000000000059de7273191e6bf1907d614e94ecfbe8e5fb731800000000000000000000000000000000000000000000000000000000000001f4

Deployed Bytecode

0x60806040526004361061034f575f3560e01c80637cb64759116101c5578063bc1ac5c1116100f6578063d54ad2a111610094578063e75179a41161006e578063e75179a414610bcc578063e985e9c514610bf4578063f2fde38b14610c30578063fb796e6c14610c585761034f565b8063d54ad2a114610b3e578063da3ef23f14610b68578063dc33e68114610b905761034f565b8063c6682862116100d0578063c668286214610a92578063c6ab67a314610abc578063c87b56dd14610ae6578063ce6df2b914610b225761034f565b8063bc1ac5c114610a18578063beafc89b14610a42578063c21b471b14610a6a5761034f565b8063a3b45f6a11610163578063b6c693e51161013d578063b6c693e51461096e578063b7c0b8e814610998578063b88d4fde146109c0578063bbadfe76146109dc5761034f565b8063a3b45f6a146108ec578063aa592f2514610908578063b449c24d146109325761034f565b806395d89b411161019f57806395d89b41146108485780639731a486146108725780639e3545161461089c578063a22cb465146108c45761034f565b80637cb64759146107cc5780638342083a146107f45780638da5cb5b1461081e5761034f565b8063353094d91161029f5780636817c76c1161023d57806370a082311161021757806370a0823114610728578063715018a61461076457806374d0101d1461077a5780637bc02806146107a25761034f565b80636817c76c146106aa57806368575685146106d45780636e56539b146106fe5761034f565b806342842e0e1161027957806342842e0e1461060257806355f804b31461061e5780635d82cf6e146106465780636352211e1461066e5761034f565b8063353094d91461059c578063381a3506146105c45780633ccfd60b146105ec5761034f565b80631e7269c51161030c5780632a55205a116102e65780632a55205a146104e35780632eb4a7ab1461052057806332cb6b0c1461054a57806334531828146105745761034f565b80631e7269c51461046357806323b872dd1461049f57806326aa420a146104bb5761034f565b806301ffc9a71461035357806306fdde031461038f578063081812fc146103b9578063095ea7b3146103f5578063109695231461041157806318160ddd14610439575b5f80fd5b34801561035e575f80fd5b5061037960048036038101906103749190613710565b610c82565b6040516103869190613755565b60405180910390f35b34801561039a575f80fd5b506103a3610ca3565b6040516103b091906137de565b60405180910390f35b3480156103c4575f80fd5b506103df60048036038101906103da9190613831565b610d33565b6040516103ec919061389b565b60405180910390f35b61040f600480360381019061040a91906138de565b610dad565b005b34801561041c575f80fd5b506104376004803603810190610432919061397d565b610e16565b005b348015610444575f80fd5b5061044d610f31565b60405161045a91906139d7565b60405180910390f35b34801561046e575f80fd5b50610489600480360381019061048491906139f0565b610f46565b60405161049691906139d7565b60405180910390f35b6104b960048036038101906104b49190613a1b565b610f5b565b005b3480156104c6575f80fd5b506104e160048036038101906104dc9190613831565b610fce565b005b3480156104ee575f80fd5b5061050960048036038101906105049190613a6b565b610fe0565b604051610517929190613aa9565b60405180910390f35b34801561052b575f80fd5b506105346111bc565b6040516105419190613ae8565b60405180910390f35b348015610555575f80fd5b5061055e6111c2565b60405161056b91906139d7565b60405180910390f35b34801561057f575f80fd5b5061059a60048036038101906105959190613710565b6111c8565b005b3480156105a7575f80fd5b506105c260048036038101906105bd9190613b2b565b61123a565b005b3480156105cf575f80fd5b506105ea60048036038101906105e59190613831565b61125e565b005b3480156105f7575f80fd5b50610600611270565b005b61061c60048036038101906106179190613a1b565b61131a565b005b348015610629575f80fd5b50610644600480360381019061063f919061397d565b61138d565b005b348015610651575f80fd5b5061066c60048036038101906106679190613831565b611461565b005b348015610679575f80fd5b50610694600480360381019061068f9190613831565b611473565b6040516106a1919061389b565b60405180910390f35b3480156106b5575f80fd5b506106be611484565b6040516106cb91906139d7565b60405180910390f35b3480156106df575f80fd5b506106e861148a565b6040516106f591906139d7565b60405180910390f35b348015610709575f80fd5b50610712611490565b60405161071f91906139d7565b60405180910390f35b348015610733575f80fd5b5061074e600480360381019061074991906139f0565b611496565b60405161075b91906139d7565b60405180910390f35b34801561076f575f80fd5b5061077861154b565b005b348015610785575f80fd5b506107a0600480360381019061079b91906138de565b61155e565b005b3480156107ad575f80fd5b506107b6611594565b6040516107c3919061389b565b60405180910390f35b3480156107d7575f80fd5b506107f260048036038101906107ed9190613b80565b6115b9565b005b3480156107ff575f80fd5b506108086115cb565b60405161081591906139d7565b60405180910390f35b348015610829575f80fd5b506108326115d1565b60405161083f919061389b565b60405180910390f35b348015610853575f80fd5b5061085c6115f9565b60405161086991906137de565b60405180910390f35b34801561087d575f80fd5b50610886611689565b60405161089391906139d7565b60405180910390f35b3480156108a7575f80fd5b506108c260048036038101906108bd9190613b2b565b61168f565b005b3480156108cf575f80fd5b506108ea60048036038101906108e59190613bab565b6116bb565b005b61090660048036038101906109019190613c3e565b611724565b005b348015610913575f80fd5b5061091c611b1b565b60405161092991906139d7565b60405180910390f35b34801561093d575f80fd5b50610958600480360381019061095391906139f0565b611b20565b60405161096591906139d7565b60405180910390f35b348015610979575f80fd5b50610982611b35565b60405161098f9190613755565b60405180910390f35b3480156109a3575f80fd5b506109be60048036038101906109b99190613b2b565b611b47565b005b6109da60048036038101906109d59190613dea565b611c21565b005b3480156109e7575f80fd5b50610a0260048036038101906109fd9190613710565b611c96565b604051610a0f9190613755565b60405180910390f35b348015610a23575f80fd5b50610a2c611cb3565b604051610a399190613755565b60405180910390f35b348015610a4d575f80fd5b50610a686004803603810190610a639190613831565b611cc6565b005b348015610a75575f80fd5b50610a906004803603810190610a8b9190613eab565b611cd8565b005b348015610a9d575f80fd5b50610aa6611cee565b604051610ab391906137de565b60405180910390f35b348015610ac7575f80fd5b50610ad0611d7a565b604051610add91906137de565b60405180910390f35b348015610af1575f80fd5b50610b0c6004803603810190610b079190613831565b611e06565b604051610b1991906137de565b60405180910390f35b610b3c6004803603810190610b3791906138de565b611ead565b005b348015610b49575f80fd5b50610b52612144565b604051610b5f91906139d7565b60405180910390f35b348015610b73575f80fd5b50610b8e6004803603810190610b899190613f87565b61214a565b005b348015610b9b575f80fd5b50610bb66004803603810190610bb191906139f0565b612165565b604051610bc391906139d7565b60405180910390f35b348015610bd7575f80fd5b50610bf26004803603810190610bed91906139f0565b612176565b005b348015610bff575f80fd5b50610c1a6004803603810190610c159190613fce565b612283565b604051610c279190613755565b60405180910390f35b348015610c3b575f80fd5b50610c566004803603810190610c5191906139f0565b612311565b005b348015610c63575f80fd5b50610c6c612395565b604051610c799190613755565b60405180910390f35b5f610c8c826123a7565b80610c9c5750610c9b82612438565b5b9050919050565b606060028054610cb290614039565b80601f0160208091040260200160405190810160405280929190818152602001828054610cde90614039565b8015610d295780601f10610d0057610100808354040283529160200191610d29565b820191905f5260205f20905b815481529060010190602001808311610d0c57829003601f168201915b5050505050905090565b5f610d3d826124b1565b610d73576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160155f9054906101000a900460ff168015610e065769c61711340011223344555f5230601a528160601b60601c603a525f80604460166daaeb6d7670e522a718067333cd4e5afa610e01573d5f803e3d5ffd5b5f603a525b610e10848461250b565b50505050565b60165f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff1615610ecc576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ed461264a565b5f60148054610ee290614039565b905014610f1b576040517f19e24c1100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818160149182610f2c929190614210565b505050565b5f610f3a6126d1565b6001545f540303905090565b6019602052805f5260405f205f915090505481565b8260155f9054906101000a900460ff168015610fbc57338260601b60601c14610fbb5769c61711340011223344555f5230601a5233603a525f80604460166daaeb6d7670e522a718067333cd4e5afa610fb6573d5f803e3d5ffd5b5f603a525b5b610fc78585856126d9565b5050505050565b610fd661264a565b8060108190555050565b5f805f60095f8681526020019081526020015f206040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505f73ffffffffffffffffffffffffffffffffffffffff16815f015173ffffffffffffffffffffffffffffffffffffffff16036111695760086040518060400160405290815f82015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020015f820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b5f6111726129e7565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff168661119e919061430a565b6111a89190614378565b9050815f0151819350935050509250929050565b600c5481565b600f5481565b6111d061264a565b600160165f837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b61124261264a565b8060175f6101000a81548160ff02191690831515021790555050565b61126661264a565b8060118190555050565b61127861264a565b5f3373ffffffffffffffffffffffffffffffffffffffff164760405161129d906143d5565b5f6040518083038185875af1925050503d805f81146112d7576040519150601f19603f3d011682016040523d82523d5f602084013e6112dc565b606091505b5050905080611317576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b8260155f9054906101000a900460ff16801561137b57338260601b60601c1461137a5769c61711340011223344555f5230601a5233603a525f80604460166daaeb6d7670e522a718067333cd4e5afa611375573d5f803e3d5ffd5b5f603a525b5b6113868585856129f0565b5050505050565b60165f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff1615611443576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61144b61264a565b8181600b918261145c929190614210565b505050565b61146961264a565b8060128190555050565b5f61147d82612a0f565b9050919050565b60125481565b60135481565b60115481565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114fc576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b61155361264a565b61155c5f612ad2565b565b61156661264a565b600f5481611572612b95565b61157c91906143e9565b1115611586575f80fd5b6115908282612ba6565b5050565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6115c161264a565b80600c8190555050565b60105481565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461160890614039565b80601f016020809104026020016040519081016040528092919081815260200182805461163490614039565b801561167f5780601f106116565761010080835404028352916020019161167f565b820191905f5260205f20905b81548152906001019060200180831161166257829003601f168201915b5050505050905090565b601b5481565b61169761264a565b80601760016101000a81548160ff02191690831515021790555042601b8190555050565b8160155f9054906101000a900460ff1680156117145769c61711340011223344555f5230601a528160601b60601c603a525f80604460166daaeb6d7670e522a718067333cd4e5afa61170f573d5f803e3d5ffd5b5f603a525b61171e8484612d4f565b50505050565b60011515601760019054906101000a900460ff1615151461177a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177190614466565b60405180910390fd5b611c20601b5461178a91906143e9565b4211156117cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c3906144ce565b60405180910390fd5b600f54816117d8612b95565b6117e291906143e9565b1115611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a90614536565b60405180910390fd5b838160185f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461186d91906143e9565b11156118ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a5906145c4565b60405180910390fd5b60115481601a546118bf91906143e9565b1115611900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f79061462c565b60405180910390fd5b5f85856040516020016119149291906146af565b6040516020818303038152906040528051906020012090506119798484808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f82011690508083019250505050505050600c5483612e55565b6119b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119af90614724565b60405180910390fd5b5f601354836119c7919061430a565b905080341015611a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a039061478c565b60405180910390fd5b611a168784612ba6565b82601a5f828254611a2791906143e9565b925050819055508260185f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611a7a91906143e9565b9250508190555080341115611ad9573373ffffffffffffffffffffffffffffffffffffffff166108fc8234611aaf91906147aa565b90811502906040515f60405180830381858888f19350505050158015611ad7573d5f803e3d5ffd5b505b7fe85e6d7f4aa53ebaa891bc4adfd88ff29860ba8f8c5f3301c3bfde246670f0928787604051611b0a929190613aa9565b60405180910390a150505050505050565b602381565b6018602052805f5260405f205f915090505481565b60175f9054906101000a900460ff1681565b60165f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff1615611bfd576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c0561264a565b8060155f6101000a81548160ff02191690831515021790555050565b8360155f9054906101000a900460ff168015611c8257338260601b60601c14611c815769c61711340011223344555f5230601a5233603a525f80604460166daaeb6d7670e522a718067333cd4e5afa611c7c573d5f803e3d5ffd5b5f603a525b5b611c8e86868686612f02565b505050505050565b6016602052805f5260405f205f915054906101000a900460ff1681565b601760019054906101000a900460ff1681565b611cce61264a565b8060138190555050565b611ce061264a565b611cea8282612f74565b5050565b600d8054611cfb90614039565b80601f0160208091040260200160405190810160405280929190818152602001828054611d2790614039565b8015611d725780601f10611d4957610100808354040283529160200191611d72565b820191905f5260205f20905b815481529060010190602001808311611d5557829003601f168201915b505050505081565b60148054611d8790614039565b80601f0160208091040260200160405190810160405280929190818152602001828054611db390614039565b8015611dfe5780601f10611dd557610100808354040283529160200191611dfe565b820191905f5260205f20905b815481529060010190602001808311611de157829003601f168201915b505050505081565b6060611e11826124b1565b611e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e479061484d565b60405180910390fd5b5f611e5961310f565b90505f815111611e775760405180602001604052805f815250611ea5565b80611e818461319f565b600d604051602001611e9593929190614925565b6040516020818303038152906040525b915050919050565b6001151560175f9054906101000a900460ff16151514611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef990614466565b60405180910390fd5b60058160195f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611f4d91906143e9565b1115611f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f859061499f565b60405180910390fd5b600f5481611f9a612b95565b611fa491906143e9565b1115611fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdc90614536565b60405180910390fd5b5f60125482611ff4919061430a565b905080341015612039576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120309061478c565b60405180910390fd5b6120438383612ba6565b8160105f82825461205491906147aa565b925050819055508160195f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546120a791906143e9565b9250508190555080341115612106573373ffffffffffffffffffffffffffffffffffffffff166108fc82346120dc91906147aa565b90811502906040515f60405180830381858888f19350505050158015612104573d5f803e3d5ffd5b505b7f4baa53bbc2ac9ba07eaaa8ee7f6dbb0b8aff3dc0f8b2ec4a663004d2efcffa718383604051612137929190613aa9565b60405180910390a1505050565b601a5481565b61215261264a565b80600d908161216191906149bd565b5050565b5f61216f82613269565b9050919050565b60165f80357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191681526020019081526020015f205f9054906101000a900460ff161561222c576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61223461264a565b602361223e612b95565b10612275576040517f1f0f14ca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612280816023612ba6565b50565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61231961264a565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612389575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401612380919061389b565b60405180910390fd5b61239281612ad2565b50565b60155f9054906101000a900460ff1681565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061240157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806124315750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b5f7f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124aa57506124a9826132bd565b5b9050919050565b5f816124bb6126d1565b111580156124c957505f5482105b801561250457505f7c010000000000000000000000000000000000000000000000000000000060045f8581526020019081526020015f205416145b9050919050565b5f61251582611473565b90508073ffffffffffffffffffffffffffffffffffffffff16612536613326565b73ffffffffffffffffffffffffffffffffffffffff1614612599576125628161255d613326565b612283565b612598576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61265261332d565b73ffffffffffffffffffffffffffffffffffffffff166126706115d1565b73ffffffffffffffffffffffffffffffffffffffff16146126cf5761269361332d565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016126c6919061389b565b60405180910390fd5b565b5f6001905090565b5f6126e382612a0f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461274a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f8061275584613334565b9150915061276b8187612766613326565b613357565b6127b7576127808661277b613326565b612283565b6127b6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361281c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612829868686600161339a565b8015612833575f82555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055506128fb856128d78888876133a0565b7c0200000000000000000000000000000000000000000000000000000000176133c7565b60045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603612977575f6001850190505f60045f8381526020019081526020015f205403612975575f548114612974578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129df86868660016133f1565b505050505050565b5f612710905090565b612a0a83838360405180602001604052805f815250611c21565b505050565b5f8082905080612a1d6126d1565b11612a9b575f54811015612a9a575f60045f8381526020019081526020015f205490505f7c0100000000000000000000000000000000000000000000000000000000821603612a98575b5f8103612a8e5760045f836001900393508381526020019081526020015f20549050612a67565b8092505050612acd565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f612b9e6126d1565b5f5403905090565b5f805490505f8203612be4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bf05f84838561339a565b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550612c6283612c535f865f6133a0565b612c5c856133f7565b176133c7565b60045f8381526020019081526020015f20819055505f80838301905073ffffffffffffffffffffffffffffffffffffffff8516915082825f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600183015b818114612cfc5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600181019050612cc3565b505f8203612d36576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f819055505050612d4a5f8483856133f1565b505050565b8060075f612d5b613326565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612e04613326565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612e499190613755565b60405180910390a35050565b5f808290505f5b8551811015612ef4575f868281518110612e7957612e78614a8c565b5b60200260200101519050808311612eba578281604051602001612e9d929190614ad9565b604051602081830303815290604052805190602001209250612ee6565b8083604051602001612ecd929190614ad9565b6040516020818303038152906040528051906020012092505b508080600101915050612e5c565b508381149150509392505050565b612f0d848484610f5b565b5f8373ffffffffffffffffffffffffffffffffffffffff163b14612f6e57612f3784848484613406565b612f6d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b5f612f7d6129e7565b6bffffffffffffffffffffffff16905080826bffffffffffffffffffffffff161115612fe25781816040517f6f483d09000000000000000000000000000000000000000000000000000000008152600401612fd9929190614b34565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613052575f6040517fb6d9900a000000000000000000000000000000000000000000000000000000008152600401613049919061389b565b60405180910390fd5b60405180604001604052808473ffffffffffffffffffffffffffffffffffffffff168152602001836bffffffffffffffffffffffff1681525060085f820151815f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506020820151815f0160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b6060600b805461311e90614039565b80601f016020809104026020016040519081016040528092919081815260200182805461314a90614039565b80156131955780601f1061316c57610100808354040283529160200191613195565b820191905f5260205f20905b81548152906001019060200180831161317857829003601f168201915b5050505050905090565b60605f60016131ad84613551565b0190505f8167ffffffffffffffff8111156131cb576131ca613cc6565b5b6040519080825280601f01601f1916602001820160405280156131fd5781602001600182028036833780820191505090505b5090505f82602001820190505b60011561325e578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816132535761325261434b565b5b0494505f850361320a575b819350505050919050565b5f67ffffffffffffffff604060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f33905090565b5f33905090565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f73ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b5f8060e883901c905060e86133b68686846136a2565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b5f6001821460e11b9050919050565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261342b613326565b8786866040518563ffffffff1660e01b815260040161344d9493929190614bad565b6020604051808303815f875af192505050801561348857506040513d601f19601f820116820180604052508101906134859190614c0b565b60015b6134fe573d805f81146134b6576040519150601f19603f3d011682016040523d82523d5f602084013e6134bb565b606091505b505f8151036134f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106135ad577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816135a3576135a261434b565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106135ea576d04ee2d6d415b85acef810000000083816135e0576135df61434b565b5b0492506020810190505b662386f26fc10000831061361957662386f26fc10000838161360f5761360e61434b565b5b0492506010810190505b6305f5e1008310613642576305f5e10083816136385761363761434b565b5b0492506008810190505b612710831061366757612710838161365d5761365c61434b565b5b0492506004810190505b6064831061368a57606483816136805761367f61434b565b5b0492506002810190505b600a8310613699576001810190505b80915050919050565b5f9392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6136ef816136bb565b81146136f9575f80fd5b50565b5f8135905061370a816136e6565b92915050565b5f60208284031215613725576137246136b3565b5b5f613732848285016136fc565b91505092915050565b5f8115159050919050565b61374f8161373b565b82525050565b5f6020820190506137685f830184613746565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6137b08261376e565b6137ba8185613778565b93506137ca818560208601613788565b6137d381613796565b840191505092915050565b5f6020820190508181035f8301526137f681846137a6565b905092915050565b5f819050919050565b613810816137fe565b811461381a575f80fd5b50565b5f8135905061382b81613807565b92915050565b5f60208284031215613846576138456136b3565b5b5f6138538482850161381d565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6138858261385c565b9050919050565b6138958161387b565b82525050565b5f6020820190506138ae5f83018461388c565b92915050565b6138bd8161387b565b81146138c7575f80fd5b50565b5f813590506138d8816138b4565b92915050565b5f80604083850312156138f4576138f36136b3565b5b5f613901858286016138ca565b92505060206139128582860161381d565b9150509250929050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261393d5761393c61391c565b5b8235905067ffffffffffffffff81111561395a57613959613920565b5b60208301915083600182028301111561397657613975613924565b5b9250929050565b5f8060208385031215613993576139926136b3565b5b5f83013567ffffffffffffffff8111156139b0576139af6136b7565b5b6139bc85828601613928565b92509250509250929050565b6139d1816137fe565b82525050565b5f6020820190506139ea5f8301846139c8565b92915050565b5f60208284031215613a0557613a046136b3565b5b5f613a12848285016138ca565b91505092915050565b5f805f60608486031215613a3257613a316136b3565b5b5f613a3f868287016138ca565b9350506020613a50868287016138ca565b9250506040613a618682870161381d565b9150509250925092565b5f8060408385031215613a8157613a806136b3565b5b5f613a8e8582860161381d565b9250506020613a9f8582860161381d565b9150509250929050565b5f604082019050613abc5f83018561388c565b613ac960208301846139c8565b9392505050565b5f819050919050565b613ae281613ad0565b82525050565b5f602082019050613afb5f830184613ad9565b92915050565b613b0a8161373b565b8114613b14575f80fd5b50565b5f81359050613b2581613b01565b92915050565b5f60208284031215613b4057613b3f6136b3565b5b5f613b4d84828501613b17565b91505092915050565b613b5f81613ad0565b8114613b69575f80fd5b50565b5f81359050613b7a81613b56565b92915050565b5f60208284031215613b9557613b946136b3565b5b5f613ba284828501613b6c565b91505092915050565b5f8060408385031215613bc157613bc06136b3565b5b5f613bce858286016138ca565b9250506020613bdf85828601613b17565b9150509250929050565b5f8083601f840112613bfe57613bfd61391c565b5b8235905067ffffffffffffffff811115613c1b57613c1a613920565b5b602083019150836020820283011115613c3757613c36613924565b5b9250929050565b5f805f805f60808688031215613c5757613c566136b3565b5b5f613c64888289016138ca565b9550506020613c758882890161381d565b945050604086013567ffffffffffffffff811115613c9657613c956136b7565b5b613ca288828901613be9565b93509350506060613cb58882890161381d565b9150509295509295909350565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b613cfc82613796565b810181811067ffffffffffffffff82111715613d1b57613d1a613cc6565b5b80604052505050565b5f613d2d6136aa565b9050613d398282613cf3565b919050565b5f67ffffffffffffffff821115613d5857613d57613cc6565b5b613d6182613796565b9050602081019050919050565b828183375f83830152505050565b5f613d8e613d8984613d3e565b613d24565b905082815260208101848484011115613daa57613da9613cc2565b5b613db5848285613d6e565b509392505050565b5f82601f830112613dd157613dd061391c565b5b8135613de1848260208601613d7c565b91505092915050565b5f805f8060808587031215613e0257613e016136b3565b5b5f613e0f878288016138ca565b9450506020613e20878288016138ca565b9350506040613e318782880161381d565b925050606085013567ffffffffffffffff811115613e5257613e516136b7565b5b613e5e87828801613dbd565b91505092959194509250565b5f6bffffffffffffffffffffffff82169050919050565b613e8a81613e6a565b8114613e94575f80fd5b50565b5f81359050613ea581613e81565b92915050565b5f8060408385031215613ec157613ec06136b3565b5b5f613ece858286016138ca565b9250506020613edf85828601613e97565b9150509250929050565b5f67ffffffffffffffff821115613f0357613f02613cc6565b5b613f0c82613796565b9050602081019050919050565b5f613f2b613f2684613ee9565b613d24565b905082815260208101848484011115613f4757613f46613cc2565b5b613f52848285613d6e565b509392505050565b5f82601f830112613f6e57613f6d61391c565b5b8135613f7e848260208601613f19565b91505092915050565b5f60208284031215613f9c57613f9b6136b3565b5b5f82013567ffffffffffffffff811115613fb957613fb86136b7565b5b613fc584828501613f5a565b91505092915050565b5f8060408385031215613fe457613fe36136b3565b5b5f613ff1858286016138ca565b9250506020614002858286016138ca565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061405057607f821691505b6020821081036140635761406261400c565b5b50919050565b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026140cf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614094565b6140d98683614094565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61411461410f61410a846137fe565b6140f1565b6137fe565b9050919050565b5f819050919050565b61412d836140fa565b6141416141398261411b565b8484546140a0565b825550505050565b5f90565b614155614149565b614160818484614124565b505050565b5b81811015614183576141785f8261414d565b600181019050614166565b5050565b601f8211156141c85761419981614073565b6141a284614085565b810160208510156141b1578190505b6141c56141bd85614085565b830182614165565b50505b505050565b5f82821c905092915050565b5f6141e85f19846008026141cd565b1980831691505092915050565b5f61420083836141d9565b9150826002028217905092915050565b61421a8383614069565b67ffffffffffffffff81111561423357614232613cc6565b5b61423d8254614039565b614248828285614187565b5f601f831160018114614275575f8415614263578287013590505b61426d85826141f5565b8655506142d4565b601f19841661428386614073565b5f5b828110156142aa57848901358255600182019150602085019450602081019050614285565b868310156142c757848901356142c3601f8916826141d9565b8355505b6001600288020188555050505b50505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f614314826137fe565b915061431f836137fe565b925082820261432d816137fe565b91508282048414831517614344576143436142dd565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f614382826137fe565b915061438d836137fe565b92508261439d5761439c61434b565b5b828204905092915050565b5f81905092915050565b50565b5f6143c05f836143a8565b91506143cb826143b2565b5f82019050919050565b5f6143df826143b5565b9150819050919050565b5f6143f3826137fe565b91506143fe836137fe565b9250828201905080821115614416576144156142dd565b5b92915050565b7f4d696e74696e67206973206e6f7420796574206f70656e2e00000000000000005f82015250565b5f614450601883613778565b915061445b8261441c565b602082019050919050565b5f6020820190508181035f83015261447d81614444565b9050919050565b7f73616c652074696d6520656e64656400000000000000000000000000000000005f82015250565b5f6144b8600f83613778565b91506144c382614484565b602082019050919050565b5f6020820190508181035f8301526144e5816144ac565b9050919050565b7f45786365656473204d6178696d756d20537570706c79000000000000000000005f82015250565b5f614520601683613778565b915061452b826144ec565b602082019050919050565b5f6020820190508181035f83015261454d81614514565b9050919050565b7f496e76616c69642057686974656c6973742050726f6f66206f7220416c7265615f8201527f647920436c61696d656400000000000000000000000000000000000000000000602082015250565b5f6145ae602a83613778565b91506145b982614554565b604082019050919050565b5f6020820190508181035f8301526145db816145a2565b9050919050565b7f416c6c204e46547320436c61696d65642e0000000000000000000000000000005f82015250565b5f614616601183613778565b9150614621826145e2565b602082019050919050565b5f6020820190508181035f8301526146438161460a565b9050919050565b5f8160601b9050919050565b5f6146608261464a565b9050919050565b5f61467182614656565b9050919050565b6146896146848261387b565b614667565b82525050565b5f819050919050565b6146a96146a4826137fe565b61468f565b82525050565b5f6146ba8285614678565b6014820191506146ca8284614698565b6020820191508190509392505050565b7f496e76616c69642057686974656c6973742050726f6f662e00000000000000005f82015250565b5f61470e601883613778565b9150614719826146da565b602082019050919050565b5f6020820190508181035f83015261473b81614702565b9050919050565b7f45746865722073656e74206973206e6f7420636f72726563742e0000000000005f82015250565b5f614776601a83613778565b915061478182614742565b602082019050919050565b5f6020820190508181035f8301526147a38161476a565b9050919050565b5f6147b4826137fe565b91506147bf836137fe565b92508282039050818111156147d7576147d66142dd565b5b92915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f5f8201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b5f614837602f83613778565b9150614842826147dd565b604082019050919050565b5f6020820190508181035f8301526148648161482b565b9050919050565b5f81905092915050565b5f61487f8261376e565b614889818561486b565b9350614899818560208601613788565b80840191505092915050565b5f81546148b181614039565b6148bb818661486b565b9450600182165f81146148d557600181146148ea5761491c565b60ff198316865281151582028601935061491c565b6148f385614073565b5f5b83811015614914578154818901526001820191506020810190506148f5565b838801955050505b50505092915050565b5f6149308286614875565b915061493c8285614875565b915061494882846148a5565b9150819050949350505050565b7f4e465420616d6f756e74206578636565647300000000000000000000000000005f82015250565b5f614989601283613778565b915061499482614955565b602082019050919050565b5f6020820190508181035f8301526149b68161497d565b9050919050565b6149c68261376e565b67ffffffffffffffff8111156149df576149de613cc6565b5b6149e98254614039565b6149f4828285614187565b5f60209050601f831160018114614a25575f8415614a13578287015190505b614a1d85826141f5565b865550614a84565b601f198416614a3386614073565b5f5b82811015614a5a57848901518255600182019150602085019450602081019050614a35565b86831015614a775784890151614a73601f8916826141d9565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b614ad3614ace82613ad0565b614ab9565b82525050565b5f614ae48285614ac2565b602082019150614af48284614ac2565b6020820191508190509392505050565b5f614b1e614b19614b1484613e6a565b6140f1565b6137fe565b9050919050565b614b2e81614b04565b82525050565b5f604082019050614b475f830185614b25565b614b5460208301846139c8565b9392505050565b5f81519050919050565b5f82825260208201905092915050565b5f614b7f82614b5b565b614b898185614b65565b9350614b99818560208601613788565b614ba281613796565b840191505092915050565b5f608082019050614bc05f83018761388c565b614bcd602083018661388c565b614bda60408301856139c8565b8181036060830152614bec8184614b75565b905095945050505050565b5f81519050614c05816136e6565b92915050565b5f60208284031215614c2057614c1f6136b3565b5b5f614c2d84828501614bf7565b9150509291505056fea264697066735822122045055b810173354262cf8e496d45228257edc744f2bc5ee3e4e6ec531eadd20764736f6c63430008190033

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

000000000000000000000000bb1d20b0250b298aa325219d56896fb6c1566c9c00000000000000000000000059de7273191e6bf1907d614e94ecfbe8e5fb731800000000000000000000000000000000000000000000000000000000000001f4

-----Decoded View---------------
Arg [0] : _royaltyReceiver (address): 0xbb1d20B0250B298aa325219D56896fB6c1566C9c
Arg [1] : initialOwner (address): 0x59dE7273191E6bf1907d614e94eCFbe8e5FB7318
Arg [2] : _royaltyFraction (uint96): 500

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000bb1d20b0250b298aa325219d56896fb6c1566c9c
Arg [1] : 00000000000000000000000059de7273191e6bf1907d614e94ecfbe8e5fb7318
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001f4


Deployed Bytecode Sourcemap

102455:10722:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104156:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60949:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67887:268;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;111596:232;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;107162:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56522:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;103256:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;111988:272;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;110361:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34396:429;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;102609:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102723:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;105919:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;110478:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;110238:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;110835:207;;;;;;;;;;;;;:::i;:::-;;112420:280;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;106870:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;110006:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62439:202;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102893:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102938:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102848:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57706:283;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40591:103;;;;;;;;;;;;;:::i;:::-;;107864:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;102685:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;107439:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;102805:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39916:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61125:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;103342:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;110594:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;111202:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;108043:1244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;102761:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;103207:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;103118:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;106207:160;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;112860:314;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;103066:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;103161:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;110120:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;106590:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;102641:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102988:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;104812:649;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;109295:703;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;103304:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;104653:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;105626:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;107688:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68918:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40849:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;103023:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;104156:274;104287:4;104329:38;104355:11;104329:25;:38::i;:::-;:93;;;;104384:38;104410:11;104384:25;:38::i;:::-;104329:93;104309:113;;104156:274;;;:::o;60949:100::-;61003:13;61036:5;61029:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60949:100;:::o;67887:268::-;68008:7;68038:16;68046:7;68038;:16::i;:::-;68033:64;;68063:34;;;;;;;;;;;;;;68033:64;68117:15;:24;68133:7;68117:24;;;;;;;;;;;:30;;;;;;;;;;;;68110:37;;67887:268;;;:::o;111596:232::-;111736:8;111746:24;;;;;;;;;;;100821:7;100818:1138;;;100950:22;100944:4;100937:36;101051:9;101045:4;101038:23;101203:8;101199:2;101195:17;101191:2;101187:26;101181:4;101174:40;101563:4;101532;101501;101470;101418:25;101386:5;101349:241;101317:503;;101732:16;101726:4;101720;101705:44;101784:16;101778:4;101771:30;101317:503;101939:1;101933:4;101926:15;100818:1138;111788:32:::1;111802:8;111812:7;111788:13;:32::i;:::-;111596:232:::0;;;;:::o;107162:269::-;104032:14;:23;104047:7;;;;104032:23;;;;;;;;;;;;;;;;;;;;;;;;;;;104028:52;;;104064:16;;;;;;;;;;;;;;104028:52;39802:13:::1;:11;:13::i;:::-;107329:1:::2;107303:14;107297:28;;;;;:::i;:::-;;;:33;107293:85;;107352:26;;;;;;;;;;;;;;107293:85;107408:15;;107391:14;:32;;;;;;;:::i;:::-;;107162:269:::0;;:::o;56522:323::-;56583:7;56811:15;:13;:15::i;:::-;56796:12;;56780:13;;:28;:46;56773:53;;56522:323;:::o;103256:41::-;;;;;;;;;;;;;;;;;:::o;111988:272::-;112167:4;112173:24;;;;;;;;;;;98336:7;98333:1892;;;98549:8;98541:4;98537:2;98533:13;98529:2;98525:22;98522:36;98512:1698;;98864:22;98858:4;98851:36;98973:9;98967:4;98960:23;99066:8;99060:4;99053:22;99460:4;99425;99390;99355;99299:25;99263:5;99222:269;99186:555;;99645:16;99639:4;99633;99618:44;99701:16;99695:4;99688:30;99186:555;100189:1;100183:4;100176:15;98512:1698;98333:1892;112215:37:::1;112234:4;112240:2;112244:7;112215:18;:37::i;:::-;111988:272:::0;;;;;:::o;110361:109::-;39802:13;:11;:13::i;:::-;110452:10:::1;110436:13;:26;;;;110361:109:::0;:::o;34396:429::-;34482:7;34491;34511:26;34540:17;:26;34558:7;34540:26;;;;;;;;;;;34511:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34611:1;34583:30;;:7;:16;;;:30;;;34579:92;;34640:19;34630:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34579:92;34683:21;34747:17;:15;:17::i;:::-;34707:57;;34720:7;:23;;;34708:35;;:9;:35;;;;:::i;:::-;34707:57;;;;:::i;:::-;34683:81;;34785:7;:16;;;34803:13;34777:40;;;;;;34396:429;;;;;:::o;102609:25::-;;;;:::o;102723:31::-;;;;:::o;105919:96::-;39802:13;:11;:13::i;:::-;106003:4:::1;105982:14;:18;105997:2;105982:18;;;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;105919:96:::0;:::o;110478:108::-;39802:13;:11;:13::i;:::-;110571:7:::1;110552:16;;:26;;;;;;;;;;;;;;;;;;110478:108:::0;:::o;110238:115::-;39802:13;:11;:13::i;:::-;110335:10:::1;110316:16;:29;;;;110238:115:::0;:::o;110835:207::-;39802:13;:11;:13::i;:::-;110886:12:::1;110912:10;110904:24;;110950:21;110904:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110885:101;;;111002:7;110997:37;;111018:16;;;;;;;;;;;;;;110997:37;110874:168;110835:207::o:0;112420:280::-;112603:4;112609:24;;;;;;;;;;;98336:7;98333:1892;;;98549:8;98541:4;98537:2;98533:13;98529:2;98525:22;98522:36;98512:1698;;98864:22;98858:4;98851:36;98973:9;98967:4;98960:23;99066:8;99060:4;99053:22;99460:4;99425;99390;99355;99299:25;99263:5;99222:269;99186:555;;99645:16;99639:4;99633;99618:44;99701:16;99695:4;99688:30;99186:555;100189:1;100183:4;100176:15;98512:1698;98333:1892;112651:41:::1;112674:4;112680:2;112684:7;112651:22;:41::i;:::-;112420:280:::0;;;;;:::o;106870:155::-;104032:14;:23;104047:7;;;;104032:23;;;;;;;;;;;;;;;;;;;;;;;;;;;104028:52;;;104064:16;;;;;;;;;;;;;;104028:52;39802:13:::1;:11;:13::i;:::-;107006:11:::2;;106990:13;:27;;;;;;;:::i;:::-;;106870:155:::0;;:::o;110006:106::-;39802:13;:11;:13::i;:::-;110095:9:::1;110083;:21;;;;110006:106:::0;:::o;62439:202::-;62556:7;62604:27;62623:7;62604:18;:27::i;:::-;62581:52;;62439:202;;;:::o;102893:38::-;;;;:::o;102938:43::-;;;;:::o;102848:37::-;;;;:::o;57706:283::-;57823:7;57869:1;57852:19;;:5;:19;;;57848:60;;57880:28;;;;;;;;;;;;;;57848:60;51865:13;57926:18;:25;57945:5;57926:25;;;;;;;;;;;;;;;;:55;57919:62;;57706:283;;;:::o;40591:103::-;39802:13;:11;:13::i;:::-;40656:30:::1;40683:1;40656:18;:30::i;:::-;40591:103::o:0;107864:171::-;39802:13;:11;:13::i;:::-;107986:10:::1;;107974:8;107957:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:39;;107949:48;;;::::0;::::1;;108008:19;108014:2;108018:8;108008:5;:19::i;:::-;107864:171:::0;;:::o;102685:31::-;;;;;;;;;;;;;:::o;107439:106::-;39802:13;:11;:13::i;:::-;107526:11:::1;107513:10;:24;;;;107439:106:::0;:::o;102805:34::-;;;;:::o;39916:87::-;39962:7;39989:6;;;;;;;;;;;39982:13;;39916:87;:::o;61125:104::-;61181:13;61214:7;61207:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61125:104;:::o;103342:31::-;;;;:::o;110594:161::-;39802:13;:11;:13::i;:::-;110691:7:::1;110669:19;;:29;;;;;;;;;;;;;;;;;;110732:15;110713:16;:34;;;;110594:161:::0;:::o;111202:234::-;111333:8;111343:24;;;;;;;;;;;100821:7;100818:1138;;;100950:22;100944:4;100937:36;101051:9;101045:4;101038:23;101203:8;101199:2;101195:17;101191:2;101187:26;101181:4;101174:40;101563:4;101532;101501;101470;101418:25;101386:5;101349:241;101317:503;;101732:16;101726:4;101720;101705:44;101784:16;101778:4;101771:30;101317:503;101939:1;101933:4;101926:15;100818:1138;111385:43:::1;111409:8;111419;111385:23;:43::i;:::-;111202:234:::0;;;;:::o;108043:1244::-;108245:4;108222:27;;:19;;;;;;;;;;;:27;;;108214:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;108335:7;108316:16;;:26;;;;:::i;:::-;108297:15;:45;;108289:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;108408:10;;108398:6;108381:14;:12;:14::i;:::-;:23;;;;:::i;:::-;:37;;108373:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;108504:8;108494:6;108480:7;:11;108488:2;108480:11;;;;;;;;;;;;;;;;:20;;;;:::i;:::-;:32;;108458:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;108640:16;;108630:6;108615:12;;:21;;;;:::i;:::-;:41;;108593:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;108712:12;108754:2;108758:8;108737:30;;;;;;;;;:::i;:::-;;;;;;;;;;;;;108727:41;;;;;;108712:56;;108801:49;108820:11;;108801:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108833:10;;108845:4;108801:18;:49::i;:::-;108779:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;108913:17;108942:14;;108933:6;:23;;;;:::i;:::-;108913:43;;108988:9;108975;:22;;108967:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;109039:17;109045:2;109049:6;109039:5;:17::i;:::-;109083:6;109067:12;;:22;;;;;;;:::i;:::-;;;;;;;;109115:6;109100:7;:11;109108:2;109100:11;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;109148:9;109136;:21;109132:105;;;109182:10;109174:28;;:51;109215:9;109203;:21;;;;:::i;:::-;109174:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109132:105;109252:27;109266:2;109270:8;109252:27;;;;;;;:::i;:::-;;;;;;;;108203:1084;;108043:1244;;;;;:::o;102761:37::-;102796:2;102761:37;:::o;103207:42::-;;;;;;;;;;;;;;;;;:::o;103118:36::-;;;;;;;;;;;;;:::o;106207:160::-;104032:14;:23;104047:7;;;;104032:23;;;;;;;;;;;;;;;;;;;;;;;;;;;104028:52;;;104064:16;;;;;;;;;;;;;;104028:52;39802:13:::1;:11;:13::i;:::-;106354:5:::2;106327:24;;:32;;;;;;;;;;;;;;;;;;106207:160:::0;:::o;112860:314::-;113071:4;113077:24;;;;;;;;;;;98336:7;98333:1892;;;98549:8;98541:4;98537:2;98533:13;98529:2;98525:22;98522:36;98512:1698;;98864:22;98858:4;98851:36;98973:9;98967:4;98960:23;99066:8;99060:4;99053:22;99460:4;99425;99390;99355;99299:25;99263:5;99222:269;99186:555;;99645:16;99639:4;99633;99618:44;99701:16;99695:4;99688:30;99186:555;100189:1;100183:4;100176:15;98512:1698;98333:1892;113119:47:::1;113142:4;113148:2;113152:7;113161:4;113119:22;:47::i;:::-;112860:314:::0;;;;;;:::o;103066:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;103161:39::-;;;;;;;;;;;;;:::o;110120:110::-;39802:13;:11;:13::i;:::-;110213:9:::1;110196:14;:26;;;;110120:110:::0;:::o;106590:170::-;39802:13;:11;:13::i;:::-;106707:45:::1;106726:8;106736:15;106707:18;:45::i;:::-;106590:170:::0;;:::o;102641:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;102988:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;104812:649::-;104930:13;104983:16;104991:7;104983;:16::i;:::-;104961:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;105087:28;105118:10;:8;:10::i;:::-;105087:41;;105190:1;105165:14;105159:28;:32;:294;;;;;;;;;;;;;;;;;105283:14;105324:25;105341:7;105324:16;:25::i;:::-;105376:13;105240:172;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;105159:294;105139:314;;;104812:649;;;:::o;109295:703::-;109425:4;109405:24;;:16;;;;;;;;;;;:24;;;109397:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;109502:1;109490:8;109477:6;:10;109484:2;109477:10;;;;;;;;;;;;;;;;:21;;;;:::i;:::-;:26;;109469:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;109574:10;;109562:8;109545:14;:12;:14::i;:::-;:25;;;;:::i;:::-;:39;;109537:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;109624:17;109655:9;;109644:8;:20;;;;:::i;:::-;109624:40;;109696:9;109683;:22;;109675:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;109747:19;109753:2;109757:8;109747:5;:19::i;:::-;109794:8;109777:13;;:25;;;;;;;:::i;:::-;;;;;;;;109827:8;109813:6;:10;109820:2;109813:10;;;;;;;;;;;;;;;;:22;;;;;;;:::i;:::-;;;;;;;;109862:9;109850;:21;109846:105;;;109896:10;109888:28;;:51;109929:9;109917;:21;;;;:::i;:::-;109888:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;109846:105;109966:24;109977:2;109981:8;109966:24;;;;;;;:::i;:::-;;;;;;;;109386:612;109295:703;;:::o;103304:31::-;;;;:::o;104653:151::-;39802:13;:11;:13::i;:::-;104779:17:::1;104763:13;:33;;;;;;:::i;:::-;;104653:151:::0;:::o;105626:119::-;105688:7;105715:22;105729:7;105715:13;:22::i;:::-;105708:29;;105626:119;;;:::o;107688:168::-;104032:14;:23;104047:7;;;;104032:23;;;;;;;;;;;;;;;;;;;;;;;;;;;104028:52;;;104064:16;;;;;;;;;;;;;;104028:52;39802:13:::1;:11;:13::i;:::-;102796:2:::2;107760:14;:12;:14::i;:::-;:26;107756:62;;107795:23;;;;;;;;;;;;;;107756:62;107829:19;107835:2;102796;107829:5;:19::i;:::-;107688:168:::0;:::o;68918:214::-;69060:4;69089:18;:25;69108:5;69089:25;;;;;;;;;;;;;;;:35;69115:8;69089:35;;;;;;;;;;;;;;;;;;;;;;;;;69082:42;;68918:214;;;;:::o;40849:220::-;39802:13;:11;:13::i;:::-;40954:1:::1;40934:22;;:8;:22;;::::0;40930:93:::1;;41008:1;40980:31;;;;;;;;;;;:::i;:::-;;;;;;;;40930:93;41033:28;41052:8;41033:18;:28::i;:::-;40849:220:::0;:::o;103023:36::-;;;;;;;;;;;;;:::o;59997:689::-;60127:4;60471:10;60456:25;;:11;:25;;;;:102;;;;60548:10;60533:25;;:11;:25;;;;60456:102;:179;;;;60625:10;60610:25;;:11;:25;;;;60456:179;60436:199;;59997:689;;;:::o;34126:215::-;34228:4;34267:26;34252:41;;;:11;:41;;;;:81;;;;34297:36;34321:11;34297:23;:36::i;:::-;34252:81;34245:88;;34126:215;;;:::o;69390:282::-;69455:4;69511:7;69492:15;:13;:15::i;:::-;:26;;:66;;;;;69545:13;;69535:7;:23;69492:66;:153;;;;;69644:1;52641:8;69596:17;:26;69614:7;69596:26;;;;;;;;;;;;:44;:49;69492:153;69472:173;;69390:282;;;:::o;67279:449::-;67409:13;67425:16;67433:7;67425;:16::i;:::-;67409:32;;67481:5;67458:28;;:19;:17;:19::i;:::-;:28;;;67454:175;;67506:44;67523:5;67530:19;:17;:19::i;:::-;67506:16;:44::i;:::-;67501:128;;67578:35;;;;;;;;;;;;;;67501:128;67454:175;67674:2;67641:15;:24;67657:7;67641:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;67712:7;67708:2;67692:28;;67701:5;67692:28;;;;;;;;;;;;67398:330;67279:449;;:::o;40081:166::-;40152:12;:10;:12::i;:::-;40141:23;;:7;:5;:7::i;:::-;:23;;;40137:103;;40215:12;:10;:12::i;:::-;40188:40;;;;;;;;;;;:::i;:::-;;;;;;;;40137:103;40081:166::o;56038:92::-;56094:7;56121:1;56114:8;;56038:92;:::o;71658:3003::-;71800:27;71830;71849:7;71830:18;:27::i;:::-;71800:57;;71915:4;71874:45;;71890:19;71874:45;;;71870:99;;71941:28;;;;;;;;;;;;;;71870:99;71997:27;72039:23;72076:35;72103:7;72076:26;:35::i;:::-;71982:129;;;;72225:134;72268:15;72302:4;72325:19;:17;:19::i;:::-;72225:24;:134::i;:::-;72206:287;;72389:43;72406:4;72412:19;:17;:19::i;:::-;72389:16;:43::i;:::-;72384:109;;72458:35;;;;;;;;;;;;;;72384:109;72206:287;72524:1;72510:16;;:2;:16;;;72506:52;;72535:23;;;;;;;;;;;;;;72506:52;72571:43;72593:4;72599:2;72603:7;72612:1;72571:21;:43::i;:::-;72707:15;72704:160;;;72847:1;72826:19;72819:30;72704:160;73244:18;:24;73263:4;73244:24;;;;;;;;;;;;;;;;73242:26;;;;;;;;;;;;73313:18;:22;73332:2;73313:22;;;;;;;;;;;;;;;;73311:24;;;;;;;;;;;73635:167;73672:2;73742:45;73757:4;73763:2;73767:19;73742:14;:45::i;:::-;52921:8;73693:94;73635:18;:167::i;:::-;73606:17;:26;73624:7;73606:26;;;;;;;;;;;:196;;;;73973:1;52921:8;73922:19;:47;:52;73918:627;;73995:19;74027:1;74017:7;:11;73995:33;;74184:1;74150:17;:30;74168:11;74150:30;;;;;;;;;;;;:35;74146:384;;74288:13;;74273:11;:28;74269:242;;74468:19;74435:17;:30;74453:11;74435:30;;;;;;;;;;;:52;;;;74269:242;74146:384;73976:569;73918:627;74592:7;74588:2;74573:27;;74582:4;74573:27;;;;;;;;;;;;74611:42;74632:4;74638:2;74642:7;74651:1;74611:20;:42::i;:::-;71789:2872;;;71658:3003;;;:::o;35107:97::-;35165:6;35191:5;35184:12;;35107:97;:::o;74757:193::-;74903:39;74920:4;74926:2;74930:7;74903:39;;;;;;;;;;;;:16;:39::i;:::-;74757:193;;;:::o;63726:1307::-;63820:7;63845:12;63860:7;63845:22;;63928:4;63909:15;:13;:15::i;:::-;:23;63905:1061;;63962:13;;63955:4;:20;63951:1015;;;64000:14;64017:17;:23;64035:4;64017:23;;;;;;;;;;;;64000:40;;64134:1;52641:8;64106:6;:24;:29;64102:845;;64771:113;64788:1;64778:6;:11;64771:113;;64831:17;:25;64849:6;;;;;;;64831:25;;;;;;;;;;;;64822:34;;64771:113;;;64917:6;64910:13;;;;;;64102:845;63977:989;63951:1015;63905:1061;64994:31;;;;;;;;;;;;;;63726:1307;;;;:::o;41229:191::-;41303:16;41322:6;;;;;;;;;;;41303:25;;41348:8;41339:6;;:17;;;;;;;;;;;;;;;;;;41403:8;41372:40;;41393:8;41372:40;;;;;;;;;;;;41292:128;41229:191;:::o;56943:296::-;56998:7;57205:15;:13;:15::i;:::-;57189:13;;:31;57182:38;;56943:296;:::o;79332:3021::-;79405:20;79428:13;;79405:36;;79468:1;79456:8;:13;79452:44;;79478:18;;;;;;;;;;;;;;79452:44;79509:61;79539:1;79543:2;79547:12;79561:8;79509:21;:61::i;:::-;80087:1;52003:2;80057:1;:26;;80056:32;80027:8;:62;79984:18;:22;80003:2;79984:22;;;;;;;;;;;;;;;;:105;;;;;;;;;;;80366:160;80403:2;80478:33;80501:1;80505:2;80509:1;80478:14;:33::i;:::-;80424:30;80445:8;80424:20;:30::i;:::-;:87;80366:18;:160::i;:::-;80332:17;:31;80350:12;80332:31;;;;;;;;;;;:194;;;;80543:16;80574:11;80603:8;80588:12;:23;80574:37;;81124:16;81120:2;81116:25;81104:37;;81496:12;81456:8;81415:1;81353:25;81294:1;81233;81206:335;81867:1;81853:12;81849:20;81807:346;81908:3;81899:7;81896:16;81807:346;;82126:7;82116:8;82113:1;82086:25;82083:1;82080;82075:59;81961:1;81952:7;81948:15;81937:26;;81807:346;;;81811:77;82198:1;82186:8;:13;82182:45;;82208:19;;;;;;;;;;;;;;82182:45;82260:3;82244:13;:19;;;;79758:2517;;82285:60;82314:1;82318:2;82322:12;82336:8;82285:20;:60::i;:::-;79394:2959;79332:3021;;:::o;68495:266::-;68674:8;68622:18;:39;68641:19;:17;:19::i;:::-;68622:39;;;;;;;;;;;;;;;:49;68662:8;68622:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;68734:8;68698:55;;68713:19;:17;:19::i;:::-;68698:55;;;68744:8;68698:55;;;;;;:::i;:::-;;;;;;;;68495:266;;:::o;545:796::-;636:4;653:20;676:4;653:27;;698:9;693:525;717:5;:12;713:1;:16;693:525;;;751:20;774:5;780:1;774:8;;;;;;;;:::i;:::-;;;;;;;;751:31;;819:12;803;:28;799:408;;973:12;987;956:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;946:55;;;;;;931:70;;799:408;;;1163:12;1177;1146:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1136:55;;;;;;1121:70;;799:408;736:482;731:3;;;;;;;693:525;;;;1329:4;1313:12;:20;1306:27;;;545:796;;;;;:::o;75548:407::-;75723:31;75736:4;75742:2;75746:7;75723:12;:31::i;:::-;75787:1;75769:2;:14;;;:19;75765:183;;75808:56;75839:4;75845:2;75849:7;75858:5;75808:30;:56::i;:::-;75803:145;;75892:40;;;;;;;;;;;;;;75803:145;75765:183;75548:407;;;;:::o;35475:518::-;35570:19;35592:17;:15;:17::i;:::-;35570:39;;;;35639:11;35624:12;:26;;;35620:176;;;35758:12;35772:11;35729:55;;;;;;;;;;;;:::i;:::-;;;;;;;;35620:176;35830:1;35810:22;;:8;:22;;;35806:110;;35901:1;35856:48;;;;;;;;;;;:::i;:::-;;;;;;;;35806:110;35950:35;;;;;;;;35962:8;35950:35;;;;;;35972:12;35950:35;;;;;35928:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35559:434;35475:518;;:::o;104531:114::-;104591:13;104624;104617:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;104531:114;:::o;18843:718::-;18899:13;18950:14;18987:1;18967:17;18978:5;18967:10;:17::i;:::-;:21;18950:38;;19003:20;19037:6;19026:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19003:41;;19059:11;19188:6;19184:2;19180:15;19172:6;19168:28;19161:35;;19225:290;19232:4;19225:290;;;19257:5;;;;;;;;19399:10;19394:2;19387:5;19383:14;19378:32;19373:3;19365:46;19457:2;19448:11;;;;;;:::i;:::-;;;;;19491:1;19482:5;:10;19225:290;19478:21;19225:290;19536:6;19529:13;;;;;18843:718;;;:::o;58071:204::-;58132:7;51865:13;52003:2;58173:18;:25;58192:5;58173:25;;;;;;;;;;;;;;;;:50;;58172:95;58152:115;;58071:204;;;:::o;31033:148::-;31109:4;31148:25;31133:40;;;:11;:40;;;;31126:47;;31033:148;;;:::o;92607:105::-;92667:7;92694:10;92687:17;;92607:105;:::o;37925:98::-;37978:7;38005:10;37998:17;;37925:98;:::o;70553:485::-;70655:27;70684:23;70725:38;70766:15;:24;70782:7;70766:24;;;;;;;;;;;70725:65;;70943:18;70920:41;;71000:19;70994:26;70975:45;;70905:126;70553:485;;;:::o;69781:659::-;69930:11;70095:16;70088:5;70084:28;70075:37;;70255:16;70244:9;70240:32;70227:45;;70405:15;70394:9;70391:30;70383:5;70372:9;70369:20;70366:56;70356:66;;69781:659;;;;;:::o;76617:159::-;;;;;:::o;91916:311::-;92051:7;92071:16;53045:3;92097:19;:41;;92071:68;;53045:3;92165:31;92176:4;92182:2;92186:9;92165:10;:31::i;:::-;92157:40;;:62;;92150:69;;;91916:311;;;;;:::o;65613:531::-;65720:14;65893:16;65886:5;65882:28;65873:37;;66105:5;66091:11;66066:23;66062:41;66059:52;66035:5;66014:112;66004:122;;65613:531;;;;:::o;77441:158::-;;;;;:::o;66246:356::-;66343:14;66581:1;66571:8;66568:15;66542:24;66538:46;66528:56;;66246:356;;;:::o;78039:831::-;78202:4;78261:2;78236:45;;;78300:19;:17;:19::i;:::-;78338:4;78361:7;78387:5;78236:171;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;78219:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78638:1;78621:6;:13;:18;78617:235;;78667:40;;;;;;;;;;;;;;78617:235;78810:6;78804:13;78795:6;78791:2;78787:15;78780:38;78219:644;78507:54;;;78480:81;;;:6;:81;;;;78456:105;;;78039:831;;;;;;:::o;15247:948::-;15300:7;15320:14;15337:1;15320:18;;15387:8;15378:5;:17;15374:106;;15425:8;15416:17;;;;;;:::i;:::-;;;;;15462:2;15452:12;;;;15374:106;15507:8;15498:5;:17;15494:106;;15545:8;15536:17;;;;;;:::i;:::-;;;;;15582:2;15572:12;;;;15494:106;15627:8;15618:5;:17;15614:106;;15665:8;15656:17;;;;;;:::i;:::-;;;;;15702:2;15692:12;;;;15614:106;15747:7;15738:5;:16;15734:103;;15784:7;15775:16;;;;;;:::i;:::-;;;;;15820:1;15810:11;;;;15734:103;15864:7;15855:5;:16;15851:103;;15901:7;15892:16;;;;;;:::i;:::-;;;;;15937:1;15927:11;;;;15851:103;15981:7;15972:5;:16;15968:103;;16018:7;16009:16;;;;;;:::i;:::-;;;;;16054:1;16044:11;;;;15968:103;16098:7;16089:5;:16;16085:68;;16136:1;16126:11;;;;16085:68;16181:6;16174:13;;;15247:948;;;:::o;91617:147::-;91754:6;91617: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:139::-;1887:6;1882:3;1877;1871:23;1928:1;1919:6;1914:3;1910:16;1903:27;1798:139;;;:::o;1943:102::-;1984:6;2035:2;2031:7;2026:2;2019:5;2015:14;2011:28;2001:38;;1943:102;;;:::o;2051:377::-;2139:3;2167:39;2200:5;2167:39;:::i;:::-;2222:71;2286:6;2281:3;2222:71;:::i;:::-;2215:78;;2302:65;2360:6;2355:3;2348:4;2341:5;2337:16;2302:65;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2143:285;2051:377;;;;:::o;2434:313::-;2547:4;2585:2;2574:9;2570:18;2562:26;;2634:9;2628:4;2624:20;2620:1;2609:9;2605:17;2598:47;2662:78;2735:4;2726:6;2662:78;:::i;:::-;2654:86;;2434:313;;;;:::o;2753:77::-;2790:7;2819:5;2808:16;;2753:77;;;:::o;2836:122::-;2909:24;2927:5;2909:24;:::i;:::-;2902:5;2899:35;2889:63;;2948:1;2945;2938:12;2889:63;2836:122;:::o;2964:139::-;3010:5;3048:6;3035:20;3026:29;;3064:33;3091:5;3064:33;:::i;:::-;2964:139;;;;:::o;3109:329::-;3168:6;3217:2;3205:9;3196:7;3192:23;3188:32;3185:119;;;3223:79;;:::i;:::-;3185:119;3343:1;3368:53;3413:7;3404:6;3393:9;3389:22;3368:53;:::i;:::-;3358:63;;3314:117;3109:329;;;;:::o;3444:126::-;3481:7;3521:42;3514:5;3510:54;3499:65;;3444:126;;;:::o;3576:96::-;3613:7;3642:24;3660:5;3642:24;:::i;:::-;3631:35;;3576:96;;;:::o;3678:118::-;3765:24;3783:5;3765:24;:::i;:::-;3760:3;3753:37;3678:118;;:::o;3802:222::-;3895:4;3933:2;3922:9;3918:18;3910:26;;3946:71;4014:1;4003:9;3999:17;3990:6;3946:71;:::i;:::-;3802:222;;;;:::o;4030:122::-;4103:24;4121:5;4103:24;:::i;:::-;4096:5;4093:35;4083:63;;4142:1;4139;4132:12;4083:63;4030:122;:::o;4158:139::-;4204:5;4242:6;4229:20;4220:29;;4258:33;4285:5;4258:33;:::i;:::-;4158:139;;;;:::o;4303:474::-;4371:6;4379;4428:2;4416:9;4407:7;4403:23;4399:32;4396:119;;;4434:79;;:::i;:::-;4396:119;4554:1;4579:53;4624:7;4615:6;4604:9;4600:22;4579:53;:::i;:::-;4569:63;;4525:117;4681:2;4707:53;4752:7;4743:6;4732:9;4728:22;4707:53;:::i;:::-;4697:63;;4652:118;4303:474;;;;;:::o;4783:117::-;4892:1;4889;4882:12;4906:117;5015:1;5012;5005:12;5029:117;5138:1;5135;5128:12;5166:553;5224:8;5234:6;5284:3;5277:4;5269:6;5265:17;5261:27;5251:122;;5292:79;;:::i;:::-;5251:122;5405:6;5392:20;5382:30;;5435:18;5427:6;5424:30;5421:117;;;5457:79;;:::i;:::-;5421:117;5571:4;5563:6;5559:17;5547:29;;5625:3;5617:4;5609:6;5605:17;5595:8;5591:32;5588:41;5585:128;;;5632:79;;:::i;:::-;5585:128;5166:553;;;;;:::o;5725:529::-;5796:6;5804;5853:2;5841:9;5832:7;5828:23;5824:32;5821:119;;;5859:79;;:::i;:::-;5821:119;6007:1;5996:9;5992:17;5979:31;6037:18;6029:6;6026:30;6023:117;;;6059:79;;:::i;:::-;6023:117;6172:65;6229:7;6220:6;6209:9;6205:22;6172:65;:::i;:::-;6154:83;;;;5950:297;5725:529;;;;;:::o;6260:118::-;6347:24;6365:5;6347:24;:::i;:::-;6342:3;6335:37;6260:118;;:::o;6384:222::-;6477:4;6515:2;6504:9;6500:18;6492:26;;6528:71;6596:1;6585:9;6581:17;6572:6;6528:71;:::i;:::-;6384:222;;;;:::o;6612:329::-;6671:6;6720:2;6708:9;6699:7;6695:23;6691:32;6688:119;;;6726:79;;:::i;:::-;6688:119;6846:1;6871:53;6916:7;6907:6;6896:9;6892:22;6871:53;:::i;:::-;6861:63;;6817:117;6612:329;;;;:::o;6947:619::-;7024:6;7032;7040;7089:2;7077:9;7068:7;7064:23;7060:32;7057:119;;;7095:79;;:::i;:::-;7057:119;7215:1;7240:53;7285:7;7276:6;7265:9;7261:22;7240:53;:::i;:::-;7230:63;;7186:117;7342:2;7368:53;7413:7;7404:6;7393:9;7389:22;7368:53;:::i;:::-;7358:63;;7313:118;7470:2;7496:53;7541:7;7532:6;7521:9;7517:22;7496:53;:::i;:::-;7486:63;;7441:118;6947:619;;;;;:::o;7572:474::-;7640:6;7648;7697:2;7685:9;7676:7;7672:23;7668:32;7665:119;;;7703:79;;:::i;:::-;7665:119;7823:1;7848:53;7893:7;7884:6;7873:9;7869:22;7848:53;:::i;:::-;7838:63;;7794:117;7950:2;7976:53;8021:7;8012:6;8001:9;7997:22;7976:53;:::i;:::-;7966:63;;7921:118;7572:474;;;;;:::o;8052:332::-;8173:4;8211:2;8200:9;8196:18;8188:26;;8224:71;8292:1;8281:9;8277:17;8268:6;8224:71;:::i;:::-;8305:72;8373:2;8362:9;8358:18;8349:6;8305:72;:::i;:::-;8052:332;;;;;:::o;8390:77::-;8427:7;8456:5;8445:16;;8390:77;;;:::o;8473:118::-;8560:24;8578:5;8560:24;:::i;:::-;8555:3;8548:37;8473:118;;:::o;8597:222::-;8690:4;8728:2;8717:9;8713:18;8705:26;;8741:71;8809:1;8798:9;8794:17;8785:6;8741:71;:::i;:::-;8597:222;;;;:::o;8825:116::-;8895:21;8910:5;8895:21;:::i;:::-;8888:5;8885:32;8875:60;;8931:1;8928;8921:12;8875:60;8825:116;:::o;8947:133::-;8990:5;9028:6;9015:20;9006:29;;9044:30;9068:5;9044:30;:::i;:::-;8947:133;;;;:::o;9086:323::-;9142:6;9191:2;9179:9;9170:7;9166:23;9162:32;9159:119;;;9197:79;;:::i;:::-;9159:119;9317:1;9342:50;9384:7;9375:6;9364:9;9360:22;9342:50;:::i;:::-;9332:60;;9288:114;9086:323;;;;:::o;9415:122::-;9488:24;9506:5;9488:24;:::i;:::-;9481:5;9478:35;9468:63;;9527:1;9524;9517:12;9468:63;9415:122;:::o;9543:139::-;9589:5;9627:6;9614:20;9605:29;;9643:33;9670:5;9643:33;:::i;:::-;9543:139;;;;:::o;9688:329::-;9747:6;9796:2;9784:9;9775:7;9771:23;9767:32;9764:119;;;9802:79;;:::i;:::-;9764:119;9922:1;9947:53;9992:7;9983:6;9972:9;9968:22;9947:53;:::i;:::-;9937:63;;9893:117;9688:329;;;;:::o;10023:468::-;10088:6;10096;10145:2;10133:9;10124:7;10120:23;10116:32;10113:119;;;10151:79;;:::i;:::-;10113:119;10271:1;10296:53;10341:7;10332:6;10321:9;10317:22;10296:53;:::i;:::-;10286:63;;10242:117;10398:2;10424:50;10466:7;10457:6;10446:9;10442:22;10424:50;:::i;:::-;10414:60;;10369:115;10023:468;;;;;:::o;10514:568::-;10587:8;10597:6;10647:3;10640:4;10632:6;10628:17;10624:27;10614:122;;10655:79;;:::i;:::-;10614:122;10768:6;10755:20;10745:30;;10798:18;10790:6;10787:30;10784:117;;;10820:79;;:::i;:::-;10784:117;10934:4;10926:6;10922:17;10910:29;;10988:3;10980:4;10972:6;10968:17;10958:8;10954:32;10951:41;10948:128;;;10995:79;;:::i;:::-;10948:128;10514:568;;;;;:::o;11088:995::-;11201:6;11209;11217;11225;11233;11282:3;11270:9;11261:7;11257:23;11253:33;11250:120;;;11289:79;;:::i;:::-;11250:120;11409:1;11434:53;11479:7;11470:6;11459:9;11455:22;11434:53;:::i;:::-;11424:63;;11380:117;11536:2;11562:53;11607:7;11598:6;11587:9;11583:22;11562:53;:::i;:::-;11552:63;;11507:118;11692:2;11681:9;11677:18;11664:32;11723:18;11715:6;11712:30;11709:117;;;11745:79;;:::i;:::-;11709:117;11858:80;11930:7;11921:6;11910:9;11906:22;11858:80;:::i;:::-;11840:98;;;;11635:313;11987:2;12013:53;12058:7;12049:6;12038:9;12034:22;12013:53;:::i;:::-;12003:63;;11958:118;11088:995;;;;;;;;:::o;12089:117::-;12198:1;12195;12188:12;12212:180;12260:77;12257:1;12250:88;12357:4;12354:1;12347:15;12381:4;12378:1;12371:15;12398:281;12481:27;12503:4;12481:27;:::i;:::-;12473:6;12469:40;12611:6;12599:10;12596:22;12575:18;12563:10;12560:34;12557:62;12554:88;;;12622:18;;:::i;:::-;12554:88;12662:10;12658:2;12651:22;12441:238;12398:281;;:::o;12685:129::-;12719:6;12746:20;;:::i;:::-;12736:30;;12775:33;12803:4;12795:6;12775:33;:::i;:::-;12685:129;;;:::o;12820:307::-;12881:4;12971:18;12963:6;12960:30;12957:56;;;12993:18;;:::i;:::-;12957:56;13031:29;13053:6;13031:29;:::i;:::-;13023:37;;13115:4;13109;13105:15;13097:23;;12820:307;;;:::o;13133:148::-;13231:6;13226:3;13221;13208:30;13272:1;13263:6;13258:3;13254:16;13247:27;13133:148;;;:::o;13287:423::-;13364:5;13389:65;13405:48;13446:6;13405:48;:::i;:::-;13389:65;:::i;:::-;13380:74;;13477:6;13470:5;13463:21;13515:4;13508:5;13504:16;13553:3;13544:6;13539:3;13535:16;13532:25;13529:112;;;13560:79;;:::i;:::-;13529:112;13650:54;13697:6;13692:3;13687;13650:54;:::i;:::-;13370:340;13287:423;;;;;:::o;13729:338::-;13784:5;13833:3;13826:4;13818:6;13814:17;13810:27;13800:122;;13841:79;;:::i;:::-;13800:122;13958:6;13945:20;13983:78;14057:3;14049:6;14042:4;14034:6;14030:17;13983:78;:::i;:::-;13974:87;;13790:277;13729:338;;;;:::o;14073:943::-;14168:6;14176;14184;14192;14241:3;14229:9;14220:7;14216:23;14212:33;14209:120;;;14248:79;;:::i;:::-;14209:120;14368:1;14393:53;14438:7;14429:6;14418:9;14414:22;14393:53;:::i;:::-;14383:63;;14339:117;14495:2;14521:53;14566:7;14557:6;14546:9;14542:22;14521:53;:::i;:::-;14511:63;;14466:118;14623:2;14649:53;14694:7;14685:6;14674:9;14670:22;14649:53;:::i;:::-;14639:63;;14594:118;14779:2;14768:9;14764:18;14751:32;14810:18;14802:6;14799:30;14796:117;;;14832:79;;:::i;:::-;14796:117;14937:62;14991:7;14982:6;14971:9;14967:22;14937:62;:::i;:::-;14927:72;;14722:287;14073:943;;;;;;;:::o;15022:109::-;15058:7;15098:26;15091:5;15087:38;15076:49;;15022:109;;;:::o;15137:120::-;15209:23;15226:5;15209:23;:::i;:::-;15202:5;15199:34;15189:62;;15247:1;15244;15237:12;15189:62;15137:120;:::o;15263:137::-;15308:5;15346:6;15333:20;15324:29;;15362:32;15388:5;15362:32;:::i;:::-;15263:137;;;;:::o;15406:472::-;15473:6;15481;15530:2;15518:9;15509:7;15505:23;15501:32;15498:119;;;15536:79;;:::i;:::-;15498:119;15656:1;15681:53;15726:7;15717:6;15706:9;15702:22;15681:53;:::i;:::-;15671:63;;15627:117;15783:2;15809:52;15853:7;15844:6;15833:9;15829:22;15809:52;:::i;:::-;15799:62;;15754:117;15406:472;;;;;:::o;15884:308::-;15946:4;16036:18;16028:6;16025:30;16022:56;;;16058:18;;:::i;:::-;16022:56;16096:29;16118:6;16096:29;:::i;:::-;16088:37;;16180:4;16174;16170:15;16162:23;;15884:308;;;:::o;16198:425::-;16276:5;16301:66;16317:49;16359:6;16317:49;:::i;:::-;16301:66;:::i;:::-;16292:75;;16390:6;16383:5;16376:21;16428:4;16421:5;16417:16;16466:3;16457:6;16452:3;16448:16;16445:25;16442:112;;;16473:79;;:::i;:::-;16442:112;16563:54;16610:6;16605:3;16600;16563:54;:::i;:::-;16282:341;16198:425;;;;;:::o;16643:340::-;16699:5;16748:3;16741:4;16733:6;16729:17;16725:27;16715:122;;16756:79;;:::i;:::-;16715:122;16873:6;16860:20;16898:79;16973:3;16965:6;16958:4;16950:6;16946:17;16898:79;:::i;:::-;16889:88;;16705:278;16643:340;;;;:::o;16989:509::-;17058:6;17107:2;17095:9;17086:7;17082:23;17078:32;17075:119;;;17113:79;;:::i;:::-;17075:119;17261:1;17250:9;17246:17;17233:31;17291:18;17283:6;17280:30;17277:117;;;17313:79;;:::i;:::-;17277:117;17418:63;17473:7;17464:6;17453:9;17449:22;17418:63;:::i;:::-;17408:73;;17204:287;16989:509;;;;:::o;17504:474::-;17572:6;17580;17629:2;17617:9;17608:7;17604:23;17600:32;17597:119;;;17635:79;;:::i;:::-;17597:119;17755:1;17780:53;17825:7;17816:6;17805:9;17801:22;17780:53;:::i;:::-;17770:63;;17726:117;17882:2;17908:53;17953:7;17944:6;17933:9;17929:22;17908:53;:::i;:::-;17898:63;;17853:118;17504:474;;;;;:::o;17984:180::-;18032:77;18029:1;18022:88;18129:4;18126:1;18119:15;18153:4;18150:1;18143:15;18170:320;18214:6;18251:1;18245:4;18241:12;18231:22;;18298:1;18292:4;18288:12;18319:18;18309:81;;18375:4;18367:6;18363:17;18353:27;;18309:81;18437:2;18429:6;18426:14;18406:18;18403:38;18400:84;;18456:18;;:::i;:::-;18400:84;18221:269;18170:320;;;:::o;18496:97::-;18555:6;18583:3;18573:13;;18496:97;;;;:::o;18599:141::-;18648:4;18671:3;18663:11;;18694:3;18691:1;18684:14;18728:4;18725:1;18715:18;18707:26;;18599:141;;;:::o;18746:93::-;18783:6;18830:2;18825;18818:5;18814:14;18810:23;18800:33;;18746:93;;;:::o;18845:107::-;18889:8;18939:5;18933:4;18929:16;18908:37;;18845:107;;;;:::o;18958:393::-;19027:6;19077:1;19065:10;19061:18;19100:97;19130:66;19119:9;19100:97;:::i;:::-;19218:39;19248:8;19237:9;19218:39;:::i;:::-;19206:51;;19290:4;19286:9;19279:5;19275:21;19266:30;;19339:4;19329:8;19325:19;19318:5;19315:30;19305:40;;19034:317;;18958:393;;;;;:::o;19357:60::-;19385:3;19406:5;19399:12;;19357:60;;;:::o;19423:142::-;19473:9;19506:53;19524:34;19533:24;19551:5;19533:24;:::i;:::-;19524:34;:::i;:::-;19506:53;:::i;:::-;19493:66;;19423:142;;;:::o;19571:75::-;19614:3;19635:5;19628:12;;19571:75;;;:::o;19652:269::-;19762:39;19793:7;19762:39;:::i;:::-;19823:91;19872:41;19896:16;19872:41;:::i;:::-;19864:6;19857:4;19851:11;19823:91;:::i;:::-;19817:4;19810:105;19728:193;19652:269;;;:::o;19927:73::-;19972:3;19927:73;:::o;20006:189::-;20083:32;;:::i;:::-;20124:65;20182:6;20174;20168:4;20124:65;:::i;:::-;20059:136;20006:189;;:::o;20201:186::-;20261:120;20278:3;20271:5;20268:14;20261:120;;;20332:39;20369:1;20362:5;20332:39;:::i;:::-;20305:1;20298:5;20294:13;20285:22;;20261:120;;;20201:186;;:::o;20393:543::-;20494:2;20489:3;20486:11;20483:446;;;20528:38;20560:5;20528:38;:::i;:::-;20612:29;20630:10;20612:29;:::i;:::-;20602:8;20598:44;20795:2;20783:10;20780:18;20777:49;;;20816:8;20801:23;;20777:49;20839:80;20895:22;20913:3;20895:22;:::i;:::-;20885:8;20881:37;20868:11;20839:80;:::i;:::-;20498:431;;20483:446;20393:543;;;:::o;20942:117::-;20996:8;21046:5;21040:4;21036:16;21015:37;;20942:117;;;;:::o;21065:169::-;21109:6;21142:51;21190:1;21186:6;21178:5;21175:1;21171:13;21142:51;:::i;:::-;21138:56;21223:4;21217;21213:15;21203:25;;21116:118;21065:169;;;;:::o;21239:295::-;21315:4;21461:29;21486:3;21480:4;21461:29;:::i;:::-;21453:37;;21523:3;21520:1;21516:11;21510:4;21507:21;21499:29;;21239:295;;;;:::o;21539:1403::-;21663:44;21703:3;21698;21663:44;:::i;:::-;21772:18;21764:6;21761:30;21758:56;;;21794:18;;:::i;:::-;21758:56;21838:38;21870:4;21864:11;21838:38;:::i;:::-;21923:67;21983:6;21975;21969:4;21923:67;:::i;:::-;22017:1;22046:2;22038:6;22035:14;22063:1;22058:632;;;;22734:1;22751:6;22748:84;;;22807:9;22802:3;22798:19;22785:33;22776:42;;22748:84;22858:67;22918:6;22911:5;22858:67;:::i;:::-;22852:4;22845:81;22707:229;22028:908;;22058:632;22110:4;22106:9;22098:6;22094:22;22144:37;22176:4;22144:37;:::i;:::-;22203:1;22217:215;22231:7;22228:1;22225:14;22217:215;;;22317:9;22312:3;22308:19;22295:33;22287:6;22280:49;22368:1;22360:6;22356:14;22346:24;;22415:2;22404:9;22400:18;22387:31;;22254:4;22251:1;22247:12;22242:17;;22217:215;;;22460:6;22451:7;22448:19;22445:186;;;22525:9;22520:3;22516:19;22503:33;22568:48;22610:4;22602:6;22598:17;22587:9;22568:48;:::i;:::-;22560:6;22553:64;22468:163;22445:186;22677:1;22673;22665:6;22661:14;22657:22;22651:4;22644:36;22065:625;;;22028:908;;21638:1304;;;21539:1403;;;:::o;22948:180::-;22996:77;22993:1;22986:88;23093:4;23090:1;23083:15;23117:4;23114:1;23107:15;23134:410;23174:7;23197:20;23215:1;23197:20;:::i;:::-;23192:25;;23231:20;23249:1;23231:20;:::i;:::-;23226:25;;23286:1;23283;23279:9;23308:30;23326:11;23308:30;:::i;:::-;23297:41;;23487:1;23478:7;23474:15;23471:1;23468:22;23448:1;23441:9;23421:83;23398:139;;23517:18;;:::i;:::-;23398:139;23182:362;23134:410;;;;:::o;23550:180::-;23598:77;23595:1;23588:88;23695:4;23692:1;23685:15;23719:4;23716:1;23709:15;23736:185;23776:1;23793:20;23811:1;23793:20;:::i;:::-;23788:25;;23827:20;23845:1;23827:20;:::i;:::-;23822:25;;23866:1;23856:35;;23871:18;;:::i;:::-;23856:35;23913:1;23910;23906:9;23901:14;;23736:185;;;;:::o;23927:147::-;24028:11;24065:3;24050:18;;23927:147;;;;:::o;24080:114::-;;:::o;24200:398::-;24359:3;24380:83;24461:1;24456:3;24380:83;:::i;:::-;24373:90;;24472:93;24561:3;24472:93;:::i;:::-;24590:1;24585:3;24581:11;24574:18;;24200:398;;;:::o;24604:379::-;24788:3;24810:147;24953:3;24810:147;:::i;:::-;24803:154;;24974:3;24967:10;;24604:379;;;:::o;24989:191::-;25029:3;25048:20;25066:1;25048:20;:::i;:::-;25043:25;;25082:20;25100:1;25082:20;:::i;:::-;25077:25;;25125:1;25122;25118:9;25111:16;;25146:3;25143:1;25140:10;25137:36;;;25153:18;;:::i;:::-;25137:36;24989:191;;;;:::o;25186:174::-;25326:26;25322:1;25314:6;25310:14;25303:50;25186:174;:::o;25366:366::-;25508:3;25529:67;25593:2;25588:3;25529:67;:::i;:::-;25522:74;;25605:93;25694:3;25605:93;:::i;:::-;25723:2;25718:3;25714:12;25707:19;;25366:366;;;:::o;25738:419::-;25904:4;25942:2;25931:9;25927:18;25919:26;;25991:9;25985:4;25981:20;25977:1;25966:9;25962:17;25955:47;26019:131;26145:4;26019:131;:::i;:::-;26011:139;;25738:419;;;:::o;26163:165::-;26303:17;26299:1;26291:6;26287:14;26280:41;26163:165;:::o;26334:366::-;26476:3;26497:67;26561:2;26556:3;26497:67;:::i;:::-;26490:74;;26573:93;26662:3;26573:93;:::i;:::-;26691:2;26686:3;26682:12;26675:19;;26334:366;;;:::o;26706:419::-;26872:4;26910:2;26899:9;26895:18;26887:26;;26959:9;26953:4;26949:20;26945:1;26934:9;26930:17;26923:47;26987:131;27113:4;26987:131;:::i;:::-;26979:139;;26706:419;;;:::o;27131:172::-;27271:24;27267:1;27259:6;27255:14;27248:48;27131:172;:::o;27309:366::-;27451:3;27472:67;27536:2;27531:3;27472:67;:::i;:::-;27465:74;;27548:93;27637:3;27548:93;:::i;:::-;27666:2;27661:3;27657:12;27650:19;;27309:366;;;:::o;27681:419::-;27847:4;27885:2;27874:9;27870:18;27862:26;;27934:9;27928:4;27924:20;27920:1;27909:9;27905:17;27898:47;27962:131;28088:4;27962:131;:::i;:::-;27954:139;;27681:419;;;:::o;28106:229::-;28246:34;28242:1;28234:6;28230:14;28223:58;28315:12;28310:2;28302:6;28298:15;28291:37;28106:229;:::o;28341:366::-;28483:3;28504:67;28568:2;28563:3;28504:67;:::i;:::-;28497:74;;28580:93;28669:3;28580:93;:::i;:::-;28698:2;28693:3;28689:12;28682:19;;28341:366;;;:::o;28713:419::-;28879:4;28917:2;28906:9;28902:18;28894:26;;28966:9;28960:4;28956:20;28952:1;28941:9;28937:17;28930:47;28994:131;29120:4;28994:131;:::i;:::-;28986:139;;28713:419;;;:::o;29138:167::-;29278:19;29274:1;29266:6;29262:14;29255:43;29138:167;:::o;29311:366::-;29453:3;29474:67;29538:2;29533:3;29474:67;:::i;:::-;29467:74;;29550:93;29639:3;29550:93;:::i;:::-;29668:2;29663:3;29659:12;29652:19;;29311:366;;;:::o;29683:419::-;29849:4;29887:2;29876:9;29872:18;29864:26;;29936:9;29930:4;29926:20;29922:1;29911:9;29907:17;29900:47;29964:131;30090:4;29964:131;:::i;:::-;29956:139;;29683:419;;;:::o;30108:94::-;30141:8;30189:5;30185:2;30181:14;30160:35;;30108:94;;;:::o;30208:::-;30247:7;30276:20;30290:5;30276:20;:::i;:::-;30265:31;;30208:94;;;:::o;30308:100::-;30347:7;30376:26;30396:5;30376:26;:::i;:::-;30365:37;;30308:100;;;:::o;30414:157::-;30519:45;30539:24;30557:5;30539:24;:::i;:::-;30519:45;:::i;:::-;30514:3;30507:58;30414:157;;:::o;30577:79::-;30616:7;30645:5;30634:16;;30577:79;;;:::o;30662:157::-;30767:45;30787:24;30805:5;30787:24;:::i;:::-;30767:45;:::i;:::-;30762:3;30755:58;30662:157;;:::o;30825:397::-;30965:3;30980:75;31051:3;31042:6;30980:75;:::i;:::-;31080:2;31075:3;31071:12;31064:19;;31093:75;31164:3;31155:6;31093:75;:::i;:::-;31193:2;31188:3;31184:12;31177:19;;31213:3;31206:10;;30825:397;;;;;:::o;31228:174::-;31368:26;31364:1;31356:6;31352:14;31345:50;31228:174;:::o;31408:366::-;31550:3;31571:67;31635:2;31630:3;31571:67;:::i;:::-;31564:74;;31647:93;31736:3;31647:93;:::i;:::-;31765:2;31760:3;31756:12;31749:19;;31408:366;;;:::o;31780:419::-;31946:4;31984:2;31973:9;31969:18;31961:26;;32033:9;32027:4;32023:20;32019:1;32008:9;32004:17;31997:47;32061:131;32187:4;32061:131;:::i;:::-;32053:139;;31780:419;;;:::o;32205:176::-;32345:28;32341:1;32333:6;32329:14;32322:52;32205:176;:::o;32387:366::-;32529:3;32550:67;32614:2;32609:3;32550:67;:::i;:::-;32543:74;;32626:93;32715:3;32626:93;:::i;:::-;32744:2;32739:3;32735:12;32728:19;;32387:366;;;:::o;32759:419::-;32925:4;32963:2;32952:9;32948:18;32940:26;;33012:9;33006:4;33002:20;32998:1;32987:9;32983:17;32976:47;33040:131;33166:4;33040:131;:::i;:::-;33032:139;;32759:419;;;:::o;33184:194::-;33224:4;33244:20;33262:1;33244:20;:::i;:::-;33239:25;;33278:20;33296:1;33278:20;:::i;:::-;33273:25;;33322:1;33319;33315:9;33307:17;;33346:1;33340:4;33337:11;33334:37;;;33351:18;;:::i;:::-;33334:37;33184:194;;;;:::o;33384:234::-;33524:34;33520:1;33512:6;33508:14;33501:58;33593:17;33588:2;33580:6;33576:15;33569:42;33384:234;:::o;33624:366::-;33766:3;33787:67;33851:2;33846:3;33787:67;:::i;:::-;33780:74;;33863:93;33952:3;33863:93;:::i;:::-;33981:2;33976:3;33972:12;33965:19;;33624:366;;;:::o;33996:419::-;34162:4;34200:2;34189:9;34185:18;34177:26;;34249:9;34243:4;34239:20;34235:1;34224:9;34220:17;34213:47;34277:131;34403:4;34277:131;:::i;:::-;34269:139;;33996:419;;;:::o;34421:148::-;34523:11;34560:3;34545:18;;34421:148;;;;:::o;34575:390::-;34681:3;34709:39;34742:5;34709:39;:::i;:::-;34764:89;34846:6;34841:3;34764:89;:::i;:::-;34757:96;;34862:65;34920:6;34915:3;34908:4;34901:5;34897:16;34862:65;:::i;:::-;34952:6;34947:3;34943:16;34936:23;;34685:280;34575:390;;;;:::o;34995:874::-;35098:3;35135:5;35129:12;35164:36;35190:9;35164:36;:::i;:::-;35216:89;35298:6;35293:3;35216:89;:::i;:::-;35209:96;;35336:1;35325:9;35321:17;35352:1;35347:166;;;;35527:1;35522:341;;;;35314:549;;35347:166;35431:4;35427:9;35416;35412:25;35407:3;35400:38;35493:6;35486:14;35479:22;35471:6;35467:35;35462:3;35458:45;35451:52;;35347:166;;35522:341;35589:38;35621:5;35589:38;:::i;:::-;35649:1;35663:154;35677:6;35674:1;35671:13;35663:154;;;35751:7;35745:14;35741:1;35736:3;35732:11;35725:35;35801:1;35792:7;35788:15;35777:26;;35699:4;35696:1;35692:12;35687:17;;35663:154;;;35846:6;35841:3;35837:16;35830:23;;35529:334;;35314:549;;35102:767;;34995:874;;;;:::o;35875:589::-;36100:3;36122:95;36213:3;36204:6;36122:95;:::i;:::-;36115:102;;36234:95;36325:3;36316:6;36234:95;:::i;:::-;36227:102;;36346:92;36434:3;36425:6;36346:92;:::i;:::-;36339:99;;36455:3;36448:10;;35875:589;;;;;;:::o;36470:168::-;36610:20;36606:1;36598:6;36594:14;36587:44;36470:168;:::o;36644:366::-;36786:3;36807:67;36871:2;36866:3;36807:67;:::i;:::-;36800:74;;36883:93;36972:3;36883:93;:::i;:::-;37001:2;36996:3;36992:12;36985:19;;36644:366;;;:::o;37016:419::-;37182:4;37220:2;37209:9;37205:18;37197:26;;37269:9;37263:4;37259:20;37255:1;37244:9;37240:17;37233:47;37297:131;37423:4;37297:131;:::i;:::-;37289:139;;37016:419;;;:::o;37441:1395::-;37558:37;37591:3;37558:37;:::i;:::-;37660:18;37652:6;37649:30;37646:56;;;37682:18;;:::i;:::-;37646:56;37726:38;37758:4;37752:11;37726:38;:::i;:::-;37811:67;37871:6;37863;37857:4;37811:67;:::i;:::-;37905:1;37929:4;37916:17;;37961:2;37953:6;37950:14;37978:1;37973:618;;;;38635:1;38652:6;38649:77;;;38701:9;38696:3;38692:19;38686:26;38677:35;;38649:77;38752:67;38812:6;38805:5;38752:67;:::i;:::-;38746:4;38739:81;38608:222;37943:887;;37973:618;38025:4;38021:9;38013:6;38009:22;38059:37;38091:4;38059:37;:::i;:::-;38118:1;38132:208;38146:7;38143:1;38140:14;38132:208;;;38225:9;38220:3;38216:19;38210:26;38202:6;38195:42;38276:1;38268:6;38264:14;38254:24;;38323:2;38312:9;38308:18;38295:31;;38169:4;38166:1;38162:12;38157:17;;38132:208;;;38368:6;38359:7;38356:19;38353:179;;;38426:9;38421:3;38417:19;38411:26;38469:48;38511:4;38503:6;38499:17;38488:9;38469:48;:::i;:::-;38461:6;38454:64;38376:156;38353:179;38578:1;38574;38566:6;38562:14;38558:22;38552:4;38545:36;37980:611;;;37943:887;;37533:1303;;;37441:1395;;:::o;38842:180::-;38890:77;38887:1;38880:88;38987:4;38984:1;38977:15;39011:4;39008:1;39001:15;39028:79;39067:7;39096:5;39085:16;;39028:79;;;:::o;39113:157::-;39218:45;39238:24;39256:5;39238:24;:::i;:::-;39218:45;:::i;:::-;39213:3;39206:58;39113:157;;:::o;39276:397::-;39416:3;39431:75;39502:3;39493:6;39431:75;:::i;:::-;39531:2;39526:3;39522:12;39515:19;;39544:75;39615:3;39606:6;39544:75;:::i;:::-;39644:2;39639:3;39635:12;39628:19;;39664:3;39657:10;;39276:397;;;;;:::o;39679:140::-;39728:9;39761:52;39779:33;39788:23;39805:5;39788:23;:::i;:::-;39779:33;:::i;:::-;39761:52;:::i;:::-;39748:65;;39679:140;;;:::o;39825:129::-;39911:36;39941:5;39911:36;:::i;:::-;39906:3;39899:49;39825:129;;:::o;39960:330::-;40080:4;40118:2;40107:9;40103:18;40095:26;;40131:70;40198:1;40187:9;40183:17;40174:6;40131:70;:::i;:::-;40211:72;40279:2;40268:9;40264:18;40255:6;40211:72;:::i;:::-;39960:330;;;;;:::o;40296:98::-;40347:6;40381:5;40375:12;40365:22;;40296:98;;;:::o;40400:168::-;40483:11;40517:6;40512:3;40505:19;40557:4;40552:3;40548:14;40533:29;;40400:168;;;;:::o;40574:373::-;40660:3;40688:38;40720:5;40688:38;:::i;:::-;40742:70;40805:6;40800:3;40742:70;:::i;:::-;40735:77;;40821:65;40879:6;40874:3;40867:4;40860:5;40856:16;40821:65;:::i;:::-;40911:29;40933:6;40911:29;:::i;:::-;40906:3;40902:39;40895:46;;40664:283;40574:373;;;;:::o;40953:640::-;41148:4;41186:3;41175:9;41171:19;41163:27;;41200:71;41268:1;41257:9;41253:17;41244:6;41200:71;:::i;:::-;41281:72;41349:2;41338:9;41334:18;41325:6;41281:72;:::i;:::-;41363;41431:2;41420:9;41416:18;41407:6;41363:72;:::i;:::-;41482:9;41476:4;41472:20;41467:2;41456:9;41452:18;41445:48;41510:76;41581:4;41572:6;41510:76;:::i;:::-;41502:84;;40953:640;;;;;;;:::o;41599:141::-;41655:5;41686:6;41680:13;41671:22;;41702:32;41728:5;41702:32;:::i;:::-;41599:141;;;;:::o;41746:349::-;41815:6;41864:2;41852:9;41843:7;41839:23;41835:32;41832:119;;;41870:79;;:::i;:::-;41832:119;41990:1;42015:63;42070:7;42061:6;42050:9;42046:22;42015:63;:::i;:::-;42005:73;;41961:127;41746:349;;;;:::o

Swarm Source

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