ETH Price: $3,163.39 (+1.39%)
Gas: 1 Gwei

BCOMPANIONS (Boki Companions)
 

Overview

TokenID

2063

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

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

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// Sources flattened with hardhat v2.17.1 https://hardhat.org

// SPDX-License-Identifier: MIT

// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File @openzeppelin/contracts/access/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/utils/introspection/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File @openzeppelin/contracts/interfaces/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

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

// File @openzeppelin/contracts/utils/introspection/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

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

// File @openzeppelin/contracts/token/common/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

        return (royalty.receiver, royaltyAmount);
    }

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

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

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

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

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

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

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

// File @openzeppelin/contracts/utils/math/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/utils/math/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

// File @openzeppelin/contracts/utils/cryptography/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.2) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle 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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(
        bytes32[] calldata proof,
        bytes32 leaf
    ) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(
            leavesLen + proofLen - 1 == totalHashes,
            "MerkleProof: invalid multiproof"
        );

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen
                ? leaves[leafPos++]
                : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(
            leavesLen + proofLen - 1 == totalHashes,
            "MerkleProof: invalid multiproof"
        );

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen
                ? leaves[leafPos++]
                : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(
        bytes32 a,
        bytes32 b
    ) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File erc721a/contracts/[email protected]

// Original license: SPDX_License_Identifier: MIT
// 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 erc721a/contracts/[email protected]

// Original license: SPDX_License_Identifier: MIT
// 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 {
    // 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();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File contracts/BOKICOMPANIONS.sol

// Original license: SPDX_License_Identifier: MIT
pragma solidity ^0.8.0;

