ETH Price: $3,395.79 (+1.12%)
Gas: 5 Gwei

Antz Kaspa Turbo (AKT)
 

Overview

TokenID

296

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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:
AntzKaspaPro

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-13
*/

// SPDX-License-Identifier: GPL-3.0
// File: AntminerZ Turbo/MerkleProof.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}
// File: @openzeppelin/contracts/utils/math/SignedMath.sol


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

pragma solidity ^0.8.20;

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

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

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

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

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


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

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

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

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

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

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

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

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

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

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.20;



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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.20;

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

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

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


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

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {FailedInnerCall} error.
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
     */
    function _revert(bytes memory returndata) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert FailedInnerCall();
        }
    }
}

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


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

pragma solidity ^0.8.20;

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

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


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

pragma solidity ^0.8.20;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.20;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon
     *   a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.20;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be
     * reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: AntminerZ Turbo/IERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) _revert(BalanceQueryForZeroAddress.selector);
        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.selector);

        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 Returns whether the ownership slot at `index` is initialized.
     * An uninitialized slot does not necessarily mean that the slot has no owner.
     */
    function _ownershipIsInitialized(uint256 index) internal view virtual returns (bool) {
        return _packedOwnerships[index] != 0;
    }

    /**
     * @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 packed) {
        if (_startTokenId() <= tokenId) {
            packed = _packedOwnerships[tokenId];
            // If the data at the starting slot does not exist, start the scan.
            if (packed == 0) {
                if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector);
                // 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, `tokenId` will not underflow.
                //
                // We can directly compare the packed value.
                // If the address is zero, packed will be zero.
                for (;;) {
                    unchecked {
                        packed = _packedOwnerships[--tokenId];
                    }
                    if (packed == 0) continue;
                    if (packed & _BITMASK_BURNED == 0) return packed;
                    // Otherwise, the token is burned, and we must revert.
                    // This handles the case of batch burned tokens, where only the burned bit
                    // of the starting slot is set, and remaining slots are left uninitialized.
                    _revert(OwnerQueryForNonexistentToken.selector);
                }
            }
            // Otherwise, the data exists and we can skip the scan.
            // This is possible because we have already achieved the target condition.
            // This saves 2143 gas on transfers of initialized tokens.
            // If the token is not burned, return `packed`. Otherwise, revert.
            if (packed & _BITMASK_BURNED == 0) return packed;
        }
        _revert(OwnerQueryForNonexistentToken.selector);
    }

    /**
     * @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. See {ERC721A-_approve}.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        _approve(to, tokenId, true);
    }

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

        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 result) {
        if (_startTokenId() <= tokenId) {
            if (tokenId < _currentIndex) {
                uint256 packed;
                while ((packed = _packedOwnerships[tokenId]) == 0) --tokenId;
                result = packed & _BITMASK_BURNED == 0;
            }
        }
    }

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

        // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
        from = address(uint160(uint256(uint160(from)) & _BITMASK_ADDRESS));

        if (address(uint160(prevOwnershipPacked)) != from) _revert(TransferFromIncorrectOwner.selector);

        (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.selector);

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

        // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
        uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;
        assembly {
            // 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.
                from, // `from`.
                toMasked, // `to`.
                tokenId // `tokenId`.
            )
        }
        if (toMasked == 0) _revert(TransferToZeroAddress.selector);

        _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.selector);
            }
    }

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

        _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:
            // - `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)
            );

            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
            uint256 toMasked = uint256(uint160(to)) & _BITMASK_ADDRESS;

            if (toMasked == 0) _revert(MintToZeroAddress.selector);

            uint256 end = startTokenId + quantity;
            uint256 tokenId = startTokenId;

            do {
                assembly {
                    // 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`.
                        tokenId // `tokenId`.
                    )
                }
                // The `!=` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
            } while (++tokenId != end);

            _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.selector);
        if (quantity == 0) _revert(MintZeroQuantity.selector);
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) _revert(MintERC2309QuantityExceedsLimit.selector);

        _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.selector);
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) _revert(bytes4(0));
            }
        }
    }

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

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

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

    /**
     * @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:
     *
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        bool approvalCheck
    ) internal virtual {
        address owner = ownerOf(tokenId);

        if (approvalCheck && _msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                _revert(ApprovalCallerNotOwnerNorApproved.selector);
            }

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

    // =============================================================
    //                        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.selector);
        }

        _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.selector);
        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)
        }
    }

    /**
     * @dev For more efficient reverts.
     */
    function _revert(bytes4 errorSelector) internal pure {
        assembly {
            mstore(0x00, errorSelector)
            revert(0x00, 0x04)
        }
    }
}
// File: AntminerZ Turbo/AntminerZ.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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

