ETH Price: $3,394.29 (-0.69%)
Gas: 19 Gwei

Token

0XLBOTS (0XLBOTS)
 

Overview

Max Total Supply

0 0XLBOTS

Holders

481

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 0XLBOTS
0x170D2eA8f593FCAbDB353DBf92fC9E4a417D688C
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:
botsNfts

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

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

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the 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);
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

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


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

    /**
     * @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, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @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.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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 (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _ownerOf(tokenId) != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId, 1);

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}

// File: 0XL/nftContract.sol


pragma solidity ^0.8.0;



contract botsNfts is ERC721, Ownable {
    using Strings for uint256;

    string private _baseTokenURI = "ipfs://QmRFNv4BpHC8QHukqkqdE6KCSfPDAxjjfzYdtsDe8WZqyx/";

    uint256 public constant MAX_SUPPLY = 1000;
    uint256 public constant BATCH_SIZE = 100;
    uint256 public currentBatchMax;
    uint256 public tokenCounter;
    uint256 public mintPrice;
    address private withdrawalAddress = 0x11caCa3c1C5f492c5A4FF0648f0741310830e27f;

    mapping(address => bool) private receivers;

    constructor() ERC721("0XLBOTS", "0XLBOTS") {
        tokenCounter = 502;
        mintPrice = 0.1 ether;
        currentBatchMax = 502;
        receivers[withdrawalAddress] = true;
    }

    modifier onlyReceiver() {
        require(receivers[msg.sender], "Caller is not a receiver");
        _;
    }

    function mint(uint256 amount) public payable {
        require(amount > 0, "Amount must be greater than 0");
        require(tokenCounter + amount <= MAX_SUPPLY, "Exceeds maximum supply");
        require(tokenCounter + amount <= currentBatchMax, "Exceeds current batch limit");
        require(msg.value >= mintPrice * amount, "Not enough Ether sent");

        for (uint256 i = 0; i < amount; i++) {
            _safeMint(msg.sender, tokenCounter);
            tokenCounter++;
        }
    }

    function releaseNextBatch() public onlyOwner {
        require(currentBatchMax + BATCH_SIZE <= MAX_SUPPLY, "Exceeds maximum supply");
        currentBatchMax += BATCH_SIZE;
    }

    function batchMint(address[] memory recipients, uint256[][] memory tokenIds) public onlyOwner {
        require(recipients.length == tokenIds.length, "Recipients and tokenIds length mismatch");

        for (uint256 i = 0; i < recipients.length; i++) {
            for (uint256 j = 0; j < tokenIds[i].length; j++) {
                require(!_exists(tokenIds[i][j]), "Token already minted");
                _safeMint(recipients[i], tokenIds[i][j]);
            }
        }
    }

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

    function setMintPrice(uint256 newPrice) public onlyOwner {
        mintPrice = newPrice;
    }

    function setWithdrawalAddress(address newAddress) public onlyOwner {
        require(newAddress != address(0), "Invalid address");
        withdrawalAddress = newAddress;
    }

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

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

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

    function withdraw() public onlyReceiver {
        require(withdrawalAddress != address(0), "Withdrawal address not set");
        payable(withdrawalAddress).transfer(address(this).balance);
    }

    function addReceiver(address _receiver) public onlyOwner {
        require(_receiver != address(0), "Invalid address");
        receivers[_receiver] = true;
    }

    function removeReceiver(address _receiver) public onlyOwner {
        require(receivers[_receiver], "Not a receiver");
        receivers[_receiver] = false;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"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":"BATCH_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"}],"name":"addReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[][]","name":"tokenIds","type":"uint256[][]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentBatchMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"releaseNextBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"}],"name":"removeReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"nonpayable","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setWithdrawalAddress","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":[],"name":"tokenCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e060405260366080818152906200248e60a039600790620000229082620001ff565b50600b80546001600160a01b0319167311caca3c1c5f492c5a4ff0648f0741310830e27f1790553480156200005657600080fd5b5060408051808201825260078082526630584c424f545360c81b6020808401829052845180860190955291845290830152906000620000968382620001ff565b506001620000a58282620001ff565b505050620000c2620000bc6200010460201b60201c565b62000108565b6101f6600981905567016345785d8a0000600a55600855600b546001600160a01b03166000908152600c60205260409020805460ff19166001179055620002cb565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200018557607f821691505b602082108103620001a657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001fa57600081815260208120601f850160051c81016020861015620001d55750805b601f850160051c820191505b81811015620001f657828155600101620001e1565b5050505b505050565b81516001600160401b038111156200021b576200021b6200015a565b62000233816200022c845462000170565b84620001ac565b602080601f8311600181146200026b5760008415620002525750858301515b600019600386901b1c1916600185901b178555620001f6565b600085815260208120601f198616915b828110156200029c578886015182559484019460019091019084016200027b565b5085821015620002bb5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6121b380620002db6000396000f3fe6080604052600436106101cd5760003560e01c80636817c76c116100f7578063a22cb46511610095578063e68d65d211610064578063e68d65d2146104ed578063e985e9c514610503578063f2fde38b14610523578063f4a0a5281461054357600080fd5b8063a22cb46514610477578063b88d4fde14610497578063c87b56dd146104b7578063d082e381146104d757600080fd5b8063715018a6116100d1578063715018a61461041c5780638da5cb5b1461043157806395d89b411461044f578063a0712d681461046457600080fd5b80636817c76c146103c657806369d83ed1146103dc57806370a08231146103fc57600080fd5b806332cb6b0c1161016f57806349faa4d41161013e57806349faa4d41461035157806355f804b3146103665780636352211e146103865780636552d8b4146103a657600080fd5b806332cb6b0c146102d8578063393c8003146102fc5780633ccfd60b1461031c57806342842e0e1461033157600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806311f153fe1461028357806321b8092e1461029857806323b872dd146102b857600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611986565b610563565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105b5565b6040516101fe91906119f3565b34801561023557600080fd5b50610249610244366004611a06565b610647565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611a3b565b61066e565b005b34801561028f57600080fd5b50610281610788565b3480156102a457600080fd5b506102816102b3366004611a65565b610803565b3480156102c457600080fd5b506102816102d3366004611a80565b610875565b3480156102e457600080fd5b506102ee6103e881565b6040519081526020016101fe565b34801561030857600080fd5b50610281610317366004611c0d565b6108a6565b34801561032857600080fd5b50610281610a51565b34801561033d57600080fd5b5061028161034c366004611a80565b610b44565b34801561035d57600080fd5b506102ee606481565b34801561037257600080fd5b50610281610381366004611d25565b610b5f565b34801561039257600080fd5b506102496103a1366004611a06565b610b77565b3480156103b257600080fd5b506102816103c1366004611a65565b610bd7565b3480156103d257600080fd5b506102ee600a5481565b3480156103e857600080fd5b506102816103f7366004611a65565b610c59565b34801561040857600080fd5b506102ee610417366004611a65565b610ccd565b34801561042857600080fd5b50610281610d53565b34801561043d57600080fd5b506006546001600160a01b0316610249565b34801561045b57600080fd5b5061021c610d67565b610281610472366004611a06565b610d76565b34801561048357600080fd5b50610281610492366004611d6e565b610f11565b3480156104a357600080fd5b506102816104b2366004611daa565b610f1c565b3480156104c357600080fd5b5061021c6104d2366004611a06565b610f54565b3480156104e357600080fd5b506102ee60095481565b3480156104f957600080fd5b506102ee60085481565b34801561050f57600080fd5b506101f261051e366004611e26565b61102f565b34801561052f57600080fd5b5061028161053e366004611a65565b61105d565b34801561054f57600080fd5b5061028161055e366004611a06565b6110d3565b60006001600160e01b031982166380ac58cd60e01b148061059457506001600160e01b03198216635b5e139f60e01b145b806105af57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105c490611e59565b80601f01602080910402602001604051908101604052809291908181526020018280546105f090611e59565b801561063d5780601f106106125761010080835404028352916020019161063d565b820191906000526020600020905b81548152906001019060200180831161062057829003601f168201915b5050505050905090565b6000610652826110e0565b506000908152600460205260409020546001600160a01b031690565b600061067982610b77565b9050806001600160a01b0316836001600160a01b0316036106eb5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806107075750610707813361102f565b6107795760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016106e2565b610783838361113f565b505050565b6107906111ad565b6103e860646008546107a29190611ea9565b11156107e95760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b60448201526064016106e2565b6064600860008282546107fc9190611ea9565b9091555050565b61080b6111ad565b6001600160a01b0381166108535760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064016106e2565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b61087f3382611207565b61089b5760405162461bcd60e51b81526004016106e290611ebc565b610783838383611266565b6108ae6111ad565b805182511461090f5760405162461bcd60e51b815260206004820152602760248201527f526563697069656e747320616e6420746f6b656e496473206c656e677468206d6044820152660d2e6dac2e8c6d60cb1b60648201526084016106e2565b60005b82518110156107835760005b82828151811061093057610930611f09565b602002602001015151811015610a3e5761099383838151811061095557610955611f09565b6020026020010151828151811061096e5761096e611f09565b60200260200101516000908152600260205260409020546001600160a01b0316151590565b156109d75760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88185b1c9958591e481b5a5b9d195960621b60448201526064016106e2565b610a2c8483815181106109ec576109ec611f09565b6020026020010151848481518110610a0657610a06611f09565b60200260200101518381518110610a1f57610a1f611f09565b60200260200101516113ca565b80610a3681611f1f565b91505061091e565b5080610a4981611f1f565b915050610912565b336000908152600c602052604090205460ff16610ab05760405162461bcd60e51b815260206004820152601860248201527f43616c6c6572206973206e6f742061207265636569766572000000000000000060448201526064016106e2565b600b546001600160a01b0316610b085760405162461bcd60e51b815260206004820152601a60248201527f5769746864726177616c2061646472657373206e6f742073657400000000000060448201526064016106e2565b600b546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610b41573d6000803e3d6000fd5b50565b61078383838360405180602001604052806000815250610f1c565b610b676111ad565b6007610b738282611f86565b5050565b6000818152600260205260408120546001600160a01b0316806105af5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016106e2565b610bdf6111ad565b6001600160a01b0381166000908152600c602052604090205460ff16610c385760405162461bcd60e51b815260206004820152600e60248201526d2737ba1030903932b1b2b4bb32b960911b60448201526064016106e2565b6001600160a01b03166000908152600c60205260409020805460ff19169055565b610c616111ad565b6001600160a01b038116610ca95760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064016106e2565b6001600160a01b03166000908152600c60205260409020805460ff19166001179055565b60006001600160a01b038216610d375760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016106e2565b506001600160a01b031660009081526003602052604090205490565b610d5b6111ad565b610d6560006113e4565b565b6060600180546105c490611e59565b60008111610dc65760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e203000000060448201526064016106e2565b6103e881600954610dd79190611ea9565b1115610e1e5760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b60448201526064016106e2565b60085481600954610e2f9190611ea9565b1115610e7d5760405162461bcd60e51b815260206004820152601b60248201527f457863656564732063757272656e74206261746368206c696d6974000000000060448201526064016106e2565b80600a54610e8b9190612046565b341015610ed25760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08115d1a195c881cd95b9d605a1b60448201526064016106e2565b60005b81811015610b7357610ee9336009546113ca565b60098054906000610ef983611f1f565b91905055508080610f0990611f1f565b915050610ed5565b610b73338383611436565b610f263383611207565b610f425760405162461bcd60e51b81526004016106e290611ebc565b610f4e84848484611504565b50505050565b6000818152600260205260409020546060906001600160a01b0316610fd35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106e2565b6000610fdd611537565b90506000815111610ffd5760405180602001604052806000815250611028565b8061100784611546565b60405160200161101892919061205d565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6110656111ad565b6001600160a01b0381166110ca5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e2565b610b41816113e4565b6110db6111ad565b600a55565b6000818152600260205260409020546001600160a01b0316610b415760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016106e2565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061117482610b77565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6006546001600160a01b03163314610d655760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106e2565b60008061121383610b77565b9050806001600160a01b0316846001600160a01b0316148061123a575061123a818561102f565b8061125e5750836001600160a01b031661125384610647565b6001600160a01b0316145b949350505050565b826001600160a01b031661127982610b77565b6001600160a01b03161461129f5760405162461bcd60e51b81526004016106e29061208c565b6001600160a01b0382166113015760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106e2565b826001600160a01b031661131482610b77565b6001600160a01b03161461133a5760405162461bcd60e51b81526004016106e29061208c565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610b738282604051806020016040528060008152506115d9565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036114975760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106e2565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61150f848484611266565b61151b8484848461160c565b610f4e5760405162461bcd60e51b81526004016106e2906120d1565b6060600780546105c490611e59565b606060006115538361170d565b600101905060008167ffffffffffffffff81111561157357611573611abc565b6040519080825280601f01601f19166020018201604052801561159d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846115a757509392505050565b6115e383836117e5565b6115f0600084848461160c565b6107835760405162461bcd60e51b81526004016106e2906120d1565b60006001600160a01b0384163b1561170257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611650903390899088908890600401612123565b6020604051808303816000875af192505050801561168b575060408051601f3d908101601f1916820190925261168891810190612160565b60015b6116e8573d8080156116b9576040519150601f19603f3d011682016040523d82523d6000602084013e6116be565b606091505b5080516000036116e05760405162461bcd60e51b81526004016106e2906120d1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061125e565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061174c5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611778576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061179657662386f26fc10000830492506010015b6305f5e10083106117ae576305f5e100830492506008015b61271083106117c257612710830492506004015b606483106117d4576064830492506002015b600a83106105af5760010192915050565b6001600160a01b03821661183b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106e2565b6000818152600260205260409020546001600160a01b0316156118a05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106e2565b6000818152600260205260409020546001600160a01b0316156119055760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106e2565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610b4157600080fd5b60006020828403121561199857600080fd5b813561102881611970565b60005b838110156119be5781810151838201526020016119a6565b50506000910152565b600081518084526119df8160208601602086016119a3565b601f01601f19169290920160200192915050565b60208152600061102860208301846119c7565b600060208284031215611a1857600080fd5b5035919050565b80356001600160a01b0381168114611a3657600080fd5b919050565b60008060408385031215611a4e57600080fd5b611a5783611a1f565b946020939093013593505050565b600060208284031215611a7757600080fd5b61102882611a1f565b600080600060608486031215611a9557600080fd5b611a9e84611a1f565b9250611aac60208501611a1f565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611afb57611afb611abc565b604052919050565b600067ffffffffffffffff821115611b1d57611b1d611abc565b5060051b60200190565b600082601f830112611b3857600080fd5b81356020611b4d611b4883611b03565b611ad2565b828152600592831b8501820192828201919087851115611b6c57600080fd5b8387015b85811015611c0057803567ffffffffffffffff811115611b905760008081fd5b8801603f81018a13611ba25760008081fd5b858101356040611bb4611b4883611b03565b82815291851b8301810191888101908d841115611bd15760008081fd5b938201935b83851015611bef57843582529389019390890190611bd6565b885250505093850193508401611b70565b5090979650505050505050565b60008060408385031215611c2057600080fd5b823567ffffffffffffffff80821115611c3857600080fd5b818501915085601f830112611c4c57600080fd5b81356020611c5c611b4883611b03565b82815260059290921b84018101918181019089841115611c7b57600080fd5b948201945b83861015611ca057611c9186611a1f565b82529482019490820190611c80565b96505086013592505080821115611cb657600080fd5b50611cc385828601611b27565b9150509250929050565b600067ffffffffffffffff831115611ce757611ce7611abc565b611cfa601f8401601f1916602001611ad2565b9050828152838383011115611d0e57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611d3757600080fd5b813567ffffffffffffffff811115611d4e57600080fd5b8201601f81018413611d5f57600080fd5b61125e84823560208401611ccd565b60008060408385031215611d8157600080fd5b611d8a83611a1f565b915060208301358015158114611d9f57600080fd5b809150509250929050565b60008060008060808587031215611dc057600080fd5b611dc985611a1f565b9350611dd760208601611a1f565b925060408501359150606085013567ffffffffffffffff811115611dfa57600080fd5b8501601f81018713611e0b57600080fd5b611e1a87823560208401611ccd565b91505092959194509250565b60008060408385031215611e3957600080fd5b611e4283611a1f565b9150611e5060208401611a1f565b90509250929050565b600181811c90821680611e6d57607f821691505b602082108103611e8d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156105af576105af611e93565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060018201611f3157611f31611e93565b5060010190565b601f82111561078357600081815260208120601f850160051c81016020861015611f5f5750805b601f850160051c820191505b81811015611f7e57828155600101611f6b565b505050505050565b815167ffffffffffffffff811115611fa057611fa0611abc565b611fb481611fae8454611e59565b84611f38565b602080601f831160018114611fe95760008415611fd15750858301515b600019600386901b1c1916600185901b178555611f7e565b600085815260208120601f198616915b8281101561201857888601518255948401946001909101908401611ff9565b50858210156120365787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176105af576105af611e93565b6000835161206f8184602088016119a3565b8351908301906120838183602088016119a3565b01949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612156908301846119c7565b9695505050505050565b60006020828403121561217257600080fd5b81516110288161197056fea2646970667358221220dd749e470872f09e9562d25a014dee6bd740407d84540d97124c7627aa6b479264736f6c63430008110033697066733a2f2f516d52464e763442704843385148756b716b716445364b435366504441786a6a667a59647473446538575a7179782f

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80636817c76c116100f7578063a22cb46511610095578063e68d65d211610064578063e68d65d2146104ed578063e985e9c514610503578063f2fde38b14610523578063f4a0a5281461054357600080fd5b8063a22cb46514610477578063b88d4fde14610497578063c87b56dd146104b7578063d082e381146104d757600080fd5b8063715018a6116100d1578063715018a61461041c5780638da5cb5b1461043157806395d89b411461044f578063a0712d681461046457600080fd5b80636817c76c146103c657806369d83ed1146103dc57806370a08231146103fc57600080fd5b806332cb6b0c1161016f57806349faa4d41161013e57806349faa4d41461035157806355f804b3146103665780636352211e146103865780636552d8b4146103a657600080fd5b806332cb6b0c146102d8578063393c8003146102fc5780633ccfd60b1461031c57806342842e0e1461033157600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806311f153fe1461028357806321b8092e1461029857806323b872dd146102b857600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611986565b610563565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105b5565b6040516101fe91906119f3565b34801561023557600080fd5b50610249610244366004611a06565b610647565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611a3b565b61066e565b005b34801561028f57600080fd5b50610281610788565b3480156102a457600080fd5b506102816102b3366004611a65565b610803565b3480156102c457600080fd5b506102816102d3366004611a80565b610875565b3480156102e457600080fd5b506102ee6103e881565b6040519081526020016101fe565b34801561030857600080fd5b50610281610317366004611c0d565b6108a6565b34801561032857600080fd5b50610281610a51565b34801561033d57600080fd5b5061028161034c366004611a80565b610b44565b34801561035d57600080fd5b506102ee606481565b34801561037257600080fd5b50610281610381366004611d25565b610b5f565b34801561039257600080fd5b506102496103a1366004611a06565b610b77565b3480156103b257600080fd5b506102816103c1366004611a65565b610bd7565b3480156103d257600080fd5b506102ee600a5481565b3480156103e857600080fd5b506102816103f7366004611a65565b610c59565b34801561040857600080fd5b506102ee610417366004611a65565b610ccd565b34801561042857600080fd5b50610281610d53565b34801561043d57600080fd5b506006546001600160a01b0316610249565b34801561045b57600080fd5b5061021c610d67565b610281610472366004611a06565b610d76565b34801561048357600080fd5b50610281610492366004611d6e565b610f11565b3480156104a357600080fd5b506102816104b2366004611daa565b610f1c565b3480156104c357600080fd5b5061021c6104d2366004611a06565b610f54565b3480156104e357600080fd5b506102ee60095481565b3480156104f957600080fd5b506102ee60085481565b34801561050f57600080fd5b506101f261051e366004611e26565b61102f565b34801561052f57600080fd5b5061028161053e366004611a65565b61105d565b34801561054f57600080fd5b5061028161055e366004611a06565b6110d3565b60006001600160e01b031982166380ac58cd60e01b148061059457506001600160e01b03198216635b5e139f60e01b145b806105af57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546105c490611e59565b80601f01602080910402602001604051908101604052809291908181526020018280546105f090611e59565b801561063d5780601f106106125761010080835404028352916020019161063d565b820191906000526020600020905b81548152906001019060200180831161062057829003601f168201915b5050505050905090565b6000610652826110e0565b506000908152600460205260409020546001600160a01b031690565b600061067982610b77565b9050806001600160a01b0316836001600160a01b0316036106eb5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806107075750610707813361102f565b6107795760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016106e2565b610783838361113f565b505050565b6107906111ad565b6103e860646008546107a29190611ea9565b11156107e95760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b60448201526064016106e2565b6064600860008282546107fc9190611ea9565b9091555050565b61080b6111ad565b6001600160a01b0381166108535760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064016106e2565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b61087f3382611207565b61089b5760405162461bcd60e51b81526004016106e290611ebc565b610783838383611266565b6108ae6111ad565b805182511461090f5760405162461bcd60e51b815260206004820152602760248201527f526563697069656e747320616e6420746f6b656e496473206c656e677468206d6044820152660d2e6dac2e8c6d60cb1b60648201526084016106e2565b60005b82518110156107835760005b82828151811061093057610930611f09565b602002602001015151811015610a3e5761099383838151811061095557610955611f09565b6020026020010151828151811061096e5761096e611f09565b60200260200101516000908152600260205260409020546001600160a01b0316151590565b156109d75760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88185b1c9958591e481b5a5b9d195960621b60448201526064016106e2565b610a2c8483815181106109ec576109ec611f09565b6020026020010151848481518110610a0657610a06611f09565b60200260200101518381518110610a1f57610a1f611f09565b60200260200101516113ca565b80610a3681611f1f565b91505061091e565b5080610a4981611f1f565b915050610912565b336000908152600c602052604090205460ff16610ab05760405162461bcd60e51b815260206004820152601860248201527f43616c6c6572206973206e6f742061207265636569766572000000000000000060448201526064016106e2565b600b546001600160a01b0316610b085760405162461bcd60e51b815260206004820152601a60248201527f5769746864726177616c2061646472657373206e6f742073657400000000000060448201526064016106e2565b600b546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610b41573d6000803e3d6000fd5b50565b61078383838360405180602001604052806000815250610f1c565b610b676111ad565b6007610b738282611f86565b5050565b6000818152600260205260408120546001600160a01b0316806105af5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016106e2565b610bdf6111ad565b6001600160a01b0381166000908152600c602052604090205460ff16610c385760405162461bcd60e51b815260206004820152600e60248201526d2737ba1030903932b1b2b4bb32b960911b60448201526064016106e2565b6001600160a01b03166000908152600c60205260409020805460ff19169055565b610c616111ad565b6001600160a01b038116610ca95760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b60448201526064016106e2565b6001600160a01b03166000908152600c60205260409020805460ff19166001179055565b60006001600160a01b038216610d375760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016106e2565b506001600160a01b031660009081526003602052604090205490565b610d5b6111ad565b610d6560006113e4565b565b6060600180546105c490611e59565b60008111610dc65760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e203000000060448201526064016106e2565b6103e881600954610dd79190611ea9565b1115610e1e5760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b60448201526064016106e2565b60085481600954610e2f9190611ea9565b1115610e7d5760405162461bcd60e51b815260206004820152601b60248201527f457863656564732063757272656e74206261746368206c696d6974000000000060448201526064016106e2565b80600a54610e8b9190612046565b341015610ed25760405162461bcd60e51b8152602060048201526015602482015274139bdd08195b9bdd59da08115d1a195c881cd95b9d605a1b60448201526064016106e2565b60005b81811015610b7357610ee9336009546113ca565b60098054906000610ef983611f1f565b91905055508080610f0990611f1f565b915050610ed5565b610b73338383611436565b610f263383611207565b610f425760405162461bcd60e51b81526004016106e290611ebc565b610f4e84848484611504565b50505050565b6000818152600260205260409020546060906001600160a01b0316610fd35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106e2565b6000610fdd611537565b90506000815111610ffd5760405180602001604052806000815250611028565b8061100784611546565b60405160200161101892919061205d565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6110656111ad565b6001600160a01b0381166110ca5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e2565b610b41816113e4565b6110db6111ad565b600a55565b6000818152600260205260409020546001600160a01b0316610b415760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016106e2565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061117482610b77565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6006546001600160a01b03163314610d655760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106e2565b60008061121383610b77565b9050806001600160a01b0316846001600160a01b0316148061123a575061123a818561102f565b8061125e5750836001600160a01b031661125384610647565b6001600160a01b0316145b949350505050565b826001600160a01b031661127982610b77565b6001600160a01b03161461129f5760405162461bcd60e51b81526004016106e29061208c565b6001600160a01b0382166113015760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106e2565b826001600160a01b031661131482610b77565b6001600160a01b03161461133a5760405162461bcd60e51b81526004016106e29061208c565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610b738282604051806020016040528060008152506115d9565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036114975760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106e2565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61150f848484611266565b61151b8484848461160c565b610f4e5760405162461bcd60e51b81526004016106e2906120d1565b6060600780546105c490611e59565b606060006115538361170d565b600101905060008167ffffffffffffffff81111561157357611573611abc565b6040519080825280601f01601f19166020018201604052801561159d576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846115a757509392505050565b6115e383836117e5565b6115f0600084848461160c565b6107835760405162461bcd60e51b81526004016106e2906120d1565b60006001600160a01b0384163b1561170257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611650903390899088908890600401612123565b6020604051808303816000875af192505050801561168b575060408051601f3d908101601f1916820190925261168891810190612160565b60015b6116e8573d8080156116b9576040519150601f19603f3d011682016040523d82523d6000602084013e6116be565b606091505b5080516000036116e05760405162461bcd60e51b81526004016106e2906120d1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061125e565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b831061174c5772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611778576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061179657662386f26fc10000830492506010015b6305f5e10083106117ae576305f5e100830492506008015b61271083106117c257612710830492506004015b606483106117d4576064830492506002015b600a83106105af5760010192915050565b6001600160a01b03821661183b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106e2565b6000818152600260205260409020546001600160a01b0316156118a05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106e2565b6000818152600260205260409020546001600160a01b0316156119055760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106e2565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610b4157600080fd5b60006020828403121561199857600080fd5b813561102881611970565b60005b838110156119be5781810151838201526020016119a6565b50506000910152565b600081518084526119df8160208601602086016119a3565b601f01601f19169290920160200192915050565b60208152600061102860208301846119c7565b600060208284031215611a1857600080fd5b5035919050565b80356001600160a01b0381168114611a3657600080fd5b919050565b60008060408385031215611a4e57600080fd5b611a5783611a1f565b946020939093013593505050565b600060208284031215611a7757600080fd5b61102882611a1f565b600080600060608486031215611a9557600080fd5b611a9e84611a1f565b9250611aac60208501611a1f565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611afb57611afb611abc565b604052919050565b600067ffffffffffffffff821115611b1d57611b1d611abc565b5060051b60200190565b600082601f830112611b3857600080fd5b81356020611b4d611b4883611b03565b611ad2565b828152600592831b8501820192828201919087851115611b6c57600080fd5b8387015b85811015611c0057803567ffffffffffffffff811115611b905760008081fd5b8801603f81018a13611ba25760008081fd5b858101356040611bb4611b4883611b03565b82815291851b8301810191888101908d841115611bd15760008081fd5b938201935b83851015611bef57843582529389019390890190611bd6565b885250505093850193508401611b70565b5090979650505050505050565b60008060408385031215611c2057600080fd5b823567ffffffffffffffff80821115611c3857600080fd5b818501915085601f830112611c4c57600080fd5b81356020611c5c611b4883611b03565b82815260059290921b84018101918181019089841115611c7b57600080fd5b948201945b83861015611ca057611c9186611a1f565b82529482019490820190611c80565b96505086013592505080821115611cb657600080fd5b50611cc385828601611b27565b9150509250929050565b600067ffffffffffffffff831115611ce757611ce7611abc565b611cfa601f8401601f1916602001611ad2565b9050828152838383011115611d0e57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611d3757600080fd5b813567ffffffffffffffff811115611d4e57600080fd5b8201601f81018413611d5f57600080fd5b61125e84823560208401611ccd565b60008060408385031215611d8157600080fd5b611d8a83611a1f565b915060208301358015158114611d9f57600080fd5b809150509250929050565b60008060008060808587031215611dc057600080fd5b611dc985611a1f565b9350611dd760208601611a1f565b925060408501359150606085013567ffffffffffffffff811115611dfa57600080fd5b8501601f81018713611e0b57600080fd5b611e1a87823560208401611ccd565b91505092959194509250565b60008060408385031215611e3957600080fd5b611e4283611a1f565b9150611e5060208401611a1f565b90509250929050565b600181811c90821680611e6d57607f821691505b602082108103611e8d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156105af576105af611e93565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b600060018201611f3157611f31611e93565b5060010190565b601f82111561078357600081815260208120601f850160051c81016020861015611f5f5750805b601f850160051c820191505b81811015611f7e57828155600101611f6b565b505050505050565b815167ffffffffffffffff811115611fa057611fa0611abc565b611fb481611fae8454611e59565b84611f38565b602080601f831160018114611fe95760008415611fd15750858301515b600019600386901b1c1916600185901b178555611f7e565b600085815260208120601f198616915b8281101561201857888601518255948401946001909101908401611ff9565b50858210156120365787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176105af576105af611e93565b6000835161206f8184602088016119a3565b8351908301906120838183602088016119a3565b01949350505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612156908301846119c7565b9695505050505050565b60006020828403121561217257600080fd5b81516110288161197056fea2646970667358221220dd749e470872f09e9562d25a014dee6bd740407d84540d97124c7627aa6b479264736f6c63430008110033

Deployed Bytecode Sourcemap

56671:3462:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40753:305;;;;;;;;;;-1:-1:-1;40753:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;40753:305:0;;;;;;;;41681:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;43193:171::-;;;;;;;;;;-1:-1:-1;43193:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;43193:171:0;1533:203:1;42711:416:0;;;;;;;;;;-1:-1:-1;42711:416:0;;;;;:::i;:::-;;:::i;:::-;;58011:181;;;;;;;;;;;;;:::i;58909:179::-;;;;;;;;;;-1:-1:-1;58909:179:0;;;;;:::i;:::-;;:::i;43893:301::-;;;;;;;;;;-1:-1:-1;43893:301:0;;;;;:::i;:::-;;:::i;56845:41::-;;;;;;;;;;;;56882:4;56845:41;;;;;2848:25:1;;;2836:2;2821:18;56845:41:0;2702:177:1;58200:487:0;;;;;;;;;;-1:-1:-1;58200:487:0;;;;;:::i;:::-;;:::i;59586:198::-;;;;;;;;;;;;;:::i;44265:151::-;;;;;;;;;;-1:-1:-1;44265:151:0;;;;;:::i;:::-;;:::i;56893:40::-;;;;;;;;;;;;56930:3;56893:40;;58695:102;;;;;;;;;;-1:-1:-1;58695:102:0;;;;;:::i;:::-;;:::i;41391:223::-;;;;;;;;;;-1:-1:-1;41391:223:0;;;;;:::i;:::-;;:::i;59965:165::-;;;;;;;;;;-1:-1:-1;59965:165:0;;;;;:::i;:::-;;:::i;57011:24::-;;;;;;;;;;;;;;;;59792:165;;;;;;;;;;-1:-1:-1;59792:165:0;;;;;:::i;:::-;;:::i;41122:207::-;;;;;;;;;;-1:-1:-1;41122:207:0;;;;;:::i;:::-;;:::i;20091:103::-;;;;;;;;;;;;;:::i;19450:87::-;;;;;;;;;;-1:-1:-1;19523:6:0;;-1:-1:-1;;;;;19523:6:0;19450:87;;41850:104;;;;;;;;;;;;;:::i;57499:504::-;;;;;;:::i;:::-;;:::i;43436:155::-;;;;;;;;;;-1:-1:-1;43436:155:0;;;;;:::i;:::-;;:::i;44487:279::-;;;;;;;;;;-1:-1:-1;44487:279:0;;;;;:::i;:::-;;:::i;59218:360::-;;;;;;;;;;-1:-1:-1;59218:360:0;;;;;:::i;:::-;;:::i;56977:27::-;;;;;;;;;;;;;;;;56940:30;;;;;;;;;;;;;;;;43662:164;;;;;;;;;;-1:-1:-1;43662:164:0;;;;;:::i;:::-;;:::i;20349:201::-;;;;;;;;;;-1:-1:-1;20349:201:0;;;;;:::i;:::-;;:::i;58805:96::-;;;;;;;;;;-1:-1:-1;58805:96:0;;;;;:::i;:::-;;:::i;40753:305::-;40855:4;-1:-1:-1;;;;;;40892:40:0;;-1:-1:-1;;;40892:40:0;;:105;;-1:-1:-1;;;;;;;40949:48:0;;-1:-1:-1;;;40949:48:0;40892:105;:158;;;-1:-1:-1;;;;;;;;;;33486:40:0;;;41014:36;40872:178;40753:305;-1:-1:-1;;40753:305:0:o;41681:100::-;41735:13;41768:5;41761:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41681:100;:::o;43193:171::-;43269:7;43289:23;43304:7;43289:14;:23::i;:::-;-1:-1:-1;43332:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;43332:24:0;;43193:171::o;42711:416::-;42792:13;42808:23;42823:7;42808:14;:23::i;:::-;42792:39;;42856:5;-1:-1:-1;;;;;42850:11:0;:2;-1:-1:-1;;;;;42850:11:0;;42842:57;;;;-1:-1:-1;;;42842:57:0;;9124:2:1;42842:57:0;;;9106:21:1;9163:2;9143:18;;;9136:30;9202:34;9182:18;;;9175:62;-1:-1:-1;;;9253:18:1;;;9246:31;9294:19;;42842:57:0;;;;;;;;;18081:10;-1:-1:-1;;;;;42934:21:0;;;;:62;;-1:-1:-1;42959:37:0;42976:5;18081:10;43662:164;:::i;42959:37::-;42912:173;;;;-1:-1:-1;;;42912:173:0;;9526:2:1;42912:173:0;;;9508:21:1;9565:2;9545:18;;;9538:30;9604:34;9584:18;;;9577:62;9675:31;9655:18;;;9648:59;9724:19;;42912:173:0;9324:425:1;42912:173:0;43098:21;43107:2;43111:7;43098:8;:21::i;:::-;42781:346;42711:416;;:::o;58011:181::-;19336:13;:11;:13::i;:::-;56882:4:::1;56930:3;58075:15;;:28;;;;:::i;:::-;:42;;58067:77;;;::::0;-1:-1:-1;;;58067:77:0;;10218:2:1;58067:77:0::1;::::0;::::1;10200:21:1::0;10257:2;10237:18;;;10230:30;-1:-1:-1;;;10276:18:1;;;10269:52;10338:18;;58067:77:0::1;10016:346:1::0;58067:77:0::1;56930:3;58155:15;;:29;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;58011:181:0:o;58909:179::-;19336:13;:11;:13::i;:::-;-1:-1:-1;;;;;58995:24:0;::::1;58987:52;;;::::0;-1:-1:-1;;;58987:52:0;;10569:2:1;58987:52:0::1;::::0;::::1;10551:21:1::0;10608:2;10588:18;;;10581:30;-1:-1:-1;;;10627:18:1;;;10620:45;10682:18;;58987:52:0::1;10367:339:1::0;58987:52:0::1;59050:17;:30:::0;;-1:-1:-1;;;;;;59050:30:0::1;-1:-1:-1::0;;;;;59050:30:0;;;::::1;::::0;;;::::1;::::0;;58909:179::o;43893:301::-;44054:41;18081:10;44087:7;44054:18;:41::i;:::-;44046:99;;;;-1:-1:-1;;;44046:99:0;;;;;;;:::i;:::-;44158:28;44168:4;44174:2;44178:7;44158:9;:28::i;58200:487::-;19336:13;:11;:13::i;:::-;58334:8:::1;:15;58313:10;:17;:36;58305:88;;;::::0;-1:-1:-1;;;58305:88:0;;11327:2:1;58305:88:0::1;::::0;::::1;11309:21:1::0;11366:2;11346:18;;;11339:30;11405:34;11385:18;;;11378:62;-1:-1:-1;;;11456:18:1;;;11449:37;11503:19;;58305:88:0::1;11125:403:1::0;58305:88:0::1;58411:9;58406:274;58430:10;:17;58426:1;:21;58406:274;;;58474:9;58469:200;58493:8;58502:1;58493:11;;;;;;;;:::i;:::-;;;;;;;:18;58489:1;:22;58469:200;;;58546:23;58554:8;58563:1;58554:11;;;;;;;;:::i;:::-;;;;;;;58566:1;58554:14;;;;;;;;:::i;:::-;;;;;;;46526:4:::0;46124:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46124:16:0;46550:31;;;46461:128;58546:23:::1;58545:24;58537:57;;;::::0;-1:-1:-1;;;58537:57:0;;11867:2:1;58537:57:0::1;::::0;::::1;11849:21:1::0;11906:2;11886:18;;;11879:30;-1:-1:-1;;;11925:18:1;;;11918:50;11985:18;;58537:57:0::1;11665:344:1::0;58537:57:0::1;58613:40;58623:10;58634:1;58623:13;;;;;;;;:::i;:::-;;;;;;;58638:8;58647:1;58638:11;;;;;;;;:::i;:::-;;;;;;;58650:1;58638:14;;;;;;;;:::i;:::-;;;;;;;58613:9;:40::i;:::-;58513:3:::0;::::1;::::0;::::1;:::i;:::-;;;;58469:200;;;-1:-1:-1::0;58449:3:0;::::1;::::0;::::1;:::i;:::-;;;;58406:274;;59586:198:::0;57431:10;57421:21;;;;:9;:21;;;;;;;;57413:58;;;;-1:-1:-1;;;57413:58:0;;12356:2:1;57413:58:0;;;12338:21:1;12395:2;12375:18;;;12368:30;12434:26;12414:18;;;12407:54;12478:18;;57413:58:0;12154:348:1;57413:58:0;59645:17:::1;::::0;-1:-1:-1;;;;;59645:17:0::1;59637:70;;;::::0;-1:-1:-1;;;59637:70:0;;12709:2:1;59637:70:0::1;::::0;::::1;12691:21:1::0;12748:2;12728:18;;;12721:30;12787:28;12767:18;;;12760:56;12833:18;;59637:70:0::1;12507:350:1::0;59637:70:0::1;59726:17;::::0;59718:58:::1;::::0;-1:-1:-1;;;;;59726:17:0;;::::1;::::0;59754:21:::1;59718:58:::0;::::1;;;::::0;59726:17:::1;59718:58:::0;59726:17;59718:58;59754:21;59726:17;59718:58;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;59586:198::o:0;44265:151::-;44369:39;44386:4;44392:2;44396:7;44369:39;;;;;;;;;;;;:16;:39::i;58695:102::-;19336:13;:11;:13::i;:::-;58766::::1;:23;58782:7:::0;58766:13;:23:::1;:::i;:::-;;58695:102:::0;:::o;41391:223::-;41463:7;46124:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46124:16:0;;41527:56;;;;-1:-1:-1;;;41527:56:0;;15268:2:1;41527:56:0;;;15250:21:1;15307:2;15287:18;;;15280:30;-1:-1:-1;;;15326:18:1;;;15319:54;15390:18;;41527:56:0;15066:348:1;59965:165:0;19336:13;:11;:13::i;:::-;-1:-1:-1;;;;;60044:20:0;::::1;;::::0;;;:9:::1;:20;::::0;;;;;::::1;;60036:47;;;::::0;-1:-1:-1;;;60036:47:0;;15621:2:1;60036:47:0::1;::::0;::::1;15603:21:1::0;15660:2;15640:18;;;15633:30;-1:-1:-1;;;15679:18:1;;;15672:44;15733:18;;60036:47:0::1;15419:338:1::0;60036:47:0::1;-1:-1:-1::0;;;;;60094:20:0::1;60117:5;60094:20:::0;;;:9:::1;:20;::::0;;;;:28;;-1:-1:-1;;60094:28:0::1;::::0;;59965:165::o;59792:::-;19336:13;:11;:13::i;:::-;-1:-1:-1;;;;;59868:23:0;::::1;59860:51;;;::::0;-1:-1:-1;;;59860:51:0;;10569:2:1;59860:51:0::1;::::0;::::1;10551:21:1::0;10608:2;10588:18;;;10581:30;-1:-1:-1;;;10627:18:1;;;10620:45;10682:18;;59860:51:0::1;10367:339:1::0;59860:51:0::1;-1:-1:-1::0;;;;;59922:20:0::1;;::::0;;;:9:::1;:20;::::0;;;;:27;;-1:-1:-1;;59922:27:0::1;59945:4;59922:27;::::0;;59792:165::o;41122:207::-;41194:7;-1:-1:-1;;;;;41222:19:0;;41214:73;;;;-1:-1:-1;;;41214:73:0;;15964:2:1;41214:73:0;;;15946:21:1;16003:2;15983:18;;;15976:30;16042:34;16022:18;;;16015:62;-1:-1:-1;;;16093:18:1;;;16086:39;16142:19;;41214:73:0;15762:405:1;41214:73:0;-1:-1:-1;;;;;;41305:16:0;;;;;:9;:16;;;;;;;41122:207::o;20091:103::-;19336:13;:11;:13::i;:::-;20156:30:::1;20183:1;20156:18;:30::i;:::-;20091:103::o:0;41850:104::-;41906:13;41939:7;41932:14;;;;;:::i;57499:504::-;57572:1;57563:6;:10;57555:52;;;;-1:-1:-1;;;57555:52:0;;16374:2:1;57555:52:0;;;16356:21:1;16413:2;16393:18;;;16386:30;16452:31;16432:18;;;16425:59;16501:18;;57555:52:0;16172:353:1;57555:52:0;56882:4;57641:6;57626:12;;:21;;;;:::i;:::-;:35;;57618:70;;;;-1:-1:-1;;;57618:70:0;;10218:2:1;57618:70:0;;;10200:21:1;10257:2;10237:18;;;10230:30;-1:-1:-1;;;10276:18:1;;;10269:52;10338:18;;57618:70:0;10016:346:1;57618:70:0;57732:15;;57722:6;57707:12;;:21;;;;:::i;:::-;:40;;57699:80;;;;-1:-1:-1;;;57699:80:0;;16732:2:1;57699:80:0;;;16714:21:1;16771:2;16751:18;;;16744:30;16810:29;16790:18;;;16783:57;16857:18;;57699:80:0;16530:351:1;57699:80:0;57823:6;57811:9;;:18;;;;:::i;:::-;57798:9;:31;;57790:65;;;;-1:-1:-1;;;57790:65:0;;17261:2:1;57790:65:0;;;17243:21:1;17300:2;17280:18;;;17273:30;-1:-1:-1;;;17319:18:1;;;17312:51;17380:18;;57790:65:0;17059:345:1;57790:65:0;57873:9;57868:128;57892:6;57888:1;:10;57868:128;;;57920:35;57930:10;57942:12;;57920:9;:35::i;:::-;57970:12;:14;;;:12;:14;;;:::i;:::-;;;;;;57900:3;;;;;:::i;:::-;;;;57868:128;;43436:155;43531:52;18081:10;43564:8;43574;43531:18;:52::i;44487:279::-;44618:41;18081:10;44651:7;44618:18;:41::i;:::-;44610:99;;;;-1:-1:-1;;;44610:99:0;;;;;;;:::i;:::-;44720:38;44734:4;44740:2;44744:7;44753:4;44720:13;:38::i;:::-;44487:279;;;;:::o;59218:360::-;46526:4;46124:16;;;:7;:16;;;;;;59291:13;;-1:-1:-1;;;;;46124:16:0;59317:76;;;;-1:-1:-1;;;59317:76:0;;17611:2:1;59317:76:0;;;17593:21:1;17650:2;17630:18;;;17623:30;17689:34;17669:18;;;17662:62;-1:-1:-1;;;17740:18:1;;;17733:45;17795:19;;59317:76:0;17409:411:1;59317:76:0;59406:21;59430:10;:8;:10::i;:::-;59406:34;;59482:1;59464:7;59458:21;:25;:112;;;;;;;;;;;;;;;;;59523:7;59532:18;:7;:16;:18::i;:::-;59506:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59458:112;59451:119;59218:360;-1:-1:-1;;;59218:360:0:o;43662:164::-;-1:-1:-1;;;;;43783:25:0;;;43759:4;43783:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43662:164::o;20349:201::-;19336:13;:11;:13::i;:::-;-1:-1:-1;;;;;20438:22:0;::::1;20430:73;;;::::0;-1:-1:-1;;;20430:73:0;;18528:2:1;20430:73:0::1;::::0;::::1;18510:21:1::0;18567:2;18547:18;;;18540:30;18606:34;18586:18;;;18579:62;-1:-1:-1;;;18657:18:1;;;18650:36;18703:19;;20430:73:0::1;18326:402:1::0;20430:73:0::1;20514:28;20533:8;20514:18;:28::i;58805:96::-:0;19336:13;:11;:13::i;:::-;58873:9:::1;:20:::0;58805:96::o;52756:135::-;46526:4;46124:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46124:16:0;52830:53;;;;-1:-1:-1;;;52830:53:0;;15268:2:1;52830:53:0;;;15250:21:1;15307:2;15287:18;;;15280:30;-1:-1:-1;;;15326:18:1;;;15319:54;15390:18;;52830:53:0;15066:348:1;52069:174:0;52144:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;52144:29:0;-1:-1:-1;;;;;52144:29:0;;;;;;;;:24;;52198:23;52144:24;52198:14;:23::i;:::-;-1:-1:-1;;;;;52189:46:0;;;;;;;;;;;52069:174;;:::o;19615:132::-;19523:6;;-1:-1:-1;;;;;19523:6:0;18081:10;19679:23;19671:68;;;;-1:-1:-1;;;19671:68:0;;18935:2:1;19671:68:0;;;18917:21:1;;;18954:18;;;18947:30;19013:34;18993:18;;;18986:62;19065:18;;19671:68:0;18733:356:1;46756:264:0;46849:4;46866:13;46882:23;46897:7;46882:14;:23::i;:::-;46866:39;;46935:5;-1:-1:-1;;;;;46924:16:0;:7;-1:-1:-1;;;;;46924:16:0;;:52;;;;46944:32;46961:5;46968:7;46944:16;:32::i;:::-;46924:87;;;;47004:7;-1:-1:-1;;;;;46980:31:0;:20;46992:7;46980:11;:20::i;:::-;-1:-1:-1;;;;;46980:31:0;;46924:87;46916:96;46756:264;-1:-1:-1;;;;46756:264:0:o;50721:1229::-;50846:4;-1:-1:-1;;;;;50819:31:0;:23;50834:7;50819:14;:23::i;:::-;-1:-1:-1;;;;;50819:31:0;;50811:81;;;;-1:-1:-1;;;50811:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50911:16:0;;50903:65;;;;-1:-1:-1;;;50903:65:0;;19702:2:1;50903:65:0;;;19684:21:1;19741:2;19721:18;;;19714:30;19780:34;19760:18;;;19753:62;-1:-1:-1;;;19831:18:1;;;19824:34;19875:19;;50903:65:0;19500:400:1;50903:65:0;51153:4;-1:-1:-1;;;;;51126:31:0;:23;51141:7;51126:14;:23::i;:::-;-1:-1:-1;;;;;51126:31:0;;51118:81;;;;-1:-1:-1;;;51118:81:0;;;;;;;:::i;:::-;51271:24;;;;:15;:24;;;;;;;;51264:31;;-1:-1:-1;;;;;;51264:31:0;;;;;;-1:-1:-1;;;;;51747:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;51747:20:0;;;51782:13;;;;;;;;;:18;;51264:31;51782:18;;;51822:16;;;:7;:16;;;;;;:21;;;;;;;;;;51861:27;;51287:7;;51861:27;;;42781:346;42711:416;;:::o;47362:110::-;47438:26;47448:2;47452:7;47438:26;;;;;;;;;;;;:9;:26::i;20710:191::-;20803:6;;;-1:-1:-1;;;;;20820:17:0;;;-1:-1:-1;;;;;;20820:17:0;;;;;;;20853:40;;20803:6;;;20820:17;20803:6;;20853:40;;20784:16;;20853:40;20773:128;20710:191;:::o;52386:281::-;52507:8;-1:-1:-1;;;;;52498:17:0;:5;-1:-1:-1;;;;;52498:17:0;;52490:55;;;;-1:-1:-1;;;52490:55:0;;20107:2:1;52490:55:0;;;20089:21:1;20146:2;20126:18;;;20119:30;20185:27;20165:18;;;20158:55;20230:18;;52490:55:0;19905:349:1;52490:55:0;-1:-1:-1;;;;;52556:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;52556:46:0;;;;;;;;;;52618:41;;540::1;;;52618::0;;513:18:1;52618:41:0;;;;;;;52386:281;;;:::o;45647:270::-;45760:28;45770:4;45776:2;45780:7;45760:9;:28::i;:::-;45807:47;45830:4;45836:2;45840:7;45849:4;45807:22;:47::i;:::-;45799:110;;;;-1:-1:-1;;;45799:110:0;;;;;;;:::i;59096:114::-;59156:13;59189;59182:20;;;;;:::i;14920:716::-;14976:13;15027:14;15044:17;15055:5;15044:10;:17::i;:::-;15064:1;15044:21;15027:38;;15080:20;15114:6;15103:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15103:18:0;-1:-1:-1;15080:41:0;-1:-1:-1;15245:28:0;;;15261:2;15245:28;15302:288;-1:-1:-1;;15334:5:0;-1:-1:-1;;;15471:2:0;15460:14;;15455:30;15334:5;15442:44;15532:2;15523:11;;;-1:-1:-1;15553:21:0;15302:288;15553:21;-1:-1:-1;15611:6:0;14920:716;-1:-1:-1;;;14920:716:0:o;47699:285::-;47794:18;47800:2;47804:7;47794:5;:18::i;:::-;47845:53;47876:1;47880:2;47884:7;47893:4;47845:22;:53::i;:::-;47823:153;;;;-1:-1:-1;;;47823:153:0;;;;;;;:::i;53455:853::-;53609:4;-1:-1:-1;;;;;53630:13:0;;22677:19;:23;53626:675;;53666:71;;-1:-1:-1;;;53666:71:0;;-1:-1:-1;;;;;53666:36:0;;;;;:71;;18081:10;;53717:4;;53723:7;;53732:4;;53666:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53666:71:0;;;;;;;;-1:-1:-1;;53666:71:0;;;;;;;;;;;;:::i;:::-;;;53662:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53907:6;:13;53924:1;53907:18;53903:328;;53950:60;;-1:-1:-1;;;53950:60:0;;;;;;;:::i;53903:328::-;54181:6;54175:13;54166:6;54162:2;54158:15;54151:38;53662:584;-1:-1:-1;;;;;;53788:51:0;-1:-1:-1;;;53788:51:0;;-1:-1:-1;53781:58:0;;53626:675;-1:-1:-1;54285:4:0;53455:853;;;;;;:::o;11754:948::-;11807:7;;-1:-1:-1;;;11885:17:0;;11881:106;;-1:-1:-1;;;11923:17:0;;;-1:-1:-1;11969:2:0;11959:12;11881:106;12014:8;12005:5;:17;12001:106;;12052:8;12043:17;;;-1:-1:-1;12089:2:0;12079:12;12001:106;12134:8;12125:5;:17;12121:106;;12172:8;12163:17;;;-1:-1:-1;12209:2:0;12199:12;12121:106;12254:7;12245:5;:16;12241:103;;12291:7;12282:16;;;-1:-1:-1;12327:1:0;12317:11;12241:103;12371:7;12362:5;:16;12358:103;;12408:7;12399:16;;;-1:-1:-1;12444:1:0;12434:11;12358:103;12488:7;12479:5;:16;12475:103;;12525:7;12516:16;;;-1:-1:-1;12561:1:0;12551:11;12475:103;12605:7;12596:5;:16;12592:68;;12643:1;12633:11;12688:6;11754:948;-1:-1:-1;;11754:948:0:o;48320:942::-;-1:-1:-1;;;;;48400:16:0;;48392:61;;;;-1:-1:-1;;;48392:61:0;;21760:2:1;48392:61:0;;;21742:21:1;;;21779:18;;;21772:30;21838:34;21818:18;;;21811:62;21890:18;;48392:61:0;21558:356:1;48392:61:0;46526:4;46124:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46124:16:0;46550:31;48464:58;;;;-1:-1:-1;;;48464:58:0;;22121:2:1;48464:58:0;;;22103:21:1;22160:2;22140:18;;;22133:30;22199;22179:18;;;22172:58;22247:18;;48464:58:0;21919:352:1;48464:58:0;46526:4;46124:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46124:16:0;46550:31;48673:58;;;;-1:-1:-1;;;48673:58:0;;22121:2:1;48673:58:0;;;22103:21:1;22160:2;22140:18;;;22133:30;22199;22179:18;;;22172:58;22247:18;;48673:58:0;21919:352:1;48673:58:0;-1:-1:-1;;;;;49080:13:0;;;;;;:9;:13;;;;;;;;:18;;49097:1;49080:18;;;49122:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;49122:21:0;;;;;49161:33;49130:7;;49080:13;;49161:33;;49080:13;;49161:33;58766:23:::1;58695:102:::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;2178:186::-;2237:6;2290:2;2278:9;2269:7;2265:23;2261:32;2258:52;;;2306:1;2303;2296:12;2258:52;2329:29;2348:9;2329:29;:::i;2369:328::-;2446:6;2454;2462;2515:2;2503:9;2494:7;2490:23;2486:32;2483:52;;;2531:1;2528;2521:12;2483:52;2554:29;2573:9;2554:29;:::i;:::-;2544:39;;2602:38;2636:2;2625:9;2621:18;2602:38;:::i;:::-;2592:48;;2687:2;2676:9;2672:18;2659:32;2649:42;;2369:328;;;;;:::o;2884:127::-;2945:10;2940:3;2936:20;2933:1;2926:31;2976:4;2973:1;2966:15;3000:4;2997:1;2990:15;3016:275;3087:2;3081:9;3152:2;3133:13;;-1:-1:-1;;3129:27:1;3117:40;;3187:18;3172:34;;3208:22;;;3169:62;3166:88;;;3234:18;;:::i;:::-;3270:2;3263:22;3016:275;;-1:-1:-1;3016:275:1:o;3296:183::-;3356:4;3389:18;3381:6;3378:30;3375:56;;;3411:18;;:::i;:::-;-1:-1:-1;3456:1:1;3452:14;3468:4;3448:25;;3296:183::o;3484:1705::-;3548:5;3601:3;3594:4;3586:6;3582:17;3578:27;3568:55;;3619:1;3616;3609:12;3568:55;3655:6;3642:20;3681:4;3705:60;3721:43;3761:2;3721:43;:::i;:::-;3705:60;:::i;:::-;3799:15;;;3861:1;3901:11;;;3889:24;;3885:33;;;3830:12;;;;3787:3;3930:15;;;3927:35;;;3958:1;3955;3948:12;3927:35;3994:2;3986:6;3982:15;4006:1154;4022:6;4017:3;4014:15;4006:1154;;;4108:3;4095:17;4144:18;4131:11;4128:35;4125:125;;;4204:1;4233:2;4229;4222:14;4125:125;4273:24;;4332:2;4324:11;;4320:21;-1:-1:-1;4310:119:1;;4383:1;4412:2;4408;4401:14;4310:119;4473:2;4469;4465:11;4452:25;4500:2;4528:60;4544:43;4584:2;4544:43;:::i;4528:60::-;4632:17;;;4726:11;;;4718:20;;4714:29;;;4671:14;;;;4759:17;;;4756:107;;;4817:1;4846:2;4842;4835:14;4756:107;4889:11;;;;4913:174;4931:8;4924:5;4921:19;4913:174;;;5013:19;;4999:34;;4952:14;;;;5059;;;;4913:174;;;5100:18;;-1:-1:-1;;;5138:12:1;;;;-1:-1:-1;4039:12:1;;4006:1154;;;-1:-1:-1;5178:5:1;;3484:1705;-1:-1:-1;;;;;;;3484:1705:1:o;5194:1181::-;5337:6;5345;5398:2;5386:9;5377:7;5373:23;5369:32;5366:52;;;5414:1;5411;5404:12;5366:52;5454:9;5441:23;5483:18;5524:2;5516:6;5513:14;5510:34;;;5540:1;5537;5530:12;5510:34;5578:6;5567:9;5563:22;5553:32;;5623:7;5616:4;5612:2;5608:13;5604:27;5594:55;;5645:1;5642;5635:12;5594:55;5681:2;5668:16;5703:4;5727:60;5743:43;5783:2;5743:43;:::i;5727:60::-;5821:15;;;5903:1;5899:10;;;;5891:19;;5887:28;;;5852:12;;;;5927:19;;;5924:39;;;5959:1;5956;5949:12;5924:39;5983:11;;;;6003:148;6019:6;6014:3;6011:15;6003:148;;;6085:23;6104:3;6085:23;:::i;:::-;6073:36;;6036:12;;;;6129;;;;6003:148;;;6170:5;-1:-1:-1;;6213:18:1;;6200:32;;-1:-1:-1;;6244:16:1;;;6241:36;;;6273:1;6270;6263:12;6241:36;;6296:73;6361:7;6350:8;6339:9;6335:24;6296:73;:::i;:::-;6286:83;;;5194:1181;;;;;:::o;6380:407::-;6445:5;6479:18;6471:6;6468:30;6465:56;;;6501:18;;:::i;:::-;6539:57;6584:2;6563:15;;-1:-1:-1;;6559:29:1;6590:4;6555:40;6539:57;:::i;:::-;6530:66;;6619:6;6612:5;6605:21;6659:3;6650:6;6645:3;6641:16;6638:25;6635:45;;;6676:1;6673;6666:12;6635:45;6725:6;6720:3;6713:4;6706:5;6702:16;6689:43;6779:1;6772:4;6763:6;6756:5;6752:18;6748:29;6741:40;6380:407;;;;;:::o;6792:451::-;6861:6;6914:2;6902:9;6893:7;6889:23;6885:32;6882:52;;;6930:1;6927;6920:12;6882:52;6970:9;6957:23;7003:18;6995:6;6992:30;6989:50;;;7035:1;7032;7025:12;6989:50;7058:22;;7111:4;7103:13;;7099:27;-1:-1:-1;7089:55:1;;7140:1;7137;7130:12;7089:55;7163:74;7229:7;7224:2;7211:16;7206:2;7202;7198:11;7163:74;:::i;7248:347::-;7313:6;7321;7374:2;7362:9;7353:7;7349:23;7345:32;7342:52;;;7390:1;7387;7380:12;7342:52;7413:29;7432:9;7413:29;:::i;:::-;7403:39;;7492:2;7481:9;7477:18;7464:32;7539:5;7532:13;7525:21;7518:5;7515:32;7505:60;;7561:1;7558;7551:12;7505:60;7584:5;7574:15;;;7248:347;;;;;:::o;7600:667::-;7695:6;7703;7711;7719;7772:3;7760:9;7751:7;7747:23;7743:33;7740:53;;;7789:1;7786;7779:12;7740:53;7812:29;7831:9;7812:29;:::i;:::-;7802:39;;7860:38;7894:2;7883:9;7879:18;7860:38;:::i;:::-;7850:48;;7945:2;7934:9;7930:18;7917:32;7907:42;;8000:2;7989:9;7985:18;7972:32;8027:18;8019:6;8016:30;8013:50;;;8059:1;8056;8049:12;8013:50;8082:22;;8135:4;8127:13;;8123:27;-1:-1:-1;8113:55:1;;8164:1;8161;8154:12;8113:55;8187:74;8253:7;8248:2;8235:16;8230:2;8226;8222:11;8187:74;:::i;:::-;8177:84;;;7600:667;;;;;;;:::o;8272:260::-;8340:6;8348;8401:2;8389:9;8380:7;8376:23;8372:32;8369:52;;;8417:1;8414;8407:12;8369:52;8440:29;8459:9;8440:29;:::i;:::-;8430:39;;8488:38;8522:2;8511:9;8507:18;8488:38;:::i;:::-;8478:48;;8272:260;;;;;:::o;8537:380::-;8616:1;8612:12;;;;8659;;;8680:61;;8734:4;8726:6;8722:17;8712:27;;8680:61;8787:2;8779:6;8776:14;8756:18;8753:38;8750:161;;8833:10;8828:3;8824:20;8821:1;8814:31;8868:4;8865:1;8858:15;8896:4;8893:1;8886:15;8750:161;;8537:380;;;:::o;9754:127::-;9815:10;9810:3;9806:20;9803:1;9796:31;9846:4;9843:1;9836:15;9870:4;9867:1;9860:15;9886:125;9951:9;;;9972:10;;;9969:36;;;9985:18;;:::i;10711:409::-;10913:2;10895:21;;;10952:2;10932:18;;;10925:30;10991:34;10986:2;10971:18;;10964:62;-1:-1:-1;;;11057:2:1;11042:18;;11035:43;11110:3;11095:19;;10711:409::o;11533:127::-;11594:10;11589:3;11585:20;11582:1;11575:31;11625:4;11622:1;11615:15;11649:4;11646:1;11639:15;12014:135;12053:3;12074:17;;;12071:43;;12094:18;;:::i;:::-;-1:-1:-1;12141:1:1;12130:13;;12014:135::o;12988:545::-;13090:2;13085:3;13082:11;13079:448;;;13126:1;13151:5;13147:2;13140:17;13196:4;13192:2;13182:19;13266:2;13254:10;13250:19;13247:1;13243:27;13237:4;13233:38;13302:4;13290:10;13287:20;13284:47;;;-1:-1:-1;13325:4:1;13284:47;13380:2;13375:3;13371:12;13368:1;13364:20;13358:4;13354:31;13344:41;;13435:82;13453:2;13446:5;13443:13;13435:82;;;13498:17;;;13479:1;13468:13;13435:82;;;13439:3;;;12988:545;;;:::o;13709:1352::-;13835:3;13829:10;13862:18;13854:6;13851:30;13848:56;;;13884:18;;:::i;:::-;13913:97;14003:6;13963:38;13995:4;13989:11;13963:38;:::i;:::-;13957:4;13913:97;:::i;:::-;14065:4;;14129:2;14118:14;;14146:1;14141:663;;;;14848:1;14865:6;14862:89;;;-1:-1:-1;14917:19:1;;;14911:26;14862:89;-1:-1:-1;;13666:1:1;13662:11;;;13658:24;13654:29;13644:40;13690:1;13686:11;;;13641:57;14964:81;;14111:944;;14141:663;12935:1;12928:14;;;12972:4;12959:18;;-1:-1:-1;;14177:20:1;;;14295:236;14309:7;14306:1;14303:14;14295:236;;;14398:19;;;14392:26;14377:42;;14490:27;;;;14458:1;14446:14;;;;14325:19;;14295:236;;;14299:3;14559:6;14550:7;14547:19;14544:201;;;14620:19;;;14614:26;-1:-1:-1;;14703:1:1;14699:14;;;14715:3;14695:24;14691:37;14687:42;14672:58;14657:74;;14544:201;-1:-1:-1;;;;;14791:1:1;14775:14;;;14771:22;14758:36;;-1:-1:-1;13709:1352:1:o;16886:168::-;16959:9;;;16990;;17007:15;;;17001:22;;16987:37;16977:71;;17028:18;;:::i;17825:496::-;18004:3;18042:6;18036:13;18058:66;18117:6;18112:3;18105:4;18097:6;18093:17;18058:66;:::i;:::-;18187:13;;18146:16;;;;18209:70;18187:13;18146:16;18256:4;18244:17;;18209:70;:::i;:::-;18295:20;;17825:496;-1:-1:-1;;;;17825:496:1:o;19094:401::-;19296:2;19278:21;;;19335:2;19315:18;;;19308:30;19374:34;19369:2;19354:18;;19347:62;-1:-1:-1;;;19440:2:1;19425:18;;19418:35;19485:3;19470:19;;19094:401::o;20259:414::-;20461:2;20443:21;;;20500:2;20480:18;;;20473:30;20539:34;20534:2;20519:18;;20512:62;-1:-1:-1;;;20605:2:1;20590:18;;20583:48;20663:3;20648:19;;20259:414::o;20810:489::-;-1:-1:-1;;;;;21079:15:1;;;21061:34;;21131:15;;21126:2;21111:18;;21104:43;21178:2;21163:18;;21156:34;;;21226:3;21221:2;21206:18;;21199:31;;;21004:4;;21247:46;;21273:19;;21265:6;21247:46;:::i;:::-;21239:54;20810:489;-1:-1:-1;;;;;;20810:489:1:o;21304:249::-;21373:6;21426:2;21414:9;21405:7;21401:23;21397:32;21394:52;;;21442:1;21439;21432:12;21394:52;21474:9;21468:16;21493:30;21517:5;21493:30;:::i

Swarm Source

ipfs://dd749e470872f09e9562d25a014dee6bd740407d84540d97124c7627aa6b4792
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.