ETH Price: $2,197.34 (-0.54%)

Token

Save Earth Now Animated (Save Earth Now Animated)
 

Overview

Max Total Supply

35 Save Earth Now Animated

Holders

25

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Save Earth Now Animated
0x9c904aa3f772a27c6725253d4e3cdb0f3081b775
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:
Save_Earth_Now_Animated

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

        return (royalty.receiver, royaltyAmount);
    }

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

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

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: saveearthnowani.sol



pragma solidity ^0.8.0;






/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables
     * (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`,
     * checking first that contract recipients are aware of the ERC721 protocol
     * to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move
     * this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom}
     * whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external payable;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => TokenApprovalRef) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    constructor(
        address _royaltyReceiver,
        uint96 _royaltyFraction
    )
        ERC721A("Save Earth Now Animated", "Save Earth Now Animated")
    {

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

        _setDefaultRoyalty(_royaltyReceiver, _royaltyFraction);
    }

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

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

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

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

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

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

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


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

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

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

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


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

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

        provenanceHash = _provenanceHash;
    }


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

    function secondaryReserve(address to, uint256 quantity) external lockable onlyOwner {
        _mint(to, quantity);
    }

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_royaltyReceiver","type":"address"},{"internalType":"uint96","name":"_royaltyFraction","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyReservedTokens","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"FunctionLocked","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"ProvenanceHashAlreadySet","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"WithdrawFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SEC_RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"assignMinterRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"enableMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"name":"functionLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isUk","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"id","type":"bytes4"}],"name":"lockFunction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bool","name":"_isUk","type":"bool"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"revokeMinterRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"secondaryReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"royaltyFraction","type":"uint96"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSecondaryReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90816200004a91906200095b565b506000600d5566a36cc19bab0000600e556000601060016101000a81548160ff0219169083151502179055503480156200008357600080fd5b5060405162005269380380620052698339818101604052810190620000a9919062000af5565b6040518060400160405280601781526020017f53617665204561727468204e6f7720416e696d617465640000000000000000008152506040518060400160405280601781526020017f53617665204561727468204e6f7720416e696d6174656400000000000000000081525081600290816200012691906200095b565b5080600390816200013891906200095b565b5062000149620003d260201b60201c565b60008190555050506200017162000165620003db60201b60201c565b620003e360201b60201c565b62000181620004a960201b60201c565b6001601060006101000a81548160ff02191690831515021790555060016013600073a8c10ec49df815e73a881abbe0aa7b210f39e2df73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601360007379bb164367bb64742e993f381372961a945bf44773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016013600073fd88229910a28d6b319e147b40c822fa5cf38a4573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160136000736b40a842e05d60081f5474046c713b294b4bbc6373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160136000738528fa2503c49893b704b981e0cbac021e67878973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003ca8282620004d260201b60201c565b505062000c57565b60006001905090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004d0733cc6cdda760b79bafa08df41ecfa224f810dceb660016200067560201b60201c565b565b620004e2620006d760201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111562000543576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200053a9062000bc3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620005b5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005ac9062000c35565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b637d3e3dbe8260601b60601c925081620006a457826200069c57634420e4869050620006a4565b63a0af290390505b8060e01b600052306004528260245260008060446000806daaeb6d7670e522a718067333cd4e5af1506000602452505050565b6000612710905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200076357607f821691505b6020821081036200077957620007786200071b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007e37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007a4565b620007ef8683620007a4565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200083c62000836620008308462000807565b62000811565b62000807565b9050919050565b6000819050919050565b62000858836200081b565b62000870620008678262000843565b848454620007b1565b825550505050565b600090565b6200088762000878565b620008948184846200084d565b505050565b5b81811015620008bc57620008b06000826200087d565b6001810190506200089a565b5050565b601f8211156200090b57620008d5816200077f565b620008e08462000794565b81016020851015620008f0578190505b62000908620008ff8562000794565b83018262000899565b50505b505050565b600082821c905092915050565b6000620009306000198460080262000910565b1980831691505092915050565b60006200094b83836200091d565b9150826002028217905092915050565b6200096682620006e1565b67ffffffffffffffff811115620009825762000981620006ec565b5b6200098e82546200074a565b6200099b828285620008c0565b600060209050601f831160018114620009d35760008415620009be578287015190505b620009ca85826200093d565b86555062000a3a565b601f198416620009e3866200077f565b60005b8281101562000a0d57848901518255600182019150602085019450602081019050620009e6565b8683101562000a2d578489015162000a29601f8916826200091d565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a748262000a47565b9050919050565b62000a868162000a67565b811462000a9257600080fd5b50565b60008151905062000aa68162000a7b565b92915050565b60006bffffffffffffffffffffffff82169050919050565b62000acf8162000aac565b811462000adb57600080fd5b50565b60008151905062000aef8162000ac4565b92915050565b6000806040838503121562000b0f5762000b0e62000a42565b5b600062000b1f8582860162000a95565b925050602062000b328582860162000ade565b9150509250929050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600062000bab602a8362000b3c565b915062000bb88262000b4d565b604082019050919050565b6000602082019050818103600083015262000bde8162000b9c565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000c1d60198362000b3c565b915062000c2a8262000be5565b602082019050919050565b6000602082019050818103600083015262000c508162000c0e565b9050919050565b6146028062000c676000396000f3fe6080604052600436106102675760003560e01c806378acea1e11610144578063c21b471b116100b6578063dc33e6811161007a578063dc33e681146108e6578063e75179a414610923578063e985e9c51461094c578063f2fde38b14610989578063f4a0a528146109b2578063fb796e6c146109db57610267565b8063c21b471b14610801578063c66828621461082a578063c6ab67a314610855578063c87b56dd14610880578063da3ef23f146108bd57610267565b8063b366d61311610108578063b366d613146106ee578063b629f19214610717578063b7c0b8e814610754578063b88d4fde1461077d578063bbadfe7614610799578063c1e1ce29146107d657610267565b806378acea1e1461061b5780638da5cb5b1461064457806395d89b411461066f578063a22cb4651461069a578063aa592f25146106c357610267565b8063402c3856116101dd5780636352211e116101a15780636352211e1461050d5780636817c76c1461054a57806369e2f0fb1461057557806370a082311461059e578063715018a6146105db57806374d0101d146105f257610267565b8063402c38561461045857806342842e0e14610474578063559c55b91461049057806355f804b3146104b9578063601e5e77146104e257610267565b806318160ddd1161022f57806318160ddd1461035657806323b872dd146103815780632a55205a1461039d57806334531828146103db5780633ccfd60b146104045780633dd08c381461041b57610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b314610311578063109695231461032d575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e91906131f9565b610a06565b6040516102a09190613241565b60405180910390f35b3480156102b557600080fd5b506102be610a28565b6040516102cb91906132ec565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613344565b610aba565b60405161030891906133b2565b60405180910390f35b61032b600480360381019061032691906133f9565b610b39565b005b34801561033957600080fd5b50610354600480360381019061034f919061349e565b610ba8565b005b34801561036257600080fd5b5061036b610cc7565b60405161037891906134fa565b60405180910390f35b61039b60048036038101906103969190613515565b610cde565b005b3480156103a957600080fd5b506103c460048036038101906103bf9190613568565b610d57565b6040516103d29291906135a8565b60405180910390f35b3480156103e757600080fd5b5061040260048036038101906103fd91906131f9565b610f41565b005b34801561041057600080fd5b50610419610fb6565b005b34801561042757600080fd5b50610442600480360381019061043d91906135d1565b611064565b60405161044f9190613241565b60405180910390f35b610472600480360381019061046d919061362a565b611084565b005b61048e60048036038101906104899190613515565b611284565b005b34801561049c57600080fd5b506104b760048036038101906104b29190613344565b6112fd565b005b3480156104c557600080fd5b506104e060048036038101906104db919061349e565b61130f565b005b3480156104ee57600080fd5b506104f76113e6565b60405161050491906134fa565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190613344565b6113ec565b60405161054191906133b2565b60405180910390f35b34801561055657600080fd5b5061055f6113fe565b60405161056c91906134fa565b60405180910390f35b34801561058157600080fd5b5061059c600480360381019061059791906135d1565b611404565b005b3480156105aa57600080fd5b506105c560048036038101906105c091906135d1565b6114fa565b6040516105d291906134fa565b60405180910390f35b3480156105e757600080fd5b506105f06115b2565b005b3480156105fe57600080fd5b50610619600480360381019061061491906133f9565b6115c6565b005b34801561062757600080fd5b50610642600480360381019061063d919061367d565b611695565b005b34801561065057600080fd5b506106596116ba565b60405161066691906133b2565b60405180910390f35b34801561067b57600080fd5b506106846116e4565b60405161069191906132ec565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc91906136aa565b611776565b005b3480156106cf57600080fd5b506106d86117e5565b6040516106e591906134fa565b60405180910390f35b3480156106fa57600080fd5b50610715600480360381019061071091906135d1565b6117ea565b005b34801561072357600080fd5b5061073e600480360381019061073991906135d1565b6118e0565b60405161074b9190613241565b60405180910390f35b34801561076057600080fd5b5061077b6004803603810190610776919061367d565b611900565b005b6107976004803603810190610792919061381a565b6119de565b005b3480156107a557600080fd5b506107c060048036038101906107bb91906131f9565b611a59565b6040516107cd9190613241565b60405180910390f35b3480156107e257600080fd5b506107eb611a79565b6040516107f89190613241565b60405180910390f35b34801561080d57600080fd5b50610828600480360381019061082391906138e1565b611a8c565b005b34801561083657600080fd5b5061083f611aa2565b60405161084c91906132ec565b60405180910390f35b34801561086157600080fd5b5061086a611b30565b60405161087791906132ec565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a29190613344565b611bbe565b6040516108b491906132ec565b60405180910390f35b3480156108c957600080fd5b506108e460048036038101906108df91906139c2565b611c68565b005b3480156108f257600080fd5b5061090d600480360381019061090891906135d1565b611c83565b60405161091a91906134fa565b60405180910390f35b34801561092f57600080fd5b5061094a600480360381019061094591906135d1565b611c95565b005b34801561095857600080fd5b50610973600480360381019061096e9190613a0b565b611da5565b6040516109809190613241565b60405180910390f35b34801561099557600080fd5b506109b060048036038101906109ab91906135d1565b611e39565b005b3480156109be57600080fd5b506109d960048036038101906109d49190613344565b611ebc565b005b3480156109e757600080fd5b506109f0611ece565b6040516109fd9190613241565b60405180910390f35b6000610a1182611ee1565b80610a215750610a2082611f73565b5b9050919050565b606060028054610a3790613a7a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6390613a7a565b8015610ab05780601f10610a8557610100808354040283529160200191610ab0565b820191906000526020600020905b815481529060010190602001808311610a9357829003601f168201915b5050505050905090565b6000610ac582611fed565b610afb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81601060009054906101000a900460ff168015610b985769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610b92573d6000803e3d6000fd5b6000603a525b610ba2848461204c565b50505050565b6011600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615610c61576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c69612190565b6000600f8054610c7890613a7a565b905014610cb1576040517f19e24c1100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181600f9182610cc2929190613c62565b505050565b6000610cd161220e565b6001546000540303905090565b82601060009054906101000a900460ff168015610d4557338260601b60601c14610d445769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610d3e573d6000803e3d6000fd5b6000603a525b5b610d50858585612217565b5050505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610eec5760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610ef6612539565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610f229190613d61565b610f2c9190613dd2565b90508160000151819350935050509250929050565b610f49612190565b600160116000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610fbe612190565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610fe490613e34565b60006040518083038185875af1925050503d8060008114611021576040519150601f19603f3d011682016040523d82523d6000602084013e611026565b606091505b5050905080611061576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b60136020528060005260406000206000915054906101000a900460ff1681565b60011515601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90613e95565b60405180910390fd5b60011515601060019054906101000a900460ff1615151461116d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116490613f01565b60405180910390fd5b6000600e548361117d9190613d61565b9050803410156111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990613f6d565b60405180910390fd5b6111cc8484612543565b81601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508034111561127e573373ffffffffffffffffffffffffffffffffffffffff166108fc82346112519190613f8d565b9081150290604051600060405180830381858888f1935050505015801561127c573d6000803e3d6000fd5b505b50505050565b82601060009054906101000a900460ff1680156112eb57338260601b60601c146112ea5769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa6112e4573d6000803e3d6000fd5b6000603a525b5b6112f68585856126fe565b5050505050565b611305612190565b80600d8190555050565b6011600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff16156113c8576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113d0612190565b8181600b91826113e1929190613c62565b505050565b600d5481565b60006113f78261271e565b9050919050565b600e5481565b61140c612190565b60011515601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461149f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114969061400d565b60405180910390fd5b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611561576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6115ba612190565b6115c460006127ea565b565b6011600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff161561167f576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611687612190565b6116918282612543565b5050565b61169d612190565b80601060016101000a81548160ff02191690831515021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546116f390613a7a565b80601f016020809104026020016040519081016040528092919081815260200182805461171f90613a7a565b801561176c5780601f106117415761010080835404028352916020019161176c565b820191906000526020600020905b81548152906001019060200180831161174f57829003601f168201915b5050505050905090565b81601060009054906101000a900460ff1680156117d55769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa6117cf573d6000803e3d6000fd5b6000603a525b6117df84846128b0565b50505050565b600981565b6117f2612190565b60001515601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187c90614079565b60405180910390fd5b6001601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60126020528060005260406000206000915054906101000a900460ff1681565b6011600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff16156119b9576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119c1612190565b80601060006101000a81548160ff02191690831515021790555050565b83601060009054906101000a900460ff168015611a4557338260601b60601c14611a445769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611a3e573d6000803e3d6000fd5b6000603a525b5b611a51868686866129bb565b505050505050565b60116020528060005260406000206000915054906101000a900460ff1681565b601060019054906101000a900460ff1681565b611a94612190565b611a9e8282612a2e565b5050565b600c8054611aaf90613a7a565b80601f0160208091040260200160405190810160405280929190818152602001828054611adb90613a7a565b8015611b285780601f10611afd57610100808354040283529160200191611b28565b820191906000526020600020905b815481529060010190602001808311611b0b57829003601f168201915b505050505081565b600f8054611b3d90613a7a565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6990613a7a565b8015611bb65780601f10611b8b57610100808354040283529160200191611bb6565b820191906000526020600020905b815481529060010190602001808311611b9957829003601f168201915b505050505081565b6060611bc982611fed565b611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bff9061410b565b60405180910390fd5b6000611c12612bc3565b90506000815111611c325760405180602001604052806000815250611c60565b80611c3c84612c55565b600c604051602001611c50939291906141ea565b6040516020818303038152906040525b915050919050565b611c70612190565b80600c9081611c7f919061421b565b5050565b6000611c8e82612d23565b9050919050565b6011600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611d4e576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d56612190565b6009611d60612d7a565b10611d97576040517f1f0f14ca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611da2816009612543565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e41612190565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea79061435f565b60405180910390fd5b611eb9816127ea565b50565b611ec4612190565b80600e8190555050565b601060009054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f3c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f6c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fe65750611fe582612d8d565b5b9050919050565b600081611ff861220e565b11158015612007575060005482105b8015612045575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000612057826113ec565b90508073ffffffffffffffffffffffffffffffffffffffff16612078612df7565b73ffffffffffffffffffffffffffffffffffffffff16146120db576120a48161209f612df7565b611da5565b6120da576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612198612dff565b73ffffffffffffffffffffffffffffffffffffffff166121b66116ba565b73ffffffffffffffffffffffffffffffffffffffff161461220c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612203906143cb565b60405180910390fd5b565b60006001905090565b60006122228261271e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612289576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061229584612e07565b915091506122ab81876122a6612df7565b612e2e565b6122f7576122c0866122bb612df7565b611da5565b6122f6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361235d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61236a8686866001612e72565b801561237557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506124438561241f888887612e78565b7c020000000000000000000000000000000000000000000000000000000017612ea0565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036124c957600060018501905060006004600083815260200190815260200160002054036124c75760005481146124c6578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125318686866001612ecb565b505050505050565b6000612710905090565b60008054905060008203612583576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125906000848385612e72565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612607836125f86000866000612e78565b61260185612ed1565b17612ea0565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146126a857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061266d565b50600082036126e3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126f96000848385612ecb565b505050565b612719838383604051806020016040528060008152506119de565b505050565b6000808290508061272d61220e565b116127b3576000548110156127b25760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036127b0575b600081036127a657600460008360019003935083815260200190815260200160002054905061277c565b80925050506127e5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600760006128bd612df7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661296a612df7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516129af9190613241565b60405180910390a35050565b6129c6848484610cde565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612a28576129f184848484612ee1565b612a27576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612a36612539565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8b9061445d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afa906144c9565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6060600b8054612bd290613a7a565b80601f0160208091040260200160405190810160405280929190818152602001828054612bfe90613a7a565b8015612c4b5780601f10612c2057610100808354040283529160200191612c4b565b820191906000526020600020905b815481529060010190602001808311612c2e57829003601f168201915b5050505050905090565b606060006001612c6484613031565b01905060008167ffffffffffffffff811115612c8357612c826136ef565b5b6040519080825280601f01601f191660200182016040528015612cb55781602001600182028036833780820191505090505b509050600082602001820190505b600115612d18578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612d0c57612d0b613da3565b5b04945060008503612cc3575b819350505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000612d8461220e565b60005403905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612e8f868684613184565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f07612df7565b8786866040518563ffffffff1660e01b8152600401612f29949392919061453e565b6020604051808303816000875af1925050508015612f6557506040513d601f19601f82011682018060405250810190612f62919061459f565b60015b612fde573d8060008114612f95576040519150601f19603f3d011682016040523d82523d6000602084013e612f9a565b606091505b506000815103612fd6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061308f577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161308557613084613da3565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106130cc576d04ee2d6d415b85acef810000000083816130c2576130c1613da3565b5b0492506020810190505b662386f26fc1000083106130fb57662386f26fc1000083816130f1576130f0613da3565b5b0492506010810190505b6305f5e1008310613124576305f5e100838161311a57613119613da3565b5b0492506008810190505b612710831061314957612710838161313f5761313e613da3565b5b0492506004810190505b6064831061316c576064838161316257613161613da3565b5b0492506002810190505b600a831061317b576001810190505b80915050919050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131d6816131a1565b81146131e157600080fd5b50565b6000813590506131f3816131cd565b92915050565b60006020828403121561320f5761320e613197565b5b600061321d848285016131e4565b91505092915050565b60008115159050919050565b61323b81613226565b82525050565b60006020820190506132566000830184613232565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561329657808201518184015260208101905061327b565b60008484015250505050565b6000601f19601f8301169050919050565b60006132be8261325c565b6132c88185613267565b93506132d8818560208601613278565b6132e1816132a2565b840191505092915050565b6000602082019050818103600083015261330681846132b3565b905092915050565b6000819050919050565b6133218161330e565b811461332c57600080fd5b50565b60008135905061333e81613318565b92915050565b60006020828403121561335a57613359613197565b5b60006133688482850161332f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061339c82613371565b9050919050565b6133ac81613391565b82525050565b60006020820190506133c760008301846133a3565b92915050565b6133d681613391565b81146133e157600080fd5b50565b6000813590506133f3816133cd565b92915050565b600080604083850312156134105761340f613197565b5b600061341e858286016133e4565b925050602061342f8582860161332f565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261345e5761345d613439565b5b8235905067ffffffffffffffff81111561347b5761347a61343e565b5b60208301915083600182028301111561349757613496613443565b5b9250929050565b600080602083850312156134b5576134b4613197565b5b600083013567ffffffffffffffff8111156134d3576134d261319c565b5b6134df85828601613448565b92509250509250929050565b6134f48161330e565b82525050565b600060208201905061350f60008301846134eb565b92915050565b60008060006060848603121561352e5761352d613197565b5b600061353c868287016133e4565b935050602061354d868287016133e4565b925050604061355e8682870161332f565b9150509250925092565b6000806040838503121561357f5761357e613197565b5b600061358d8582860161332f565b925050602061359e8582860161332f565b9150509250929050565b60006040820190506135bd60008301856133a3565b6135ca60208301846134eb565b9392505050565b6000602082840312156135e7576135e6613197565b5b60006135f5848285016133e4565b91505092915050565b61360781613226565b811461361257600080fd5b50565b600081359050613624816135fe565b92915050565b60008060006060848603121561364357613642613197565b5b6000613651868287016133e4565b93505060206136628682870161332f565b925050604061367386828701613615565b9150509250925092565b60006020828403121561369357613692613197565b5b60006136a184828501613615565b91505092915050565b600080604083850312156136c1576136c0613197565b5b60006136cf858286016133e4565b92505060206136e085828601613615565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613727826132a2565b810181811067ffffffffffffffff82111715613746576137456136ef565b5b80604052505050565b600061375961318d565b9050613765828261371e565b919050565b600067ffffffffffffffff821115613785576137846136ef565b5b61378e826132a2565b9050602081019050919050565b82818337600083830152505050565b60006137bd6137b88461376a565b61374f565b9050828152602081018484840111156137d9576137d86136ea565b5b6137e484828561379b565b509392505050565b600082601f83011261380157613800613439565b5b81356138118482602086016137aa565b91505092915050565b6000806000806080858703121561383457613833613197565b5b6000613842878288016133e4565b9450506020613853878288016133e4565b93505060406138648782880161332f565b925050606085013567ffffffffffffffff8111156138855761388461319c565b5b613891878288016137ec565b91505092959194509250565b60006bffffffffffffffffffffffff82169050919050565b6138be8161389d565b81146138c957600080fd5b50565b6000813590506138db816138b5565b92915050565b600080604083850312156138f8576138f7613197565b5b6000613906858286016133e4565b9250506020613917858286016138cc565b9150509250929050565b600067ffffffffffffffff82111561393c5761393b6136ef565b5b613945826132a2565b9050602081019050919050565b600061396561396084613921565b61374f565b905082815260208101848484011115613981576139806136ea565b5b61398c84828561379b565b509392505050565b600082601f8301126139a9576139a8613439565b5b81356139b9848260208601613952565b91505092915050565b6000602082840312156139d8576139d7613197565b5b600082013567ffffffffffffffff8111156139f6576139f561319c565b5b613a0284828501613994565b91505092915050565b60008060408385031215613a2257613a21613197565b5b6000613a30858286016133e4565b9250506020613a41858286016133e4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613a9257607f821691505b602082108103613aa557613aa4613a4b565b5b50919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613b187fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613adb565b613b228683613adb565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613b5f613b5a613b558461330e565b613b3a565b61330e565b9050919050565b6000819050919050565b613b7983613b44565b613b8d613b8582613b66565b848454613ae8565b825550505050565b600090565b613ba2613b95565b613bad818484613b70565b505050565b5b81811015613bd157613bc6600082613b9a565b600181019050613bb3565b5050565b601f821115613c1657613be781613ab6565b613bf084613acb565b81016020851015613bff578190505b613c13613c0b85613acb565b830182613bb2565b50505b505050565b600082821c905092915050565b6000613c3960001984600802613c1b565b1980831691505092915050565b6000613c528383613c28565b9150826002028217905092915050565b613c6c8383613aab565b67ffffffffffffffff811115613c8557613c846136ef565b5b613c8f8254613a7a565b613c9a828285613bd5565b6000601f831160018114613cc95760008415613cb7578287013590505b613cc18582613c46565b865550613d29565b601f198416613cd786613ab6565b60005b82811015613cff57848901358255600182019150602085019450602081019050613cda565b86831015613d1c5784890135613d18601f891682613c28565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d6c8261330e565b9150613d778361330e565b9250828202613d858161330e565b91508282048414831517613d9c57613d9b613d32565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ddd8261330e565b9150613de88361330e565b925082613df857613df7613da3565b5b828204905092915050565b600081905092915050565b50565b6000613e1e600083613e03565b9150613e2982613e0e565b600082019050919050565b6000613e3f82613e11565b9150819050919050565b7f596f75277265206e6f742061206d696e74657200000000000000000000000000600082015250565b6000613e7f601383613267565b9150613e8a82613e49565b602082019050919050565b60006020820190508181036000830152613eae81613e72565b9050919050565b7f4d696e74696e67206973206e6f7420796574206f70656e2e0000000000000000600082015250565b6000613eeb601883613267565b9150613ef682613eb5565b602082019050919050565b60006020820190508181036000830152613f1a81613ede565b9050919050565b7f45746865722073656e74206973206e6f7420636f72726563742e000000000000600082015250565b6000613f57601a83613267565b9150613f6282613f21565b602082019050919050565b60006020820190508181036000830152613f8681613f4a565b9050919050565b6000613f988261330e565b9150613fa38361330e565b9250828203905081811115613fbb57613fba613d32565b5b92915050565b7f4e6f742061206d696e7465720000000000000000000000000000000000000000600082015250565b6000613ff7600c83613267565b915061400282613fc1565b602082019050919050565b6000602082019050818103600083015261402681613fea565b9050919050565b7f416c72656164792061206d696e74657200000000000000000000000000000000600082015250565b6000614063601083613267565b915061406e8261402d565b602082019050919050565b6000602082019050818103600083015261409281614056565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006140f5602f83613267565b915061410082614099565b604082019050919050565b60006020820190508181036000830152614124816140e8565b9050919050565b600081905092915050565b60006141418261325c565b61414b818561412b565b935061415b818560208601613278565b80840191505092915050565b6000815461417481613a7a565b61417e818661412b565b9450600182166000811461419957600181146141ae576141e1565b60ff19831686528115158202860193506141e1565b6141b785613ab6565b60005b838110156141d9578154818901526001820191506020810190506141ba565b838801955050505b50505092915050565b60006141f68286614136565b91506142028285614136565b915061420e8284614167565b9150819050949350505050565b6142248261325c565b67ffffffffffffffff81111561423d5761423c6136ef565b5b6142478254613a7a565b614252828285613bd5565b600060209050601f8311600181146142855760008415614273578287015190505b61427d8582613c46565b8655506142e5565b601f19841661429386613ab6565b60005b828110156142bb57848901518255600182019150602085019450602081019050614296565b868310156142d857848901516142d4601f891682613c28565b8355505b6001600288020188555050505b505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614349602683613267565b9150614354826142ed565b604082019050919050565b600060208201905081810360008301526143788161433c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006143b5602083613267565b91506143c08261437f565b602082019050919050565b600060208201905081810360008301526143e4816143a8565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000614447602a83613267565b9150614452826143eb565b604082019050919050565b600060208201905081810360008301526144768161443a565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006144b3601983613267565b91506144be8261447d565b602082019050919050565b600060208201905081810360008301526144e2816144a6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614510826144e9565b61451a81856144f4565b935061452a818560208601613278565b614533816132a2565b840191505092915050565b600060808201905061455360008301876133a3565b61456060208301866133a3565b61456d60408301856134eb565b818103606083015261457f8184614505565b905095945050505050565b600081519050614599816131cd565b92915050565b6000602082840312156145b5576145b4613197565b5b60006145c38482850161458a565b9150509291505056fea26469706673582212203e44489ce4223dbff9fed5b5ddace865db230904d9b4c3af6fedf2afb5cbc6dd64736f6c634300081200330000000000000000000000008b09692beba5c2765e3430f3b85185a497b9d95500000000000000000000000000000000000000000000000000000000000003e8

Deployed Bytecode

0x6080604052600436106102675760003560e01c806378acea1e11610144578063c21b471b116100b6578063dc33e6811161007a578063dc33e681146108e6578063e75179a414610923578063e985e9c51461094c578063f2fde38b14610989578063f4a0a528146109b2578063fb796e6c146109db57610267565b8063c21b471b14610801578063c66828621461082a578063c6ab67a314610855578063c87b56dd14610880578063da3ef23f146108bd57610267565b8063b366d61311610108578063b366d613146106ee578063b629f19214610717578063b7c0b8e814610754578063b88d4fde1461077d578063bbadfe7614610799578063c1e1ce29146107d657610267565b806378acea1e1461061b5780638da5cb5b1461064457806395d89b411461066f578063a22cb4651461069a578063aa592f25146106c357610267565b8063402c3856116101dd5780636352211e116101a15780636352211e1461050d5780636817c76c1461054a57806369e2f0fb1461057557806370a082311461059e578063715018a6146105db57806374d0101d146105f257610267565b8063402c38561461045857806342842e0e14610474578063559c55b91461049057806355f804b3146104b9578063601e5e77146104e257610267565b806318160ddd1161022f57806318160ddd1461035657806323b872dd146103815780632a55205a1461039d57806334531828146103db5780633ccfd60b146104045780633dd08c381461041b57610267565b806301ffc9a71461026c57806306fdde03146102a9578063081812fc146102d4578063095ea7b314610311578063109695231461032d575b600080fd5b34801561027857600080fd5b50610293600480360381019061028e91906131f9565b610a06565b6040516102a09190613241565b60405180910390f35b3480156102b557600080fd5b506102be610a28565b6040516102cb91906132ec565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613344565b610aba565b60405161030891906133b2565b60405180910390f35b61032b600480360381019061032691906133f9565b610b39565b005b34801561033957600080fd5b50610354600480360381019061034f919061349e565b610ba8565b005b34801561036257600080fd5b5061036b610cc7565b60405161037891906134fa565b60405180910390f35b61039b60048036038101906103969190613515565b610cde565b005b3480156103a957600080fd5b506103c460048036038101906103bf9190613568565b610d57565b6040516103d29291906135a8565b60405180910390f35b3480156103e757600080fd5b5061040260048036038101906103fd91906131f9565b610f41565b005b34801561041057600080fd5b50610419610fb6565b005b34801561042757600080fd5b50610442600480360381019061043d91906135d1565b611064565b60405161044f9190613241565b60405180910390f35b610472600480360381019061046d919061362a565b611084565b005b61048e60048036038101906104899190613515565b611284565b005b34801561049c57600080fd5b506104b760048036038101906104b29190613344565b6112fd565b005b3480156104c557600080fd5b506104e060048036038101906104db919061349e565b61130f565b005b3480156104ee57600080fd5b506104f76113e6565b60405161050491906134fa565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190613344565b6113ec565b60405161054191906133b2565b60405180910390f35b34801561055657600080fd5b5061055f6113fe565b60405161056c91906134fa565b60405180910390f35b34801561058157600080fd5b5061059c600480360381019061059791906135d1565b611404565b005b3480156105aa57600080fd5b506105c560048036038101906105c091906135d1565b6114fa565b6040516105d291906134fa565b60405180910390f35b3480156105e757600080fd5b506105f06115b2565b005b3480156105fe57600080fd5b50610619600480360381019061061491906133f9565b6115c6565b005b34801561062757600080fd5b50610642600480360381019061063d919061367d565b611695565b005b34801561065057600080fd5b506106596116ba565b60405161066691906133b2565b60405180910390f35b34801561067b57600080fd5b506106846116e4565b60405161069191906132ec565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc91906136aa565b611776565b005b3480156106cf57600080fd5b506106d86117e5565b6040516106e591906134fa565b60405180910390f35b3480156106fa57600080fd5b50610715600480360381019061071091906135d1565b6117ea565b005b34801561072357600080fd5b5061073e600480360381019061073991906135d1565b6118e0565b60405161074b9190613241565b60405180910390f35b34801561076057600080fd5b5061077b6004803603810190610776919061367d565b611900565b005b6107976004803603810190610792919061381a565b6119de565b005b3480156107a557600080fd5b506107c060048036038101906107bb91906131f9565b611a59565b6040516107cd9190613241565b60405180910390f35b3480156107e257600080fd5b506107eb611a79565b6040516107f89190613241565b60405180910390f35b34801561080d57600080fd5b50610828600480360381019061082391906138e1565b611a8c565b005b34801561083657600080fd5b5061083f611aa2565b60405161084c91906132ec565b60405180910390f35b34801561086157600080fd5b5061086a611b30565b60405161087791906132ec565b60405180910390f35b34801561088c57600080fd5b506108a760048036038101906108a29190613344565b611bbe565b6040516108b491906132ec565b60405180910390f35b3480156108c957600080fd5b506108e460048036038101906108df91906139c2565b611c68565b005b3480156108f257600080fd5b5061090d600480360381019061090891906135d1565b611c83565b60405161091a91906134fa565b60405180910390f35b34801561092f57600080fd5b5061094a600480360381019061094591906135d1565b611c95565b005b34801561095857600080fd5b50610973600480360381019061096e9190613a0b565b611da5565b6040516109809190613241565b60405180910390f35b34801561099557600080fd5b506109b060048036038101906109ab91906135d1565b611e39565b005b3480156109be57600080fd5b506109d960048036038101906109d49190613344565b611ebc565b005b3480156109e757600080fd5b506109f0611ece565b6040516109fd9190613241565b60405180910390f35b6000610a1182611ee1565b80610a215750610a2082611f73565b5b9050919050565b606060028054610a3790613a7a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6390613a7a565b8015610ab05780601f10610a8557610100808354040283529160200191610ab0565b820191906000526020600020905b815481529060010190602001808311610a9357829003601f168201915b5050505050905090565b6000610ac582611fed565b610afb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81601060009054906101000a900460ff168015610b985769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610b92573d6000803e3d6000fd5b6000603a525b610ba2848461204c565b50505050565b6011600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615610c61576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c69612190565b6000600f8054610c7890613a7a565b905014610cb1576040517f19e24c1100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181600f9182610cc2929190613c62565b505050565b6000610cd161220e565b6001546000540303905090565b82601060009054906101000a900460ff168015610d4557338260601b60601c14610d445769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa610d3e573d6000803e3d6000fd5b6000603a525b5b610d50858585612217565b5050505050565b6000806000600960008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603610eec5760086040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610ef6612539565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610f229190613d61565b610f2c9190613dd2565b90508160000151819350935050509250929050565b610f49612190565b600160116000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610fbe612190565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610fe490613e34565b60006040518083038185875af1925050503d8060008114611021576040519150601f19603f3d011682016040523d82523d6000602084013e611026565b606091505b5050905080611061576040517f750b219c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b60136020528060005260406000206000915054906101000a900460ff1681565b60011515601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90613e95565b60405180910390fd5b60011515601060019054906101000a900460ff1615151461116d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116490613f01565b60405180910390fd5b6000600e548361117d9190613d61565b9050803410156111c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b990613f6d565b60405180910390fd5b6111cc8484612543565b81601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508034111561127e573373ffffffffffffffffffffffffffffffffffffffff166108fc82346112519190613f8d565b9081150290604051600060405180830381858888f1935050505015801561127c573d6000803e3d6000fd5b505b50505050565b82601060009054906101000a900460ff1680156112eb57338260601b60601c146112ea5769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa6112e4573d6000803e3d6000fd5b6000603a525b5b6112f68585856126fe565b5050505050565b611305612190565b80600d8190555050565b6011600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff16156113c8576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113d0612190565b8181600b91826113e1929190613c62565b505050565b600d5481565b60006113f78261271e565b9050919050565b600e5481565b61140c612190565b60011515601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151461149f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114969061400d565b60405180910390fd5b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611561576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6115ba612190565b6115c460006127ea565b565b6011600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff161561167f576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611687612190565b6116918282612543565b5050565b61169d612190565b80601060016101000a81548160ff02191690831515021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546116f390613a7a565b80601f016020809104026020016040519081016040528092919081815260200182805461171f90613a7a565b801561176c5780601f106117415761010080835404028352916020019161176c565b820191906000526020600020905b81548152906001019060200180831161174f57829003601f168201915b5050505050905090565b81601060009054906101000a900460ff1680156117d55769c617113400112233445560005230601a528160601b60601c603a52600080604460166daaeb6d7670e522a718067333cd4e5afa6117cf573d6000803e3d6000fd5b6000603a525b6117df84846128b0565b50505050565b600981565b6117f2612190565b60001515601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611885576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187c90614079565b60405180910390fd5b6001601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60126020528060005260406000206000915054906101000a900460ff1681565b6011600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff16156119b9576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119c1612190565b80601060006101000a81548160ff02191690831515021790555050565b83601060009054906101000a900460ff168015611a4557338260601b60601c14611a445769c617113400112233445560005230601a5233603a52600080604460166daaeb6d7670e522a718067333cd4e5afa611a3e573d6000803e3d6000fd5b6000603a525b5b611a51868686866129bb565b505050505050565b60116020528060005260406000206000915054906101000a900460ff1681565b601060019054906101000a900460ff1681565b611a94612190565b611a9e8282612a2e565b5050565b600c8054611aaf90613a7a565b80601f0160208091040260200160405190810160405280929190818152602001828054611adb90613a7a565b8015611b285780601f10611afd57610100808354040283529160200191611b28565b820191906000526020600020905b815481529060010190602001808311611b0b57829003601f168201915b505050505081565b600f8054611b3d90613a7a565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6990613a7a565b8015611bb65780601f10611b8b57610100808354040283529160200191611bb6565b820191906000526020600020905b815481529060010190602001808311611b9957829003601f168201915b505050505081565b6060611bc982611fed565b611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bff9061410b565b60405180910390fd5b6000611c12612bc3565b90506000815111611c325760405180602001604052806000815250611c60565b80611c3c84612c55565b600c604051602001611c50939291906141ea565b6040516020818303038152906040525b915050919050565b611c70612190565b80600c9081611c7f919061421b565b5050565b6000611c8e82612d23565b9050919050565b6011600080357fffffffff00000000000000000000000000000000000000000000000000000000167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff1615611d4e576040517f8bf9b99f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d56612190565b6009611d60612d7a565b10611d97576040517f1f0f14ca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611da2816009612543565b50565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e41612190565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611eb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea79061435f565b60405180910390fd5b611eb9816127ea565b50565b611ec4612190565b80600e8190555050565b601060009054906101000a900460ff1681565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f3c57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f6c5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fe65750611fe582612d8d565b5b9050919050565b600081611ff861220e565b11158015612007575060005482105b8015612045575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000612057826113ec565b90508073ffffffffffffffffffffffffffffffffffffffff16612078612df7565b73ffffffffffffffffffffffffffffffffffffffff16146120db576120a48161209f612df7565b611da5565b6120da576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b612198612dff565b73ffffffffffffffffffffffffffffffffffffffff166121b66116ba565b73ffffffffffffffffffffffffffffffffffffffff161461220c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612203906143cb565b60405180910390fd5b565b60006001905090565b60006122228261271e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612289576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061229584612e07565b915091506122ab81876122a6612df7565b612e2e565b6122f7576122c0866122bb612df7565b611da5565b6122f6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361235d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61236a8686866001612e72565b801561237557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506124438561241f888887612e78565b7c020000000000000000000000000000000000000000000000000000000017612ea0565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036124c957600060018501905060006004600083815260200190815260200160002054036124c75760005481146124c6578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125318686866001612ecb565b505050505050565b6000612710905090565b60008054905060008203612583576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125906000848385612e72565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612607836125f86000866000612e78565b61260185612ed1565b17612ea0565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146126a857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061266d565b50600082036126e3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126f96000848385612ecb565b505050565b612719838383604051806020016040528060008152506119de565b505050565b6000808290508061272d61220e565b116127b3576000548110156127b25760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036127b0575b600081036127a657600460008360019003935083815260200190815260200160002054905061277c565b80925050506127e5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80600760006128bd612df7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661296a612df7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516129af9190613241565b60405180910390a35050565b6129c6848484610cde565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612a28576129f184848484612ee1565b612a27576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612a36612539565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115612a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8b9061445d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afa906144c9565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600860008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6060600b8054612bd290613a7a565b80601f0160208091040260200160405190810160405280929190818152602001828054612bfe90613a7a565b8015612c4b5780601f10612c2057610100808354040283529160200191612c4b565b820191906000526020600020905b815481529060010190602001808311612c2e57829003601f168201915b5050505050905090565b606060006001612c6484613031565b01905060008167ffffffffffffffff811115612c8357612c826136ef565b5b6040519080825280601f01601f191660200182016040528015612cb55781602001600182028036833780820191505090505b509050600082602001820190505b600115612d18578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581612d0c57612d0b613da3565b5b04945060008503612cc3575b819350505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000612d8461220e565b60005403905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612e8f868684613184565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60006001821460e11b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f07612df7565b8786866040518563ffffffff1660e01b8152600401612f29949392919061453e565b6020604051808303816000875af1925050508015612f6557506040513d601f19601f82011682018060405250810190612f62919061459f565b60015b612fde573d8060008114612f95576040519150601f19603f3d011682016040523d82523d6000602084013e612f9a565b606091505b506000815103612fd6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061308f577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161308557613084613da3565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106130cc576d04ee2d6d415b85acef810000000083816130c2576130c1613da3565b5b0492506020810190505b662386f26fc1000083106130fb57662386f26fc1000083816130f1576130f0613da3565b5b0492506010810190505b6305f5e1008310613124576305f5e100838161311a57613119613da3565b5b0492506008810190505b612710831061314957612710838161313f5761313e613da3565b5b0492506004810190505b6064831061316c576064838161316257613161613da3565b5b0492506002810190505b600a831061317b576001810190505b80915050919050565b60009392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131d6816131a1565b81146131e157600080fd5b50565b6000813590506131f3816131cd565b92915050565b60006020828403121561320f5761320e613197565b5b600061321d848285016131e4565b91505092915050565b60008115159050919050565b61323b81613226565b82525050565b60006020820190506132566000830184613232565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561329657808201518184015260208101905061327b565b60008484015250505050565b6000601f19601f8301169050919050565b60006132be8261325c565b6132c88185613267565b93506132d8818560208601613278565b6132e1816132a2565b840191505092915050565b6000602082019050818103600083015261330681846132b3565b905092915050565b6000819050919050565b6133218161330e565b811461332c57600080fd5b50565b60008135905061333e81613318565b92915050565b60006020828403121561335a57613359613197565b5b60006133688482850161332f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061339c82613371565b9050919050565b6133ac81613391565b82525050565b60006020820190506133c760008301846133a3565b92915050565b6133d681613391565b81146133e157600080fd5b50565b6000813590506133f3816133cd565b92915050565b600080604083850312156134105761340f613197565b5b600061341e858286016133e4565b925050602061342f8582860161332f565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261345e5761345d613439565b5b8235905067ffffffffffffffff81111561347b5761347a61343e565b5b60208301915083600182028301111561349757613496613443565b5b9250929050565b600080602083850312156134b5576134b4613197565b5b600083013567ffffffffffffffff8111156134d3576134d261319c565b5b6134df85828601613448565b92509250509250929050565b6134f48161330e565b82525050565b600060208201905061350f60008301846134eb565b92915050565b60008060006060848603121561352e5761352d613197565b5b600061353c868287016133e4565b935050602061354d868287016133e4565b925050604061355e8682870161332f565b9150509250925092565b6000806040838503121561357f5761357e613197565b5b600061358d8582860161332f565b925050602061359e8582860161332f565b9150509250929050565b60006040820190506135bd60008301856133a3565b6135ca60208301846134eb565b9392505050565b6000602082840312156135e7576135e6613197565b5b60006135f5848285016133e4565b91505092915050565b61360781613226565b811461361257600080fd5b50565b600081359050613624816135fe565b92915050565b60008060006060848603121561364357613642613197565b5b6000613651868287016133e4565b93505060206136628682870161332f565b925050604061367386828701613615565b9150509250925092565b60006020828403121561369357613692613197565b5b60006136a184828501613615565b91505092915050565b600080604083850312156136c1576136c0613197565b5b60006136cf858286016133e4565b92505060206136e085828601613615565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613727826132a2565b810181811067ffffffffffffffff82111715613746576137456136ef565b5b80604052505050565b600061375961318d565b9050613765828261371e565b919050565b600067ffffffffffffffff821115613785576137846136ef565b5b61378e826132a2565b9050602081019050919050565b82818337600083830152505050565b60006137bd6137b88461376a565b61374f565b9050828152602081018484840111156137d9576137d86136ea565b5b6137e484828561379b565b509392505050565b600082601f83011261380157613800613439565b5b81356138118482602086016137aa565b91505092915050565b6000806000806080858703121561383457613833613197565b5b6000613842878288016133e4565b9450506020613853878288016133e4565b93505060406138648782880161332f565b925050606085013567ffffffffffffffff8111156138855761388461319c565b5b613891878288016137ec565b91505092959194509250565b60006bffffffffffffffffffffffff82169050919050565b6138be8161389d565b81146138c957600080fd5b50565b6000813590506138db816138b5565b92915050565b600080604083850312156138f8576138f7613197565b5b6000613906858286016133e4565b9250506020613917858286016138cc565b9150509250929050565b600067ffffffffffffffff82111561393c5761393b6136ef565b5b613945826132a2565b9050602081019050919050565b600061396561396084613921565b61374f565b905082815260208101848484011115613981576139806136ea565b5b61398c84828561379b565b509392505050565b600082601f8301126139a9576139a8613439565b5b81356139b9848260208601613952565b91505092915050565b6000602082840312156139d8576139d7613197565b5b600082013567ffffffffffffffff8111156139f6576139f561319c565b5b613a0284828501613994565b91505092915050565b60008060408385031215613a2257613a21613197565b5b6000613a30858286016133e4565b9250506020613a41858286016133e4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613a9257607f821691505b602082108103613aa557613aa4613a4b565b5b50919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613b187fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613adb565b613b228683613adb565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613b5f613b5a613b558461330e565b613b3a565b61330e565b9050919050565b6000819050919050565b613b7983613b44565b613b8d613b8582613b66565b848454613ae8565b825550505050565b600090565b613ba2613b95565b613bad818484613b70565b505050565b5b81811015613bd157613bc6600082613b9a565b600181019050613bb3565b5050565b601f821115613c1657613be781613ab6565b613bf084613acb565b81016020851015613bff578190505b613c13613c0b85613acb565b830182613bb2565b50505b505050565b600082821c905092915050565b6000613c3960001984600802613c1b565b1980831691505092915050565b6000613c528383613c28565b9150826002028217905092915050565b613c6c8383613aab565b67ffffffffffffffff811115613c8557613c846136ef565b5b613c8f8254613a7a565b613c9a828285613bd5565b6000601f831160018114613cc95760008415613cb7578287013590505b613cc18582613c46565b865550613d29565b601f198416613cd786613ab6565b60005b82811015613cff57848901358255600182019150602085019450602081019050613cda565b86831015613d1c5784890135613d18601f891682613c28565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613d6c8261330e565b9150613d778361330e565b9250828202613d858161330e565b91508282048414831517613d9c57613d9b613d32565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ddd8261330e565b9150613de88361330e565b925082613df857613df7613da3565b5b828204905092915050565b600081905092915050565b50565b6000613e1e600083613e03565b9150613e2982613e0e565b600082019050919050565b6000613e3f82613e11565b9150819050919050565b7f596f75277265206e6f742061206d696e74657200000000000000000000000000600082015250565b6000613e7f601383613267565b9150613e8a82613e49565b602082019050919050565b60006020820190508181036000830152613eae81613e72565b9050919050565b7f4d696e74696e67206973206e6f7420796574206f70656e2e0000000000000000600082015250565b6000613eeb601883613267565b9150613ef682613eb5565b602082019050919050565b60006020820190508181036000830152613f1a81613ede565b9050919050565b7f45746865722073656e74206973206e6f7420636f72726563742e000000000000600082015250565b6000613f57601a83613267565b9150613f6282613f21565b602082019050919050565b60006020820190508181036000830152613f8681613f4a565b9050919050565b6000613f988261330e565b9150613fa38361330e565b9250828203905081811115613fbb57613fba613d32565b5b92915050565b7f4e6f742061206d696e7465720000000000000000000000000000000000000000600082015250565b6000613ff7600c83613267565b915061400282613fc1565b602082019050919050565b6000602082019050818103600083015261402681613fea565b9050919050565b7f416c72656164792061206d696e74657200000000000000000000000000000000600082015250565b6000614063601083613267565b915061406e8261402d565b602082019050919050565b6000602082019050818103600083015261409281614056565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006140f5602f83613267565b915061410082614099565b604082019050919050565b60006020820190508181036000830152614124816140e8565b9050919050565b600081905092915050565b60006141418261325c565b61414b818561412b565b935061415b818560208601613278565b80840191505092915050565b6000815461417481613a7a565b61417e818661412b565b9450600182166000811461419957600181146141ae576141e1565b60ff19831686528115158202860193506141e1565b6141b785613ab6565b60005b838110156141d9578154818901526001820191506020810190506141ba565b838801955050505b50505092915050565b60006141f68286614136565b91506142028285614136565b915061420e8284614167565b9150819050949350505050565b6142248261325c565b67ffffffffffffffff81111561423d5761423c6136ef565b5b6142478254613a7a565b614252828285613bd5565b600060209050601f8311600181146142855760008415614273578287015190505b61427d8582613c46565b8655506142e5565b601f19841661429386613ab6565b60005b828110156142bb57848901518255600182019150602085019450602081019050614296565b868310156142d857848901516142d4601f891682613c28565b8355505b6001600288020188555050505b505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614349602683613267565b9150614354826142ed565b604082019050919050565b600060208201905081810360008301526143788161433c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006143b5602083613267565b91506143c08261437f565b602082019050919050565b600060208201905081810360008301526143e4816143a8565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000614447602a83613267565b9150614452826143eb565b604082019050919050565b600060208201905081810360008301526144768161443a565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006144b3601983613267565b91506144be8261447d565b602082019050919050565b600060208201905081810360008301526144e2816144a6565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614510826144e9565b61451a81856144f4565b935061452a818560208601613278565b614533816132a2565b840191505092915050565b600060808201905061455360008301876133a3565b61456060208301866133a3565b61456d60408301856134eb565b818103606083015261457f8184614505565b905095945050505050565b600081519050614599816131cd565b92915050565b6000602082840312156145b5576145b4613197565b5b60006145c38482850161458a565b9150509291505056fea26469706673582212203e44489ce4223dbff9fed5b5ddace865db230904d9b4c3af6fedf2afb5cbc6dd64736f6c63430008120033

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

0000000000000000000000008b09692beba5c2765e3430f3b85185a497b9d95500000000000000000000000000000000000000000000000000000000000003e8

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

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000008b09692beba5c2765e3430f3b85185a497b9d955
Arg [1] : 00000000000000000000000000000000000000000000000000000000000003e8


Deployed Bytecode Sourcemap

95559:8426:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97205:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56347:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62838:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102527:232;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;99903:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52098:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102919:231;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31178:438;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;98745:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;101790:183;;;;;;;;;;;;;:::i;:::-;;96093:38;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100578:457;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;103310:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;101153:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;99643:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95800:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57740:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95838:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;101548:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53282:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36406:103;;;;;;;;;;;;;:::i;:::-;;100448:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;101271:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35765:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56523:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;102133:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95757:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;101374:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;96050:36;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99033:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;103709:273;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95998:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95961:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99384:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95713:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;95883:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97838:446;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97702:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;98452:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100272:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63787:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36664:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;101043:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;95918:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97205:274;97336:4;97378:38;97404:11;97378:25;:38::i;:::-;:93;;;;97433:38;97459:11;97433:25;:38::i;:::-;97378:93;97358:113;;97205:274;;;:::o;56347:100::-;56401:13;56434:5;56427:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56347:100;:::o;62838:218::-;62914:7;62939:16;62947:7;62939;:16::i;:::-;62934:64;;62964:34;;;;;;;;;;;;;;62934:64;63018:15;:24;63034:7;63018:24;;;;;;;;;;;:30;;;;;;;;;;;;63011:37;;62838:218;;;:::o;102527:232::-;102667:8;102677:24;;;;;;;;;;;94144:7;94141:925;;;94273:22;94267:4;94260:36;94374:9;94368:4;94361:23;94526:8;94522:2;94518:17;94514:2;94510:26;94504:4;94497:40;94713:4;94707;94701;94695;94668:25;94661:5;94650:68;94640:290;;94842:16;94836:4;94830;94815:44;94894:16;94888:4;94881:30;94640:290;95049:1;95043:4;95036:15;94141:925;102719:32:::1;102733:8;102743:7;102719:13;:32::i;:::-;102527:232:::0;;;;:::o;99903:224::-;96964:14;:23;96979:7;;;;96964:23;;;;;;;;;;;;;;;;;;;;;;;;;;;96960:52;;;96996:16;;;;;;;;;;;;;;96960:52;35651:13:::1;:11;:13::i;:::-;100038:1:::2;100012:14;100006:28;;;;;:::i;:::-;;;:33;100002:72;;100048:26;;;;;;;;;;;;;;100002:72;100104:15;;100087:14;:32;;;;;;;:::i;:::-;;99903:224:::0;;:::o;52098:323::-;52159:7;52387:15;:13;:15::i;:::-;52372:12;;52356:13;;:28;:46;52349:53;;52098:323;:::o;102919:231::-;103062:4;103068:24;;;;;;;;;;;91917:7;91914:1643;;;92130:8;92122:4;92118:2;92114:13;92110:2;92106:22;92103:36;92093:1449;;92445:22;92439:4;92432:36;92554:9;92548:4;92541:23;92647:8;92641:4;92634:22;92840:4;92834;92828;92822;92795:25;92788:5;92777:68;92767:306;;92977:16;92971:4;92965;92950:44;93033:16;93027:4;93020:30;92767:306;93521:1;93515:4;93508:15;92093:1449;91914:1643;103105:37:::1;103124:4;103130:2;103134:7;103105:18;:37::i;:::-;102919:231:::0;;;;;:::o;31178:438::-;31273:7;31282;31302:26;31331:17;:26;31349:7;31331:26;;;;;;;;;;;31302:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31402:1;31374:30;;:7;:16;;;:30;;;31370:92;;31431:19;31421:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31370:92;31474:21;31538:17;:15;:17::i;:::-;31498:57;;31511:7;:23;;;31499:35;;:9;:35;;;;:::i;:::-;31498:57;;;;:::i;:::-;31474:81;;31576:7;:16;;;31594:13;31568:40;;;;;;31178:438;;;;;:::o;98745:96::-;35651:13;:11;:13::i;:::-;98829:4:::1;98808:14;:18;98823:2;98808:18;;;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;98745:96:::0;:::o;101790:183::-;35651:13;:11;:13::i;:::-;101841:12:::1;101867:10;101859:24;;101891:21;101859:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;101840:77;;;101933:7;101928:37;;101949:16;;;;;;;;;;;;;;101928:37;101829:144;101790:183::o:0;96093:38::-;;;;;;;;;;;;;;;;;;;;;;:::o;100578:457::-;97103:4;97081:26;;:6;:18;97088:10;97081:18;;;;;;;;;;;;;;;;;;;;;;;;;:26;;;97073:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;100700:4:::1;100686:18;;:10;;;;;;;;;;;:18;;;100678:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;100744:14;100772:9;;100761:8;:20;;;;:::i;:::-;100744:37;;100814:9;100801;:22;;100792:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;100866:19;100872:2;100876:8;100866:5;:19::i;:::-;100907:5;100896:4;:8;100901:2;100896:8;;;;;;;;;;;;;;;;:16;;;;;;;;;;;;;;;;;;100939:9;100927;:21;100923:105;;;100973:10;100965:28;;:51;101006:9;100994;:21;;;;:::i;:::-;100965:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;100923:105;100667:368;100578:457:::0;;;:::o;103310:239::-;103457:4;103463:24;;;;;;;;;;;91917:7;91914:1643;;;92130:8;92122:4;92118:2;92114:13;92110:2;92106:22;92103:36;92093:1449;;92445:22;92439:4;92432:36;92554:9;92548:4;92541:23;92647:8;92641:4;92634:22;92840:4;92834;92828;92822;92795:25;92788:5;92777:68;92767:306;;92977:16;92971:4;92965;92950:44;93033:16;93027:4;93020:30;92767:306;93521:1;93515:4;93508:15;92093:1449;91914:1643;103500:41:::1;103523:4;103529:2;103533:7;103500:22;:41::i;:::-;103310:239:::0;;;;;:::o;101153:106::-;35651:13;:11;:13::i;:::-;101245:6:::1;101230:12;:21;;;;101153:106:::0;:::o;99643:123::-;96964:14;:23;96979:7;;;;96964:23;;;;;;;;;;;;;;;;;;;;;;;;;;;96960:52;;;96996:16;;;;;;;;;;;;;;96960:52;35651:13:::1;:11;:13::i;:::-;99747:11:::2;;99731:13;:27;;;;;;;:::i;:::-;;99643:123:::0;;:::o;95800:31::-;;;;:::o;57740:152::-;57812:7;57855:27;57874:7;57855:18;:27::i;:::-;57832:52;;57740:152;;;:::o;95838:38::-;;;;:::o;101548:162::-;35651:13;:11;:13::i;:::-;101647:4:::1;101628:23;;:6;:15;101635:7;101628:15;;;;;;;;;;;;;;;;;;;;;;;;;:23;;;101620:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;101697:5;101679:6;:15;101686:7;101679:15;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;101548:162:::0;:::o;53282:233::-;53354:7;53395:1;53378:19;;:5;:19;;;53374:60;;53406:28;;;;;;;;;;;;;;53374:60;47441:13;53452:18;:25;53471:5;53452:25;;;;;;;;;;;;;;;;:55;53445:62;;53282:233;;;:::o;36406:103::-;35651:13;:11;:13::i;:::-;36471:30:::1;36498:1;36471:18;:30::i;:::-;36406:103::o:0;100448:122::-;96964:14;:23;96979:7;;;;96964:23;;;;;;;;;;;;;;;;;;;;;;;;;;;96960:52;;;96996:16;;;;;;;;;;;;;;96960:52;35651:13:::1;:11;:13::i;:::-;100543:19:::2;100549:2;100553:8;100543:5;:19::i;:::-;100448:122:::0;;:::o;101271:94::-;35651:13;:11;:13::i;:::-;101350:7:::1;101337:10;;:20;;;;;;;;;;;;;;;;;;101271:94:::0;:::o;35765:87::-;35811:7;35838:6;;;;;;;;;;;35831:13;;35765:87;:::o;56523:104::-;56579:13;56612:7;56605:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56523:104;:::o;102133:234::-;102264:8;102274:24;;;;;;;;;;;94144:7;94141:925;;;94273:22;94267:4;94260:36;94374:9;94368:4;94361:23;94526:8;94522:2;94518:17;94514:2;94510:26;94504:4;94497:40;94713:4;94707;94701;94695;94668:25;94661:5;94650:68;94640:290;;94842:16;94836:4;94830;94815:44;94894:16;94888:4;94881:30;94640:290;95049:1;95043:4;95036:15;94141:925;102316:43:::1;102340:8;102350;102316:23;:43::i;:::-;102133:234:::0;;;;:::o;95757:36::-;95792:1;95757:36;:::o;101374:166::-;35651:13;:11;:13::i;:::-;101473:5:::1;101454:24;;:6;:15;101461:7;101454:15;;;;;;;;;;;;;;;;;;;;;;;;;:24;;;101446:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;101528:4;101510:6;:15;101517:7;101510:15;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;101374:166:::0;:::o;96050:36::-;;;;;;;;;;;;;;;;;;;;;;:::o;99033:128::-;96964:14;:23;96979:7;;;;96964:23;;;;;;;;;;;;;;;;;;;;;;;;;;;96960:52;;;96996:16;;;;;;;;;;;;;;96960:52;35651:13:::1;:11;:13::i;:::-;99148:5:::2;99121:24;;:32;;;;;;;;;;;;;;;;;;99033:128:::0;:::o;103709:273::-;103884:4;103890:24;;;;;;;;;;;91917:7;91914:1643;;;92130:8;92122:4;92118:2;92114:13;92110:2;92106:22;92103:36;92093:1449;;92445:22;92439:4;92432:36;92554:9;92548:4;92541:23;92647:8;92641:4;92634:22;92840:4;92834;92828;92822;92795:25;92788:5;92777:68;92767:306;;92977:16;92971:4;92965;92950:44;93033:16;93027:4;93020:30;92767:306;93521:1;93515:4;93508:15;92093:1449;91914:1643;103927:47:::1;103950:4;103956:2;103960:7;103969:4;103927:22;:47::i;:::-;103709:273:::0;;;;;;:::o;95998:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;95961:30::-;;;;;;;;;;;;;:::o;99384:147::-;35651:13;:11;:13::i;:::-;99478:45:::1;99497:8;99507:15;99478:18;:45::i;:::-;99384:147:::0;;:::o;95713:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;95883:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;97838:446::-;97936:13;97979:16;97987:7;97979;:16::i;:::-;97963:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;98081:28;98112:10;:8;:10::i;:::-;98081:41;;98167:1;98142:14;98136:28;:32;:140;;;;;;;;;;;;;;;;;98204:14;98220:25;98237:7;98220:16;:25::i;:::-;98247:13;98187:74;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;98136:140;98129:147;;;97838:446;;;:::o;97702:128::-;35651:13;:11;:13::i;:::-;97805:17:::1;97789:13;:33;;;;;;:::i;:::-;;97702:128:::0;:::o;98452:119::-;98514:7;98541:22;98555:7;98541:13;:22::i;:::-;98534:29;;98452:119;;;:::o;100272:168::-;96964:14;:23;96979:7;;;;96964:23;;;;;;;;;;;;;;;;;;;;;;;;;;;96960:52;;;96996:16;;;;;;;;;;;;;;96960:52;35651:13:::1;:11;:13::i;:::-;95792:1:::2;100344:14;:12;:14::i;:::-;:26;100340:62;;100379:23;;;;;;;;;;;;;;100340:62;100413:19;100419:2;95792:1;100413:5;:19::i;:::-;100272:168:::0;:::o;63787:164::-;63884:4;63908:18;:25;63927:5;63908:25;;;;;;;;;;;;;;;:35;63934:8;63908:35;;;;;;;;;;;;;;;;;;;;;;;;;63901:42;;63787:164;;;;:::o;36664:201::-;35651:13;:11;:13::i;:::-;36773:1:::1;36753:22;;:8;:22;;::::0;36745:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;36829:28;36848:8;36829:18;:28::i;:::-;36664:201:::0;:::o;101043:102::-;35651:13;:11;:13::i;:::-;101128:9:::1;101116;:21;;;;101043:102:::0;:::o;95918:36::-;;;;;;;;;;;;;:::o;55445:639::-;55530:4;55869:10;55854:25;;:11;:25;;;;:102;;;;55946:10;55931:25;;:11;:25;;;;55854:102;:179;;;;56023:10;56008:25;;:11;:25;;;;55854:179;55834:199;;55445:639;;;:::o;30908:215::-;31010:4;31049:26;31034:41;;;:11;:41;;;;:81;;;;31079:36;31103:11;31079:23;:36::i;:::-;31034:81;31027:88;;30908:215;;;:::o;64209:282::-;64274:4;64330:7;64311:15;:13;:15::i;:::-;:26;;:66;;;;;64364:13;;64354:7;:23;64311:66;:153;;;;;64463:1;48217:8;64415:17;:26;64433:7;64415:26;;;;;;;;;;;;:44;:49;64311:153;64291:173;;64209:282;;;:::o;62271:408::-;62360:13;62376:16;62384:7;62376;:16::i;:::-;62360:32;;62432:5;62409:28;;:19;:17;:19::i;:::-;:28;;;62405:175;;62457:44;62474:5;62481:19;:17;:19::i;:::-;62457:16;:44::i;:::-;62452:128;;62529:35;;;;;;;;;;;;;;62452:128;62405:175;62625:2;62592:15;:24;62608:7;62592:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;62663:7;62659:2;62643:28;;62652:5;62643:28;;;;;;;;;;;;62349:330;62271:408;;:::o;35930:132::-;36005:12;:10;:12::i;:::-;35994:23;;:7;:5;:7::i;:::-;:23;;;35986:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35930:132::o;51614:92::-;51670:7;51697:1;51690:8;;51614:92;:::o;66477:2825::-;66619:27;66649;66668:7;66649:18;:27::i;:::-;66619:57;;66734:4;66693:45;;66709:19;66693:45;;;66689:86;;66747:28;;;;;;;;;;;;;;66689:86;66789:27;66818:23;66845:35;66872:7;66845:26;:35::i;:::-;66788:92;;;;66980:68;67005:15;67022:4;67028:19;:17;:19::i;:::-;66980:24;:68::i;:::-;66975:180;;67068:43;67085:4;67091:19;:17;:19::i;:::-;67068:16;:43::i;:::-;67063:92;;67120:35;;;;;;;;;;;;;;67063:92;66975:180;67186:1;67172:16;;:2;:16;;;67168:52;;67197:23;;;;;;;;;;;;;;67168:52;67233:43;67255:4;67261:2;67265:7;67274:1;67233:21;:43::i;:::-;67369:15;67366:160;;;67509:1;67488:19;67481:30;67366:160;67906:18;:24;67925:4;67906:24;;;;;;;;;;;;;;;;67904:26;;;;;;;;;;;;67975:18;:22;67994:2;67975:22;;;;;;;;;;;;;;;;67973:24;;;;;;;;;;;68297:146;68334:2;68383:45;68398:4;68404:2;68408:19;68383:14;:45::i;:::-;48497:8;68355:73;68297:18;:146::i;:::-;68268:17;:26;68286:7;68268:26;;;;;;;;;;;:175;;;;68614:1;48497:8;68563:19;:47;:52;68559:627;;68636:19;68668:1;68658:7;:11;68636:33;;68825:1;68791:17;:30;68809:11;68791:30;;;;;;;;;;;;:35;68787:384;;68929:13;;68914:11;:28;68910:242;;69109:19;69076:17;:30;69094:11;69076:30;;;;;;;;;;;:52;;;;68910:242;68787:384;68617:569;68559:627;69233:7;69229:2;69214:27;;69223:4;69214:27;;;;;;;;;;;;69252:42;69273:4;69279:2;69283:7;69292:1;69252:20;:42::i;:::-;66608:2694;;;66477:2825;;;:::o;31898:97::-;31956:6;31982:5;31975:12;;31898:97;:::o;73858:2966::-;73931:20;73954:13;;73931:36;;73994:1;73982:8;:13;73978:44;;74004:18;;;;;;;;;;;;;;73978:44;74035:61;74065:1;74069:2;74073:12;74087:8;74035:21;:61::i;:::-;74579:1;47579:2;74549:1;:26;;74548:32;74536:8;:45;74510:18;:22;74529:2;74510:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;74858:139;74895:2;74949:33;74972:1;74976:2;74980:1;74949:14;:33::i;:::-;74916:30;74937:8;74916:20;:30::i;:::-;:66;74858:18;:139::i;:::-;74824:17;:31;74842:12;74824:31;;;;;;;;;;;:173;;;;75014:16;75045:11;75074:8;75059:12;:23;75045:37;;75595:16;75591:2;75587:25;75575:37;;75967:12;75927:8;75886:1;75824:25;75765:1;75704;75677:335;76338:1;76324:12;76320:20;76278:346;76379:3;76370:7;76367:16;76278:346;;76597:7;76587:8;76584:1;76557:25;76554:1;76551;76546:59;76432:1;76423:7;76419:15;76408:26;;76278:346;;;76282:77;76669:1;76657:8;:13;76653:45;;76679:19;;;;;;;;;;;;;;76653:45;76731:3;76715:13;:19;;;;74284:2462;;76756:60;76785:1;76789:2;76793:12;76807:8;76756:20;:60::i;:::-;73920:2904;73858:2966;;:::o;69398:193::-;69544:39;69561:4;69567:2;69571:7;69544:39;;;;;;;;;;;;:16;:39::i;:::-;69398:193;;;:::o;58895:1275::-;58962:7;58982:12;58997:7;58982:22;;59065:4;59046:15;:13;:15::i;:::-;:23;59042:1061;;59099:13;;59092:4;:20;59088:1015;;;59137:14;59154:17;:23;59172:4;59154:23;;;;;;;;;;;;59137:40;;59271:1;48217:8;59243:6;:24;:29;59239:845;;59908:113;59925:1;59915:6;:11;59908:113;;59968:17;:25;59986:6;;;;;;;59968:25;;;;;;;;;;;;59959:34;;59908:113;;;60054:6;60047:13;;;;;;59239:845;59114:989;59088:1015;59042:1061;60131:31;;;;;;;;;;;;;;58895:1275;;;;:::o;37025:191::-;37099:16;37118:6;;;;;;;;;;;37099:25;;37144:8;37135:6;;:17;;;;;;;;;;;;;;;;;;37199:8;37168:40;;37189:8;37168:40;;;;;;;;;;;;37088:128;37025:191;:::o;63396:234::-;63543:8;63491:18;:39;63510:19;:17;:19::i;:::-;63491:39;;;;;;;;;;;;;;;:49;63531:8;63491:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;63603:8;63567:55;;63582:19;:17;:19::i;:::-;63567:55;;;63613:8;63567:55;;;;;;:::i;:::-;;;;;;;;63396:234;;:::o;70189:407::-;70364:31;70377:4;70383:2;70387:7;70364:12;:31::i;:::-;70428:1;70410:2;:14;;;:19;70406:183;;70449:56;70480:4;70486:2;70490:7;70499:5;70449:30;:56::i;:::-;70444:145;;70533:40;;;;;;;;;;;;;;70444:145;70406:183;70189:407;;;;:::o;32266:332::-;32385:17;:15;:17::i;:::-;32369:33;;:12;:33;;;;32361:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;32488:1;32468:22;;:8;:22;;;32460:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;32555:35;;;;;;;;32567:8;32555:35;;;;;;32577:12;32555:35;;;;;32533:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32266:332;;:::o;97580:114::-;97640:13;97673;97666:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;97580:114;:::o;14920:716::-;14976:13;15027:14;15064:1;15044:17;15055:5;15044:10;:17::i;:::-;:21;15027:38;;15080:20;15114:6;15103:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15080:41;;15136:11;15265:6;15261:2;15257:15;15249:6;15245:28;15238:35;;15302:288;15309:4;15302:288;;;15334:5;;;;;;;;15476:8;15471:2;15464:5;15460:14;15455:30;15450:3;15442:44;15532:2;15523:11;;;;;;:::i;:::-;;;;;15566:1;15557:5;:10;15302:288;15553:21;15302:288;15611:6;15604:13;;;;;14920:716;;;:::o;53597:178::-;53658:7;47441:13;47579:2;53686:18;:25;53705:5;53686:25;;;;;;;;;;;;;;;;:50;;53685:82;53678:89;;53597:178;;;:::o;52519:296::-;52574:7;52781:15;:13;:15::i;:::-;52765:13;;:31;52758:38;;52519:296;:::o;28462:157::-;28547:4;28586:25;28571:40;;;:11;:40;;;;28564:47;;28462:157;;;:::o;86517:105::-;86577:7;86604:10;86597:17;;86517:105;:::o;34316:98::-;34369:7;34396:10;34389:17;;34316:98;:::o;65372:485::-;65474:27;65503:23;65544:38;65585:15;:24;65601:7;65585:24;;;;;;;;;;;65544:65;;65762:18;65739:41;;65819:19;65813:26;65794:45;;65724:126;65372:485;;;:::o;64600:659::-;64749:11;64914:16;64907:5;64903:28;64894:37;;65074:16;65063:9;65059:32;65046:45;;65224:15;65213:9;65210:30;65202:5;65191:9;65188:20;65185:56;65175:66;;64600:659;;;;;:::o;71258:159::-;;;;;:::o;85826:311::-;85961:7;85981:16;48621:3;86007:19;:41;;85981:68;;48621:3;86075:31;86086:4;86092:2;86096:9;86075:10;:31::i;:::-;86067:40;;:62;;86060:69;;;85826:311;;;;;:::o;60718:450::-;60798:14;60966:16;60959:5;60955:28;60946:37;;61143:5;61129:11;61104:23;61100:41;61097:52;61090:5;61087:63;61077:73;;60718:450;;;;:::o;72082:158::-;;;;;:::o;61270:324::-;61340:14;61573:1;61563:8;61560:15;61534:24;61530:46;61520:56;;61270:324;;;:::o;72680:716::-;72843:4;72889:2;72864:45;;;72910:19;:17;:19::i;:::-;72931:4;72937:7;72946:5;72864:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;72860:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73164:1;73147:6;:13;:18;73143:235;;73193:40;;;;;;;;;;;;;;73143:235;73336:6;73330:13;73321:6;73317:2;73313:15;73306:38;72860:529;73033:54;;;73023:64;;;:6;:64;;;;73016:71;;;72680:716;;;;;;:::o;11754:948::-;11807:7;11827:14;11844:1;11827:18;;11894:8;11885:5;:17;11881:106;;11932:8;11923:17;;;;;;:::i;:::-;;;;;11969:2;11959:12;;;;11881:106;12014:8;12005:5;:17;12001:106;;12052:8;12043:17;;;;;;:::i;:::-;;;;;12089:2;12079:12;;;;12001:106;12134:8;12125:5;:17;12121:106;;12172:8;12163:17;;;;;;:::i;:::-;;;;;12209:2;12199:12;;;;12121:106;12254:7;12245:5;:16;12241:103;;12291:7;12282:16;;;;;;:::i;:::-;;;;;12327:1;12317:11;;;;12241:103;12371:7;12362:5;:16;12358:103;;12408:7;12399:16;;;;;;:::i;:::-;;;;;12444:1;12434:11;;;;12358:103;12488:7;12479:5;:16;12475:103;;12525:7;12516:16;;;;;;:::i;:::-;;;;;12561:1;12551:11;;;;12475:103;12605:7;12596:5;:16;12592:68;;12643:1;12633:11;;;;12592:68;12688:6;12681:13;;;11754:948;;;:::o;85527:147::-;85664:6;85527:147;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:117::-;4999:1;4996;4989:12;5013:117;5122:1;5119;5112:12;5136:117;5245:1;5242;5235:12;5273:553;5331:8;5341:6;5391:3;5384:4;5376:6;5372:17;5368:27;5358:122;;5399:79;;:::i;:::-;5358:122;5512:6;5499:20;5489:30;;5542:18;5534:6;5531:30;5528:117;;;5564:79;;:::i;:::-;5528:117;5678:4;5670:6;5666:17;5654:29;;5732:3;5724:4;5716:6;5712:17;5702:8;5698:32;5695:41;5692:128;;;5739:79;;:::i;:::-;5692:128;5273:553;;;;;:::o;5832:529::-;5903:6;5911;5960:2;5948:9;5939:7;5935:23;5931:32;5928:119;;;5966:79;;:::i;:::-;5928:119;6114:1;6103:9;6099:17;6086:31;6144:18;6136:6;6133:30;6130:117;;;6166:79;;:::i;:::-;6130:117;6279:65;6336:7;6327:6;6316:9;6312:22;6279:65;:::i;:::-;6261:83;;;;6057:297;5832:529;;;;;:::o;6367:118::-;6454:24;6472:5;6454:24;:::i;:::-;6449:3;6442:37;6367:118;;:::o;6491:222::-;6584:4;6622:2;6611:9;6607:18;6599:26;;6635:71;6703:1;6692:9;6688:17;6679:6;6635:71;:::i;:::-;6491:222;;;;:::o;6719:619::-;6796:6;6804;6812;6861:2;6849:9;6840:7;6836:23;6832:32;6829:119;;;6867:79;;:::i;:::-;6829:119;6987:1;7012:53;7057:7;7048:6;7037:9;7033:22;7012:53;:::i;:::-;7002:63;;6958:117;7114:2;7140:53;7185:7;7176:6;7165:9;7161:22;7140:53;:::i;:::-;7130:63;;7085:118;7242:2;7268:53;7313:7;7304:6;7293:9;7289:22;7268:53;:::i;:::-;7258:63;;7213:118;6719:619;;;;;:::o;7344:474::-;7412:6;7420;7469:2;7457:9;7448:7;7444:23;7440:32;7437:119;;;7475:79;;:::i;:::-;7437:119;7595:1;7620:53;7665:7;7656:6;7645:9;7641:22;7620:53;:::i;:::-;7610:63;;7566:117;7722:2;7748:53;7793:7;7784:6;7773:9;7769:22;7748:53;:::i;:::-;7738:63;;7693:118;7344:474;;;;;:::o;7824:332::-;7945:4;7983:2;7972:9;7968:18;7960:26;;7996:71;8064:1;8053:9;8049:17;8040:6;7996:71;:::i;:::-;8077:72;8145:2;8134:9;8130:18;8121:6;8077:72;:::i;:::-;7824:332;;;;;:::o;8162:329::-;8221:6;8270:2;8258:9;8249:7;8245:23;8241:32;8238:119;;;8276:79;;:::i;:::-;8238:119;8396:1;8421:53;8466:7;8457:6;8446:9;8442:22;8421:53;:::i;:::-;8411:63;;8367:117;8162:329;;;;:::o;8497:116::-;8567:21;8582:5;8567:21;:::i;:::-;8560:5;8557:32;8547:60;;8603:1;8600;8593:12;8547:60;8497:116;:::o;8619:133::-;8662:5;8700:6;8687:20;8678:29;;8716:30;8740:5;8716:30;:::i;:::-;8619:133;;;;:::o;8758:613::-;8832:6;8840;8848;8897:2;8885:9;8876:7;8872:23;8868:32;8865:119;;;8903:79;;:::i;:::-;8865:119;9023:1;9048:53;9093:7;9084:6;9073:9;9069:22;9048:53;:::i;:::-;9038:63;;8994:117;9150:2;9176:53;9221:7;9212:6;9201:9;9197:22;9176:53;:::i;:::-;9166:63;;9121:118;9278:2;9304:50;9346:7;9337:6;9326:9;9322:22;9304:50;:::i;:::-;9294:60;;9249:115;8758:613;;;;;:::o;9377:323::-;9433:6;9482:2;9470:9;9461:7;9457:23;9453:32;9450:119;;;9488:79;;:::i;:::-;9450:119;9608:1;9633:50;9675:7;9666:6;9655:9;9651:22;9633:50;:::i;:::-;9623:60;;9579:114;9377:323;;;;:::o;9706:468::-;9771:6;9779;9828:2;9816:9;9807:7;9803:23;9799:32;9796:119;;;9834:79;;:::i;:::-;9796:119;9954:1;9979:53;10024:7;10015:6;10004:9;10000:22;9979:53;:::i;:::-;9969:63;;9925:117;10081:2;10107:50;10149:7;10140:6;10129:9;10125:22;10107:50;:::i;:::-;10097:60;;10052:115;9706:468;;;;;:::o;10180:117::-;10289:1;10286;10279:12;10303:180;10351:77;10348:1;10341:88;10448:4;10445:1;10438:15;10472:4;10469:1;10462:15;10489:281;10572:27;10594:4;10572:27;:::i;:::-;10564:6;10560:40;10702:6;10690:10;10687:22;10666:18;10654:10;10651:34;10648:62;10645:88;;;10713:18;;:::i;:::-;10645:88;10753:10;10749:2;10742:22;10532:238;10489:281;;:::o;10776:129::-;10810:6;10837:20;;:::i;:::-;10827:30;;10866:33;10894:4;10886:6;10866:33;:::i;:::-;10776:129;;;:::o;10911:307::-;10972:4;11062:18;11054:6;11051:30;11048:56;;;11084:18;;:::i;:::-;11048:56;11122:29;11144:6;11122:29;:::i;:::-;11114:37;;11206:4;11200;11196:15;11188:23;;10911:307;;;:::o;11224:146::-;11321:6;11316:3;11311;11298:30;11362:1;11353:6;11348:3;11344:16;11337:27;11224:146;;;:::o;11376:423::-;11453:5;11478:65;11494:48;11535:6;11494:48;:::i;:::-;11478:65;:::i;:::-;11469:74;;11566:6;11559:5;11552:21;11604:4;11597:5;11593:16;11642:3;11633:6;11628:3;11624:16;11621:25;11618:112;;;11649:79;;:::i;:::-;11618:112;11739:54;11786:6;11781:3;11776;11739:54;:::i;:::-;11459:340;11376:423;;;;;:::o;11818:338::-;11873:5;11922:3;11915:4;11907:6;11903:17;11899:27;11889:122;;11930:79;;:::i;:::-;11889:122;12047:6;12034:20;12072:78;12146:3;12138:6;12131:4;12123:6;12119:17;12072:78;:::i;:::-;12063:87;;11879:277;11818:338;;;;:::o;12162:943::-;12257:6;12265;12273;12281;12330:3;12318:9;12309:7;12305:23;12301:33;12298:120;;;12337:79;;:::i;:::-;12298:120;12457:1;12482:53;12527:7;12518:6;12507:9;12503:22;12482:53;:::i;:::-;12472:63;;12428:117;12584:2;12610:53;12655:7;12646:6;12635:9;12631:22;12610:53;:::i;:::-;12600:63;;12555:118;12712:2;12738:53;12783:7;12774:6;12763:9;12759:22;12738:53;:::i;:::-;12728:63;;12683:118;12868:2;12857:9;12853:18;12840:32;12899:18;12891:6;12888:30;12885:117;;;12921:79;;:::i;:::-;12885:117;13026:62;13080:7;13071:6;13060:9;13056:22;13026:62;:::i;:::-;13016:72;;12811:287;12162:943;;;;;;;:::o;13111:109::-;13147:7;13187:26;13180:5;13176:38;13165:49;;13111:109;;;:::o;13226:120::-;13298:23;13315:5;13298:23;:::i;:::-;13291:5;13288:34;13278:62;;13336:1;13333;13326:12;13278:62;13226:120;:::o;13352:137::-;13397:5;13435:6;13422:20;13413:29;;13451:32;13477:5;13451:32;:::i;:::-;13352:137;;;;:::o;13495:472::-;13562:6;13570;13619:2;13607:9;13598:7;13594:23;13590:32;13587:119;;;13625:79;;:::i;:::-;13587:119;13745:1;13770:53;13815:7;13806:6;13795:9;13791:22;13770:53;:::i;:::-;13760:63;;13716:117;13872:2;13898:52;13942:7;13933:6;13922:9;13918:22;13898:52;:::i;:::-;13888:62;;13843:117;13495:472;;;;;:::o;13973:308::-;14035:4;14125:18;14117:6;14114:30;14111:56;;;14147:18;;:::i;:::-;14111:56;14185:29;14207:6;14185:29;:::i;:::-;14177:37;;14269:4;14263;14259:15;14251:23;;13973:308;;;:::o;14287:425::-;14365:5;14390:66;14406:49;14448:6;14406:49;:::i;:::-;14390:66;:::i;:::-;14381:75;;14479:6;14472:5;14465:21;14517:4;14510:5;14506:16;14555:3;14546:6;14541:3;14537:16;14534:25;14531:112;;;14562:79;;:::i;:::-;14531:112;14652:54;14699:6;14694:3;14689;14652:54;:::i;:::-;14371:341;14287:425;;;;;:::o;14732:340::-;14788:5;14837:3;14830:4;14822:6;14818:17;14814:27;14804:122;;14845:79;;:::i;:::-;14804:122;14962:6;14949:20;14987:79;15062:3;15054:6;15047:4;15039:6;15035:17;14987:79;:::i;:::-;14978:88;;14794:278;14732:340;;;;:::o;15078:509::-;15147:6;15196:2;15184:9;15175:7;15171:23;15167:32;15164:119;;;15202:79;;:::i;:::-;15164:119;15350:1;15339:9;15335:17;15322:31;15380:18;15372:6;15369:30;15366:117;;;15402:79;;:::i;:::-;15366:117;15507:63;15562:7;15553:6;15542:9;15538:22;15507:63;:::i;:::-;15497:73;;15293:287;15078:509;;;;:::o;15593:474::-;15661:6;15669;15718:2;15706:9;15697:7;15693:23;15689:32;15686:119;;;15724:79;;:::i;:::-;15686:119;15844:1;15869:53;15914:7;15905:6;15894:9;15890:22;15869:53;:::i;:::-;15859:63;;15815:117;15971:2;15997:53;16042:7;16033:6;16022:9;16018:22;15997:53;:::i;:::-;15987:63;;15942:118;15593:474;;;;;:::o;16073:180::-;16121:77;16118:1;16111:88;16218:4;16215:1;16208:15;16242:4;16239:1;16232:15;16259:320;16303:6;16340:1;16334:4;16330:12;16320:22;;16387:1;16381:4;16377:12;16408:18;16398:81;;16464:4;16456:6;16452:17;16442:27;;16398:81;16526:2;16518:6;16515:14;16495:18;16492:38;16489:84;;16545:18;;:::i;:::-;16489:84;16310:269;16259:320;;;:::o;16585:97::-;16644:6;16672:3;16662:13;;16585:97;;;;:::o;16688:141::-;16737:4;16760:3;16752:11;;16783:3;16780:1;16773:14;16817:4;16814:1;16804:18;16796:26;;16688:141;;;:::o;16835:93::-;16872:6;16919:2;16914;16907:5;16903:14;16899:23;16889:33;;16835:93;;;:::o;16934:107::-;16978:8;17028:5;17022:4;17018:16;16997:37;;16934:107;;;;:::o;17047:393::-;17116:6;17166:1;17154:10;17150:18;17189:97;17219:66;17208:9;17189:97;:::i;:::-;17307:39;17337:8;17326:9;17307:39;:::i;:::-;17295:51;;17379:4;17375:9;17368:5;17364:21;17355:30;;17428:4;17418:8;17414:19;17407:5;17404:30;17394:40;;17123:317;;17047:393;;;;;:::o;17446:60::-;17474:3;17495:5;17488:12;;17446:60;;;:::o;17512:142::-;17562:9;17595:53;17613:34;17622:24;17640:5;17622:24;:::i;:::-;17613:34;:::i;:::-;17595:53;:::i;:::-;17582:66;;17512:142;;;:::o;17660:75::-;17703:3;17724:5;17717:12;;17660:75;;;:::o;17741:269::-;17851:39;17882:7;17851:39;:::i;:::-;17912:91;17961:41;17985:16;17961:41;:::i;:::-;17953:6;17946:4;17940:11;17912:91;:::i;:::-;17906:4;17899:105;17817:193;17741:269;;;:::o;18016:73::-;18061:3;18016:73;:::o;18095:189::-;18172:32;;:::i;:::-;18213:65;18271:6;18263;18257:4;18213:65;:::i;:::-;18148:136;18095:189;;:::o;18290:186::-;18350:120;18367:3;18360:5;18357:14;18350:120;;;18421:39;18458:1;18451:5;18421:39;:::i;:::-;18394:1;18387:5;18383:13;18374:22;;18350:120;;;18290:186;;:::o;18482:543::-;18583:2;18578:3;18575:11;18572:446;;;18617:38;18649:5;18617:38;:::i;:::-;18701:29;18719:10;18701:29;:::i;:::-;18691:8;18687:44;18884:2;18872:10;18869:18;18866:49;;;18905:8;18890:23;;18866:49;18928:80;18984:22;19002:3;18984:22;:::i;:::-;18974:8;18970:37;18957:11;18928:80;:::i;:::-;18587:431;;18572:446;18482:543;;;:::o;19031:117::-;19085:8;19135:5;19129:4;19125:16;19104:37;;19031:117;;;;:::o;19154:169::-;19198:6;19231:51;19279:1;19275:6;19267:5;19264:1;19260:13;19231:51;:::i;:::-;19227:56;19312:4;19306;19302:15;19292:25;;19205:118;19154:169;;;;:::o;19328:295::-;19404:4;19550:29;19575:3;19569:4;19550:29;:::i;:::-;19542:37;;19612:3;19609:1;19605:11;19599:4;19596:21;19588:29;;19328:295;;;;:::o;19628:1403::-;19752:44;19792:3;19787;19752:44;:::i;:::-;19861:18;19853:6;19850:30;19847:56;;;19883:18;;:::i;:::-;19847:56;19927:38;19959:4;19953:11;19927:38;:::i;:::-;20012:67;20072:6;20064;20058:4;20012:67;:::i;:::-;20106:1;20135:2;20127:6;20124:14;20152:1;20147:632;;;;20823:1;20840:6;20837:84;;;20896:9;20891:3;20887:19;20874:33;20865:42;;20837:84;20947:67;21007:6;21000:5;20947:67;:::i;:::-;20941:4;20934:81;20796:229;20117:908;;20147:632;20199:4;20195:9;20187:6;20183:22;20233:37;20265:4;20233:37;:::i;:::-;20292:1;20306:215;20320:7;20317:1;20314:14;20306:215;;;20406:9;20401:3;20397:19;20384:33;20376:6;20369:49;20457:1;20449:6;20445:14;20435:24;;20504:2;20493:9;20489:18;20476:31;;20343:4;20340:1;20336:12;20331:17;;20306:215;;;20549:6;20540:7;20537:19;20534:186;;;20614:9;20609:3;20605:19;20592:33;20657:48;20699:4;20691:6;20687:17;20676:9;20657:48;:::i;:::-;20649:6;20642:64;20557:163;20534:186;20766:1;20762;20754:6;20750:14;20746:22;20740:4;20733:36;20154:625;;;20117:908;;19727:1304;;;19628:1403;;;:::o;21037:180::-;21085:77;21082:1;21075:88;21182:4;21179:1;21172:15;21206:4;21203:1;21196:15;21223:410;21263:7;21286:20;21304:1;21286:20;:::i;:::-;21281:25;;21320:20;21338:1;21320:20;:::i;:::-;21315:25;;21375:1;21372;21368:9;21397:30;21415:11;21397:30;:::i;:::-;21386:41;;21576:1;21567:7;21563:15;21560:1;21557:22;21537:1;21530:9;21510:83;21487:139;;21606:18;;:::i;:::-;21487:139;21271:362;21223:410;;;;:::o;21639:180::-;21687:77;21684:1;21677:88;21784:4;21781:1;21774:15;21808:4;21805:1;21798:15;21825:185;21865:1;21882:20;21900:1;21882:20;:::i;:::-;21877:25;;21916:20;21934:1;21916:20;:::i;:::-;21911:25;;21955:1;21945:35;;21960:18;;:::i;:::-;21945:35;22002:1;21999;21995:9;21990:14;;21825:185;;;;:::o;22016:147::-;22117:11;22154:3;22139:18;;22016:147;;;;:::o;22169:114::-;;:::o;22289:398::-;22448:3;22469:83;22550:1;22545:3;22469:83;:::i;:::-;22462:90;;22561:93;22650:3;22561:93;:::i;:::-;22679:1;22674:3;22670:11;22663:18;;22289:398;;;:::o;22693:379::-;22877:3;22899:147;23042:3;22899:147;:::i;:::-;22892:154;;23063:3;23056:10;;22693:379;;;:::o;23078:169::-;23218:21;23214:1;23206:6;23202:14;23195:45;23078:169;:::o;23253:366::-;23395:3;23416:67;23480:2;23475:3;23416:67;:::i;:::-;23409:74;;23492:93;23581:3;23492:93;:::i;:::-;23610:2;23605:3;23601:12;23594:19;;23253:366;;;:::o;23625:419::-;23791:4;23829:2;23818:9;23814:18;23806:26;;23878:9;23872:4;23868:20;23864:1;23853:9;23849:17;23842:47;23906:131;24032:4;23906:131;:::i;:::-;23898:139;;23625:419;;;:::o;24050:174::-;24190:26;24186:1;24178:6;24174:14;24167:50;24050:174;:::o;24230:366::-;24372:3;24393:67;24457:2;24452:3;24393:67;:::i;:::-;24386:74;;24469:93;24558:3;24469:93;:::i;:::-;24587:2;24582:3;24578:12;24571:19;;24230:366;;;:::o;24602:419::-;24768:4;24806:2;24795:9;24791:18;24783:26;;24855:9;24849:4;24845:20;24841:1;24830:9;24826:17;24819:47;24883:131;25009:4;24883:131;:::i;:::-;24875:139;;24602:419;;;:::o;25027:176::-;25167:28;25163:1;25155:6;25151:14;25144:52;25027:176;:::o;25209:366::-;25351:3;25372:67;25436:2;25431:3;25372:67;:::i;:::-;25365:74;;25448:93;25537:3;25448:93;:::i;:::-;25566:2;25561:3;25557:12;25550:19;;25209:366;;;:::o;25581:419::-;25747:4;25785:2;25774:9;25770:18;25762:26;;25834:9;25828:4;25824:20;25820:1;25809:9;25805:17;25798:47;25862:131;25988:4;25862:131;:::i;:::-;25854:139;;25581:419;;;:::o;26006:194::-;26046:4;26066:20;26084:1;26066:20;:::i;:::-;26061:25;;26100:20;26118:1;26100:20;:::i;:::-;26095:25;;26144:1;26141;26137:9;26129:17;;26168:1;26162:4;26159:11;26156:37;;;26173:18;;:::i;:::-;26156:37;26006:194;;;;:::o;26206:162::-;26346:14;26342:1;26334:6;26330:14;26323:38;26206:162;:::o;26374:366::-;26516:3;26537:67;26601:2;26596:3;26537:67;:::i;:::-;26530:74;;26613:93;26702:3;26613:93;:::i;:::-;26731:2;26726:3;26722:12;26715:19;;26374:366;;;:::o;26746:419::-;26912:4;26950:2;26939:9;26935:18;26927:26;;26999:9;26993:4;26989:20;26985:1;26974:9;26970:17;26963:47;27027:131;27153:4;27027:131;:::i;:::-;27019:139;;26746:419;;;:::o;27171:166::-;27311:18;27307:1;27299:6;27295:14;27288:42;27171:166;:::o;27343:366::-;27485:3;27506:67;27570:2;27565:3;27506:67;:::i;:::-;27499:74;;27582:93;27671:3;27582:93;:::i;:::-;27700:2;27695:3;27691:12;27684:19;;27343:366;;;:::o;27715:419::-;27881:4;27919:2;27908:9;27904:18;27896:26;;27968:9;27962:4;27958:20;27954:1;27943:9;27939:17;27932:47;27996:131;28122:4;27996:131;:::i;:::-;27988:139;;27715:419;;;:::o;28140:234::-;28280:34;28276:1;28268:6;28264:14;28257:58;28349:17;28344:2;28336:6;28332:15;28325:42;28140:234;:::o;28380:366::-;28522:3;28543:67;28607:2;28602:3;28543:67;:::i;:::-;28536:74;;28619:93;28708:3;28619:93;:::i;:::-;28737:2;28732:3;28728:12;28721:19;;28380:366;;;:::o;28752:419::-;28918:4;28956:2;28945:9;28941:18;28933:26;;29005:9;28999:4;28995:20;28991:1;28980:9;28976:17;28969:47;29033:131;29159:4;29033:131;:::i;:::-;29025:139;;28752:419;;;:::o;29177:148::-;29279:11;29316:3;29301:18;;29177:148;;;;:::o;29331:390::-;29437:3;29465:39;29498:5;29465:39;:::i;:::-;29520:89;29602:6;29597:3;29520:89;:::i;:::-;29513:96;;29618:65;29676:6;29671:3;29664:4;29657:5;29653:16;29618:65;:::i;:::-;29708:6;29703:3;29699:16;29692:23;;29441:280;29331:390;;;;:::o;29751:874::-;29854:3;29891:5;29885:12;29920:36;29946:9;29920:36;:::i;:::-;29972:89;30054:6;30049:3;29972:89;:::i;:::-;29965:96;;30092:1;30081:9;30077:17;30108:1;30103:166;;;;30283:1;30278:341;;;;30070:549;;30103:166;30187:4;30183:9;30172;30168:25;30163:3;30156:38;30249:6;30242:14;30235:22;30227:6;30223:35;30218:3;30214:45;30207:52;;30103:166;;30278:341;30345:38;30377:5;30345:38;:::i;:::-;30405:1;30419:154;30433:6;30430:1;30427:13;30419:154;;;30507:7;30501:14;30497:1;30492:3;30488:11;30481:35;30557:1;30548:7;30544:15;30533:26;;30455:4;30452:1;30448:12;30443:17;;30419:154;;;30602:6;30597:3;30593:16;30586:23;;30285:334;;30070:549;;29858:767;;29751:874;;;;:::o;30631:589::-;30856:3;30878:95;30969:3;30960:6;30878:95;:::i;:::-;30871:102;;30990:95;31081:3;31072:6;30990:95;:::i;:::-;30983:102;;31102:92;31190:3;31181:6;31102:92;:::i;:::-;31095:99;;31211:3;31204:10;;30631:589;;;;;;:::o;31226:1395::-;31343:37;31376:3;31343:37;:::i;:::-;31445:18;31437:6;31434:30;31431:56;;;31467:18;;:::i;:::-;31431:56;31511:38;31543:4;31537:11;31511:38;:::i;:::-;31596:67;31656:6;31648;31642:4;31596:67;:::i;:::-;31690:1;31714:4;31701:17;;31746:2;31738:6;31735:14;31763:1;31758:618;;;;32420:1;32437:6;32434:77;;;32486:9;32481:3;32477:19;32471:26;32462:35;;32434:77;32537:67;32597:6;32590:5;32537:67;:::i;:::-;32531:4;32524:81;32393:222;31728:887;;31758:618;31810:4;31806:9;31798:6;31794:22;31844:37;31876:4;31844:37;:::i;:::-;31903:1;31917:208;31931:7;31928:1;31925:14;31917:208;;;32010:9;32005:3;32001:19;31995:26;31987:6;31980:42;32061:1;32053:6;32049:14;32039:24;;32108:2;32097:9;32093:18;32080:31;;31954:4;31951:1;31947:12;31942:17;;31917:208;;;32153:6;32144:7;32141:19;32138:179;;;32211:9;32206:3;32202:19;32196:26;32254:48;32296:4;32288:6;32284:17;32273:9;32254:48;:::i;:::-;32246:6;32239:64;32161:156;32138:179;32363:1;32359;32351:6;32347:14;32343:22;32337:4;32330:36;31765:611;;;31728:887;;31318:1303;;;31226:1395;;:::o;32627:225::-;32767:34;32763:1;32755:6;32751:14;32744:58;32836:8;32831:2;32823:6;32819:15;32812:33;32627:225;:::o;32858:366::-;33000:3;33021:67;33085:2;33080:3;33021:67;:::i;:::-;33014:74;;33097:93;33186:3;33097:93;:::i;:::-;33215:2;33210:3;33206:12;33199:19;;32858:366;;;:::o;33230:419::-;33396:4;33434:2;33423:9;33419:18;33411:26;;33483:9;33477:4;33473:20;33469:1;33458:9;33454:17;33447:47;33511:131;33637:4;33511:131;:::i;:::-;33503:139;;33230:419;;;:::o;33655:182::-;33795:34;33791:1;33783:6;33779:14;33772:58;33655:182;:::o;33843:366::-;33985:3;34006:67;34070:2;34065:3;34006:67;:::i;:::-;33999:74;;34082:93;34171:3;34082:93;:::i;:::-;34200:2;34195:3;34191:12;34184:19;;33843:366;;;:::o;34215:419::-;34381:4;34419:2;34408:9;34404:18;34396:26;;34468:9;34462:4;34458:20;34454:1;34443:9;34439:17;34432:47;34496:131;34622:4;34496:131;:::i;:::-;34488:139;;34215:419;;;:::o;34640:229::-;34780:34;34776:1;34768:6;34764:14;34757:58;34849:12;34844:2;34836:6;34832:15;34825:37;34640:229;:::o;34875:366::-;35017:3;35038:67;35102:2;35097:3;35038:67;:::i;:::-;35031:74;;35114:93;35203:3;35114:93;:::i;:::-;35232:2;35227:3;35223:12;35216:19;;34875:366;;;:::o;35247:419::-;35413:4;35451:2;35440:9;35436:18;35428:26;;35500:9;35494:4;35490:20;35486:1;35475:9;35471:17;35464:47;35528:131;35654:4;35528:131;:::i;:::-;35520:139;;35247:419;;;:::o;35672:175::-;35812:27;35808:1;35800:6;35796:14;35789:51;35672:175;:::o;35853:366::-;35995:3;36016:67;36080:2;36075:3;36016:67;:::i;:::-;36009:74;;36092:93;36181:3;36092:93;:::i;:::-;36210:2;36205:3;36201:12;36194:19;;35853:366;;;:::o;36225:419::-;36391:4;36429:2;36418:9;36414:18;36406:26;;36478:9;36472:4;36468:20;36464:1;36453:9;36449:17;36442:47;36506:131;36632:4;36506:131;:::i;:::-;36498:139;;36225:419;;;:::o;36650:98::-;36701:6;36735:5;36729:12;36719:22;;36650:98;;;:::o;36754:168::-;36837:11;36871:6;36866:3;36859:19;36911:4;36906:3;36902:14;36887:29;;36754:168;;;;:::o;36928:373::-;37014:3;37042:38;37074:5;37042:38;:::i;:::-;37096:70;37159:6;37154:3;37096:70;:::i;:::-;37089:77;;37175:65;37233:6;37228:3;37221:4;37214:5;37210:16;37175:65;:::i;:::-;37265:29;37287:6;37265:29;:::i;:::-;37260:3;37256:39;37249:46;;37018:283;36928:373;;;;:::o;37307:640::-;37502:4;37540:3;37529:9;37525:19;37517:27;;37554:71;37622:1;37611:9;37607:17;37598:6;37554:71;:::i;:::-;37635:72;37703:2;37692:9;37688:18;37679:6;37635:72;:::i;:::-;37717;37785:2;37774:9;37770:18;37761:6;37717:72;:::i;:::-;37836:9;37830:4;37826:20;37821:2;37810:9;37806:18;37799:48;37864:76;37935:4;37926:6;37864:76;:::i;:::-;37856:84;;37307:640;;;;;;;:::o;37953:141::-;38009:5;38040:6;38034:13;38025:22;;38056:32;38082:5;38056:32;:::i;:::-;37953:141;;;;:::o;38100:349::-;38169:6;38218:2;38206:9;38197:7;38193:23;38189:32;38186:119;;;38224:79;;:::i;:::-;38186:119;38344:1;38369:63;38424:7;38415:6;38404:9;38400:22;38369:63;:::i;:::-;38359:73;;38315:127;38100:349;;;;:::o

Swarm Source

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