contract AntzKaspaPro is ERC721A, Ownable {
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri;
    uint256 public costWL = 0.26 ether;
    uint256 public cost = 0.05 ether;
    uint256 public maxSupply = 500;
    uint256 public maxMintAmountWL = 2;
    uint256 public maxMintAmountPublic = 5;
    uint256 public nftPerAddressLimitWL = 7;

    bool public revealed = false;
    mapping(address => uint256) public addressMintedBalanceWL;
    mapping(address => uint256) public addressMintedBalance;

    uint256 public currentState = 0;

    mapping(address => bool) public whitelistedAddresses;

    bytes32 public merkleRootWhitelist =
        0xc117da44cd8e89da7f09c9c2110a9e74054f2a2de428605e8103ff2c1560c4df;

    constructor() ERC721A("Antz Kaspa Turbo", "AKT") {}

    // internal
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function mint(
        address _to,
        uint256 _mintAmount,
        bytes32[] calldata _merkleProof
    ) public payable {
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
        if (msg.sender != owner()) {
            require(currentState > 0, "the contract is paused");
            if (currentState == 1) {
                uint256 ownerMintedCount = addressMintedBalanceWL[msg.sender];
                require(
                    isWhitelisted(msg.sender, _merkleProof),
                    "user is not whitelisted"
                );
                require(
                    _mintAmount <= maxMintAmountWL,
                    "max mint amount per session exceeded"
                );
                require(
                    ownerMintedCount + _mintAmount <= maxMintAmountWL,
                    "max NFT per address exceeded"
                );
                require(
                    msg.value >= costWL * _mintAmount,
                    "insufficient funds"
                );
            } else if (currentState == 2) {
                uint256 ownerMintedCount = addressMintedBalance[msg.sender];
                require(
                    _mintAmount <= maxMintAmountPublic,
                    "max mint amount per session exceeded"
                );
                require(
                    ownerMintedCount + _mintAmount <= maxMintAmountPublic,
                    "max NFT per address exceeded"
                );
                require(msg.value >= cost * _mintAmount, "insufficient funds");
            }
        }

        _safeMint(_to, _mintAmount);
        if (currentState == 1) {
            addressMintedBalanceWL[_to] += _mintAmount;
        } else if (currentState == 2) {
            addressMintedBalance[_to] += _mintAmount;
        }
    }

    function mintMethod(address _to, uint256 _mintAmount, bytes32[] calldata _merkleProof) external payable {
        mint(_to, _mintAmount, _merkleProof);
    }

    function isWhitelisted(
        address _user,
        bytes32[] calldata _merkleProof
    ) public view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(_user));
        return MerkleProof.verify(_merkleProof, merkleRootWhitelist, leaf);
    }

    function mintableAmountForUser(
        address _user
    ) public view returns (uint256) {
        if (currentState == 1) {
            return maxMintAmountWL - addressMintedBalanceWL[_user];
        } else if (currentState == 2) {
            return maxMintAmountPublic - addressMintedBalance[_user];
        }
        return 0;
    }

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

        if (revealed == false) {
            return notRevealedUri;
        }

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

    //only owner
    function reveal() public onlyOwner {
        revealed = true;
    }


    function setNftPerAddressLimitWL(uint256 _limit) public onlyOwner {
        nftPerAddressLimitWL = _limit;
    }

    function setmaxMintAmountPublic(
        uint256 _newmaxMintAmount
    ) public onlyOwner {
        maxMintAmountPublic = _newmaxMintAmount;
    }

    function setmaxMintAmountWL(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmountWL = _newmaxMintAmount;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

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

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function pause() public onlyOwner {
        currentState = 0;
    }

    function setOnlyWhitelisted() public onlyOwner {
        currentState = 1;
    }

    function setPublic() public onlyOwner {
        currentState = 2;
    }

    function setWhitelistMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRootWhitelist = _merkleRoot;
    }

    function setPublicCost(uint256 _price) public onlyOwner {
        cost = _price;
    }

    function setWLCost(uint256 _price) public onlyOwner {
        costWL = _price;
    }

    function withdraw() public payable onlyOwner {
        // This will payout the owner the contract balance.
        // Do not remove this otherwise you will not be able to withdraw the funds.
        // =============================================================================
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
        // =============================================================================
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalanceWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentState","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"_user","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootWhitelist","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintMethod","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"mintableAmountForUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimitWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"_limit","type":"uint256"}],"name":"setNftPerAddressLimitWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setWLCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmountPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmountWL","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":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608090815264173539b7b760d91b60a052600a90620000269082620001ff565b5067039bb49f599a0000600c5566b1a2bc2ec50000600d556101f4600e556002600f55600560105560076011556012805460ff191690555f6015557fc117da44cd8e89da7f09c9c2110a9e74054f2a2de428605e8103ff2c1560c4df60175534801562000091575f80fd5b506040518060400160405280601081526020016f416e747a204b6173706120547572626f60801b815250604051806040016040528060038152602001621052d560ea1b8152508160029081620000e89190620001ff565b506003620000f78282620001ff565b50505f80555062000108336200010e565b620002c7565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200018857607f821691505b602082108103620001a757634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620001fa575f81815260208120601f850160051c81016020861015620001d55750805b601f850160051c820191505b81811015620001f657828155600101620001e1565b5050505b505050565b81516001600160401b038111156200021b576200021b6200015f565b62000233816200022c845462000173565b84620001ad565b602080601f83116001811462000269575f8415620002515750858301515b5f19600386901b1c1916600185901b178555620001f6565b5f85815260208120601f198616915b82811015620002995788860151825594840194600190910190840162000278565b5085821015620002b757878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b61240080620002d55f395ff3fe6080604052600436106102bf575f3560e01c80636352211e1161016f57806395d89b41116100d8578063c87b56dd11610092578063da3ef23f1161006d578063da3ef23f14610799578063e985e9c5146107b8578063f2c4ce1e146107d7578063f2fde38b146107f6575f80fd5b8063c87b56dd14610746578063d1d1921314610765578063d5abeb0114610784575f80fd5b806395d89b41146106b9578063a22cb465146106cd578063a475b5dd146106ec578063b88d4fde14610700578063bd32fb6614610713578063c668286214610732575f80fd5b806377e563571161012957806377e563571461062b578063811d24371461063f5780638456cb591461065e578063872d10ea146106725780638da5cb5b146106875780638e1f9cfe146106a4575f80fd5b80636352211e14610593578063641ce140146105b25780636c0360eb146105c55780636eddb9e3146105d957806370a08231146105f8578063715018a614610617575f80fd5b806317f7bece1161022b57806337546c67116101e557806342842e0e116101c057806342842e0e14610529578063518302271461053c57806355f804b3146105555780635a23dd9914610574575f80fd5b806337546c67146104d75780633c59b86a146105025780633ccfd60b14610521575f80fd5b806317f7bece1461043a57806318160ddd1461044f57806318cae26914610466578063231878d11461049157806323b872dd146104b0578063295e4c33146104c3575f80fd5b8063081c8c441161027c578063081c8c44146103bf578063095ea7b3146103d35780630c3f6acf146103e85780630ee9e9bd146103fd57806313093b1d1461041057806313faede614610425575f80fd5b806301ffc9a7146102c357806306afd592146102f757806306c933d81461031a57806306fdde031461034857806307656e3314610369578063081812fc14610388575b5f80fd5b3480156102ce575f80fd5b506102e26102dd366004611cd1565b610815565b60405190151581526020015b60405180910390f35b348015610302575f80fd5b5061030c600c5481565b6040519081526020016102ee565b348015610325575f80fd5b506102e2610334366004611d02565b60166020525f908152604090205460ff1681565b348015610353575f80fd5b5061035c610866565b6040516102ee9190611d68565b348015610374575f80fd5b5061030c610383366004611d02565b6108f6565b348015610393575f80fd5b506103a76103a2366004611d7a565b61095c565b6040516001600160a01b0390911681526020016102ee565b3480156103ca575f80fd5b5061035c610995565b6103e66103e1366004611d91565b610a21565b005b3480156103f3575f80fd5b5061030c60155481565b6103e661040b366004611e01565b610a31565b34801561041b575f80fd5b5061030c600f5481565b348015610430575f80fd5b5061030c600d5481565b348015610445575f80fd5b5061030c60105481565b34801561045a575f80fd5b506001545f540361030c565b348015610471575f80fd5b5061030c610480366004611d02565b60146020525f908152604090205481565b34801561049c575f80fd5b506103e66104ab366004611d7a565b610a43565b6103e66104be366004611e57565b610a7b565b3480156104ce575f80fd5b506103e6610bd5565b3480156104e2575f80fd5b5061030c6104f1366004611d02565b60136020525f908152604090205481565b34801561050d575f80fd5b506103e661051c366004611d7a565b610c06565b6103e6610c35565b6103e6610537366004611e57565b610cce565b348015610547575f80fd5b506012546102e29060ff1681565b348015610560575f80fd5b506103e661056f366004611f17565b610ced565b34801561057f575f80fd5b506102e261058e366004611f5c565b610d23565b34801561059e575f80fd5b506103a76105ad366004611d7a565b610da7565b6103e66105c0366004611e01565b610db1565b3480156105d0575f80fd5b5061035c611173565b3480156105e4575f80fd5b506103e66105f3366004611d7a565b611180565b348015610603575f80fd5b5061030c610612366004611d02565b6111af565b348015610622575f80fd5b506103e66111f3565b348015610636575f80fd5b506103e6611228565b34801561064a575f80fd5b506103e6610659366004611d7a565b611259565b348015610669575f80fd5b506103e6611288565b34801561067d575f80fd5b5061030c60115481565b348015610692575f80fd5b506008546001600160a01b03166103a7565b3480156106af575f80fd5b5061030c60175481565b3480156106c4575f80fd5b5061035c6112b8565b3480156106d8575f80fd5b506103e66106e7366004611fab565b6112c7565b3480156106f7575f80fd5b506103e6611332565b6103e661070e366004611fe4565b61136b565b34801561071e575f80fd5b506103e661072d366004611d7a565b6113a6565b34801561073d575f80fd5b5061035c6113d5565b348015610751575f80fd5b5061035c610760366004611d7a565b6113e2565b348015610770575f80fd5b506103e661077f366004611d7a565b61154b565b34801561078f575f80fd5b5061030c600e5481565b3480156107a4575f80fd5b506103e66107b3366004611f17565b61157a565b3480156107c3575f80fd5b506102e26107d236600461205b565b6115b0565b3480156107e2575f80fd5b506103e66107f1366004611f17565b6115dd565b348015610801575f80fd5b506103e6610810366004611d02565b611613565b5f6301ffc9a760e01b6001600160e01b03198316148061084557506380ac58cd60e01b6001600160e01b03198316145b806108605750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546108759061208c565b80601f01602080910402602001604051908101604052809291908181526020018280546108a19061208c565b80156108ec5780601f106108c3576101008083540402835291602001916108ec565b820191905f5260205f20905b8154815290600101906020018083116108cf57829003601f168201915b5050505050905090565b5f601554600103610926576001600160a01b0382165f90815260136020526040902054600f5461086091906120d8565b601554600203610955576001600160a01b0382165f9081526014602052604090205460105461086091906120d8565b505f919050565b5f610966826116ab565b61097a5761097a6333d1c03960e21b6116ed565b505f908152600660205260409020546001600160a01b031690565b600b80546109a29061208c565b80601f01602080910402602001604051908101604052809291908181526020018280546109ce9061208c565b8015610a195780601f106109f057610100808354040283529160200191610a19565b820191905f5260205f20905b8154815290600101906020018083116109fc57829003601f168201915b505050505081565b610a2d828260016116f5565b5050565b610a3d84848484610db1565b50505050565b6008546001600160a01b03163314610a765760405162461bcd60e51b8152600401610a6d906120eb565b60405180910390fd5b601055565b5f610a8582611796565b6001600160a01b039485169490915081168414610aab57610aab62a1148160e81b6116ed565b5f8281526006602052604090208054338082146001600160a01b03881690911417610aee57610ada86336115b0565b610aee57610aee632ce44b5f60e11b6116ed565b8015610af8575f82555b6001600160a01b038681165f9081526005602052604080822080545f19019055918716808252919020805460010190554260a01b17600160e11b175f85815260046020526040812091909155600160e11b84169003610b8457600184015f818152600460205260408120549003610b82575f548114610b82575f8181526004602052604090208490555b505b6001600160a01b0385168481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4805f03610bcc57610bcc633a954ecd60e21b6116ed565b50505050505050565b6008546001600160a01b03163314610bff5760405162461bcd60e51b8152600401610a6d906120eb565b6001601555565b6008546001600160a01b03163314610c305760405162461bcd60e51b8152600401610a6d906120eb565b601155565b6008546001600160a01b03163314610c5f5760405162461bcd60e51b8152600401610a6d906120eb565b5f610c726008546001600160a01b031690565b6001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610cb9576040519150601f19603f3d011682016040523d82523d5f602084013e610cbe565b606091505b5050905080610ccb575f80fd5b50565b610ce883838360405180602001604052805f81525061136b565b505050565b6008546001600160a01b03163314610d175760405162461bcd60e51b8152600401610a6d906120eb565b6009610a2d828261216d565b6040516bffffffffffffffffffffffff19606085901b1660208201525f908190603401604051602081830303815290604052805190602001209050610d9e8484808060200260200160405190810160405280939291908181526020018383602002808284375f92019190915250506017549150849050611826565b95945050505050565b5f61086082611796565b5f610dbe6001545f540390565b90505f8411610e0f5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610a6d565b600e54610e1c8583612229565b1115610e635760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610a6d565b6008546001600160a01b031633146110ef575f60155411610ebf5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610a6d565b60155460010361100557335f8181526013602052604090205490610ee4908585610d23565b610f305760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610a6d565b600f54851115610f525760405162461bcd60e51b8152600401610a6d9061223c565b600f54610f5f8683612229565b1115610fad5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610a6d565b84600c54610fbb9190612280565b341015610fff5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610a6d565b506110ef565b6015546002036110ef57335f908152601460205260409020546010548511156110405760405162461bcd60e51b8152600401610a6d9061223c565b60105461104d8683612229565b111561109b5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610a6d565b84600d546110a99190612280565b3410156110ed5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610a6d565b505b6110f9858561183b565b601554600103611135576001600160a01b0385165f908152601360205260408120805486929061112a908490612229565b9091555061116c9050565b60155460020361116c576001600160a01b0385165f9081526014602052604081208054869290611166908490612229565b90915550505b5050505050565b600980546109a29061208c565b6008546001600160a01b031633146111aa5760405162461bcd60e51b8152600401610a6d906120eb565b600f55565b5f6001600160a01b0382166111ce576111ce6323d3ad8160e21b6116ed565b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461121d5760405162461bcd60e51b8152600401610a6d906120eb565b6112265f611854565b565b6008546001600160a01b031633146112525760405162461bcd60e51b8152600401610a6d906120eb565b6002601555565b6008546001600160a01b031633146112835760405162461bcd60e51b8152600401610a6d906120eb565b600d55565b6008546001600160a01b031633146112b25760405162461bcd60e51b8152600401610a6d906120eb565b5f601555565b6060600380546108759061208c565b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461135c5760405162461bcd60e51b8152600401610a6d906120eb565b6012805460ff19166001179055565b611376848484610a7b565b6001600160a01b0383163b15610a3d57611392848484846118a5565b610a3d57610a3d6368d2bf6b60e11b6116ed565b6008546001600160a01b031633146113d05760405162461bcd60e51b8152600401610a6d906120eb565b601755565b600a80546109a29061208c565b60606113ed826116ab565b6114515760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a6d565b60125460ff1615155f036114ef57600b805461146c9061208c565b80601f01602080910402602001604051908101604052809291908181526020018280546114989061208c565b80156114e35780601f106114ba576101008083540402835291602001916114e3565b820191905f5260205f20905b8154815290600101906020018083116114c657829003601f168201915b50505050509050919050565b5f6114f8611984565b90505f8151116115165760405180602001604052805f815250611544565b8061152084611993565b600a60405160200161153493929190612297565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146115755760405162461bcd60e51b8152600401610a6d906120eb565b600c55565b6008546001600160a01b031633146115a45760405162461bcd60e51b8152600401610a6d906120eb565b600a610a2d828261216d565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146116075760405162461bcd60e51b8152600401610a6d906120eb565b600b610a2d828261216d565b6008546001600160a01b0316331461163d5760405162461bcd60e51b8152600401610a6d906120eb565b6001600160a01b0381166116a25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a6d565b610ccb81611854565b5f80548210156116e8575f5b505f82815260046020526040812054908190036116de576116d783612332565b92506116b7565b600160e01b161590505b919050565b805f5260045ffd5b5f6116ff83610da7565b90508180156117175750336001600160a01b03821614155b1561173a5761172681336115b0565b61173a5761173a6367d9dca160e11b6116ed565b5f8381526006602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b5f8181526004602052604081205490819003611804575f5482106117c4576117c4636f96cda160e11b6116ed565b5b505f19015f8181526004602052604090205480156117c557600160e01b81165f036117ef57919050565b6117ff636f96cda160e11b6116ed565b6117c5565b600160e01b81165f0361181657919050565b6116e8636f96cda160e11b6116ed565b5f826118328584611a23565b14949350505050565b610a2d828260405180602001604052805f815250611acd565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a02906118d9903390899088908890600401612347565b6020604051808303815f875af1925050508015611913575060408051601f3d908101601f1916820190925261191091810190612383565b60015b611966573d808015611940576040519150601f19603f3d011682016040523d82523d5f602084013e611945565b606091505b5080515f0361195e5761195e6368d2bf6b60e11b6116ed565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546108759061208c565b60605f61199f83611b2b565b60010190505f8167ffffffffffffffff8111156119be576119be611e90565b6040519080825280601f01601f1916602001820160405280156119e8576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846119f257509392505050565b5f81815b8451811015611ac5575f858281518110611a4357611a4361239e565b60200260200101519050808311611a85576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611ab2565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611abd816123b2565b915050611a27565b509392505050565b611ad78383611c02565b6001600160a01b0383163b15610ce8575f548281035b611aff5f8683806001019450866118a5565b611b1357611b136368d2bf6b60e11b6116ed565b818110611aed57815f541461116c5761116c5f6116ed565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611b695772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611b95576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611bb357662386f26fc10000830492506010015b6305f5e1008310611bcb576305f5e100830492506008015b6127108310611bdf57612710830492506004015b60648310611bf1576064830492506002015b600a83106108605760010192915050565b5f805490829003611c1d57611c1d63b562e8dd60e01b6116ed565b5f8181526004602090815260408083206001600160a01b0387164260a01b6001881460e11b17811790915580845260059092528220805468010000000000000001860201905590819003611c7a57611c7a622e076360e81b6116ed565b818301825b80835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4818160010191508103611c7f57505f5550505050565b6001600160e01b031981168114610ccb575f80fd5b5f60208284031215611ce1575f80fd5b813561154481611cbc565b80356001600160a01b03811681146116e8575f80fd5b5f60208284031215611d12575f80fd5b61154482611cec565b5f5b83811015611d35578181015183820152602001611d1d565b50505f910152565b5f8151808452611d54816020860160208601611d1b565b601f01601f19169290920160200192915050565b602081525f6115446020830184611d3d565b5f60208284031215611d8a575f80fd5b5035919050565b5f8060408385031215611da2575f80fd5b611dab83611cec565b946020939093013593505050565b5f8083601f840112611dc9575f80fd5b50813567ffffffffffffffff811115611de0575f80fd5b6020830191508360208260051b8501011115611dfa575f80fd5b9250929050565b5f805f8060608587031215611e14575f80fd5b611e1d85611cec565b935060208501359250604085013567ffffffffffffffff811115611e3f575f80fd5b611e4b87828801611db9565b95989497509550505050565b5f805f60608486031215611e69575f80fd5b611e7284611cec565b9250611e8060208501611cec565b9150604084013590509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff80841115611ebe57611ebe611e90565b604051601f8501601f19908116603f01168101908282118183101715611ee657611ee6611e90565b81604052809350858152868686011115611efe575f80fd5b858560208301375f602087830101525050509392505050565b5f60208284031215611f27575f80fd5b813567ffffffffffffffff811115611f3d575f80fd5b8201601f81018413611f4d575f80fd5b61197c84823560208401611ea4565b5f805f60408486031215611f6e575f80fd5b611f7784611cec565b9250602084013567ffffffffffffffff811115611f92575f80fd5b611f9e86828701611db9565b9497909650939450505050565b5f8060408385031215611fbc575f80fd5b611fc583611cec565b915060208301358015158114611fd9575f80fd5b809150509250929050565b5f805f8060808587031215611ff7575f80fd5b61200085611cec565b935061200e60208601611cec565b925060408501359150606085013567ffffffffffffffff811115612030575f80fd5b8501601f81018713612040575f80fd5b61204f87823560208401611ea4565b91505092959194509250565b5f806040838503121561206c575f80fd5b61207583611cec565b915061208360208401611cec565b90509250929050565b600181811c908216806120a057607f821691505b6020821081036120be57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b81810381811115610860576108606120c4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610ce8575f81815260208120601f850160051c810160208610156121465750805b601f850160051c820191505b8181101561216557828155600101612152565b505050505050565b815167ffffffffffffffff81111561218757612187611e90565b61219b81612195845461208c565b84612120565b602080601f8311600181146121ce575f84156121b75750858301515b5f19600386901b1c1916600185901b178555612165565b5f85815260208120601f198616915b828110156121fc578886015182559484019460019091019084016121dd565b508582101561221957878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115610860576108606120c4565b60208082526024908201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656040820152631959195960e21b606082015260800190565b8082028115828204841417610860576108606120c4565b5f845160206122a98285838a01611d1b565b8551918401916122bc8184848a01611d1b565b85549201915f906122cc8161208c565b600182811680156122e457600181146122f957612322565b60ff1984168752821515830287019450612322565b895f52855f205f5b8481101561231a57815489820152908301908701612301565b505082870194505b50929a9950505050505050505050565b5f81612340576123406120c4565b505f190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f9061237990830184611d3d565b9695505050505050565b5f60208284031215612393575f80fd5b815161154481611cbc565b634e487b7160e01b5f52603260045260245ffd5b5f600182016123c3576123c36120c4565b506001019056fea2646970667358221220c9aaf70f041ac0deb13c04e56ae27a823d6c746c719bfd65649deabe613b06cd64736f6c63430008140033