contract BokiCompanions is ERC721A, Ownable, ERC2981 {
    enum SaleConfig {
        PAUSED,
        MINT
    }

    using Strings for uint256;

    ///////////////////////////////////////////////////////////
    //              Variables
    // ///////////////////////////////////////////////////////

    string public baseURI;
    string public baseExtension = ".json";
    string public unRevealedURI;
    bool public revealed = false;
    SaleConfig public saleConfig = SaleConfig.PAUSED;
    uint256 public SUPPLY = 7777;
    uint256 public constant MARKETING_RESERVE = 50;
    uint256 public LIMIT = 10;
    address private immutable withdrawalAddress;
    mapping(uint16 => address) mintedBokiDetails;

    ///////////////////////////////////////////////////////////
    //              Contructors
    // ///////////////////////////////////////////////////////

    constructor(
        string memory _unRevealedUri,
        string memory _RevealedBaseUri,
        address _withdrawalAddress,
        address _royaltyAddress,
        uint96 _royaltyBips
    ) ERC721A("BCOMPANIONS", "Boki Companions") {
        setBaseURI(_RevealedBaseUri);
        setUnRevealedUri(_unRevealedUri);
        withdrawalAddress = _withdrawalAddress;
        setRoyalty(_royaltyAddress, _royaltyBips); // 750 Bips = 7.5%; Max 10%
    }

    ///////////////////////////////////////////////////////////
    //              Modifier
    // ///////////////////////////////////////////////////////

    modifier alreadyMinted(uint16[] calldata tokenIds) {
        for (uint16 i = 0; i < tokenIds.length; i++) {
            require(
                mintedBokiDetails[tokenIds[i]] == address(0),
                "Token already been minted."
            );
        }
        _;
    }

    modifier isBokiHolder(uint16 maxMintLimit) {
        require(maxMintLimit > 0, "Not a boki holder.");
        _;
    }

    modifier saleActive() {
        require(saleConfig == SaleConfig.MINT, "DENIED.");
        _;
    }

    ///////////////////////////////////////////////////////////
    //              Get Functions
    // ///////////////////////////////////////////////////////

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

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

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

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

    function getOwnershipData(
        uint256 _tokenId
    ) external view returns (TokenOwnership memory) {
        return _ownershipOf(_tokenId);
    }

    function checkIfMinted(uint16 tokenId) external view returns (bool) {
        return mintedBokiDetails[tokenId] != address(0);
    }

    ///////////////////////////////////////////////////////////
    //              Set Functions
    // ///////////////////////////////////////////////////////

    function setSaleConfig(SaleConfig _status) external onlyOwner {
        saleConfig = _status;
    }

    function reveal() external onlyOwner {
        revealed = true;
    }

    function setUnRevealedUri(string memory _unRevealedUri) public onlyOwner {
        unRevealedURI = _unRevealedUri;
    }

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

    function setRoyalty(
        address _receiver,
        uint96 _royaltyFeeInBips
    ) public onlyOwner {
        _setDefaultRoyalty(_receiver, _royaltyFeeInBips);
    }

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

    ///////////////////////////////////////////////////////////
    //              Mint Functions
    // ///////////////////////////////////////////////////////

    function mint(
        uint16 _amount,
        uint16[] calldata bokiTokenIds,
        uint16 maxMintLimit
    )
        external
        payable
        saleActive
        isBokiHolder(maxMintLimit)
        alreadyMinted(bokiTokenIds)
    {
        require(_amount <= bokiTokenIds.length, "Surpass token limit");
        require(_amount <= LIMIT, "Surpass txn limit");
        require(
            _numberMinted(msg.sender) + _amount <= maxMintLimit,
            "Max mint limit reached"
        );
        require(totalSupply() + _amount <= SUPPLY, "SURPASS SUPPLY");
        _mint(msg.sender, _amount);
        for (uint i = 0; i < _amount; i++) {
            mintedBokiDetails[bokiTokenIds[i]] = msg.sender;
        }
    }

    function adminMint(uint16 _amount) public onlyOwner {
        require(_amount <= MARKETING_RESERVE, "Surpass txn limit");
        require(totalSupply() + _amount <= SUPPLY, "SURPASS SUPPLY");
        _mint(msg.sender, _amount);
    }

    ///////////////////////////////////////////////////////////
    //              Other Functions
    // ///////////////////////////////////////////////////////

    function withdraw() external onlyOwner {
        require(address(this).balance > 0, "No funds to withdraw");
        (bool success, ) = withdrawalAddress.call{value: address(this).balance}(
            ""
        );
        require(success, "Withdrawal failed");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_unRevealedUri","type":"string"},{"internalType":"string","name":"_RevealedBaseUri","type":"string"},{"internalType":"address","name":"_withdrawalAddress","type":"address"},{"internalType":"address","name":"_royaltyAddress","type":"address"},{"internalType":"uint96","name":"_royaltyBips","type":"uint96"}],"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":[],"name":"LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MARKETING_RESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint16","name":"tokenId","type":"uint16"}],"name":"checkIfMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"},{"internalType":"uint24","name":"extraData","type":"uint24"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"uint16","name":"_amount","type":"uint16"},{"internalType":"uint16[]","name":"bokiTokenIds","type":"uint16[]"},{"internalType":"uint16","name":"maxMintLimit","type":"uint16"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","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":"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":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"enum BokiCompanions.SaleConfig","name":"","type":"uint8"}],"stateMutability":"view","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_royaltyFeeInBips","type":"uint96"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum BokiCompanions.SaleConfig","name":"_status","type":"uint8"}],"name":"setSaleConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_unRevealedUri","type":"string"}],"name":"setUnRevealedUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052600560a090815264173539b7b760d91b60c052600c90620000269082620003c9565b50600e805461ffff19169055611e61600f55600a6010553480156200004a57600080fd5b50604051620028ed380380620028ed8339810160408190526200006d9162000561565b6040518060400160405280600b81526020016a42434f4d50414e494f4e5360a81b8152506040518060400160405280600f81526020016e426f6b6920436f6d70616e696f6e7360881b8152508160029081620000ca9190620003c9565b506003620000d98282620003c9565b50506000805550620000eb3362000125565b620000f68462000177565b620001018562000193565b6001600160a01b0383166080526200011a8282620001ab565b505050505062000613565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000181620001c1565b600b6200018f8282620003c9565b5050565b6200019d620001c1565b600d6200018f8282620003c9565b620001b5620001c1565b6200018f828262000223565b6008546001600160a01b03163314620002215760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b565b6127106001600160601b0382161115620002935760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b606482015260840162000218565b6001600160a01b038216620002eb5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000218565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200034f57607f821691505b6020821081036200037057634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003c457600081815260208120601f850160051c810160208610156200039f5750805b601f850160051c820191505b81811015620003c057828155600101620003ab565b5050505b505050565b81516001600160401b03811115620003e557620003e562000324565b620003fd81620003f684546200033a565b8462000376565b602080601f8311600181146200043557600084156200041c5750858301515b600019600386901b1c1916600185901b178555620003c0565b600085815260208120601f198616915b82811015620004665788860151825594840194600190910190840162000445565b5085821015620004855787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f830112620004a757600080fd5b81516001600160401b0380821115620004c457620004c462000324565b604051601f8301601f19908116603f01168101908282118183101715620004ef57620004ef62000324565b816040528381526020925086838588010111156200050c57600080fd5b600091505b8382101562000530578582018301518183018401529082019062000511565b600093810190920192909252949350505050565b80516001600160a01b03811681146200055c57600080fd5b919050565b600080600080600060a086880312156200057a57600080fd5b85516001600160401b03808211156200059257600080fd5b620005a089838a0162000495565b96506020880151915080821115620005b757600080fd5b50620005c68882890162000495565b945050620005d76040870162000544565b9250620005e76060870162000544565b60808701519092506001600160601b03811681146200060557600080fd5b809150509295509295909350565b6080516122be6200062f6000396000610b8001526122be6000f3fe60806040526004361061020f5760003560e01c806370a0823111610118578063af8214ef116100a0578063c66828621161006f578063c66828621461061d578063c87b56dd14610632578063d01bda0314610652578063e985e9c514610667578063f2fde38b1461068757600080fd5b8063af8214ef146105be578063b73d6e91146105d4578063b88d4fde146105f4578063c50497ae1461060757600080fd5b806390aa0b0f116100e757806390aa0b0f146104db5780639231ab2a1461050757806395d89b4114610574578063a22cb46514610589578063a475b5dd146105a957600080fd5b806370a0823114610468578063715018a6146104885780638da5cb5b1461049d5780638f2fc60b146104bb57600080fd5b80633ccfd60b1161019b57806354a1147b1161016a57806354a1147b146103c457806355f804b3146103d75780636352211e146103f757806364c4d773146104175780636c0360eb1461045357600080fd5b80633ccfd60b1461036257806340af91ec1461037757806342842e0e1461039757806351830227146103aa57600080fd5b806318160ddd116101e257806318160ddd146102b857806323b872dd146102db578063271ed62c146102ee578063276306ed1461030e5780632a55205a1461032357600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611b29565b6106a7565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106c7565b6040516102409190611b96565b34801561027757600080fd5b5061028b610286366004611ba9565b610759565b6040516001600160a01b039091168152602001610240565b6102b66102b1366004611bde565b61079d565b005b3480156102c457600080fd5b50600154600054035b604051908152602001610240565b6102b66102e9366004611c08565b61083d565b3480156102fa57600080fd5b506102b6610309366004611cd0565b6109d6565b34801561031a57600080fd5b5061025e6109ee565b34801561032f57600080fd5b5061034361033e366004611d19565b610a7c565b604080516001600160a01b039093168352602083019190915201610240565b34801561036e57600080fd5b506102b6610b28565b34801561038357600080fd5b506102b6610392366004611d3b565b610c36565b6102b66103a5366004611c08565b610c67565b3480156103b657600080fd5b50600e546102349060ff1681565b6102b66103d2366004611d6e565b610c87565b3480156103e357600080fd5b506102b66103f2366004611cd0565b610ff6565b34801561040357600080fd5b5061028b610412366004611ba9565b61100a565b34801561042357600080fd5b50610234610432366004611e05565b61ffff166000908152601160205260409020546001600160a01b0316151590565b34801561045f57600080fd5b5061025e611015565b34801561047457600080fd5b506102cd610483366004611e20565b611022565b34801561049457600080fd5b506102b6611071565b3480156104a957600080fd5b506008546001600160a01b031661028b565b3480156104c757600080fd5b506102b66104d6366004611e3b565b611085565b3480156104e757600080fd5b50600e546104fa90610100900460ff1681565b6040516102409190611e94565b34801561051357600080fd5b50610527610522366004611ba9565b611097565b604051610240919081516001600160a01b0316815260208083015167ffffffffffffffff169082015260408083015115159082015260609182015162ffffff169181019190915260800190565b34801561058057600080fd5b5061025e6110c4565b34801561059557600080fd5b506102b66105a4366004611ebc565b6110d3565b3480156105b557600080fd5b506102b661113f565b3480156105ca57600080fd5b506102cd60105481565b3480156105e057600080fd5b506102b66105ef366004611e05565b611156565b6102b6610602366004611eed565b611213565b34801561061357600080fd5b506102cd600f5481565b34801561062957600080fd5b5061025e61125d565b34801561063e57600080fd5b5061025e61064d366004611ba9565b61126a565b34801561065e57600080fd5b506102cd603281565b34801561067357600080fd5b50610234610682366004611f69565b6113d9565b34801561069357600080fd5b506102b66106a2366004611e20565b611407565b60006106b28261147d565b806106c157506106c1826114cb565b92915050565b6060600280546106d690611f9c565b80601f016020809104026020016040519081016040528092919081815260200182805461070290611f9c565b801561074f5780601f106107245761010080835404028352916020019161074f565b820191906000526020600020905b81548152906001019060200180831161073257829003601f168201915b5050505050905090565b600061076482611500565b610781576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107a88261100a565b9050336001600160a01b038216146107e1576107c481336113d9565b6107e1576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061084882611527565b9050836001600160a01b0316816001600160a01b03161461087b5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176108c8576108ab86336113d9565b6108c857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166108ef57604051633a954ecd60e21b815260040160405180910390fd5b80156108fa57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b8416900361098c5760018401600081815260046020526040812054900361098a57600054811461098a5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6109de61158e565b600d6109ea828261201c565b5050565b600d80546109fb90611f9c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2790611f9c565b8015610a745780601f10610a4957610100808354040283529160200191610a74565b820191906000526020600020905b815481529060010190602001808311610a5757829003601f168201915b505050505081565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610af15750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610b10906001600160601b0316876120f2565b610b1a9190612109565b915196919550909350505050565b610b3061158e565b60004711610b7c5760405162461bcd60e51b81526020600482015260146024820152734e6f2066756e647320746f20776974686472617760601b60448201526064015b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03164760405160006040518083038185875af1925050503d8060008114610be9576040519150601f19603f3d011682016040523d82523d6000602084013e610bee565b606091505b5050905080610c335760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b6044820152606401610b73565b50565b610c3e61158e565b600e805482919061ff001916610100836001811115610c5f57610c5f611e7e565b021790555050565b610c8283838360405180602001604052806000815250611213565b505050565b6001600e54610100900460ff166001811115610ca557610ca5611e7e565b14610cdc5760405162461bcd60e51b81526020600482015260076024820152662222a724a2a21760c91b6044820152606401610b73565b8060008161ffff1611610d265760405162461bcd60e51b81526020600482015260126024820152712737ba1030903137b5b4903437b63232b91760711b6044820152606401610b73565b838360005b61ffff8116821115610de4576000601181858561ffff8616818110610d5257610d5261212b565b9050602002016020810190610d679190611e05565b61ffff1681526020810191909152604001600020546001600160a01b031614610dd25760405162461bcd60e51b815260206004820152601a60248201527f546f6b656e20616c7265616479206265656e206d696e7465642e0000000000006044820152606401610b73565b80610ddc81612141565b915050610d2b565b5061ffff8716851015610e2f5760405162461bcd60e51b815260206004820152601360248201527214dd5c9c185cdcc81d1bdad95b881b1a5b5a5d606a1b6044820152606401610b73565b6010548761ffff161115610e795760405162461bcd60e51b815260206004820152601160248201527014dd5c9c185cdcc81d1e1b881b1a5b5a5d607a1b6044820152606401610b73565b8361ffff168761ffff16610eb0336001600160a01b03166000908152600560205260409081902054901c67ffffffffffffffff1690565b610eba9190612162565b1115610f015760405162461bcd60e51b815260206004820152601660248201527513585e081b5a5b9d081b1a5b5a5d081c995858da195960521b6044820152606401610b73565b600f548761ffff16610f166001546000540390565b610f209190612162565b1115610f5f5760405162461bcd60e51b815260206004820152600e60248201526d5355525041535320535550504c5960901b6044820152606401610b73565b610f6d338861ffff166115e8565b60005b8761ffff16811015610fec573360116000898985818110610f9357610f9361212b565b9050602002016020810190610fa89190611e05565b61ffff168152602081019190915260400160002080546001600160a01b0319166001600160a01b039290921691909117905580610fe481612175565b915050610f70565b5050505050505050565b610ffe61158e565b600b6109ea828261201c565b60006106c182611527565b600b80546109fb90611f9c565b60006001600160a01b03821661104b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b61107961158e565b61108360006116e6565b565b61108d61158e565b6109ea8282611738565b6040805160808101825260008082526020820181905291810182905260608101919091526106c182611835565b6060600380546106d690611f9c565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61114761158e565b600e805460ff19166001179055565b61115e61158e565b60328161ffff1611156111a75760405162461bcd60e51b815260206004820152601160248201527014dd5c9c185cdcc81d1e1b881b1a5b5a5d607a1b6044820152606401610b73565b600f548161ffff166111bc6001546000540390565b6111c69190612162565b11156112055760405162461bcd60e51b815260206004820152600e60248201526d5355525041535320535550504c5960901b6044820152606401610b73565b610c33338261ffff166115e8565b61121e84848461083d565b6001600160a01b0383163b156112575761123a848484846118ad565b611257576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600c80546109fb90611f9c565b606061127582611500565b6112d95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b73565b600e5460ff16151560000361137a57600d80546112f590611f9c565b80601f016020809104026020016040519081016040528092919081815260200182805461132190611f9c565b801561136e5780601f106113435761010080835404028352916020019161136e565b820191906000526020600020905b81548152906001019060200180831161135157829003601f168201915b50505050509050919050565b6000611384611999565b905060008151116113a457604051806020016040528060008152506113d2565b806113ae846119a8565b600c6040516020016113c29392919061218e565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61140f61158e565b6001600160a01b0381166114745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b73565b610c33816116e6565b60006301ffc9a760e01b6001600160e01b0319831614806114ae57506380ac58cd60e01b6001600160e01b03198316145b806106c15750506001600160e01b031916635b5e139f60e01b1490565b60006001600160e01b0319821663152a902d60e11b14806106c157506301ffc9a760e01b6001600160e01b03198316146106c1565b60008054821080156106c1575050600090815260046020526040902054600160e01b161590565b6000816000548110156115755760008181526004602052604081205490600160e01b82169003611573575b806000036113d2575060001901600081815260046020526040902054611552565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146110835760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b73565b600080549082900361160d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146116bc57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611684565b50816000036116dd57604051622e076360e81b815260040160405180910390fd5b60005550505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b03821611156117a65760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610b73565b6001600160a01b0382166117fc5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610b73565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b6040805160808101825260008082526020820181905291810182905260608101919091526106c161186583611527565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118e290339089908890889060040161222e565b6020604051808303816000875af192505050801561191d575060408051601f3d908101601f1916820190925261191a9181019061226b565b60015b61197b573d80801561194b576040519150601f19603f3d011682016040523d82523d6000602084013e611950565b606091505b508051600003611973576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546106d690611f9c565b606060006119b583611a3b565b600101905060008167ffffffffffffffff8111156119d5576119d5611c44565b6040519080825280601f01601f1916602001820160405280156119ff576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611a0957509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611a7a5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611aa6576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611ac457662386f26fc10000830492506010015b6305f5e1008310611adc576305f5e100830492506008015b6127108310611af057612710830492506004015b60648310611b02576064830492506002015b600a83106106c15760010192915050565b6001600160e01b031981168114610c3357600080fd5b600060208284031215611b3b57600080fd5b81356113d281611b13565b60005b83811015611b61578181015183820152602001611b49565b50506000910152565b60008151808452611b82816020860160208601611b46565b601f01601f19169290920160200192915050565b6020815260006113d26020830184611b6a565b600060208284031215611bbb57600080fd5b5035919050565b80356001600160a01b0381168114611bd957600080fd5b919050565b60008060408385031215611bf157600080fd5b611bfa83611bc2565b946020939093013593505050565b600080600060608486031215611c1d57600080fd5b611c2684611bc2565b9250611c3460208501611bc2565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c7557611c75611c44565b604051601f8501601f19908116603f01168101908282118183101715611c9d57611c9d611c44565b81604052809350858152868686011115611cb657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ce257600080fd5b813567ffffffffffffffff811115611cf957600080fd5b8201601f81018413611d0a57600080fd5b61199184823560208401611c5a565b60008060408385031215611d2c57600080fd5b50508035926020909101359150565b600060208284031215611d4d57600080fd5b8135600281106113d257600080fd5b803561ffff81168114611bd957600080fd5b60008060008060608587031215611d8457600080fd5b611d8d85611d5c565b9350602085013567ffffffffffffffff80821115611daa57600080fd5b818701915087601f830112611dbe57600080fd5b813581811115611dcd57600080fd5b8860208260051b8501011115611de257600080fd5b602083019550809450505050611dfa60408601611d5c565b905092959194509250565b600060208284031215611e1757600080fd5b6113d282611d5c565b600060208284031215611e3257600080fd5b6113d282611bc2565b60008060408385031215611e4e57600080fd5b611e5783611bc2565b915060208301356001600160601b0381168114611e7357600080fd5b809150509250929050565b634e487b7160e01b600052602160045260246000fd5b6020810160028310611eb657634e487b7160e01b600052602160045260246000fd5b91905290565b60008060408385031215611ecf57600080fd5b611ed883611bc2565b915060208301358015158114611e7357600080fd5b60008060008060808587031215611f0357600080fd5b611f0c85611bc2565b9350611f1a60208601611bc2565b925060408501359150606085013567ffffffffffffffff811115611f3d57600080fd5b8501601f81018713611f4e57600080fd5b611f5d87823560208401611c5a565b91505092959194509250565b60008060408385031215611f7c57600080fd5b611f8583611bc2565b9150611f9360208401611bc2565b90509250929050565b600181811c90821680611fb057607f821691505b602082108103611fd057634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610c8257600081815260208120601f850160051c81016020861015611ffd5750805b601f850160051c820191505b818110156109ce57828155600101612009565b815167ffffffffffffffff81111561203657612036611c44565b61204a816120448454611f9c565b84611fd6565b602080601f83116001811461207f57600084156120675750858301515b600019600386901b1c1916600185901b1785556109ce565b600085815260208120601f198616915b828110156120ae5788860151825594840194600190910190840161208f565b50858210156120cc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106c1576106c16120dc565b60008261212657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600061ffff808316818103612158576121586120dc565b6001019392505050565b808201808211156106c1576106c16120dc565b600060018201612187576121876120dc565b5060010190565b6000845160206121a18285838a01611b46565b8551918401916121b48184848a01611b46565b85549201916000906121c581611f9c565b600182811680156121dd57600181146121f25761221e565b60ff198416875282151583028701945061221e565b896000528560002060005b84811015612216578154898201529083019087016121fd565b505082870194505b50929a9950505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061226190830184611b6a565b9695505050505050565b60006020828403121561227d57600080fd5b81516113d281611b1356fea26469706673582212207542e3a7dde35f5bed05720011cd9b588c79b04e7bc68e6a05696d8075e8b6b364736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000013134e8510d0c39433b9aa6b98723be4b7cd64a200000000000000000000000013134e8510d0c39433b9aa6b98723be4b7cd64a200000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000000b968747470733a2f2f626f6b692e6d7970696e6174612e636c6f75642f697066732f516d596d4c5451455a334a757579566f6f3355796e663472324e7a6231327544707645764c616d56634a6d7171483f5f676c3d312a7930303767302a5f67612a4d7a67794e4455784e7a4d784c6a45324f4449354f5455314e54632e2a5f67615f35524d505847313454452a4d5459354f5463334f5451324d5334344c6a45754d5459354f5463334f5451324e4334314e7934774c6a412e0000000000000000000000000000000000000000000000000000000000000000000000000000b968747470733a2f2f626f6b692e6d7970696e6174612e636c6f75642f697066732f516d596d4c5451455a334a757579566f6f3355796e663472324e7a6231327544707645764c616d56634a6d7171483f5f676c3d312a7930303767302a5f67612a4d7a67794e4455784e7a4d784c6a45324f4449354f5455314e54632e2a5f67615f35524d505847313454452a4d5459354f5463334f5451324d5334344c6a45754d5459354f5463334f5451324e4334314e7934774c6a412e00000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806370a0823111610118578063af8214ef116100a0578063c66828621161006f578063c66828621461061d578063c87b56dd14610632578063d01bda0314610652578063e985e9c514610667578063f2fde38b1461068757600080fd5b8063af8214ef146105be578063b73d6e91146105d4578063b88d4fde146105f4578063c50497ae1461060757600080fd5b806390aa0b0f116100e757806390aa0b0f146104db5780639231ab2a1461050757806395d89b4114610574578063a22cb46514610589578063a475b5dd146105a957600080fd5b806370a0823114610468578063715018a6146104885780638da5cb5b1461049d5780638f2fc60b146104bb57600080fd5b80633ccfd60b1161019b57806354a1147b1161016a57806354a1147b146103c457806355f804b3146103d75780636352211e146103f757806364c4d773146104175780636c0360eb1461045357600080fd5b80633ccfd60b1461036257806340af91ec1461037757806342842e0e1461039757806351830227146103aa57600080fd5b806318160ddd116101e257806318160ddd146102b857806323b872dd146102db578063271ed62c146102ee578063276306ed1461030e5780632a55205a1461032357600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611b29565b6106a7565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106c7565b6040516102409190611b96565b34801561027757600080fd5b5061028b610286366004611ba9565b610759565b6040516001600160a01b039091168152602001610240565b6102b66102b1366004611bde565b61079d565b005b3480156102c457600080fd5b50600154600054035b604051908152602001610240565b6102b66102e9366004611c08565b61083d565b3480156102fa57600080fd5b506102b6610309366004611cd0565b6109d6565b34801561031a57600080fd5b5061025e6109ee565b34801561032f57600080fd5b5061034361033e366004611d19565b610a7c565b604080516001600160a01b039093168352602083019190915201610240565b34801561036e57600080fd5b506102b6610b28565b34801561038357600080fd5b506102b6610392366004611d3b565b610c36565b6102b66103a5366004611c08565b610c67565b3480156103b657600080fd5b50600e546102349060ff1681565b6102b66103d2366004611d6e565b610c87565b3480156103e357600080fd5b506102b66103f2366004611cd0565b610ff6565b34801561040357600080fd5b5061028b610412366004611ba9565b61100a565b34801561042357600080fd5b50610234610432366004611e05565b61ffff166000908152601160205260409020546001600160a01b0316151590565b34801561045f57600080fd5b5061025e611015565b34801561047457600080fd5b506102cd610483366004611e20565b611022565b34801561049457600080fd5b506102b6611071565b3480156104a957600080fd5b506008546001600160a01b031661028b565b3480156104c757600080fd5b506102b66104d6366004611e3b565b611085565b3480156104e757600080fd5b50600e546104fa90610100900460ff1681565b6040516102409190611e94565b34801561051357600080fd5b50610527610522366004611ba9565b611097565b604051610240919081516001600160a01b0316815260208083015167ffffffffffffffff169082015260408083015115159082015260609182015162ffffff169181019190915260800190565b34801561058057600080fd5b5061025e6110c4565b34801561059557600080fd5b506102b66105a4366004611ebc565b6110d3565b3480156105b557600080fd5b506102b661113f565b3480156105ca57600080fd5b506102cd60105481565b3480156105e057600080fd5b506102b66105ef366004611e05565b611156565b6102b6610602366004611eed565b611213565b34801561061357600080fd5b506102cd600f5481565b34801561062957600080fd5b5061025e61125d565b34801561063e57600080fd5b5061025e61064d366004611ba9565b61126a565b34801561065e57600080fd5b506102cd603281565b34801561067357600080fd5b50610234610682366004611f69565b6113d9565b34801561069357600080fd5b506102b66106a2366004611e20565b611407565b60006106b28261147d565b806106c157506106c1826114cb565b92915050565b6060600280546106d690611f9c565b80601f016020809104026020016040519081016040528092919081815260200182805461070290611f9c565b801561074f5780601f106107245761010080835404028352916020019161074f565b820191906000526020600020905b81548152906001019060200180831161073257829003601f168201915b5050505050905090565b600061076482611500565b610781576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107a88261100a565b9050336001600160a01b038216146107e1576107c481336113d9565b6107e1576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061084882611527565b9050836001600160a01b0316816001600160a01b03161461087b5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176108c8576108ab86336113d9565b6108c857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166108ef57604051633a954ecd60e21b815260040160405180910390fd5b80156108fa57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b8416900361098c5760018401600081815260046020526040812054900361098a57600054811461098a5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6109de61158e565b600d6109ea828261201c565b5050565b600d80546109fb90611f9c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2790611f9c565b8015610a745780601f10610a4957610100808354040283529160200191610a74565b820191906000526020600020905b815481529060010190602001808311610a5757829003601f168201915b505050505081565b6000828152600a602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610af15750604080518082019091526009546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610b10906001600160601b0316876120f2565b610b1a9190612109565b915196919550909350505050565b610b3061158e565b60004711610b7c5760405162461bcd60e51b81526020600482015260146024820152734e6f2066756e647320746f20776974686472617760601b60448201526064015b60405180910390fd5b60007f00000000000000000000000013134e8510d0c39433b9aa6b98723be4b7cd64a26001600160a01b03164760405160006040518083038185875af1925050503d8060008114610be9576040519150601f19603f3d011682016040523d82523d6000602084013e610bee565b606091505b5050905080610c335760405162461bcd60e51b815260206004820152601160248201527015da5d1a191c985dd85b0819985a5b1959607a1b6044820152606401610b73565b50565b610c3e61158e565b600e805482919061ff001916610100836001811115610c5f57610c5f611e7e565b021790555050565b610c8283838360405180602001604052806000815250611213565b505050565b6001600e54610100900460ff166001811115610ca557610ca5611e7e565b14610cdc5760405162461bcd60e51b81526020600482015260076024820152662222a724a2a21760c91b6044820152606401610b73565b8060008161ffff1611610d265760405162461bcd60e51b81526020600482015260126024820152712737ba1030903137b5b4903437b63232b91760711b6044820152606401610b73565b838360005b61ffff8116821115610de4576000601181858561ffff8616818110610d5257610d5261212b565b9050602002016020810190610d679190611e05565b61ffff1681526020810191909152604001600020546001600160a01b031614610dd25760405162461bcd60e51b815260206004820152601a60248201527f546f6b656e20616c7265616479206265656e206d696e7465642e0000000000006044820152606401610b73565b80610ddc81612141565b915050610d2b565b5061ffff8716851015610e2f5760405162461bcd60e51b815260206004820152601360248201527214dd5c9c185cdcc81d1bdad95b881b1a5b5a5d606a1b6044820152606401610b73565b6010548761ffff161115610e795760405162461bcd60e51b815260206004820152601160248201527014dd5c9c185cdcc81d1e1b881b1a5b5a5d607a1b6044820152606401610b73565b8361ffff168761ffff16610eb0336001600160a01b03166000908152600560205260409081902054901c67ffffffffffffffff1690565b610eba9190612162565b1115610f015760405162461bcd60e51b815260206004820152601660248201527513585e081b5a5b9d081b1a5b5a5d081c995858da195960521b6044820152606401610b73565b600f548761ffff16610f166001546000540390565b610f209190612162565b1115610f5f5760405162461bcd60e51b815260206004820152600e60248201526d5355525041535320535550504c5960901b6044820152606401610b73565b610f6d338861ffff166115e8565b60005b8761ffff16811015610fec573360116000898985818110610f9357610f9361212b565b9050602002016020810190610fa89190611e05565b61ffff168152602081019190915260400160002080546001600160a01b0319166001600160a01b039290921691909117905580610fe481612175565b915050610f70565b5050505050505050565b610ffe61158e565b600b6109ea828261201c565b60006106c182611527565b600b80546109fb90611f9c565b60006001600160a01b03821661104b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b61107961158e565b61108360006116e6565b565b61108d61158e565b6109ea8282611738565b6040805160808101825260008082526020820181905291810182905260608101919091526106c182611835565b6060600380546106d690611f9c565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61114761158e565b600e805460ff19166001179055565b61115e61158e565b60328161ffff1611156111a75760405162461bcd60e51b815260206004820152601160248201527014dd5c9c185cdcc81d1e1b881b1a5b5a5d607a1b6044820152606401610b73565b600f548161ffff166111bc6001546000540390565b6111c69190612162565b11156112055760405162461bcd60e51b815260206004820152600e60248201526d5355525041535320535550504c5960901b6044820152606401610b73565b610c33338261ffff166115e8565b61121e84848461083d565b6001600160a01b0383163b156112575761123a848484846118ad565b611257576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600c80546109fb90611f9c565b606061127582611500565b6112d95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b73565b600e5460ff16151560000361137a57600d80546112f590611f9c565b80601f016020809104026020016040519081016040528092919081815260200182805461132190611f9c565b801561136e5780601f106113435761010080835404028352916020019161136e565b820191906000526020600020905b81548152906001019060200180831161135157829003601f168201915b50505050509050919050565b6000611384611999565b905060008151116113a457604051806020016040528060008152506113d2565b806113ae846119a8565b600c6040516020016113c29392919061218e565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61140f61158e565b6001600160a01b0381166114745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b73565b610c33816116e6565b60006301ffc9a760e01b6001600160e01b0319831614806114ae57506380ac58cd60e01b6001600160e01b03198316145b806106c15750506001600160e01b031916635b5e139f60e01b1490565b60006001600160e01b0319821663152a902d60e11b14806106c157506301ffc9a760e01b6001600160e01b03198316146106c1565b60008054821080156106c1575050600090815260046020526040902054600160e01b161590565b6000816000548110156115755760008181526004602052604081205490600160e01b82169003611573575b806000036113d2575060001901600081815260046020526040902054611552565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146110835760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b73565b600080549082900361160d5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146116bc57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611684565b50816000036116dd57604051622e076360e81b815260040160405180910390fd5b60005550505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b03821611156117a65760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610b73565b6001600160a01b0382166117fc5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610b73565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600955565b6040805160808101825260008082526020820181905291810182905260608101919091526106c161186583611527565b604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118e290339089908890889060040161222e565b6020604051808303816000875af192505050801561191d575060408051601f3d908101601f1916820190925261191a9181019061226b565b60015b61197b573d80801561194b576040519150601f19603f3d011682016040523d82523d6000602084013e611950565b606091505b508051600003611973576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546106d690611f9c565b606060006119b583611a3b565b600101905060008167ffffffffffffffff8111156119d5576119d5611c44565b6040519080825280601f01601f1916602001820160405280156119ff576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a8504945084611a0957509392505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611a7a5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611aa6576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611ac457662386f26fc10000830492506010015b6305f5e1008310611adc576305f5e100830492506008015b6127108310611af057612710830492506004015b60648310611b02576064830492506002015b600a83106106c15760010192915050565b6001600160e01b031981168114610c3357600080fd5b600060208284031215611b3b57600080fd5b81356113d281611b13565b60005b83811015611b61578181015183820152602001611b49565b50506000910152565b60008151808452611b82816020860160208601611b46565b601f01601f19169290920160200192915050565b6020815260006113d26020830184611b6a565b600060208284031215611bbb57600080fd5b5035919050565b80356001600160a01b0381168114611bd957600080fd5b919050565b60008060408385031215611bf157600080fd5b611bfa83611bc2565b946020939093013593505050565b600080600060608486031215611c1d57600080fd5b611c2684611bc2565b9250611c3460208501611bc2565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c7557611c75611c44565b604051601f8501601f19908116603f01168101908282118183101715611c9d57611c9d611c44565b81604052809350858152868686011115611cb657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611ce257600080fd5b813567ffffffffffffffff811115611cf957600080fd5b8201601f81018413611d0a57600080fd5b61199184823560208401611c5a565b60008060408385031215611d2c57600080fd5b50508035926020909101359150565b600060208284031215611d4d57600080fd5b8135600281106113d257600080fd5b803561ffff81168114611bd957600080fd5b60008060008060608587031215611d8457600080fd5b611d8d85611d5c565b9350602085013567ffffffffffffffff80821115611daa57600080fd5b818701915087601f830112611dbe57600080fd5b813581811115611dcd57600080fd5b8860208260051b8501011115611de257600080fd5b602083019550809450505050611dfa60408601611d5c565b905092959194509250565b600060208284031215611e1757600080fd5b6113d282611d5c565b600060208284031215611e3257600080fd5b6113d282611bc2565b60008060408385031215611e4e57600080fd5b611e5783611bc2565b915060208301356001600160601b0381168114611e7357600080fd5b809150509250929050565b634e487b7160e01b600052602160045260246000fd5b6020810160028310611eb657634e487b7160e01b600052602160045260246000fd5b91905290565b60008060408385031215611ecf57600080fd5b611ed883611bc2565b915060208301358015158114611e7357600080fd5b60008060008060808587031215611f0357600080fd5b611f0c85611bc2565b9350611f1a60208601611bc2565b925060408501359150606085013567ffffffffffffffff811115611f3d57600080fd5b8501601f81018713611f4e57600080fd5b611f5d87823560208401611c5a565b91505092959194509250565b60008060408385031215611f7c57600080fd5b611f8583611bc2565b9150611f9360208401611bc2565b90509250929050565b600181811c90821680611fb057607f821691505b602082108103611fd057634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610c8257600081815260208120601f850160051c81016020861015611ffd5750805b601f850160051c820191505b818110156109ce57828155600101612009565b815167ffffffffffffffff81111561203657612036611c44565b61204a816120448454611f9c565b84611fd6565b602080601f83116001811461207f57600084156120675750858301515b600019600386901b1c1916600185901b1785556109ce565b600085815260208120601f198616915b828110156120ae5788860151825594840194600190910190840161208f565b50858210156120cc5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176106c1576106c16120dc565b60008261212657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600061ffff808316818103612158576121586120dc565b6001019392505050565b808201808211156106c1576106c16120dc565b600060018201612187576121876120dc565b5060010190565b6000845160206121a18285838a01611b46565b8551918401916121b48184848a01611b46565b85549201916000906121c581611f9c565b600182811680156121dd57600181146121f25761221e565b60ff198416875282151583028701945061221e565b896000528560002060005b84811015612216578154898201529083019087016121fd565b505082870194505b50929a9950505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061226190830184611b6a565b9695505050505050565b60006020828403121561227d57600080fd5b81516113d281611b1356fea26469706673582212207542e3a7dde35f5bed05720011cd9b588c79b04e7bc68e6a05696d8075e8b6b364736f6c63430008120033

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

00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000018000000000000000000000000013134e8510d0c39433b9aa6b98723be4b7cd64a200000000000000000000000013134e8510d0c39433b9aa6b98723be4b7cd64a200000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000000b968747470733a2f2f626f6b692e6d7970696e6174612e636c6f75642f697066732f516d596d4c5451455a334a757579566f6f3355796e663472324e7a6231327544707645764c616d56634a6d7171483f5f676c3d312a7930303767302a5f67612a4d7a67794e4455784e7a4d784c6a45324f4449354f5455314e54632e2a5f67615f35524d505847313454452a4d5459354f5463334f5451324d5334344c6a45754d5459354f5463334f5451324e4334314e7934774c6a412e0000000000000000000000000000000000000000000000000000000000000000000000000000b968747470733a2f2f626f6b692e6d7970696e6174612e636c6f75642f697066732f516d596d4c5451455a334a757579566f6f3355796e663472324e7a6231327544707645764c616d56634a6d7171483f5f676c3d312a7930303767302a5f67612a4d7a67794e4455784e7a4d784c6a45324f4449354f5455314e54632e2a5f67615f35524d505847313454452a4d5459354f5463334f5451324d5334344c6a45754d5459354f5463334f5451324e4334314e7934774c6a412e00000000000000

-----Decoded View---------------
Arg [0] : _unRevealedUri (string): https://boki.mypinata.cloud/ipfs/QmYmLTQEZ3JuuyVoo3Uynf4r2Nzb12uDpvEvLamVcJmqqH?_gl=1*y007g0*_ga*MzgyNDUxNzMxLjE2ODI5OTU1NTc.*_ga_5RMPXG14TE*MTY5OTc3OTQ2MS44LjEuMTY5OTc3OTQ2NC41Ny4wLjA.
Arg [1] : _RevealedBaseUri (string): https://boki.mypinata.cloud/ipfs/QmYmLTQEZ3JuuyVoo3Uynf4r2Nzb12uDpvEvLamVcJmqqH?_gl=1*y007g0*_ga*MzgyNDUxNzMxLjE2ODI5OTU1NTc.*_ga_5RMPXG14TE*MTY5OTc3OTQ2MS44LjEuMTY5OTc3OTQ2NC41Ny4wLjA.
Arg [2] : _withdrawalAddress (address): 0x13134e8510d0c39433B9aa6b98723BE4b7Cd64A2
Arg [3] : _royaltyAddress (address): 0x13134e8510d0c39433B9aa6b98723BE4b7Cd64A2
Arg [4] : _royaltyBips (uint96): 500