Deployed Bytecode

0x6080604052600436106102bf575f3560e01c80636352211e1161016f57806395d89b41116100d8578063c87b56dd11610092578063da3ef23f1161006d578063da3ef23f14610799578063e985e9c5146107b8578063f2c4ce1e146107d7578063f2fde38b146107f6575f80fd5b8063c87b56dd14610746578063d1d1921314610765578063d5abeb0114610784575f80fd5b806395d89b41146106b9578063a22cb465146106cd578063a475b5dd146106ec578063b88d4fde14610700578063bd32fb6614610713578063c668286214610732575f80fd5b806377e563571161012957806377e563571461062b578063811d24371461063f5780638456cb591461065e578063872d10ea146106725780638da5cb5b146106875780638e1f9cfe146106a4575f80fd5b80636352211e14610593578063641ce140146105b25780636c0360eb146105c55780636eddb9e3146105d957806370a08231146105f8578063715018a614610617575f80fd5b806317f7bece1161022b57806337546c67116101e557806342842e0e116101c057806342842e0e14610529578063518302271461053c57806355f804b3146105555780635a23dd9914610574575f80fd5b806337546c67146104d75780633c59b86a146105025780633ccfd60b14610521575f80fd5b806317f7bece1461043a57806318160ddd1461044f57806318cae26914610466578063231878d11461049157806323b872dd146104b0578063295e4c33146104c3575f80fd5b8063081c8c441161027c578063081c8c44146103bf578063095ea7b3146103d35780630c3f6acf146103e85780630ee9e9bd146103fd57806313093b1d1461041057806313faede614610425575f80fd5b806301ffc9a7146102c357806306afd592146102f757806306c933d81461031a57806306fdde031461034857806307656e3314610369578063081812fc14610388575b5f80fd5b3480156102ce575f80fd5b506102e26102dd366004611cd1565b610815565b60405190151581526020015b60405180910390f35b348015610302575f80fd5b5061030c600c5481565b6040519081526020016102ee565b348015610325575f80fd5b506102e2610334366004611d02565b60166020525f908152604090205460ff1681565b348015610353575f80fd5b5061035c610866565b6040516102ee9190611d68565b348015610374575f80fd5b5061030c610383366004611d02565b6108f6565b348015610393575f80fd5b506103a76103a2366004611d7a565b61095c565b6040516001600160a01b0390911681526020016102ee565b3480156103ca575f80fd5b5061035c610995565b6103e66103e1366004611d91565b610a21565b005b3480156103f3575f80fd5b5061030c60155481565b6103e661040b366004611e01565b610a31565b34801561041b575f80fd5b5061030c600f5481565b348015610430575f80fd5b5061030c600d5481565b348015610445575f80fd5b5061030c60105481565b34801561045a575f80fd5b506001545f540361030c565b348015610471575f80fd5b5061030c610480366004611d02565b60146020525f908152604090205481565b34801561049c575f80fd5b506103e66104ab366004611d7a565b610a43565b6103e66104be366004611e57565b610a7b565b3480156104ce575f80fd5b506103e6610bd5565b3480156104e2575f80fd5b5061030c6104f1366004611d02565b60136020525f908152604090205481565b34801561050d575f80fd5b506103e661051c366004611d7a565b610c06565b6103e6610c35565b6103e6610537366004611e57565b610cce565b348015610547575f80fd5b506012546102e29060ff1681565b348015610560575f80fd5b506103e661056f366004611f17565b610ced565b34801561057f575f80fd5b506102e261058e366004611f5c565b610d23565b34801561059e575f80fd5b506103a76105ad366004611d7a565b610da7565b6103e66105c0366004611e01565b610db1565b3480156105d0575f80fd5b5061035c611173565b3480156105e4575f80fd5b506103e66105f3366004611d7a565b611180565b348015610603575f80fd5b5061030c610612366004611d02565b6111af565b348015610622575f80fd5b506103e66111f3565b348015610636575f80fd5b506103e6611228565b34801561064a575f80fd5b506103e6610659366004611d7a565b611259565b348015610669575f80fd5b506103e6611288565b34801561067d575f80fd5b5061030c60115481565b348015610692575f80fd5b506008546001600160a01b03166103a7565b3480156106af575f80fd5b5061030c60175481565b3480156106c4575f80fd5b5061035c6112b8565b3480156106d8575f80fd5b506103e66106e7366004611fab565b6112c7565b3480156106f7575f80fd5b506103e6611332565b6103e661070e366004611fe4565b61136b565b34801561071e575f80fd5b506103e661072d366004611d7a565b6113a6565b34801561073d575f80fd5b5061035c6113d5565b348015610751575f80fd5b5061035c610760366004611d7a565b6113e2565b348015610770575f80fd5b506103e661077f366004611d7a565b61154b565b34801561078f575f80fd5b5061030c600e5481565b3480156107a4575f80fd5b506103e66107b3366004611f17565b61157a565b3480156107c3575f80fd5b506102e26107d236600461205b565b6115b0565b3480156107e2575f80fd5b506103e66107f1366004611f17565b6115dd565b348015610801575f80fd5b506103e6610810366004611d02565b611613565b5f6301ffc9a760e01b6001600160e01b03198316148061084557506380ac58cd60e01b6001600160e01b03198316145b806108605750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546108759061208c565b80601f01602080910402602001604051908101604052809291908181526020018280546108a19061208c565b80156108ec5780601f106108c3576101008083540402835291602001916108ec565b820191905f5260205f20905b8154815290600101906020018083116108cf57829003601f168201915b5050505050905090565b5f601554600103610926576001600160a01b0382165f90815260136020526040902054600f5461086091906120d8565b601554600203610955576001600160a01b0382165f9081526014602052604090205460105461086091906120d8565b505f919050565b5f610966826116ab565b61097a5761097a6333d1c03960e21b6116ed565b505f908152600660205260409020546001600160a01b031690565b600b80546109a29061208c565b80601f01602080910402602001604051908101604052809291908181526020018280546109ce9061208c565b8015610a195780601f106109f057610100808354040283529160200191610a19565b820191905f5260205f20905b8154815290600101906020018083116109fc57829003601f168201915b505050505081565b610a2d828260016116f5565b5050565b610a3d84848484610db1565b50505050565b6008546001600160a01b03163314610a765760405162461bcd60e51b8152600401610a6d906120eb565b60405180910390fd5b601055565b5f610a8582611796565b6001600160a01b039485169490915081168414610aab57610aab62a1148160e81b6116ed565b5f8281526006602052604090208054338082146001600160a01b03881690911417610aee57610ada86336115b0565b610aee57610aee632ce44b5f60e11b6116ed565b8015610af8575f82555b6001600160a01b038681165f9081526005602052604080822080545f19019055918716808252919020805460010190554260a01b17600160e11b175f85815260046020526040812091909155600160e11b84169003610b8457600184015f818152600460205260408120549003610b82575f548114610b82575f8181526004602052604090208490555b505b6001600160a01b0385168481887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4805f03610bcc57610bcc633a954ecd60e21b6116ed565b50505050505050565b6008546001600160a01b03163314610bff5760405162461bcd60e51b8152600401610a6d906120eb565b6001601555565b6008546001600160a01b03163314610c305760405162461bcd60e51b8152600401610a6d906120eb565b601155565b6008546001600160a01b03163314610c5f5760405162461bcd60e51b8152600401610a6d906120eb565b5f610c726008546001600160a01b031690565b6001600160a01b0316476040515f6040518083038185875af1925050503d805f8114610cb9576040519150601f19603f3d011682016040523d82523d5f602084013e610cbe565b606091505b5050905080610ccb575f80fd5b50565b610ce883838360405180602001604052805f81525061136b565b505050565b6008546001600160a01b03163314610d175760405162461bcd60e51b8152600401610a6d906120eb565b6009610a2d828261216d565b6040516bffffffffffffffffffffffff19606085901b1660208201525f908190603401604051602081830303815290604052805190602001209050610d9e8484808060200260200160405190810160405280939291908181526020018383602002808284375f92019190915250506017549150849050611826565b95945050505050565b5f61086082611796565b5f610dbe6001545f540390565b90505f8411610e0f5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610a6d565b600e54610e1c8583612229565b1115610e635760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610a6d565b6008546001600160a01b031633146110ef575f60155411610ebf5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610a6d565b60155460010361100557335f8181526013602052604090205490610ee4908585610d23565b610f305760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610a6d565b600f54851115610f525760405162461bcd60e51b8152600401610a6d9061223c565b600f54610f5f8683612229565b1115610fad5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610a6d565b84600c54610fbb9190612280565b341015610fff5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610a6d565b506110ef565b6015546002036110ef57335f908152601460205260409020546010548511156110405760405162461bcd60e51b8152600401610a6d9061223c565b60105461104d8683612229565b111561109b5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610a6d565b84600d546110a99190612280565b3410156110ed5760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b6044820152606401610a6d565b505b6110f9858561183b565b601554600103611135576001600160a01b0385165f908152601360205260408120805486929061112a908490612229565b9091555061116c9050565b60155460020361116c576001600160a01b0385165f9081526014602052604081208054869290611166908490612229565b90915550505b5050505050565b600980546109a29061208c565b6008546001600160a01b031633146111aa5760405162461bcd60e51b8152600401610a6d906120eb565b600f55565b5f6001600160a01b0382166111ce576111ce6323d3ad8160e21b6116ed565b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461121d5760405162461bcd60e51b8152600401610a6d906120eb565b6112265f611854565b565b6008546001600160a01b031633146112525760405162461bcd60e51b8152600401610a6d906120eb565b6002601555565b6008546001600160a01b031633146112835760405162461bcd60e51b8152600401610a6d906120eb565b600d55565b6008546001600160a01b031633146112b25760405162461bcd60e51b8152600401610a6d906120eb565b5f601555565b6060600380546108759061208c565b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b0316331461135c5760405162461bcd60e51b8152600401610a6d906120eb565b6012805460ff19166001179055565b611376848484610a7b565b6001600160a01b0383163b15610a3d57611392848484846118a5565b610a3d57610a3d6368d2bf6b60e11b6116ed565b6008546001600160a01b031633146113d05760405162461bcd60e51b8152600401610a6d906120eb565b601755565b600a80546109a29061208c565b60606113ed826116ab565b6114515760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610a6d565b60125460ff1615155f036114ef57600b805461146c9061208c565b80601f01602080910402602001604051908101604052809291908181526020018280546114989061208c565b80156114e35780601f106114ba576101008083540402835291602001916114e3565b820191905f5260205f20905b8154815290600101906020018083116114c657829003601f168201915b50505050509050919050565b5f6114f8611984565b90505f8151116115165760405180602001604052805f815250611544565b8061152084611993565b600a60405160200161153493929190612297565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146115755760405162461bcd60e51b8152600401610a6d906120eb565b600c55565b6008546001600160a01b031633146115a45760405162461bcd60e51b8152600401610a6d906120eb565b600a610a2d828261216d565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146116075760405162461bcd60e51b8152600401610a6d906120eb565b600b610a2d828261216d565b6008546001600160a01b0316331461163d5760405162461bcd60e51b8152600401610a6d906120eb565b6001600160a01b0381166116a25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a6d565b610ccb81611854565b5f80548210156116e8575f5b505f82815260046020526040812054908190036116de576116d783612332565b92506116b7565b600160e01b161590505b919050565b805f5260045ffd5b5f6116ff83610da7565b90508180156117175750336001600160a01b03821614155b1561173a5761172681336115b0565b61173a5761173a6367d9dca160e11b6116ed565b5f8381526006602052604080822080546001600160a01b0319166001600160a01b0388811691821790925591518693918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a450505050565b5f8181526004602052604081205490819003611804575f5482106117c4576117c4636f96cda160e11b6116ed565b5b505f19015f8181526004602052604090205480156117c557600160e01b81165f036117ef57919050565b6117ff636f96cda160e11b6116ed565b6117c5565b600160e01b81165f0361181657919050565b6116e8636f96cda160e11b6116ed565b5f826118328584611a23565b14949350505050565b610a2d828260405180602001604052805f815250611acd565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a02906118d9903390899088908890600401612347565b6020604051808303815f875af1925050508015611913575060408051601f3d908101601f1916820190925261191091810190612383565b60015b611966573d808015611940576040519150601f19603f3d011682016040523d82523d5f602084013e611945565b606091505b5080515f0361195e5761195e6368d2bf6b60e11b6116ed565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546108759061208c565b60605f61199f83611b2b565b60010190505f8167ffffffffffffffff8111156119be576119be611e90565b6040519080825280601f01601f1916602001820160405280156119e8576020820181803683370190505b5090508181016020015b5f19016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846119f257509392505050565b5f81815b8451811015611ac5575f858281518110611a4357611a4361239e565b60200260200101519050808311611a85576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611ab2565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611abd816123b2565b915050611a27565b509392505050565b611ad78383611c02565b6001600160a01b0383163b15610ce8575f548281035b611aff5f8683806001019450866118a5565b611b1357611b136368d2bf6b60e11b6116ed565b818110611aed57815f541461116c5761116c5f6116ed565b5f8072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611b695772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611b95576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611bb357662386f26fc10000830492506010015b6305f5e1008310611bcb576305f5e100830492506008015b6127108310611bdf57612710830492506004015b60648310611bf1576064830492506002015b600a83106108605760010192915050565b5f805490829003611c1d57611c1d63b562e8dd60e01b6116ed565b5f8181526004602090815260408083206001600160a01b0387164260a01b6001881460e11b17811790915580845260059092528220805468010000000000000001860201905590819003611c7a57611c7a622e076360e81b6116ed565b818301825b80835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4818160010191508103611c7f57505f5550505050565b6001600160e01b031981168114610ccb575f80fd5b5f60208284031215611ce1575f80fd5b813561154481611cbc565b80356001600160a01b03811681146116e8575f80fd5b5f60208284031215611d12575f80fd5b61154482611cec565b5f5b83811015611d35578181015183820152602001611d1d565b50505f910152565b5f8151808452611d54816020860160208601611d1b565b601f01601f19169290920160200192915050565b602081525f6115446020830184611d3d565b5f60208284031215611d8a575f80fd5b5035919050565b5f8060408385031215611da2575f80fd5b611dab83611cec565b946020939093013593505050565b5f8083601f840112611dc9575f80fd5b50813567ffffffffffffffff811115611de0575f80fd5b6020830191508360208260051b8501011115611dfa575f80fd5b9250929050565b5f805f8060608587031215611e14575f80fd5b611e1d85611cec565b935060208501359250604085013567ffffffffffffffff811115611e3f575f80fd5b611e4b87828801611db9565b95989497509550505050565b5f805f60608486031215611e69575f80fd5b611e7284611cec565b9250611e8060208501611cec565b9150604084013590509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff80841115611ebe57611ebe611e90565b604051601f8501601f19908116603f01168101908282118183101715611ee657611ee6611e90565b81604052809350858152868686011115611efe575f80fd5b858560208301375f602087830101525050509392505050565b5f60208284031215611f27575f80fd5b813567ffffffffffffffff811115611f3d575f80fd5b8201601f81018413611f4d575f80fd5b61197c84823560208401611ea4565b5f805f60408486031215611f6e575f80fd5b611f7784611cec565b9250602084013567ffffffffffffffff811115611f92575f80fd5b611f9e86828701611db9565b9497909650939450505050565b5f8060408385031215611fbc575f80fd5b611fc583611cec565b915060208301358015158114611fd9575f80fd5b809150509250929050565b5f805f8060808587031215611ff7575f80fd5b61200085611cec565b935061200e60208601611cec565b925060408501359150606085013567ffffffffffffffff811115612030575f80fd5b8501601f81018713612040575f80fd5b61204f87823560208401611ea4565b91505092959194509250565b5f806040838503121561206c575f80fd5b61207583611cec565b915061208360208401611cec565b90509250929050565b600181811c908216806120a057607f821691505b6020821081036120be57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b81810381811115610860576108606120c4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f821115610ce8575f81815260208120601f850160051c810160208610156121465750805b601f850160051c820191505b8181101561216557828155600101612152565b505050505050565b815167ffffffffffffffff81111561218757612187611e90565b61219b81612195845461208c565b84612120565b602080601f8311600181146121ce575f84156121b75750858301515b5f19600386901b1c1916600185901b178555612165565b5f85815260208120601f198616915b828110156121fc578886015182559484019460019091019084016121dd565b508582101561221957878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115610860576108606120c4565b60208082526024908201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656040820152631959195960e21b606082015260800190565b8082028115828204841417610860576108606120c4565b5f845160206122a98285838a01611d1b565b8551918401916122bc8184848a01611d1b565b85549201915f906122cc8161208c565b600182811680156122e457600181146122f957612322565b60ff1984168752821515830287019450612322565b895f52855f205f5b8481101561231a57815489820152908301908701612301565b505082870194505b50929a9950505050505050505050565b5f81612340576123406120c4565b505f190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f9061237990830184611d3d565b9695505050505050565b5f60208284031215612393575f80fd5b815161154481611cbc565b634e487b7160e01b5f52603260045260245ffd5b5f600182016123c3576123c36120c4565b506001019056fea2646970667358221220c9aaf70f041ac0deb13c04e56ae27a823d6c746c719bfd65649deabe613b06cd64736f6c63430008140033