-----Encoded View---------------
19 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [2] : 00000000000000000000000013134e8510d0c39433b9aa6b98723be4b7cd64a2
Arg [3] : 00000000000000000000000013134e8510d0c39433b9aa6b98723be4b7cd64a2
Arg [4] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [5] : 00000000000000000000000000000000000000000000000000000000000000b9
Arg [6] : 68747470733a2f2f626f6b692e6d7970696e6174612e636c6f75642f69706673
Arg [7] : 2f516d596d4c5451455a334a757579566f6f3355796e663472324e7a62313275
Arg [8] : 44707645764c616d56634a6d7171483f5f676c3d312a7930303767302a5f6761
Arg [9] : 2a4d7a67794e4455784e7a4d784c6a45324f4449354f5455314e54632e2a5f67
Arg [10] : 615f35524d505847313454452a4d5459354f5463334f5451324d5334344c6a45
Arg [11] : 754d5459354f5463334f5451324e4334314e7934774c6a412e00000000000000
Arg [12] : 00000000000000000000000000000000000000000000000000000000000000b9
Arg [13] : 68747470733a2f2f626f6b692e6d7970696e6174612e636c6f75642f69706673
Arg [14] : 2f516d596d4c5451455a334a757579566f6f3355796e663472324e7a62313275
Arg [15] : 44707645764c616d56634a6d7171483f5f676c3d312a7930303767302a5f6761
Arg [16] : 2a4d7a67794e4455784e7a4d784c6a45324f4449354f5455314e54632e2a5f67
Arg [17] : 615f35524d505847313454452a4d5459354f5463334f5451324d5334344c6a45
Arg [18] : 754d5459354f5463334f5451324e4334314e7934774c6a412e00000000000000


Deployed Bytecode Sourcemap

92659:6034:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96814:257;;;;;;;;;;-1:-1:-1;96814:257:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;96814:257:0;;;;;;;;59147:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;65896:234::-;;;;;;;;;;-1:-1:-1;65896:234:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;65896:234:0;1533:203:1;65304:433:0;;;;;;:::i;:::-;;:::i;:::-;;54788:323;;;;;;;;;;-1:-1:-1;55062:12:0;;54849:7;55046:13;:28;54788:323;;;2324:25:1;;;2312:2;2297:18;54788:323:0;2178:177:1;69617:3003:0;;;;;;:::i;:::-;;:::i;96361:122::-;;;;;;;;;;-1:-1:-1;96361:122:0;;;;;:::i;:::-;;:::i;93050:27::-;;;;;;;;;;;;;:::i;8624:476::-;;;;;;;;;;-1:-1:-1;8624:476:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4363:32:1;;;4345:51;;4427:2;4412:18;;4405:34;;;;4318:18;8624:476:0;4171:274:1;98416::0;;;;;;;;;;;;;:::i;96173:101::-;;;;;;;;;;-1:-1:-1;96173:101:0;;;;;:::i;:::-;;:::i;72716:193::-;;;;;;:::i;:::-;;:::i;93084:28::-;;;;;;;;;;-1:-1:-1;93084:28:0;;;;;;;;97246:749;;;;;;:::i;:::-;;:::i;96491:104::-;;;;;;;;;;-1:-1:-1;96491:104:0;;;;;:::i;:::-;;:::i;60603:168::-;;;;;;;;;;-1:-1:-1;60603:168:0;;;;;:::i;:::-;;:::i;95865:134::-;;;;;;;;;;-1:-1:-1;95865:134:0;;;;;:::i;:::-;95951:26;;95927:4;95951:26;;;:17;:26;;;;;;-1:-1:-1;;;;;95951:26:0;:40;;;95865:134;92978:21;;;;;;;;;;;;;:::i;55972:249::-;;;;;;;;;;-1:-1:-1;55972:249:0;;;;;:::i;:::-;;:::i;3002:103::-;;;;;;;;;;;;;:::i;2361:87::-;;;;;;;;;;-1:-1:-1;2434:6:0;;-1:-1:-1;;;;;2434:6:0;2361:87;;96603:174;;;;;;;;;;-1:-1:-1;96603:174:0;;;;;:::i;:::-;;:::i;93119:48::-;;;;;;;;;;-1:-1:-1;93119:48:0;;;;;;;;;;;;;;;;;;:::i;95703:154::-;;;;;;;;;;-1:-1:-1;95703:154:0;;;;;:::i;:::-;;:::i;:::-;;;;;;7117:13:1;;-1:-1:-1;;;;;7113:39:1;7095:58;;7213:4;7201:17;;;7195:24;7221:18;7191:49;7169:20;;;7162:79;7311:4;7299:17;;;7293:24;7286:32;7279:40;7257:20;;;7250:70;7380:4;7368:17;;;7362:24;7388:8;7358:39;7336:20;;;7329:69;;;;7082:3;7067:19;;6884:520;59323:104:0;;;;;;;;;;;;;:::i;66470:259::-;;;;;;;;;;-1:-1:-1;66470:259:0;;;;;:::i;:::-;;:::i;96282:71::-;;;;;;;;;;;;;:::i;93262:25::-;;;;;;;;;;;;;;;;98003:237;;;;;;;;;;-1:-1:-1;98003:237:0;;;;;:::i;:::-;;:::i;73507:407::-;;;;;;:::i;:::-;;:::i;93174:28::-;;;;;;;;;;;;;;;;93006:37;;;;;;;;;;;;;:::i;95005:690::-;;;;;;;;;;-1:-1:-1;95005:690:0;;;;;:::i;:::-;;:::i;93209:46::-;;;;;;;;;;;;93253:2;93209:46;;66886:189;;;;;;;;;;-1:-1:-1;66886:189:0;;;;;:::i;:::-;;:::i;3260:238::-;;;;;;;;;;-1:-1:-1;3260:238:0;;;;;:::i;:::-;;:::i;96814:257::-;96933:4;96970:38;96996:11;96970:25;:38::i;:::-;:93;;;;97025:38;97051:11;97025:25;:38::i;:::-;96950:113;96814:257;-1:-1:-1;;96814:257:0:o;59147:100::-;59201:13;59234:5;59227:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59147:100;:::o;65896:234::-;65988:7;66013:16;66021:7;66013;:16::i;:::-;66008:64;;66038:34;;-1:-1:-1;;;66038:34:0;;;;;;;;;;;66008:64;-1:-1:-1;66092:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;66092:30:0;;65896:234::o;65304:433::-;65418:13;65434:16;65442:7;65434;:16::i;:::-;65418:32;-1:-1:-1;90653:10:0;-1:-1:-1;;;;;65467:28:0;;;65463:175;;65515:44;65532:5;90653:10;66886:189;:::i;65515:44::-;65510:128;;65587:35;;-1:-1:-1;;;65587:35:0;;;;;;;;;;;65510:128;65650:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;65650:35:0;-1:-1:-1;;;;;65650:35:0;;;;;;;;;65701:28;;65650:24;;65701:28;;;;;;;65407:330;65304:433;;:::o;69617:3003::-;69759:27;69789;69808:7;69789:18;:27::i;:::-;69759:57;;69874:4;-1:-1:-1;;;;;69833:45:0;69849:19;-1:-1:-1;;;;;69833:45:0;;69829:99;;69900:28;;-1:-1:-1;;;69900:28:0;;;;;;;;;;;69829:99;69956:27;68725:24;;;:15;:24;;;;;68953:26;;90653:10;68334:30;;;-1:-1:-1;;;;;68027:28:0;;68312:20;;;68309:56;70165:287;;70348:43;70365:4;90653:10;66886:189;:::i;70348:43::-;70343:109;;70417:35;;-1:-1:-1;;;70417:35:0;;;;;;;;;;;70343:109;-1:-1:-1;;;;;70469:16:0;;70465:52;;70494:23;;-1:-1:-1;;;70494:23:0;;;;;;;;;;;70465:52;70666:15;70663:160;;;70806:1;70785:19;70778:30;70663:160;-1:-1:-1;;;;;71203:24:0;;;;;;;:18;:24;;;;;;71201:26;;-1:-1:-1;;71201:26:0;;;71272:22;;;;;;;;;71270:24;;-1:-1:-1;71270:24:0;;;64132:11;64107:23;64103:41;64055:112;-1:-1:-1;;;64055:112:0;71565:26;;;;:17;:26;;;;;:196;;;;-1:-1:-1;;;71881:47:0;;:52;;71877:627;;71986:1;71976:11;;71954:19;72109:30;;;:17;:30;;;;;;:35;;72105:384;;72247:13;;72232:11;:28;72228:242;;72394:30;;;;:17;:30;;;;;:52;;;72228:242;71935:569;71877:627;72551:7;72547:2;-1:-1:-1;;;;;72532:27:0;72541:4;-1:-1:-1;;;;;72532:27:0;;;;;;;;;;;72570:42;69748:2872;;;69617:3003;;;:::o;96361:122::-;2247:13;:11;:13::i;:::-;96445::::1;:30;96461:14:::0;96445:13;:30:::1;:::i;:::-;;96361:122:::0;:::o;93050:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;8624:476::-;8744:7;8802:26;;;:17;:26;;;;;;;;8773:55;;;;;;;;;-1:-1:-1;;;;;8773:55:0;;;;;-1:-1:-1;;;8773:55:0;;;-1:-1:-1;;;;;8773:55:0;;;;;;;;8744:7;;8841:92;;-1:-1:-1;8892:29:0;;;;;;;;;8902:19;8892:29;-1:-1:-1;;;;;8892:29:0;;;;-1:-1:-1;;;8892:29:0;;-1:-1:-1;;;;;8892:29:0;;;;;8841:92;8982:23;;;;8945:21;;9466:5;;8970:35;;-1:-1:-1;;;;;8970:35:0;:9;:35;:::i;:::-;8969:70;;;;:::i;:::-;9060:16;;;;;-1:-1:-1;8624:476:0;;-1:-1:-1;;;;8624:476:0:o;98416:274::-;2247:13;:11;:13::i;:::-;98498:1:::1;98474:21;:25;98466:58;;;::::0;-1:-1:-1;;;98466:58:0;;12148:2:1;98466:58:0::1;::::0;::::1;12130:21:1::0;12187:2;12167:18;;;12160:30;-1:-1:-1;;;12206:18:1;;;12199:50;12266:18;;98466:58:0::1;;;;;;;;;98536:12;98554:17;-1:-1:-1::0;;;;;98554:22:0::1;98584:21;98554:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98535:99;;;98653:7;98645:37;;;::::0;-1:-1:-1;;;98645:37:0;;12707:2:1;98645:37:0::1;::::0;::::1;12689:21:1::0;12746:2;12726:18;;;12719:30;-1:-1:-1;;;12765:18:1;;;12758:47;12822:18;;98645:37:0::1;12505:341:1::0;98645:37:0::1;98455:235;98416:274::o:0;96173:101::-;2247:13;:11;:13::i;:::-;96246:10:::1;:20:::0;;96259:7;;96246:10;-1:-1:-1;;96246:20:0::1;;96259:7:::0;96246:10:::1;:20:::0;::::1;;;;;;:::i;:::-;;;;;;96173:101:::0;:::o;72716:193::-;72862:39;72879:4;72885:2;72889:7;72862:39;;;;;;;;;;;;:16;:39::i;:::-;72716:193;;;:::o;97246:749::-;94668:15;94654:10;;;;;;;;:29;;;;;;;:::i;:::-;;94646:49;;;;-1:-1:-1;;;94646:49:0;;13053:2:1;94646:49:0;;;13035:21:1;13092:1;13072:18;;;13065:29;-1:-1:-1;;;13110:18:1;;;13103:37;13157:18;;94646:49:0;12851:330:1;94646:49:0;97440:12:::1;94561:1;94546:12;:16;;;94538:47;;;::::0;-1:-1:-1;;;94538:47:0;;13388:2:1;94538:47:0::1;::::0;::::1;13370:21:1::0;13427:2;13407:18;;;13400:30;-1:-1:-1;;;13446:18:1;;;13439:48;13504:18;;94538:47:0::1;13186:342:1::0;94538:47:0::1;97477:12:::2;;94258:8;94253:204;94272:19;::::0;::::2;::::0;-1:-1:-1;94253:204:0::2;;;94381:1;94339:17;94381:1:::0;94357:8;;:11:::2;::::0;::::2;::::0;;::::2;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;94339:30;;::::0;;::::2;::::0;::::2;::::0;;;;;;-1:-1:-1;94339:30:0;;-1:-1:-1;;;;;94339:30:0::2;:44;94313:132;;;::::0;-1:-1:-1;;;94313:132:0;;13867:2:1;94313:132:0::2;::::0;::::2;13849:21:1::0;13906:2;13886:18;;;13879:30;13945:28;13925:18;;;13918:56;13991:18;;94313:132:0::2;13665:350:1::0;94313:132:0::2;94293:3:::0;::::2;::::0;::::2;:::i;:::-;;;;94253:204;;;-1:-1:-1::0;97515:30:0::3;::::0;::::3;::::0;-1:-1:-1;97515:30:0::3;97507:62;;;::::0;-1:-1:-1;;;97507:62:0;;14424:2:1;97507:62:0::3;::::0;::::3;14406:21:1::0;14463:2;14443:18;;;14436:30;-1:-1:-1;;;14482:18:1;;;14475:49;14541:18;;97507:62:0::3;14222:343:1::0;97507:62:0::3;97599:5;;97588:7;:16;;;;97580:46;;;::::0;-1:-1:-1;;;97580:46:0;;14772:2:1;97580:46:0::3;::::0;::::3;14754:21:1::0;14811:2;14791:18;;;14784:30;-1:-1:-1;;;14830:18:1;;;14823:47;14887:18;;97580:46:0::3;14570:341:1::0;97580:46:0::3;97698:12;97659:51;;97687:7;97659:35;;:25;97673:10;-1:-1:-1::0;;;;;56405:25:0;56364:7;56405:25;;;:18;:25;;50269:2;56405:25;;;;;:50;;50131:13;56404:95;;56303:204;97659:25:::3;:35;;;;:::i;:::-;:51;;97637:123;;;::::0;-1:-1:-1;;;97637:123:0;;15248:2:1;97637:123:0::3;::::0;::::3;15230:21:1::0;15287:2;15267:18;;;15260:30;-1:-1:-1;;;15306:18:1;;;15299:52;15368:18;;97637:123:0::3;15046:346:1::0;97637:123:0::3;97806:6;;97795:7;97779:23;;:13;55062:12:::0;;54849:7;55046:13;:28;;54788:323;97779:13:::3;:23;;;;:::i;:::-;:33;;97771:60;;;::::0;-1:-1:-1;;;97771:60:0;;15599:2:1;97771:60:0::3;::::0;::::3;15581:21:1::0;15638:2;15618:18;;;15611:30;-1:-1:-1;;;15657:18:1;;;15650:44;15711:18;;97771:60:0::3;15397:338:1::0;97771:60:0::3;97842:26;97848:10;97860:7;97842:26;;:5;:26::i;:::-;97884:6;97879:109;97900:7;97896:11;;:1;:11;97879:109;;;97966:10;97929:17;:34;97947:12;;97960:1;97947:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;97929:34;;::::0;;::::3;::::0;::::3;::::0;;;;;;-1:-1:-1;97929:34:0;:47;;-1:-1:-1;;;;;;97929:47:0::3;-1:-1:-1::0;;;;;97929:47:0;;;::::3;::::0;;;::::3;::::0;;97909:3;::::3;::::0;::::3;:::i;:::-;;;;97879:109;;;;94596:1:::2;;94706::::1;97246:749:::0;;;;:::o;96491:104::-;2247:13;:11;:13::i;:::-;96566:7:::1;:21;96576:11:::0;96566:7;:21:::1;:::i;60603:168::-:0;60691:7;60734:27;60753:7;60734:18;:27::i;92978:21::-;;;;;;;:::i;55972:249::-;56060:7;-1:-1:-1;;;;;56084:19:0;;56080:60;;56112:28;;-1:-1:-1;;;56112:28:0;;;;;;;;;;;56080:60;-1:-1:-1;;;;;;56158:25:0;;;;;:18;:25;;;;;;50131:13;56158:55;;55972:249::o;3002:103::-;2247:13;:11;:13::i;:::-;3067:30:::1;3094:1;3067:18;:30::i;:::-;3002:103::o:0;96603:174::-;2247:13;:11;:13::i;:::-;96721:48:::1;96740:9;96751:17;96721:18;:48::i;95703:154::-:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95827:22:0;95840:8;95827:12;:22::i;59323:104::-;59379:13;59412:7;59405:14;;;;;:::i;66470:259::-;90653:10;66590:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;66590:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;66590:60:0;;;;;;;;;;66666:55;;540:41:1;;;66590:49:0;;90653:10;66666:55;;513:18:1;66666:55:0;;;;;;;66470:259;;:::o;96282:71::-;2247:13;:11;:13::i;:::-;96330:8:::1;:15:::0;;-1:-1:-1;;96330:15:0::1;96341:4;96330:15;::::0;;96282:71::o;98003:237::-;2247:13;:11;:13::i;:::-;93253:2:::1;98074:7;:28;;;;98066:58;;;::::0;-1:-1:-1;;;98066:58:0;;14772:2:1;98066:58:0::1;::::0;::::1;14754:21:1::0;14811:2;14791:18;;;14784:30;-1:-1:-1;;;14830:18:1;;;14823:47;14887:18;;98066:58:0::1;14570:341:1::0;98066:58:0::1;98170:6;;98159:7;98143:23;;:13;55062:12:::0;;54849:7;55046:13;:28;;54788:323;98143:13:::1;:23;;;;:::i;:::-;:33;;98135:60;;;::::0;-1:-1:-1;;;98135:60:0;;15599:2:1;98135:60:0::1;::::0;::::1;15581:21:1::0;15638:2;15618:18;;;15611:30;-1:-1:-1;;;15657:18:1;;;15650:44;15711:18;;98135:60:0::1;15397:338:1::0;98135:60:0::1;98206:26;98212:10;98224:7;98206:26;;:5;:26::i;73507:407::-:0;73682:31;73695:4;73701:2;73705:7;73682:12;:31::i;:::-;-1:-1:-1;;;;;73728:14:0;;;:19;73724:183;;73767:56;73798:4;73804:2;73808:7;73817:5;73767:30;:56::i;:::-;73762:145;;73851:40;;-1:-1:-1;;;73851:40:0;;;;;;;;;;;73762:145;73507:407;;;;:::o;93006:37::-;;;;;;;:::i;95005:690::-;95094:13;95142:16;95150:7;95142;:16::i;:::-;95120:113;;;;-1:-1:-1;;;95120:113:0;;16082:2:1;95120:113:0;;;16064:21:1;16121:2;16101:18;;;16094:30;16160:34;16140:18;;;16133:62;-1:-1:-1;;;16211:18:1;;;16204:45;16266:19;;95120:113:0;15880:411:1;95120:113:0;95250:8;;;;:17;;:8;:17;95246:70;;95291:13;95284:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95005:690;;;:::o;95246:70::-;95328:28;95359:10;:8;:10::i;:::-;95328:41;;95431:1;95406:14;95400:28;:32;:287;;;;;;;;;;;;;;;;;95524:14;95565:18;:7;:16;:18::i;:::-;95610:13;95481:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;95400:287;95380:307;95005:690;-1:-1:-1;;;95005:690:0:o;66886:189::-;-1:-1:-1;;;;;67032:25:0;;;67008:4;67032:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;66886:189::o;3260:238::-;2247:13;:11;:13::i;:::-;-1:-1:-1;;;;;3363:22:0;::::1;3341:110;;;::::0;-1:-1:-1;;;3341:110:0;;17759:2:1;3341:110:0::1;::::0;::::1;17741:21:1::0;17798:2;17778:18;;;17771:30;17837:34;17817:18;;;17810:62;-1:-1:-1;;;17888:18:1;;;17881:36;17934:19;;3341:110:0::1;17557:402:1::0;3341:110:0::1;3462:28;3481:8;3462:18;:28::i;58229:655::-:0;58330:4;-1:-1:-1;;;;;;;;;58654:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;58731:25:0;;;58654:102;:179;;;-1:-1:-1;;;;;;;;58808:25:0;-1:-1:-1;;;58808:25:0;;58229:655::o;8312:257::-;8430:4;-1:-1:-1;;;;;;8467:41:0;;-1:-1:-1;;;8467:41:0;;:94;;-1:-1:-1;;;;;;;;;;6820:40:0;;;8525:36;6695:173;67333:282;67398:4;67488:13;;67478:7;:23;67435:153;;;;-1:-1:-1;;67539:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;67539:44:0;:49;;67333:282::o;61806:1291::-;61889:7;61924;62026:13;;62019:4;:20;62015:1015;;;62064:14;62081:23;;;:17;:23;;;;;;;-1:-1:-1;;;62170:24:0;;:29;;62166:845;;62835:113;62842:6;62852:1;62842:11;62835:113;;-1:-1:-1;;;62913:6:0;62895:25;;;;:17;:25;;;;;;62835:113;;62166:845;62041:989;62015:1015;63058:31;;-1:-1:-1;;;63058:31:0;;;;;;;;;;;2526:132;2434:6;;-1:-1:-1;;;;;2434:6:0;90653:10;2590:23;2582:68;;;;-1:-1:-1;;;2582:68:0;;18166:2:1;2582:68:0;;;18148:21:1;;;18185:18;;;18178:30;18244:34;18224:18;;;18217:62;18296:18;;2582:68:0;17964:356:1;77291:3021:0;77364:20;77387:13;;;77415;;;77411:44;;77437:18;;-1:-1:-1;;;77437:18:0;;;;;;;;;;;77411:44;-1:-1:-1;;;;;77943:22:0;;;;;;:18;:22;;;;50269:2;77943:22;;;:105;;78015:32;77986:62;;77943:105;;;78291:31;;;:17;:31;;;;;-1:-1:-1;64593:15:0;;64567:24;64563:46;64132:11;64107:23;64103:41;64100:52;64055:112;;78291:194;;78547:23;;;;78291:31;;77943:22;;79312:25;77943:22;;79165:335;79826:1;79812:12;79808:20;79766:346;79867:3;79858:7;79855:16;79766:346;;80085:7;80075:8;80072:1;80045:25;80042:1;80039;80034:59;79920:1;79907:15;79766:346;;;79770:77;80145:8;80157:1;80145:13;80141:45;;80167:19;;-1:-1:-1;;;80167:19:0;;;;;;;;;;;80141:45;80203:13;:19;-1:-1:-1;72716:193:0;;;:::o;3658:191::-;3751:6;;;-1:-1:-1;;;;;3768:17:0;;;-1:-1:-1;;;;;;3768:17:0;;;;;;;3801:40;;3751:6;;;3768:17;3751:6;;3801:40;;3732:16;;3801:40;3721:128;3658:191;:::o;9750:394::-;9466:5;-1:-1:-1;;;;;9892:33:0;;;;9870:125;;;;-1:-1:-1;;;9870:125:0;;18527:2:1;9870:125:0;;;18509:21:1;18566:2;18546:18;;;18539:30;18605:34;18585:18;;;18578:62;-1:-1:-1;;;18656:18:1;;;18649:40;18706:19;;9870:125:0;18325:406:1;9870:125:0;-1:-1:-1;;;;;10014:22:0;;10006:60;;;;-1:-1:-1;;;10006:60:0;;18938:2:1;10006:60:0;;;18920:21:1;18977:2;18957:18;;;18950:30;19016:27;18996:18;;;18989:55;19061:18;;10006:60:0;18736:349:1;10006:60:0;10101:35;;;;;;;;;-1:-1:-1;;;;;10101:35:0;;;;;;-1:-1:-1;;;;;10101:35:0;;;;;;;;;;-1:-1:-1;;;10079:57:0;;;;:19;:57;9750:394::o;60960:182::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61087:47:0;61106:27;61125:7;61106:18;:27::i;:::-;-1:-1:-1;;;;;;;;;;;;;63322:41:0;;;;50790:3;63408:33;;;63374:68;;-1:-1:-1;;;63374:68:0;-1:-1:-1;;;63472:24:0;;:29;;-1:-1:-1;;;63453:48:0;;;;51311:3;63541:28;;;;-1:-1:-1;;;63512:58:0;-1:-1:-1;63196:382:0;75998:831;76195:171;;-1:-1:-1;;;76195:171:0;;76161:4;;-1:-1:-1;;;;;76195:45:0;;;;;:171;;90653:10;;76297:4;;76320:7;;76346:5;;76195:171;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;76195:171:0;;;;;;;;-1:-1:-1;;76195:171:0;;;;;;;;;;;;:::i;:::-;;;76178:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76580:6;:13;76597:1;76580:18;76576:235;;76626:40;;-1:-1:-1;;;76626:40:0;;;;;;;;;;;76576:235;76769:6;76763:13;76754:6;76750:2;76746:15;76739:38;76178:644;-1:-1:-1;;;;;;76439:81:0;-1:-1:-1;;;76439:81:0;;-1:-1:-1;76178:644:0;75998:831;;;;;;:::o;94889:108::-;94949:13;94982:7;94975:14;;;;;:::i;26648:716::-;26704:13;26755:14;26772:17;26783:5;26772:10;:17::i;:::-;26792:1;26772:21;26755:38;;26808:20;26842:6;26831:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26831:18:0;-1:-1:-1;26808:41:0;-1:-1:-1;26973:28:0;;;26989:2;26973:28;27030:288;-1:-1:-1;;27062:5:0;-1:-1:-1;;;27199:2:0;27188:14;;27183:30;27062:5;27170:44;27260:2;27251:11;;;-1:-1:-1;27281:21:0;27030:288;27281:21;-1:-1:-1;27339:6:0;26648:716;-1:-1:-1;;;26648:716:0:o;21919:948::-;21972:7;;-1:-1:-1;;;22050:17:0;;22046:106;;-1:-1:-1;;;22088:17:0;;;-1:-1:-1;22134:2:0;22124:12;22046:106;22179:8;22170:5;:17;22166:106;;22217:8;22208:17;;;-1:-1:-1;22254:2:0;22244:12;22166:106;22299:8;22290:5;:17;22286:106;;22337:8;22328:17;;;-1:-1:-1;22374:2:0;22364:12;22286:106;22419:7;22410:5;:16;22406:103;;22456:7;22447:16;;;-1:-1:-1;22492:1:0;22482:11;22406:103;22536:7;22527:5;:16;22523:103;;22573:7;22564:16;;;-1:-1:-1;22609:1:0;22599:11;22523:103;22653:7;22644:5;:16;22640:103;;22690:7;22681:16;;;-1:-1:-1;22726:1:0;22716:11;22640:103;22770:7;22761:5;:16;22757:68;;22808:1;22798:11;22853:6;21919:948;-1:-1:-1;;21919:948: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;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:127::-;2754:10;2749:3;2745:20;2742:1;2735:31;2785:4;2782:1;2775:15;2809:4;2806:1;2799:15;2825:632;2890:5;2920:18;2961:2;2953:6;2950:14;2947:40;;;2967:18;;:::i;:::-;3042:2;3036:9;3010:2;3096:15;;-1:-1:-1;;3092:24:1;;;3118:2;3088:33;3084:42;3072:55;;;3142:18;;;3162:22;;;3139:46;3136:72;;;3188:18;;:::i;:::-;3228:10;3224:2;3217:22;3257:6;3248:15;;3287:6;3279;3272:22;3327:3;3318:6;3313:3;3309:16;3306:25;3303:45;;;3344:1;3341;3334:12;3303:45;3394:6;3389:3;3382:4;3374:6;3370:17;3357:44;3449:1;3442:4;3433:6;3425;3421:19;3417:30;3410:41;;;;2825:632;;;;;:::o;3462:451::-;3531:6;3584:2;3572:9;3563:7;3559:23;3555:32;3552:52;;;3600:1;3597;3590:12;3552:52;3640:9;3627:23;3673:18;3665:6;3662:30;3659:50;;;3705:1;3702;3695:12;3659:50;3728:22;;3781:4;3773:13;;3769:27;-1:-1:-1;3759:55:1;;3810:1;3807;3800:12;3759:55;3833:74;3899:7;3894:2;3881:16;3876:2;3872;3868:11;3833:74;:::i;3918:248::-;3986:6;3994;4047:2;4035:9;4026:7;4022:23;4018:32;4015:52;;;4063:1;4060;4053:12;4015:52;-1:-1:-1;;4086:23:1;;;4156:2;4141:18;;;4128:32;;-1:-1:-1;3918:248:1:o;4450:271::-;4524:6;4577:2;4565:9;4556:7;4552:23;4548:32;4545:52;;;4593:1;4590;4583:12;4545:52;4632:9;4619:23;4671:1;4664:5;4661:12;4651:40;;4687:1;4684;4677:12;4726:159;4793:20;;4853:6;4842:18;;4832:29;;4822:57;;4875:1;4872;4865:12;4890:758;4991:6;4999;5007;5015;5068:2;5056:9;5047:7;5043:23;5039:32;5036:52;;;5084:1;5081;5074:12;5036:52;5107:28;5125:9;5107:28;:::i;:::-;5097:38;;5186:2;5175:9;5171:18;5158:32;5209:18;5250:2;5242:6;5239:14;5236:34;;;5266:1;5263;5256:12;5236:34;5304:6;5293:9;5289:22;5279:32;;5349:7;5342:4;5338:2;5334:13;5330:27;5320:55;;5371:1;5368;5361:12;5320:55;5411:2;5398:16;5437:2;5429:6;5426:14;5423:34;;;5453:1;5450;5443:12;5423:34;5506:7;5501:2;5491:6;5488:1;5484:14;5480:2;5476:23;5472:32;5469:45;5466:65;;;5527:1;5524;5517:12;5466:65;5558:2;5554;5550:11;5540:21;;5580:6;5570:16;;;;;5605:37;5638:2;5627:9;5623:18;5605:37;:::i;:::-;5595:47;;4890:758;;;;;;;:::o;5653:184::-;5711:6;5764:2;5752:9;5743:7;5739:23;5735:32;5732:52;;;5780:1;5777;5770:12;5732:52;5803:28;5821:9;5803:28;:::i;5842:186::-;5901:6;5954:2;5942:9;5933:7;5929:23;5925:32;5922:52;;;5970:1;5967;5960:12;5922:52;5993:29;6012:9;5993:29;:::i;6033:366::-;6100:6;6108;6161:2;6149:9;6140:7;6136:23;6132:32;6129:52;;;6177:1;6174;6167:12;6129:52;6200:29;6219:9;6200:29;:::i;:::-;6190:39;;6279:2;6268:9;6264:18;6251:32;-1:-1:-1;;;;;6316:5:1;6312:38;6305:5;6302:49;6292:77;;6365:1;6362;6355:12;6292:77;6388:5;6378:15;;;6033:366;;;;;:::o;6404:127::-;6465:10;6460:3;6456:20;6453:1;6446:31;6496:4;6493:1;6486:15;6520:4;6517:1;6510:15;6536:343;6683:2;6668:18;;6716:1;6705:13;;6695:144;;6761:10;6756:3;6752:20;6749:1;6742:31;6796:4;6793:1;6786:15;6824:4;6821:1;6814:15;6695:144;6848:25;;;6536:343;:::o;7409:347::-;7474:6;7482;7535:2;7523:9;7514:7;7510:23;7506:32;7503:52;;;7551:1;7548;7541:12;7503:52;7574:29;7593:9;7574:29;:::i;:::-;7564:39;;7653:2;7642:9;7638:18;7625:32;7700:5;7693:13;7686:21;7679:5;7676:32;7666:60;;7722:1;7719;7712:12;7761:667;7856:6;7864;7872;7880;7933:3;7921:9;7912:7;7908:23;7904:33;7901:53;;;7950:1;7947;7940:12;7901:53;7973:29;7992:9;7973:29;:::i;:::-;7963:39;;8021:38;8055:2;8044:9;8040:18;8021:38;:::i;:::-;8011:48;;8106:2;8095:9;8091:18;8078:32;8068:42;;8161:2;8150:9;8146:18;8133:32;8188:18;8180:6;8177:30;8174:50;;;8220:1;8217;8210:12;8174:50;8243:22;;8296:4;8288:13;;8284:27;-1:-1:-1;8274:55:1;;8325:1;8322;8315:12;8274:55;8348:74;8414:7;8409:2;8396:16;8391:2;8387;8383:11;8348:74;:::i;:::-;8338:84;;;7761:667;;;;;;;:::o;8433:260::-;8501:6;8509;8562:2;8550:9;8541:7;8537:23;8533:32;8530:52;;;8578:1;8575;8568:12;8530:52;8601:29;8620:9;8601:29;:::i;:::-;8591:39;;8649:38;8683:2;8672:9;8668:18;8649:38;:::i;:::-;8639:48;;8433:260;;;;;:::o;8698:380::-;8777:1;8773:12;;;;8820;;;8841:61;;8895:4;8887:6;8883:17;8873:27;;8841:61;8948:2;8940:6;8937:14;8917:18;8914:38;8911:161;;8994:10;8989:3;8985:20;8982:1;8975:31;9029:4;9026:1;9019:15;9057:4;9054:1;9047:15;8911:161;;8698:380;;;:::o;9209:545::-;9311:2;9306:3;9303:11;9300:448;;;9347:1;9372:5;9368:2;9361:17;9417:4;9413:2;9403:19;9487:2;9475:10;9471:19;9468:1;9464:27;9458:4;9454:38;9523:4;9511:10;9508:20;9505:47;;;-1:-1:-1;9546:4:1;9505:47;9601:2;9596:3;9592:12;9589:1;9585:20;9579:4;9575:31;9565:41;;9656:82;9674:2;9667:5;9664:13;9656:82;;;9719:17;;;9700:1;9689:13;9656:82;;9930:1352;10056:3;10050:10;10083:18;10075:6;10072:30;10069:56;;;10105:18;;:::i;:::-;10134:97;10224:6;10184:38;10216:4;10210:11;10184:38;:::i;:::-;10178:4;10134:97;:::i;:::-;10286:4;;10350:2;10339:14;;10367:1;10362:663;;;;11069:1;11086:6;11083:89;;;-1:-1:-1;11138:19:1;;;11132:26;11083:89;-1:-1:-1;;9887:1:1;9883:11;;;9879:24;9875:29;9865:40;9911:1;9907:11;;;9862:57;11185:81;;10332:944;;10362:663;9156:1;9149:14;;;9193:4;9180:18;;-1:-1:-1;;10398:20:1;;;10516:236;10530:7;10527:1;10524:14;10516:236;;;10619:19;;;10613:26;10598:42;;10711:27;;;;10679:1;10667:14;;;;10546:19;;10516:236;;;10520:3;10780:6;10771:7;10768:19;10765:201;;;10841:19;;;10835:26;-1:-1:-1;;10924:1:1;10920:14;;;10936:3;10916:24;10912:37;10908:42;10893:58;10878:74;;10765:201;-1:-1:-1;;;;;11012:1:1;10996:14;;;10992:22;10979:36;;-1:-1:-1;9930:1352:1:o;11287:127::-;11348:10;11343:3;11339:20;11336:1;11329:31;11379:4;11376:1;11369:15;11403:4;11400:1;11393:15;11419:168;11492:9;;;11523;;11540:15;;;11534:22;;11520:37;11510:71;;11561:18;;:::i;11724:217::-;11764:1;11790;11780:132;;11834:10;11829:3;11825:20;11822:1;11815:31;11869:4;11866:1;11859:15;11897:4;11894:1;11887:15;11780:132;-1:-1:-1;11926:9:1;;11724:217::o;13533:127::-;13594:10;13589:3;13585:20;13582:1;13575:31;13625:4;13622:1;13615:15;13649:4;13646:1;13639:15;14020:197;14058:3;14086:6;14127:2;14120:5;14116:14;14154:2;14145:7;14142:15;14139:41;;14160:18;;:::i;:::-;14209:1;14196:15;;14020:197;-1:-1:-1;;;14020:197:1:o;14916:125::-;14981:9;;;15002:10;;;14999:36;;;15015:18;;:::i;15740:135::-;15779:3;15800:17;;;15797:43;;15820:18;;:::i;:::-;-1:-1:-1;15867:1:1;15856:13;;15740:135::o;16296:1256::-;16520:3;16558:6;16552:13;16584:4;16597:64;16654:6;16649:3;16644:2;16636:6;16632:15;16597:64;:::i;:::-;16724:13;;16683:16;;;;16746:68;16724:13;16683:16;16781:15;;;16746:68;:::i;:::-;16903:13;;16836:20;;;16876:1;;16941:36;16903:13;16941:36;:::i;:::-;16996:1;17013:18;;;17040:141;;;;17195:1;17190:337;;;;17006:521;;17040:141;-1:-1:-1;;17075:24:1;;17061:39;;17152:16;;17145:24;17131:39;;17120:51;;;-1:-1:-1;17040:141:1;;17190:337;17221:6;17218:1;17211:17;17269:2;17266:1;17256:16;17294:1;17308:169;17322:8;17319:1;17316:15;17308:169;;;17404:14;;17389:13;;;17382:37;17447:16;;;;17339:10;;17308:169;;;17312:3;;17508:8;17501:5;17497:20;17490:27;;17006:521;-1:-1:-1;17543:3:1;;16296:1256;-1:-1:-1;;;;;;;;;;16296:1256:1:o;19090:489::-;-1:-1:-1;;;;;19359:15:1;;;19341:34;;19411:15;;19406:2;19391:18;;19384:43;19458:2;19443:18;;19436:34;;;19506:3;19501:2;19486:18;;19479:31;;;19284:4;;19527:46;;19553:19;;19545:6;19527:46;:::i;:::-;19519:54;19090:489;-1:-1:-1;;;;;;19090:489:1:o;19584:249::-;19653:6;19706:2;19694:9;19685:7;19681:23;19677:32;19674:52;;;19722:1;19719;19712:12;19674:52;19754:9;19748:16;19773:30;19797:5;19773:30;:::i

Swarm Source

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