Deployed Bytecode Sourcemap

94569:6461:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56779:639;;;;;;;;;;-1:-1:-1;56779:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;56779:639:0;;;;;;;;94759:34;;;;;;;;;;;;;;;;;;;738:25:1;;;726:2;711:18;94759:34:0;592:177:1;95213:52:0;;;;;;;;;;-1:-1:-1;95213:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;57681:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;98017:345::-;;;;;;;;;;-1:-1:-1;98017:345:0;;;;;:::i;:::-;;:::i;64715:227::-;;;;;;;;;;-1:-1:-1;64715:227:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2248:32:1;;;2230:51;;2218:2;2203:18;64715:227:0;2084:203:1;94724:28:0;;;;;;;;;;;;;:::i;64432:124::-;;;;;;:::i;:::-;;:::i;:::-;;95173:31;;;;;;;;;;;;;;;;97574:159;;;;;;:::i;:::-;;:::i;94876:34::-;;;;;;;;;;;;;;;;94800:32;;;;;;;;;;;;;;;;94917:38;;;;;;;;;;;;;;;;53423:323;;;;;;;;;;-1:-1:-1;53697:12:0;;53484:7;53681:13;:28;53423:323;;95109:55;;;;;;;;;;-1:-1:-1;95109:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;99288:150;;;;;;;;;;-1:-1:-1;99288:150:0;;;;;:::i;:::-;;:::i;68449:3523::-;;;;;;:::i;:::-;;:::i;100055:82::-;;;;;;;;;;;;;:::i;95045:57::-;;;;;;;;;;-1:-1:-1;95045:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;99166:114;;;;;;;;;;-1:-1:-1;99166:114:0;;;;;:::i;:::-;;:::i;100546:481::-;;;:::i;72068:193::-;;;;;;:::i;:::-;;:::i;95010:28::-;;;;;;;;;;-1:-1:-1;95010:28:0;;;;;;;;99580:104;;;;;;;;;;-1:-1:-1;99580:104:0;;;;;:::i;:::-;;:::i;97741:268::-;;;;;;;;;;-1:-1:-1;97741:268:0;;;;;:::i;:::-;;:::i;59083:152::-;;;;;;;;;;-1:-1:-1;59083:152:0;;;;;:::i;:::-;;:::i;95587:1979::-;;;;;;:::i;:::-;;:::i;94652:21::-;;;;;;;;;;;;;:::i;99446:126::-;;;;;;;;;;-1:-1:-1;99446:126:0;;;;;:::i;:::-;;:::i;54607:242::-;;;;;;;;;;-1:-1:-1;54607:242:0;;;;;:::i;:::-;;:::i;93715:103::-;;;;;;;;;;;;;:::i;100145:73::-;;;;;;;;;;;;;:::i;100356:88::-;;;;;;;;;;-1:-1:-1;100356:88:0;;;;;:::i;:::-;;:::i;99978:69::-;;;;;;;;;;;;;:::i;94962:39::-;;;;;;;;;;;;;;;;93064:87;;;;;;;;;;-1:-1:-1;93137:6:0;;-1:-1:-1;;;;;93137:6:0;93064:87;;95274:112;;;;;;;;;;;;;;;;57857:104;;;;;;;;;;;;;:::i;65282:234::-;;;;;;;;;;-1:-1:-1;65282:234:0;;;;;:::i;:::-;;:::i;99087:69::-;;;;;;;;;;;;;:::i;72859:416::-;;;;;;:::i;:::-;;:::i;100226:122::-;;;;;;;;;;-1:-1:-1;100226:122:0;;;;;:::i;:::-;;:::i;94680:37::-;;;;;;;;;;;;;:::i;98370:691::-;;;;;;;;;;-1:-1:-1;98370:691:0;;;;;:::i;:::-;;:::i;100452:86::-;;;;;;;;;;-1:-1:-1;100452:86:0;;;;;:::i;:::-;;:::i;94839:30::-;;;;;;;;;;;;;;;;99692:144;;;;;;;;;;-1:-1:-1;99692:144:0;;;;;:::i;:::-;;:::i;65673:164::-;;;;;;;;;;-1:-1:-1;65673:164:0;;;;;:::i;:::-;;:::i;99844:126::-;;;;;;;;;;-1:-1:-1;99844:126:0;;;;;:::i;:::-;;:::i;93973:238::-;;;;;;;;;;-1:-1:-1;93973:238:0;;;;;:::i;:::-;;:::i;56779:639::-;56864:4;-1:-1:-1;;;;;;;;;57188:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;57265:25:0;;;57188:102;:179;;;-1:-1:-1;;;;;;;;;;57342:25:0;;;57188:179;57168:199;56779:639;-1:-1:-1;;56779:639:0:o;57681:100::-;57735:13;57768:5;57761:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57681:100;:::o;98017:345::-;98100:7;98124:12;;98140:1;98124:17;98120:216;;-1:-1:-1;;;;;98183:29:0;;;;;;:22;:29;;;;;;98165:15;;:47;;98183:29;98165:47;:::i;98120:216::-;98234:12;;98250:1;98234:17;98230:106;;-1:-1:-1;;;;;98297:27:0;;;;;;:20;:27;;;;;;98275:19;;:49;;98297:27;98275:49;:::i;98230:106::-;-1:-1:-1;98353:1:0;;98017:345;-1:-1:-1;98017:345:0:o;64715:227::-;64791:7;64816:16;64824:7;64816;:16::i;:::-;64811:73;;64834:50;-1:-1:-1;;;64834:7:0;:50::i;:::-;-1:-1:-1;64904:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;64904:30:0;;64715:227::o;94724:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;64432:124::-;64521:27;64530:2;64534:7;64543:4;64521:8;:27::i;:::-;64432:124;;:::o;97574:159::-;97689:36;97694:3;97699:11;97712:12;;97689:4;:36::i;:::-;97574:159;;;;:::o;99288:150::-;93137:6;;-1:-1:-1;;;;;93137:6:0;22981:10;93284:23;93276:68;;;;-1:-1:-1;;;93276:68:0;;;;;;;:::i;:::-;;;;;;;;;99391:19:::1;:39:::0;99288:150::o;68449:3523::-;68591:27;68621;68640:7;68621:18;:27::i;:::-;-1:-1:-1;;;;;68776:22:0;;;;68591:57;;-1:-1:-1;68836:45:0;;;;68832:95;;68883:44;-1:-1:-1;;;68883:7:0;:44::i;:::-;68941:27;67557:24;;;:15;:24;;;;;67785:26;;22981:10;67182:30;;;-1:-1:-1;;;;;66875:28:0;;67160:20;;;67157:56;69127:189;;69220:43;69237:4;22981:10;65673:164;:::i;69220:43::-;69215:101;;69265:51;-1:-1:-1;;;69265:7:0;:51::i;:::-;69465:15;69462:160;;;69605:1;69584:19;69577:30;69462:160;-1:-1:-1;;;;;70002:24:0;;;;;;;:18;:24;;;;;;70000:26;;-1:-1:-1;;70000:26:0;;;70071:22;;;;;;;;;70069:24;;-1:-1:-1;70069:24:0;;;63534:11;63509:23;63505:41;63492:63;-1:-1:-1;;;63492:63:0;70364:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;70659:47:0;;:52;;70655:627;;70764:1;70754:11;;70732:19;70887:30;;;:17;:30;;;;;;:35;;70883:384;;71025:13;;71010:11;:28;71006:242;;71172:30;;;;:17;:30;;;;;:52;;;71006:242;70713:569;70655:627;-1:-1:-1;;;;;71414:20:0;;71794:7;71414:20;71724:4;71666:25;71395:16;;71531:299;71855:8;71867:1;71855:13;71851:58;;71870:39;-1:-1:-1;;;71870:7:0;:39::i;:::-;68580:3392;;;;68449:3523;;;:::o;100055:82::-;93137:6;;-1:-1:-1;;;;;93137:6:0;22981:10;93284:23;93276:68;;;;-1:-1:-1;;;93276:68:0;;;;;;;:::i;:::-;100128:1:::1;100113:12;:16:::0;100055:82::o;99166:114::-;93137:6;;-1:-1:-1;;;;;93137:6:0;22981:10;93284:23;93276:68;;;;-1:-1:-1;;;93276:68:0;;;;;;;:::i;:::-;99243:20:::1;:29:::0;99166:114::o;100546:481::-;93137:6;;-1:-1:-1;;;;;93137:6:0;22981:10;93284:23;93276:68;;;;-1:-1:-1;;;93276:68:0;;;;;;;:::i;:::-;100839:7:::1;100860;93137:6:::0;;-1:-1:-1;;;;;93137:6:0;;93064:87;100860:7:::1;-1:-1:-1::0;;;;;100852:21:0::1;100881;100852:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;100838:69;;;100926:2;100918:11;;;::::0;::::1;;100591:436;100546:481::o:0;72068:193::-;72214:39;72231:4;72237:2;72241:7;72214:39;;;;;;;;;;;;:16;:39::i;:::-;72068:193;;;:::o;99580:104::-;93137:6;;-1:-1:-1;;;;;93137:6:0;22981:10;93284:23;93276:68;;;;-1:-1:-1;;;93276:68:0;;;;;;;:::i;:::-;99655:7:::1;:21;99665:11:::0;99655:7;:21:::1;:::i;97741:268::-:0;97900:23;;-1:-1:-1;;10811:2:1;10807:15;;;10803:53;97900:23:0;;;10791:66:1;97858:4:0;;;;10873:12:1;;97900:23:0;;;;;;;;;;;;97890:34;;;;;;97875:49;;97942:59;97961:12;;97942:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;97975:19:0;;;-1:-1:-1;97996:4:0;;-1:-1:-1;97942:18:0;:59::i;:::-;97935:66;97741:268;-1:-1:-1;;;;;97741:268:0:o;59083:152::-;59155:7;59198:27;59217:7;59198:18;:27::i;95587:1979::-;95728:14;95745:13;53697:12;;53484:7;53681:13;:28;;53423:323;95745:13;95728:30;;95791:1;95777:11;:15;95769:55;;;;-1:-1:-1;;;95769:55:0;;11098:2:1;95769:55:0;;;11080:21:1;11137:2;11117:18;;;11110:30;11176:29;11156:18;;;11149:57;11223:18;;95769:55:0;10896:351:1;95769:55:0;95867:9;;95843:20;95852:11;95843:6;:20;:::i;:::-;:33;;95835:68;;;;-1:-1:-1;;;95835:68:0;;11584:2:1;95835:68:0;;;11566:21:1;11623:2;11603:18;;;11596:30;-1:-1:-1;;;11642:18:1;;;11635:52;11704:18;;95835:68:0;11382:346:1;95835:68:0;93137:6;;-1:-1:-1;;;;;93137:6:0;95918:10;:21;95914:1407;;95979:1;95964:12;;:16;95956:51;;;;-1:-1:-1;;;95956:51:0;;11935:2:1;95956:51:0;;;11917:21:1;11974:2;11954:18;;;11947:30;-1:-1:-1;;;11993:18:1;;;11986:52;12055:18;;95956:51:0;11733:346:1;95956:51:0;96026:12;;96042:1;96026:17;96022:1288;;96114:10;96064:24;96091:34;;;:22;:34;;;;;;;96174:39;;96200:12;;96174:13;:39::i;:::-;96144:136;;;;-1:-1:-1;;;96144:136:0;;12286:2:1;96144:136:0;;;12268:21:1;12325:2;12305:18;;;12298:30;12364:25;12344:18;;;12337:53;12407:18;;96144:136:0;12084:347:1;96144:136:0;96344:15;;96329:11;:30;;96299:140;;;;-1:-1:-1;;;96299:140:0;;;;;;;:::i;:::-;96522:15;;96488:30;96507:11;96488:16;:30;:::i;:::-;:49;;96458:151;;;;-1:-1:-1;;;96458:151:0;;13043:2:1;96458:151:0;;;13025:21:1;13082:2;13062:18;;;13055:30;13121;13101:18;;;13094:58;13169:18;;96458:151:0;12841:352:1;96458:151:0;96680:11;96671:6;;:20;;;;:::i;:::-;96658:9;:33;;96628:125;;;;-1:-1:-1;;;96628:125:0;;13573:2:1;96628:125:0;;;13555:21:1;13612:2;13592:18;;;13585:30;-1:-1:-1;;;13631:18:1;;;13624:48;13689:18;;96628:125:0;13371:342:1;96628:125:0;96045:724;96022:1288;;;96779:12;;96795:1;96779:17;96775:535;;96865:10;96817:24;96844:32;;;:20;:32;;;;;;96940:19;;96925:34;;;96895:144;;;;-1:-1:-1;;;96895:144:0;;;;;;;:::i;:::-;97122:19;;97088:30;97107:11;97088:16;:30;:::i;:::-;:53;;97058:155;;;;-1:-1:-1;;;97058:155:0;;13043:2:1;97058:155:0;;;13025:21:1;13082:2;13062:18;;;13055:30;13121;13101:18;;;13094:58;13169:18;;97058:155:0;12841:352:1;97058:155:0;97260:11;97253:4;;:18;;;;:::i;:::-;97240:9;:31;;97232:62;;;;-1:-1:-1;;;97232:62:0;;13573:2:1;97232:62:0;;;13555:21:1;13612:2;13592:18;;;13585:30;-1:-1:-1;;;13631:18:1;;;13624:48;13689:18;;97232:62:0;13371:342:1;97232:62:0;96798:512;96775:535;97333:27;97343:3;97348:11;97333:9;:27::i;:::-;97375:12;;97391:1;97375:17;97371:188;;-1:-1:-1;;;;;97409:27:0;;;;;;:22;:27;;;;;:42;;97440:11;;97409:27;:42;;97440:11;;97409:42;:::i;:::-;;;;-1:-1:-1;97371:188:0;;-1:-1:-1;97371:188:0;;97473:12;;97489:1;97473:17;97469:90;;-1:-1:-1;;;;;97507:25:0;;;;;;:20;:25;;;;;:40;;97536:11;;97507:25;:40;;97536:11;;97507:40;:::i;:::-;;;;-1:-1:-1;;97469:90:0;95717:1849;95587:1979;;;;:::o;94652:21::-;;;;;;;:::i;99446:126::-;93137:6;;-1:-1:-1;;;;;93137:6:0;22981:10;93284:23;93276:68;;;;-1:-1:-1;;;93276:68:0;;;;;;;:::i;:::-;99529:15:::1;:35:::0;99446:126::o;54607:242::-;54679:7;-1:-1:-1;;;;;54703:19:0;;54699:69;;54724:44;-1:-1:-1;;;54724:7:0;:44::i;:::-;-1:-1:-1;;;;;;54786:25:0;;;;;:18;:25;;;;;;48766:13;54786:55;;54607:242::o;93715:103::-;93137:6;;-1:-1:-1;;;;;93137:6:0;22981:10;93284:23;93276:68;;;;-1:-1:-1;;;93276:68:0;;;;;;;:::i;:::-;93780:30:::1;93807:1;93780:18;:30::i;:::-;93715:103::o:0;100145:73::-;93137:6;;-1:-1:-1;;;;;93137:6:0;22981:10;93284:23;93276:68;;;;-1:-1:-1;;;93276:68:0;;;;;;;:::i;:::-;100209:1:::1;100194:12;:16:::0;100145:73::o;100356:88::-;93137:6;;-1:-1:-1;;;;;93137:6:0;22981:10;93284:23;93276:68;;;;-1:-1:-1;;;93276:68:0;;;;;;;:::i;:::-;100423:4:::1;:13:::0;100356:88::o;99978:69::-;93137:6;;-1:-1:-1;;;;;93137:6:0;22981:10;93284:23;93276:68;;;;-1:-1:-1;;;93276:68:0;;;;;;;:::i;:::-;100038:1:::1;100023:12;:16:::0;99978:69::o;57857:104::-;57913:13;57946:7;57939:14;;;;;:::i;65282:234::-;22981:10;65377:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;65377:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;65377:60:0;;;;;;;;;;65453:55;;540:41:1;;;65377:49:0;;22981:10;65453:55;;513:18:1;65453:55:0;;;;;;;65282:234;;:::o;99087:69::-;93137:6;;-1:-1:-1;;;;;93137:6:0;22981:10;93284:23;93276:68;;;;-1:-1:-1;;;93276:68:0;;;;;;;:::i;:::-;99133:8:::1;:15:::0;;-1:-1:-1;;99133:15:0::1;99144:4;99133:15;::::0;;99087:69::o;72859:416::-;73034:31;73047:4;73053:2;73057:7;73034:12;:31::i;:::-;-1:-1:-1;;;;;73080:14:0;;;:19;73076:192;;73119:56;73150:4;73156:2;73160:7;73169:5;73119:30;:56::i;:::-;73114:154;;73196:56;-1:-1:-1;;;73196:7:0;:56::i;100226:122::-;93137:6;;-1:-1:-1;;;;;93137:6:0;22981:10;93284:23;93276:68;;;;-1:-1:-1;;;93276:68:0;;;;;;;:::i;:::-;100307:19:::1;:33:::0;100226:122::o;94680:37::-;;;;;;;:::i;98370:691::-;98459:13;98507:16;98515:7;98507;:16::i;:::-;98485:113;;;;-1:-1:-1;;;98485:113:0;;13920:2:1;98485:113:0;;;13902:21:1;13959:2;13939:18;;;13932:30;13998:34;13978:18;;;13971:62;-1:-1:-1;;;14049:18:1;;;14042:45;14104:19;;98485:113:0;13718:411:1;98485:113:0;98615:8;;;;:17;;:8;:17;98611:71;;98656:14;98649:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98370:691;;;:::o;98611:71::-;98694:28;98725:10;:8;:10::i;:::-;98694:41;;98797:1;98772:14;98766:28;:32;:287;;;;;;;;;;;;;;;;;98890:14;98931:18;:7;:16;:18::i;:::-;98976:13;98847:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;98766:287;98746:307;98370:691;-1:-1:-1;;;98370:691:0:o;100452:86::-;93137:6;;-1:-1:-1;;;;;93137:6:0;22981:10;93284:23;93276:68;;;;-1:-1:-1;;;93276:68:0;;;;;;;:::i;:::-;100515:6:::1;:15:::0;100452:86::o;99692:144::-;93137:6;;-1:-1:-1;;;;;93137:6:0;22981:10;93284:23;93276:68;;;;-1:-1:-1;;;93276:68:0;;;;;;;:::i;:::-;99795:13:::1;:33;99811:17:::0;99795:13;:33:::1;:::i;65673:164::-:0;-1:-1:-1;;;;;65794:25:0;;;65770:4;65794:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;65673:164::o;99844:126::-;93137:6;;-1:-1:-1;;;;;93137:6:0;22981:10;93284:23;93276:68;;;;-1:-1:-1;;;93276:68:0;;;;;;;:::i;:::-;99930:14:::1;:32;99947:15:::0;99930:14;:32:::1;:::i;93973:238::-:0;93137:6;;-1:-1:-1;;;;;93137:6:0;22981:10;93284:23;93276:68;;;;-1:-1:-1;;;93276:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;94076:22:0;::::1;94054:110;;;::::0;-1:-1:-1;;;94054:110:0;;15597:2:1;94054:110:0::1;::::0;::::1;15579:21:1::0;15636:2;15616:18;;;15609:30;15675:34;15655:18;;;15648:62;-1:-1:-1;;;15726:18:1;;;15719:36;15772:19;;94054:110:0::1;15395:402:1::0;94054:110:0::1;94175:28;94194:8;94175:18;:28::i;66095:368::-:0;66160:11;66245:13;;66235:7;:23;66231:214;;;66279:14;66312:60;-1:-1:-1;66329:26:0;;;;:17;:26;;;;;;;66319:42;;;66312:60;;66363:9;;;:::i;:::-;;;66312:60;;;-1:-1:-1;;;66400:24:0;:29;;-1:-1:-1;66231:214:0;66095:368;;;:::o;91873:165::-;91974:13;91968:4;91961:27;92015:4;92009;92002:18;83306:474;83435:13;83451:16;83459:7;83451;:16::i;:::-;83435:32;;83484:13;:45;;;;-1:-1:-1;22981:10:0;-1:-1:-1;;;;;83501:28:0;;;;83484:45;83480:201;;;83549:44;83566:5;22981:10;65673:164;:::i;83549:44::-;83544:137;;83614:51;-1:-1:-1;;;83614:7:0;:51::i;:::-;83693:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;83693:35:0;-1:-1:-1;;;;;83693:35:0;;;;;;;;;83744:28;;83693:24;;83744:28;;;;;;;83424:356;83306:474;;;:::o;60563:2012::-;60713:26;;;;:17;:26;;;;;;;60839:11;;;60835:1292;;60886:13;;60875:7;:24;60871:77;;60901:47;-1:-1:-1;;;60901:7:0;:47::i;:::-;61505:607;-1:-1:-1;;;61601:9:0;61583:28;;;;:17;:28;;;;;;61657:25;;61505:607;61657:25;-1:-1:-1;;;61709:6:0;:24;61737:1;61709:29;61705:48;;60563:2012;;;:::o;61705:48::-;62045:47;-1:-1:-1;;;62045:7:0;:47::i;:::-;61505:607;;60835:1292;-1:-1:-1;;;62454:6:0;:24;62482:1;62454:29;62450:48;;60563:2012;;;:::o;62450:48::-;62520:47;-1:-1:-1;;;62520:7:0;:47::i;918:190::-;1043:4;1096;1067:25;1080:5;1087:4;1067:12;:25::i;:::-;:33;;918:190;-1:-1:-1;;;;918:190:0:o;82388:112::-;82465:27;82475:2;82479:8;82465:27;;;;;;;;;;;;:9;:27::i;94371:191::-;94464:6;;;-1:-1:-1;;;;;94481:17:0;;;-1:-1:-1;;;;;;94481:17:0;;;;;;;94514:40;;94464:6;;;94481:17;94464:6;;94514:40;;94445:16;;94514:40;94434:128;94371:191;:::o;75359:691::-;75543:88;;-1:-1:-1;;;75543:88:0;;75522:4;;-1:-1:-1;;;;;75543:45:0;;;;;:88;;22981:10;;75610:4;;75616:7;;75625:5;;75543:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;75543:88:0;;;;;;;;-1:-1:-1;;75543:88:0;;;;;;;;;;;;:::i;:::-;;;75539:504;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75826:6;:13;75843:1;75826:18;75822:115;;75865:56;-1:-1:-1;;;75865:7:0;:56::i;:::-;76009:6;76003:13;75994:6;75990:2;75986:15;75979:38;75539:504;-1:-1:-1;;;;;;75702:64:0;-1:-1:-1;;;75702:64:0;;-1:-1:-1;75539:504:0;75359:691;;;;;;:::o;95471:108::-;95531:13;95564:7;95557:14;;;;;:::i;19671:718::-;19727:13;19778:14;19795:17;19806:5;19795:10;:17::i;:::-;19815:1;19795:21;19778:38;;19831:20;19865:6;19854:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19854:18:0;-1:-1:-1;19831:41:0;-1:-1:-1;19996:28:0;;;20012:2;19996:28;20053:290;-1:-1:-1;;20085:5:0;-1:-1:-1;;;20222:2:0;20211:14;;20206:32;20085:5;20193:46;20285:2;20276:11;;;-1:-1:-1;20306:21:0;20053:290;20306:21;-1:-1:-1;20364:6:0;19671:718;-1:-1:-1;;;19671:718:0:o;1470:701::-;1553:7;1596:4;1553:7;1611:523;1635:5;:12;1631:1;:16;1611:523;;;1669:20;1692:5;1698:1;1692:8;;;;;;;;:::i;:::-;;;;;;;1669:31;;1735:12;1719;:28;1715:408;;1872:44;;;;;;17112:19:1;;;17147:12;;;17140:28;;;17184:12;;1872:44:0;;;;;;;;;;;;1862:55;;;;;;1847:70;;1715:408;;;2062:44;;;;;;17112:19:1;;;17147:12;;;17140:28;;;17184:12;;2062:44:0;;;;;;;;;;;;2052:55;;;;;;2037:70;;1715:408;-1:-1:-1;1649:3:0;;;;:::i;:::-;;;;1611:523;;;-1:-1:-1;2151:12:0;1470:701;-1:-1:-1;;;1470:701:0:o;81596:708::-;81727:19;81733:2;81737:8;81727:5;:19::i;:::-;-1:-1:-1;;;;;81788:14:0;;;:19;81784:502;;81828:11;81842:13;81890:14;;;81923:242;81954:62;81993:1;81997:2;82001:7;;;;;;82010:5;81954:30;:62::i;:::-;81949:176;;82045:56;-1:-1:-1;;;82045:7:0;:56::i;:::-;82160:3;82152:5;:11;81923:242;;82247:3;82230:13;;:20;82226:44;;82252:18;82267:1;82252:7;:18::i;16075:948::-;16128:7;;-1:-1:-1;;;16206:17:0;;16202:106;;-1:-1:-1;;;16244:17:0;;;-1:-1:-1;16290:2:0;16280:12;16202:106;16335:8;16326:5;:17;16322:106;;16373:8;16364:17;;;-1:-1:-1;16410:2:0;16400:12;16322:106;16455:8;16446:5;:17;16442:106;;16493:8;16484:17;;;-1:-1:-1;16530:2:0;16520:12;16442:106;16575:7;16566:5;:16;16562:103;;16612:7;16603:16;;;-1:-1:-1;16648:1:0;16638:11;16562:103;16692:7;16683:5;:16;16679:103;;16729:7;16720:16;;;-1:-1:-1;16765:1:0;16755:11;16679:103;16809:7;16800:5;:16;16796:103;;16846:7;16837:16;;;-1:-1:-1;16882:1:0;16872:11;16796:103;16926:7;16917:5;:16;16913:68;;16964:1;16954:11;17009:6;16075:948;-1:-1:-1;;16075:948:0:o;76512:2305::-;76585:20;76608:13;;;76636;;;76632:53;;76651:34;-1:-1:-1;;;76651:7:0;:34::i;:::-;77198:31;;;;:17;:31;;;;;;;;-1:-1:-1;;;;;63360:28:0;;63534:11;63509:23;63505:41;63978:1;63965:15;;63939:24;63935:46;63502:52;63492:63;;77198:173;;;77589:22;;;:18;:22;;;;;:71;;77627:32;77615:45;;77589:71;;;63360:28;77850:13;;;77846:54;;77865:35;-1:-1:-1;;;77865:7:0;:35::i;:::-;77931:23;;;:12;78016:676;78435:7;78391:8;78346:1;78280:25;78217:1;78152;78121:358;78687:3;78674:9;;;;;;:16;78016:676;;-1:-1:-1;78708:13:0;:19;-1:-1:-1;72068:193:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;774:173::-;842:20;;-1:-1:-1;;;;;891:31:1;;881:42;;871:70;;937:1;934;927:12;952:186;1011:6;1064:2;1052:9;1043:7;1039:23;1035:32;1032:52;;;1080:1;1077;1070:12;1032:52;1103:29;1122:9;1103:29;:::i;1143:250::-;1228:1;1238:113;1252:6;1249:1;1246:13;1238:113;;;1328:11;;;1322:18;1309:11;;;1302:39;1274:2;1267:10;1238:113;;;-1:-1:-1;;1385:1:1;1367:16;;1360:27;1143:250::o;1398:271::-;1440:3;1478:5;1472:12;1505:6;1500:3;1493:19;1521:76;1590:6;1583:4;1578:3;1574:14;1567:4;1560:5;1556:16;1521:76;:::i;:::-;1651:2;1630:15;-1:-1:-1;;1626:29:1;1617:39;;;;1658:4;1613:50;;1398:271;-1:-1:-1;;1398:271:1:o;1674:220::-;1823:2;1812:9;1805:21;1786:4;1843:45;1884:2;1873:9;1869:18;1861:6;1843:45;:::i;1899:180::-;1958:6;2011:2;1999:9;1990:7;1986:23;1982:32;1979:52;;;2027:1;2024;2017:12;1979:52;-1:-1:-1;2050:23:1;;1899:180;-1:-1:-1;1899:180:1:o;2292:254::-;2360:6;2368;2421:2;2409:9;2400:7;2396:23;2392:32;2389:52;;;2437:1;2434;2427:12;2389:52;2460:29;2479:9;2460:29;:::i;:::-;2450:39;2536:2;2521:18;;;;2508:32;;-1:-1:-1;;;2292:254:1:o;2551:367::-;2614:8;2624:6;2678:3;2671:4;2663:6;2659:17;2655:27;2645:55;;2696:1;2693;2686:12;2645:55;-1:-1:-1;2719:20:1;;2762:18;2751:30;;2748:50;;;2794:1;2791;2784:12;2748:50;2831:4;2823:6;2819:17;2807:29;;2891:3;2884:4;2874:6;2871:1;2867:14;2859:6;2855:27;2851:38;2848:47;2845:67;;;2908:1;2905;2898:12;2845:67;2551:367;;;;;:::o;2923:579::-;3027:6;3035;3043;3051;3104:2;3092:9;3083:7;3079:23;3075:32;3072:52;;;3120:1;3117;3110:12;3072:52;3143:29;3162:9;3143:29;:::i;:::-;3133:39;;3219:2;3208:9;3204:18;3191:32;3181:42;;3274:2;3263:9;3259:18;3246:32;3301:18;3293:6;3290:30;3287:50;;;3333:1;3330;3323:12;3287:50;3372:70;3434:7;3425:6;3414:9;3410:22;3372:70;:::i;:::-;2923:579;;;;-1:-1:-1;3461:8:1;-1:-1:-1;;;;2923:579:1:o;3507:328::-;3584:6;3592;3600;3653:2;3641:9;3632:7;3628:23;3624:32;3621:52;;;3669:1;3666;3659:12;3621:52;3692:29;3711:9;3692:29;:::i;:::-;3682:39;;3740:38;3774:2;3763:9;3759:18;3740:38;:::i;:::-;3730:48;;3825:2;3814:9;3810:18;3797:32;3787:42;;3507:328;;;;;:::o;3840:127::-;3901:10;3896:3;3892:20;3889:1;3882:31;3932:4;3929:1;3922:15;3956:4;3953:1;3946:15;3972:632;4037:5;4067:18;4108:2;4100:6;4097:14;4094:40;;;4114:18;;:::i;:::-;4189:2;4183:9;4157:2;4243:15;;-1:-1:-1;;4239:24:1;;;4265:2;4235:33;4231:42;4219:55;;;4289:18;;;4309:22;;;4286:46;4283:72;;;4335:18;;:::i;:::-;4375:10;4371:2;4364:22;4404:6;4395:15;;4434:6;4426;4419:22;4474:3;4465:6;4460:3;4456:16;4453:25;4450:45;;;4491:1;4488;4481:12;4450:45;4541:6;4536:3;4529:4;4521:6;4517:17;4504:44;4596:1;4589:4;4580:6;4572;4568:19;4564:30;4557:41;;;;3972:632;;;;;:::o;4609:451::-;4678:6;4731:2;4719:9;4710:7;4706:23;4702:32;4699:52;;;4747:1;4744;4737:12;4699:52;4787:9;4774:23;4820:18;4812:6;4809:30;4806:50;;;4852:1;4849;4842:12;4806:50;4875:22;;4928:4;4920:13;;4916:27;-1:-1:-1;4906:55:1;;4957:1;4954;4947:12;4906:55;4980:74;5046:7;5041:2;5028:16;5023:2;5019;5015:11;4980:74;:::i;5065:511::-;5160:6;5168;5176;5229:2;5217:9;5208:7;5204:23;5200:32;5197:52;;;5245:1;5242;5235:12;5197:52;5268:29;5287:9;5268:29;:::i;:::-;5258:39;;5348:2;5337:9;5333:18;5320:32;5375:18;5367:6;5364:30;5361:50;;;5407:1;5404;5397:12;5361:50;5446:70;5508:7;5499:6;5488:9;5484:22;5446:70;:::i;:::-;5065:511;;5535:8;;-1:-1:-1;5420:96:1;;-1:-1:-1;;;;5065:511:1:o;5763:347::-;5828:6;5836;5889:2;5877:9;5868:7;5864:23;5860:32;5857:52;;;5905:1;5902;5895:12;5857:52;5928:29;5947:9;5928:29;:::i;:::-;5918:39;;6007:2;5996:9;5992:18;5979:32;6054:5;6047:13;6040:21;6033:5;6030:32;6020:60;;6076:1;6073;6066:12;6020:60;6099:5;6089:15;;;5763:347;;;;;:::o;6115:667::-;6210:6;6218;6226;6234;6287:3;6275:9;6266:7;6262:23;6258:33;6255:53;;;6304:1;6301;6294:12;6255:53;6327:29;6346:9;6327:29;:::i;:::-;6317:39;;6375:38;6409:2;6398:9;6394:18;6375:38;:::i;:::-;6365:48;;6460:2;6449:9;6445:18;6432:32;6422:42;;6515:2;6504:9;6500:18;6487:32;6542:18;6534:6;6531:30;6528:50;;;6574:1;6571;6564:12;6528:50;6597:22;;6650:4;6642:13;;6638:27;-1:-1:-1;6628:55:1;;6679:1;6676;6669:12;6628:55;6702:74;6768:7;6763:2;6750:16;6745:2;6741;6737:11;6702:74;:::i;:::-;6692:84;;;6115:667;;;;;;;:::o;6972:260::-;7040:6;7048;7101:2;7089:9;7080:7;7076:23;7072:32;7069:52;;;7117:1;7114;7107:12;7069:52;7140:29;7159:9;7140:29;:::i;:::-;7130:39;;7188:38;7222:2;7211:9;7207:18;7188:38;:::i;:::-;7178:48;;6972:260;;;;;:::o;7237:380::-;7316:1;7312:12;;;;7359;;;7380:61;;7434:4;7426:6;7422:17;7412:27;;7380:61;7487:2;7479:6;7476:14;7456:18;7453:38;7450:161;;7533:10;7528:3;7524:20;7521:1;7514:31;7568:4;7565:1;7558:15;7596:4;7593:1;7586:15;7450:161;;7237:380;;;:::o;7622:127::-;7683:10;7678:3;7674:20;7671:1;7664:31;7714:4;7711:1;7704:15;7738:4;7735:1;7728:15;7754:128;7821:9;;;7842:11;;;7839:37;;;7856:18;;:::i;7887:356::-;8089:2;8071:21;;;8108:18;;;8101:30;8167:34;8162:2;8147:18;;8140:62;8234:2;8219:18;;7887:356::o;8584:545::-;8686:2;8681:3;8678:11;8675:448;;;8722:1;8747:5;8743:2;8736:17;8792:4;8788:2;8778:19;8862:2;8850:10;8846:19;8843:1;8839:27;8833:4;8829:38;8898:4;8886:10;8883:20;8880:47;;;-1:-1:-1;8921:4:1;8880:47;8976:2;8971:3;8967:12;8964:1;8960:20;8954:4;8950:31;8940:41;;9031:82;9049:2;9042:5;9039:13;9031:82;;;9094:17;;;9075:1;9064:13;9031:82;;;9035:3;;;8584:545;;;:::o;9305:1352::-;9431:3;9425:10;9458:18;9450:6;9447:30;9444:56;;;9480:18;;:::i;:::-;9509:97;9599:6;9559:38;9591:4;9585:11;9559:38;:::i;:::-;9553:4;9509:97;:::i;:::-;9661:4;;9725:2;9714:14;;9742:1;9737:663;;;;10444:1;10461:6;10458:89;;;-1:-1:-1;10513:19:1;;;10507:26;10458:89;-1:-1:-1;;9262:1:1;9258:11;;;9254:24;9250:29;9240:40;9286:1;9282:11;;;9237:57;10560:81;;9707:944;;9737:663;8531:1;8524:14;;;8568:4;8555:18;;-1:-1:-1;;9773:20:1;;;9891:236;9905:7;9902:1;9899:14;9891:236;;;9994:19;;;9988:26;9973:42;;10086:27;;;;10054:1;10042:14;;;;9921:19;;9891:236;;;9895:3;10155:6;10146:7;10143:19;10140:201;;;10216:19;;;10210:26;-1:-1:-1;;10299:1:1;10295:14;;;10311:3;10291:24;10287:37;10283:42;10268:58;10253:74;;10140:201;-1:-1:-1;;;;;10387:1:1;10371:14;;;10367:22;10354:36;;-1:-1:-1;9305:1352:1:o;11252:125::-;11317:9;;;11338:10;;;11335:36;;;11351:18;;:::i;12436:400::-;12638:2;12620:21;;;12677:2;12657:18;;;12650:30;12716:34;12711:2;12696:18;;12689:62;-1:-1:-1;;;12782:2:1;12767:18;;12760:34;12826:3;12811:19;;12436:400::o;13198:168::-;13271:9;;;13302;;13319:15;;;13313:22;;13299:37;13289:71;;13340:18;;:::i;14134:1256::-;14358:3;14396:6;14390:13;14422:4;14435:64;14492:6;14487:3;14482:2;14474:6;14470:15;14435:64;:::i;:::-;14562:13;;14521:16;;;;14584:68;14562:13;14521:16;14619:15;;;14584:68;:::i;:::-;14741:13;;14674:20;;;14714:1;;14779:36;14741:13;14779:36;:::i;:::-;14834:1;14851:18;;;14878:141;;;;15033:1;15028:337;;;;14844:521;;14878:141;-1:-1:-1;;14913:24:1;;14899:39;;14990:16;;14983:24;14969:39;;14958:51;;;-1:-1:-1;14878:141:1;;15028:337;15059:6;15056:1;15049:17;15107:2;15104:1;15094:16;15132:1;15146:169;15160:8;15157:1;15154:15;15146:169;;;15242:14;;15227:13;;;15220:37;15285:16;;;;15177:10;;15146:169;;;15150:3;;15346:8;15339:5;15335:20;15328:27;;14844:521;-1:-1:-1;15381:3:1;;14134:1256;-1:-1:-1;;;;;;;;;;14134:1256:1:o;15802:136::-;15841:3;15869:5;15859:39;;15878:18;;:::i;:::-;-1:-1:-1;;;15914:18:1;;15802:136::o;15943:489::-;-1:-1:-1;;;;;16212:15:1;;;16194:34;;16264:15;;16259:2;16244:18;;16237:43;16311:2;16296:18;;16289:34;;;16359:3;16354:2;16339:18;;16332:31;;;16137:4;;16380:46;;16406:19;;16398:6;16380:46;:::i;:::-;16372:54;15943:489;-1:-1:-1;;;;;;15943:489:1:o;16437:249::-;16506:6;16559:2;16547:9;16538:7;16534:23;16530:32;16527:52;;;16575:1;16572;16565:12;16527:52;16607:9;16601:16;16626:30;16650:5;16626:30;:::i;16823:127::-;16884:10;16879:3;16875:20;16872:1;16865:31;16915:4;16912:1;16905:15;16939:4;16936:1;16929:15;17207:135;17246:3;17267:17;;;17264:43;;17287:18;;:::i;:::-;-1:-1:-1;17334:1:1;17323:13;;17207:135::o

Swarm Source

ipfs://c9aaf70f041ac0deb13c04e56ae27a823d6c746c719bfd65649deabe613b06cd
Loading...
Loading
Loading...
Loading
[ 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.