ETH Price: $3,431.20 (-1.90%)
Gas: 6 Gwei

Token

KNOT GENESIS by DALLE-3 (KNOT)
 

Overview

Max Total Supply

256 KNOT

Holders

142

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
selo68.eth
Balance
1 KNOT
0x7bf3b726620a1a833c8b6bcbf71022e0abb9944f
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:
KNOT

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-31
*/

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Counters.sol


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.8.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) {
                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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.8.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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.8.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.5.11/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.8.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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.8.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 {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

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

// File: KNOT.sol


pragma solidity ^0.8.9;





contract KNOT is ERC721, Pausable, Ownable {
    
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;
    /** Maximum number of tokens per tx */
    uint256 public constant MAX_TX = 1;
    /** Maximum amount of tokens in collection */
    uint256 public constant MAX_SUPPLY = 256;
    /** Price per token */
    uint256 public cost_1 = 0.038 ether;
    uint256 public cost_2 = 1 ether;
    /** Max free */
    uint256 public free = 50 + 14;

    bytes32 public answer =
        0xccb1f717aa77602faf03a594761a36956b1c4cf44c6b336d1db57da799b331b8;

    string public baseURI = "https://dalle3.mypinata.cloud/ipfs/QmRGR6Azcc8r8XMH1iqBbuf17j2tUbr4wUyYoUKJSm3xjC/";

    constructor() ERC721("KNOT GENESIS by DALLE-3", "KNOT") {}

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

    function totalSupply() public view returns (uint256) {
        return _tokenIdCounter.current();
    }

    function setBaseURI(string calldata _val) external onlyOwner {
        baseURI = _val;
    }

    function setCost1(uint256 _cost) external onlyOwner {
        cost_1 = _cost;
    }

    function setCost2(uint256 _cost) external onlyOwner {
        cost_2 = _cost;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(owner()).call{value: address(this).balance}('');
        require(success);
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function adminMint(address to) public onlyOwner {
        for (uint i = 0; i < 14; ++i) {
            uint256 tokenId = _tokenIdCounter.current();
            _tokenIdCounter.increment();
            _safeMint(to, tokenId);
        }
    }

    function mint(string calldata ans) public whenNotPaused payable {
        require(_tokenIdCounter.current() < MAX_SUPPLY, "Purchase would exceed max supply");

        require(keccak256(abi.encodePacked(ans)) == answer && (msg.value >= cost_1 || _tokenIdCounter.current() < free)
            || keccak256(abi.encodePacked(ans)) != answer && msg.value >= cost_2, "Ether value sent is not correct");
        
        uint256 tokenId = _tokenIdCounter.current();
        _tokenIdCounter.increment();
        _safeMint(msg.sender, tokenId);
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId, uint256 batchSize)
        internal
        whenNotPaused
        override
    {
        super._beforeTokenTransfer(from, to, tokenId, batchSize);
    }
}

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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"answer","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost_1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost_2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"free","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":"string","name":"ans","type":"string"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_val","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

668700cc75770000600855670de0b6b3a76400006009556040600a8190557fccb1f717aa77602faf03a594761a36956b1c4cf44c6b336d1db57da799b331b8600b55610100905260526080818152906200209460a03980516200006b91600c9160209091019062000169565b503480156200007957600080fd5b50604080518082018252601781527f4b4e4f542047454e455349532062792044414c4c452d3300000000000000000060208083019182528351808501909452600484526312d393d560e21b908401528151919291620000db9160009162000169565b508051620000f190600190602084019062000169565b50506006805460ff191690555062000109336200010f565b6200024c565b600680546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000177906200020f565b90600052602060002090601f0160209004810192826200019b5760008555620001e6565b82601f10620001b657805160ff1916838001178555620001e6565b82800160010185558215620001e6579182015b82811115620001e6578251825591602001919060010190620001c9565b50620001f4929150620001f8565b5090565b5b80821115620001f45760008155600101620001f9565b600181811c908216806200022457607f821691505b602082108114156200024657634e487b7160e01b600052602260045260246000fd5b50919050565b611e38806200025c6000396000f3fe6080604052600436106101ee5760003560e01c80636c0360eb1161010d5780639769dc0e116100a0578063c87b56dd1161006f578063c87b56dd1461052e578063d85d3d271461054e578063e985e9c514610561578063f2fde38b146105aa578063f3b2db3f146105ca57600080fd5b80639769dc0e146104ae578063a22cb465146104ce578063b08a55f6146104ee578063b88d4fde1461050e57600080fd5b80638456cb59116100dc5780638456cb591461044b57806385bb7d69146104605780638da5cb5b1461047657806395d89b411461049957600080fd5b80636c0360eb146103eb57806370a0823114610400578063715018a614610420578063832978951461043557600080fd5b806332cb6b0c1161018557806355f804b31161015457806355f804b31461037d57806359f18bf81461039d5780635c975abb146103b35780636352211e146103cb57600080fd5b806332cb6b0c1461031d5780633ccfd60b146103335780633f4ba83a1461034857806342842e0e1461035d57600080fd5b80631370128e116101c15780631370128e146102a457806318160ddd146102c85780631950c2fc146102dd57806323b872dd146102fd57600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e3660046118d9565b6105df565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610631565b60405161021f919061194e565b34801561025657600080fd5b5061026a610265366004611961565b6106c3565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611996565b6106ea565b005b3480156102b057600080fd5b506102ba600a5481565b60405190815260200161021f565b3480156102d457600080fd5b506102ba610805565b3480156102e957600080fd5b506102a26102f8366004611961565b610815565b34801561030957600080fd5b506102a26103183660046119c0565b610822565b34801561032957600080fd5b506102ba61010081565b34801561033f57600080fd5b506102a2610853565b34801561035457600080fd5b506102a26108c3565b34801561036957600080fd5b506102a26103783660046119c0565b6108d5565b34801561038957600080fd5b506102a26103983660046119fc565b6108f0565b3480156103a957600080fd5b506102ba60095481565b3480156103bf57600080fd5b5060065460ff16610213565b3480156103d757600080fd5b5061026a6103e6366004611961565b610904565b3480156103f757600080fd5b5061023d610964565b34801561040c57600080fd5b506102ba61041b366004611a6e565b6109f2565b34801561042c57600080fd5b506102a2610a78565b34801561044157600080fd5b506102ba60085481565b34801561045757600080fd5b506102a2610a8a565b34801561046c57600080fd5b506102ba600b5481565b34801561048257600080fd5b5060065461010090046001600160a01b031661026a565b3480156104a557600080fd5b5061023d610a9a565b3480156104ba57600080fd5b506102a26104c9366004611a6e565b610aa9565b3480156104da57600080fd5b506102a26104e9366004611a89565b610af7565b3480156104fa57600080fd5b506102a2610509366004611961565b610b02565b34801561051a57600080fd5b506102a2610529366004611adb565b610b0f565b34801561053a57600080fd5b5061023d610549366004611961565b610b47565b6102a261055c3660046119fc565b610bae565b34801561056d57600080fd5b5061021361057c366004611bb7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105b657600080fd5b506102a26105c5366004611a6e565b610d0a565b3480156105d657600080fd5b506102ba600181565b60006001600160e01b031982166380ac58cd60e01b148061061057506001600160e01b03198216635b5e139f60e01b145b8061062b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461064090611bea565b80601f016020809104026020016040519081016040528092919081815260200182805461066c90611bea565b80156106b95780601f1061068e576101008083540402835291602001916106b9565b820191906000526020600020905b81548152906001019060200180831161069c57829003601f168201915b5050505050905090565b60006106ce82610d80565b506000908152600460205260409020546001600160a01b031690565b60006106f582610904565b9050806001600160a01b0316836001600160a01b031614156107685760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806107845750610784813361057c565b6107f65760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161075f565b6108008383610ddf565b505050565b600061081060075490565b905090565b61081d610e4d565b600955565b61082c3382610ead565b6108485760405162461bcd60e51b815260040161075f90611c25565b610800838383610f2c565b61085b610e4d565b60065460405160009161010090046001600160a01b03169047908381818185875af1925050503d80600081146108ad576040519150601f19603f3d011682016040523d82523d6000602084013e6108b2565b606091505b50509050806108c057600080fd5b50565b6108cb610e4d565b6108d361109d565b565b61080083838360405180602001604052806000815250610b0f565b6108f8610e4d565b610800600c838361182a565b6000818152600260205260408120546001600160a01b03168061062b5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161075f565b600c805461097190611bea565b80601f016020809104026020016040519081016040528092919081815260200182805461099d90611bea565b80156109ea5780601f106109bf576101008083540402835291602001916109ea565b820191906000526020600020905b8154815290600101906020018083116109cd57829003601f168201915b505050505081565b60006001600160a01b038216610a5c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161075f565b506001600160a01b031660009081526003602052604090205490565b610a80610e4d565b6108d360006110ef565b610a92610e4d565b6108d3611149565b60606001805461064090611bea565b610ab1610e4d565b60005b600e811015610af3576000610ac860075490565b9050610ad8600780546001019055565b610ae28382611186565b50610aec81611c88565b9050610ab4565b5050565b610af33383836111a0565b610b0a610e4d565b600855565b610b193383610ead565b610b355760405162461bcd60e51b815260040161075f90611c25565b610b418484848461126f565b50505050565b6060610b5282610d80565b6000610b5c6112a2565b90506000815111610b7c5760405180602001604052806000815250610ba7565b80610b86846112b1565b604051602001610b97929190611ca3565b6040516020818303038152906040525b9392505050565b610bb661134e565b610100610bc260075490565b10610c0f5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015260640161075f565b600b548282604051602001610c25929190611cd2565b60405160208183030381529060405280519060200120148015610c57575060085434101580610c575750600a54600754105b80610c995750600b548282604051602001610c73929190611cd2565b6040516020818303038152906040528051906020012014158015610c9957506009543410155b610ce55760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161075f565b6000610cf060075490565b9050610d00600780546001019055565b6108003382611186565b610d12610e4d565b6001600160a01b038116610d775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161075f565b6108c0816110ef565b6000818152600260205260409020546001600160a01b03166108c05760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161075f565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e1482610904565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6006546001600160a01b036101009091041633146108d35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161075f565b600080610eb983610904565b9050806001600160a01b0316846001600160a01b03161480610f0057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610f245750836001600160a01b0316610f19846106c3565b6001600160a01b0316145b949350505050565b826001600160a01b0316610f3f82610904565b6001600160a01b031614610f655760405162461bcd60e51b815260040161075f90611ce2565b6001600160a01b038216610fc75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161075f565b610fd48383836001611394565b826001600160a01b0316610fe782610904565b6001600160a01b03161461100d5760405162461bcd60e51b815260040161075f90611ce2565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6110a56113a8565b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600680546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61115161134e565b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586110d23390565b610af38282604051806020016040528060008152506113f1565b816001600160a01b0316836001600160a01b031614156112025760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161075f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61127a848484610f2c565b61128684848484611424565b610b415760405162461bcd60e51b815260040161075f90611d27565b6060600c805461064090611bea565b606060006112be83611531565b600101905060008167ffffffffffffffff8111156112de576112de611ac5565b6040519080825280601f01601f191660200182016040528015611308576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461134157611346565b611312565b509392505050565b60065460ff16156108d35760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161075f565b61139c61134e565b610b4184848484611609565b60065460ff166108d35760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161075f565b6113fb8383611691565b6114086000848484611424565b6108005760405162461bcd60e51b815260040161075f90611d27565b60006001600160a01b0384163b1561152657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611468903390899088908890600401611d79565b602060405180830381600087803b15801561148257600080fd5b505af19250505080156114b2575060408051601f3d908101601f191682019092526114af91810190611db6565b60015b61150c573d8080156114e0576040519150601f19603f3d011682016040523d82523d6000602084013e6114e5565b606091505b5080516115045760405162461bcd60e51b815260040161075f90611d27565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f24565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106115705772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061159c576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106115ba57662386f26fc10000830492506010015b6305f5e10083106115d2576305f5e100830492506008015b61271083106115e657612710830492506004015b606483106115f8576064830492506002015b600a831061062b5760010192915050565b6001811115610b41576001600160a01b0384161561164f576001600160a01b03841660009081526003602052604081208054839290611649908490611dd3565b90915550505b6001600160a01b03831615610b41576001600160a01b03831660009081526003602052604081208054839290611686908490611dea565b909155505050505050565b6001600160a01b0382166116e75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161075f565b6000818152600260205260409020546001600160a01b03161561174c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161075f565b61175a600083836001611394565b6000818152600260205260409020546001600160a01b0316156117bf5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161075f565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461183690611bea565b90600052602060002090601f016020900481019282611858576000855561189e565b82601f106118715782800160ff1982351617855561189e565b8280016001018555821561189e579182015b8281111561189e578235825591602001919060010190611883565b506118aa9291506118ae565b5090565b5b808211156118aa57600081556001016118af565b6001600160e01b0319811681146108c057600080fd5b6000602082840312156118eb57600080fd5b8135610ba7816118c3565b60005b838110156119115781810151838201526020016118f9565b83811115610b415750506000910152565b6000815180845261193a8160208601602086016118f6565b601f01601f19169290920160200192915050565b602081526000610ba76020830184611922565b60006020828403121561197357600080fd5b5035919050565b80356001600160a01b038116811461199157600080fd5b919050565b600080604083850312156119a957600080fd5b6119b28361197a565b946020939093013593505050565b6000806000606084860312156119d557600080fd5b6119de8461197a565b92506119ec6020850161197a565b9150604084013590509250925092565b60008060208385031215611a0f57600080fd5b823567ffffffffffffffff80821115611a2757600080fd5b818501915085601f830112611a3b57600080fd5b813581811115611a4a57600080fd5b866020828501011115611a5c57600080fd5b60209290920196919550909350505050565b600060208284031215611a8057600080fd5b610ba78261197a565b60008060408385031215611a9c57600080fd5b611aa58361197a565b915060208301358015158114611aba57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611af157600080fd5b611afa8561197a565b9350611b086020860161197a565b925060408501359150606085013567ffffffffffffffff80821115611b2c57600080fd5b818701915087601f830112611b4057600080fd5b813581811115611b5257611b52611ac5565b604051601f8201601f19908116603f01168101908382118183101715611b7a57611b7a611ac5565b816040528281528a6020848701011115611b9357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611bca57600080fd5b611bd38361197a565b9150611be16020840161197a565b90509250929050565b600181811c90821680611bfe57607f821691505b60208210811415611c1f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000600019821415611c9c57611c9c611c72565b5060010190565b60008351611cb58184602088016118f6565b835190830190611cc98183602088016118f6565b01949350505050565b8183823760009101908152919050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611dac90830184611922565b9695505050505050565b600060208284031215611dc857600080fd5b8151610ba7816118c3565b600082821015611de557611de5611c72565b500390565b60008219821115611dfd57611dfd611c72565b50019056fea2646970667358221220296521b3c7d764b4a8fd672a621ce2f5093b67e13f1897321d406218ccb8488d64736f6c6343000809003368747470733a2f2f64616c6c65332e6d7970696e6174612e636c6f75642f697066732f516d52475236417a6363387238584d483169714262756631376a327455627234775579596f554b4a536d33786a432f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636c0360eb1161010d5780639769dc0e116100a0578063c87b56dd1161006f578063c87b56dd1461052e578063d85d3d271461054e578063e985e9c514610561578063f2fde38b146105aa578063f3b2db3f146105ca57600080fd5b80639769dc0e146104ae578063a22cb465146104ce578063b08a55f6146104ee578063b88d4fde1461050e57600080fd5b80638456cb59116100dc5780638456cb591461044b57806385bb7d69146104605780638da5cb5b1461047657806395d89b411461049957600080fd5b80636c0360eb146103eb57806370a0823114610400578063715018a614610420578063832978951461043557600080fd5b806332cb6b0c1161018557806355f804b31161015457806355f804b31461037d57806359f18bf81461039d5780635c975abb146103b35780636352211e146103cb57600080fd5b806332cb6b0c1461031d5780633ccfd60b146103335780633f4ba83a1461034857806342842e0e1461035d57600080fd5b80631370128e116101c15780631370128e146102a457806318160ddd146102c85780631950c2fc146102dd57806323b872dd146102fd57600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e3660046118d9565b6105df565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610631565b60405161021f919061194e565b34801561025657600080fd5b5061026a610265366004611961565b6106c3565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611996565b6106ea565b005b3480156102b057600080fd5b506102ba600a5481565b60405190815260200161021f565b3480156102d457600080fd5b506102ba610805565b3480156102e957600080fd5b506102a26102f8366004611961565b610815565b34801561030957600080fd5b506102a26103183660046119c0565b610822565b34801561032957600080fd5b506102ba61010081565b34801561033f57600080fd5b506102a2610853565b34801561035457600080fd5b506102a26108c3565b34801561036957600080fd5b506102a26103783660046119c0565b6108d5565b34801561038957600080fd5b506102a26103983660046119fc565b6108f0565b3480156103a957600080fd5b506102ba60095481565b3480156103bf57600080fd5b5060065460ff16610213565b3480156103d757600080fd5b5061026a6103e6366004611961565b610904565b3480156103f757600080fd5b5061023d610964565b34801561040c57600080fd5b506102ba61041b366004611a6e565b6109f2565b34801561042c57600080fd5b506102a2610a78565b34801561044157600080fd5b506102ba60085481565b34801561045757600080fd5b506102a2610a8a565b34801561046c57600080fd5b506102ba600b5481565b34801561048257600080fd5b5060065461010090046001600160a01b031661026a565b3480156104a557600080fd5b5061023d610a9a565b3480156104ba57600080fd5b506102a26104c9366004611a6e565b610aa9565b3480156104da57600080fd5b506102a26104e9366004611a89565b610af7565b3480156104fa57600080fd5b506102a2610509366004611961565b610b02565b34801561051a57600080fd5b506102a2610529366004611adb565b610b0f565b34801561053a57600080fd5b5061023d610549366004611961565b610b47565b6102a261055c3660046119fc565b610bae565b34801561056d57600080fd5b5061021361057c366004611bb7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156105b657600080fd5b506102a26105c5366004611a6e565b610d0a565b3480156105d657600080fd5b506102ba600181565b60006001600160e01b031982166380ac58cd60e01b148061061057506001600160e01b03198216635b5e139f60e01b145b8061062b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461064090611bea565b80601f016020809104026020016040519081016040528092919081815260200182805461066c90611bea565b80156106b95780601f1061068e576101008083540402835291602001916106b9565b820191906000526020600020905b81548152906001019060200180831161069c57829003601f168201915b5050505050905090565b60006106ce82610d80565b506000908152600460205260409020546001600160a01b031690565b60006106f582610904565b9050806001600160a01b0316836001600160a01b031614156107685760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806107845750610784813361057c565b6107f65760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000606482015260840161075f565b6108008383610ddf565b505050565b600061081060075490565b905090565b61081d610e4d565b600955565b61082c3382610ead565b6108485760405162461bcd60e51b815260040161075f90611c25565b610800838383610f2c565b61085b610e4d565b60065460405160009161010090046001600160a01b03169047908381818185875af1925050503d80600081146108ad576040519150601f19603f3d011682016040523d82523d6000602084013e6108b2565b606091505b50509050806108c057600080fd5b50565b6108cb610e4d565b6108d361109d565b565b61080083838360405180602001604052806000815250610b0f565b6108f8610e4d565b610800600c838361182a565b6000818152600260205260408120546001600160a01b03168061062b5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161075f565b600c805461097190611bea565b80601f016020809104026020016040519081016040528092919081815260200182805461099d90611bea565b80156109ea5780601f106109bf576101008083540402835291602001916109ea565b820191906000526020600020905b8154815290600101906020018083116109cd57829003601f168201915b505050505081565b60006001600160a01b038216610a5c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161075f565b506001600160a01b031660009081526003602052604090205490565b610a80610e4d565b6108d360006110ef565b610a92610e4d565b6108d3611149565b60606001805461064090611bea565b610ab1610e4d565b60005b600e811015610af3576000610ac860075490565b9050610ad8600780546001019055565b610ae28382611186565b50610aec81611c88565b9050610ab4565b5050565b610af33383836111a0565b610b0a610e4d565b600855565b610b193383610ead565b610b355760405162461bcd60e51b815260040161075f90611c25565b610b418484848461126f565b50505050565b6060610b5282610d80565b6000610b5c6112a2565b90506000815111610b7c5760405180602001604052806000815250610ba7565b80610b86846112b1565b604051602001610b97929190611ca3565b6040516020818303038152906040525b9392505050565b610bb661134e565b610100610bc260075490565b10610c0f5760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015260640161075f565b600b548282604051602001610c25929190611cd2565b60405160208183030381529060405280519060200120148015610c57575060085434101580610c575750600a54600754105b80610c995750600b548282604051602001610c73929190611cd2565b6040516020818303038152906040528051906020012014158015610c9957506009543410155b610ce55760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161075f565b6000610cf060075490565b9050610d00600780546001019055565b6108003382611186565b610d12610e4d565b6001600160a01b038116610d775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161075f565b6108c0816110ef565b6000818152600260205260409020546001600160a01b03166108c05760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161075f565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e1482610904565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6006546001600160a01b036101009091041633146108d35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161075f565b600080610eb983610904565b9050806001600160a01b0316846001600160a01b03161480610f0057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610f245750836001600160a01b0316610f19846106c3565b6001600160a01b0316145b949350505050565b826001600160a01b0316610f3f82610904565b6001600160a01b031614610f655760405162461bcd60e51b815260040161075f90611ce2565b6001600160a01b038216610fc75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161075f565b610fd48383836001611394565b826001600160a01b0316610fe782610904565b6001600160a01b03161461100d5760405162461bcd60e51b815260040161075f90611ce2565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6110a56113a8565b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600680546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61115161134e565b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586110d23390565b610af38282604051806020016040528060008152506113f1565b816001600160a01b0316836001600160a01b031614156112025760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161075f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61127a848484610f2c565b61128684848484611424565b610b415760405162461bcd60e51b815260040161075f90611d27565b6060600c805461064090611bea565b606060006112be83611531565b600101905060008167ffffffffffffffff8111156112de576112de611ac5565b6040519080825280601f01601f191660200182016040528015611308576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461134157611346565b611312565b509392505050565b60065460ff16156108d35760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161075f565b61139c61134e565b610b4184848484611609565b60065460ff166108d35760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015260640161075f565b6113fb8383611691565b6114086000848484611424565b6108005760405162461bcd60e51b815260040161075f90611d27565b60006001600160a01b0384163b1561152657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611468903390899088908890600401611d79565b602060405180830381600087803b15801561148257600080fd5b505af19250505080156114b2575060408051601f3d908101601f191682019092526114af91810190611db6565b60015b61150c573d8080156114e0576040519150601f19603f3d011682016040523d82523d6000602084013e6114e5565b606091505b5080516115045760405162461bcd60e51b815260040161075f90611d27565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f24565b506001949350505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106115705772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061159c576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106115ba57662386f26fc10000830492506010015b6305f5e10083106115d2576305f5e100830492506008015b61271083106115e657612710830492506004015b606483106115f8576064830492506002015b600a831061062b5760010192915050565b6001811115610b41576001600160a01b0384161561164f576001600160a01b03841660009081526003602052604081208054839290611649908490611dd3565b90915550505b6001600160a01b03831615610b41576001600160a01b03831660009081526003602052604081208054839290611686908490611dea565b909155505050505050565b6001600160a01b0382166116e75760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161075f565b6000818152600260205260409020546001600160a01b03161561174c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161075f565b61175a600083836001611394565b6000818152600260205260409020546001600160a01b0316156117bf5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161075f565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461183690611bea565b90600052602060002090601f016020900481019282611858576000855561189e565b82601f106118715782800160ff1982351617855561189e565b8280016001018555821561189e579182015b8281111561189e578235825591602001919060010190611883565b506118aa9291506118ae565b5090565b5b808211156118aa57600081556001016118af565b6001600160e01b0319811681146108c057600080fd5b6000602082840312156118eb57600080fd5b8135610ba7816118c3565b60005b838110156119115781810151838201526020016118f9565b83811115610b415750506000910152565b6000815180845261193a8160208601602086016118f6565b601f01601f19169290920160200192915050565b602081526000610ba76020830184611922565b60006020828403121561197357600080fd5b5035919050565b80356001600160a01b038116811461199157600080fd5b919050565b600080604083850312156119a957600080fd5b6119b28361197a565b946020939093013593505050565b6000806000606084860312156119d557600080fd5b6119de8461197a565b92506119ec6020850161197a565b9150604084013590509250925092565b60008060208385031215611a0f57600080fd5b823567ffffffffffffffff80821115611a2757600080fd5b818501915085601f830112611a3b57600080fd5b813581811115611a4a57600080fd5b866020828501011115611a5c57600080fd5b60209290920196919550909350505050565b600060208284031215611a8057600080fd5b610ba78261197a565b60008060408385031215611a9c57600080fd5b611aa58361197a565b915060208301358015158114611aba57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611af157600080fd5b611afa8561197a565b9350611b086020860161197a565b925060408501359150606085013567ffffffffffffffff80821115611b2c57600080fd5b818701915087601f830112611b4057600080fd5b813581811115611b5257611b52611ac5565b604051601f8201601f19908116603f01168101908382118183101715611b7a57611b7a611ac5565b816040528281528a6020848701011115611b9357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611bca57600080fd5b611bd38361197a565b9150611be16020840161197a565b90509250929050565b600181811c90821680611bfe57607f821691505b60208210811415611c1f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000600019821415611c9c57611c9c611c72565b5060010190565b60008351611cb58184602088016118f6565b835190830190611cc98183602088016118f6565b01949350505050565b8183823760009101908152919050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611dac90830184611922565b9695505050505050565b600060208284031215611dc857600080fd5b8151610ba7816118c3565b600082821015611de557611de5611c72565b500390565b60008219821115611dfd57611dfd611c72565b50019056fea2646970667358221220296521b3c7d764b4a8fd672a621ce2f5093b67e13f1897321d406218ccb8488d64736f6c63430008090033

Deployed Bytecode Sourcemap

60926:2659:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45327:305;;;;;;;;;;-1:-1:-1;45327:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;45327:305:0;;;;;;;;46255:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;47767:171::-;;;;;;;;;;-1:-1:-1;47767:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;47767:171:0;1528:203:1;47285:416:0;;;;;;;;;;-1:-1:-1;47285:416:0;;;;;:::i;:::-;;:::i;:::-;;61385:29;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;61385:29:0;2173:177:1;61830:104:0;;;;;;;;;;;;;:::i;62137:85::-;;;;;;;;;;-1:-1:-1;62137:85:0;;;;;:::i;:::-;;:::i;48467:301::-;;;;;;;;;;-1:-1:-1;48467:301:0;;;;;:::i;:::-;;:::i;61209:40::-;;;;;;;;;;;;61246:3;61209:40;;62230:159;;;;;;;;;;;;;:::i;62466:65::-;;;;;;;;;;;;;:::i;48839:151::-;;;;;;;;;;-1:-1:-1;48839:151:0;;;;;:::i;:::-;;:::i;61942:94::-;;;;;;;;;;-1:-1:-1;61942:94:0;;;;;:::i;:::-;;:::i;61326:31::-;;;;;;;;;;;;;;;;24128:86;;;;;;;;;;-1:-1:-1;24199:7:0;;;;24128:86;;45965:223;;;;;;;;;;-1:-1:-1;45965:223:0;;;;;:::i;:::-;;:::i;61531:108::-;;;;;;;;;;;;;:::i;45696:207::-;;;;;;;;;;-1:-1:-1;45696:207:0;;;;;:::i;:::-;;:::i;21585:103::-;;;;;;;;;;;;;:::i;61284:35::-;;;;;;;;;;;;;;;;62397:61;;;;;;;;;;;;;:::i;61423:99::-;;;;;;;;;;;;;;;;20937:87;;;;;;;;;;-1:-1:-1;21010:6:0;;;;;-1:-1:-1;;;;;21010:6:0;20937:87;;46424:104;;;;;;;;;;;;;:::i;62539:245::-;;;;;;;;;;-1:-1:-1;62539:245:0;;;;;:::i;:::-;;:::i;48010:155::-;;;;;;;;;;-1:-1:-1;48010:155:0;;;;;:::i;:::-;;:::i;62044:85::-;;;;;;;;;;-1:-1:-1;62044:85:0;;;;;:::i;:::-;;:::i;49061:279::-;;;;;;;;;;-1:-1:-1;49061:279:0;;;;;:::i;:::-;;:::i;46599:281::-;;;;;;;;;;-1:-1:-1;46599:281:0;;;;;:::i;:::-;;:::i;62792:551::-;;;;;;:::i;:::-;;:::i;48236:164::-;;;;;;;;;;-1:-1:-1;48236:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;48357:25:0;;;48333:4;48357:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;48236:164;21843:201;;;;;;;;;;-1:-1:-1;21843:201:0;;;;;:::i;:::-;;:::i;61117:34::-;;;;;;;;;;;;61150:1;61117:34;;45327:305;45429:4;-1:-1:-1;;;;;;45466:40:0;;-1:-1:-1;;;45466:40:0;;:105;;-1:-1:-1;;;;;;;45523:48:0;;-1:-1:-1;;;45523:48:0;45466:105;:158;;;-1:-1:-1;;;;;;;;;;37901:40:0;;;45588:36;45446:178;45327:305;-1:-1:-1;;45327:305:0:o;46255:100::-;46309:13;46342:5;46335:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46255:100;:::o;47767:171::-;47843:7;47863:23;47878:7;47863:14;:23::i;:::-;-1:-1:-1;47906:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;47906:24:0;;47767:171::o;47285:416::-;47366:13;47382:23;47397:7;47382:14;:23::i;:::-;47366:39;;47430:5;-1:-1:-1;;;;;47424:11:0;:2;-1:-1:-1;;;;;47424:11:0;;;47416:57;;;;-1:-1:-1;;;47416:57:0;;6137:2:1;47416:57:0;;;6119:21:1;6176:2;6156:18;;;6149:30;6215:34;6195:18;;;6188:62;-1:-1:-1;;;6266:18:1;;;6259:31;6307:19;;47416:57:0;;;;;;;;;19515:10;-1:-1:-1;;;;;47508:21:0;;;;:62;;-1:-1:-1;47533:37:0;47550:5;19515:10;48236:164;:::i;47533:37::-;47486:173;;;;-1:-1:-1;;;47486:173:0;;6539:2:1;47486:173:0;;;6521:21:1;6578:2;6558:18;;;6551:30;6617:34;6597:18;;;6590:62;6688:31;6668:18;;;6661:59;6737:19;;47486:173:0;6337:425:1;47486:173:0;47672:21;47681:2;47685:7;47672:8;:21::i;:::-;47355:346;47285:416;;:::o;61830:104::-;61874:7;61901:25;:15;1017:14;;925:114;61901:25;61894:32;;61830:104;:::o;62137:85::-;20823:13;:11;:13::i;:::-;62200:6:::1;:14:::0;62137:85::o;48467:301::-;48628:41;19515:10;48661:7;48628:18;:41::i;:::-;48620:99;;;;-1:-1:-1;;;48620:99:0;;;;;;;:::i;:::-;48732:28;48742:4;48748:2;48752:7;48732:9;:28::i;62230:159::-;20823:13;:11;:13::i;:::-;21010:6;;62299:55:::1;::::0;62281:12:::1;::::0;21010:6;;;-1:-1:-1;;;;;21010:6:0;;62328:21:::1;::::0;62281:12;62299:55;62281:12;62299:55;62328:21;21010:6;62299:55:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62280:74;;;62373:7;62365:16;;;::::0;::::1;;62269:120;62230:159::o:0;62466:65::-;20823:13;:11;:13::i;:::-;62513:10:::1;:8;:10::i;:::-;62466:65::o:0;48839:151::-;48943:39;48960:4;48966:2;48970:7;48943:39;;;;;;;;;;;;:16;:39::i;61942:94::-;20823:13;:11;:13::i;:::-;62014:14:::1;:7;62024:4:::0;;62014:14:::1;:::i;45965:223::-:0;46037:7;50698:16;;;:7;:16;;;;;;-1:-1:-1;;;;;50698:16:0;;46101:56;;;;-1:-1:-1;;;46101:56:0;;7593:2:1;46101:56:0;;;7575:21:1;7632:2;7612:18;;;7605:30;-1:-1:-1;;;7651:18:1;;;7644:54;7715:18;;46101:56:0;7391:348:1;61531:108:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45696:207::-;45768:7;-1:-1:-1;;;;;45796:19:0;;45788:73;;;;-1:-1:-1;;;45788:73:0;;7946:2:1;45788:73:0;;;7928:21:1;7985:2;7965:18;;;7958:30;8024:34;8004:18;;;7997:62;-1:-1:-1;;;8075:18:1;;;8068:39;8124:19;;45788:73:0;7744:405:1;45788:73:0;-1:-1:-1;;;;;;45879:16:0;;;;;:9;:16;;;;;;;45696:207::o;21585:103::-;20823:13;:11;:13::i;:::-;21650:30:::1;21677:1;21650:18;:30::i;62397:61::-:0;20823:13;:11;:13::i;:::-;62442:8:::1;:6;:8::i;46424:104::-:0;46480:13;46513:7;46506:14;;;;;:::i;62539:245::-;20823:13;:11;:13::i;:::-;62603:6:::1;62598:179;62619:2;62615:1;:6;62598:179;;;62643:15;62661:25;:15;1017:14:::0;;925:114;62661:25:::1;62643:43;;62701:27;:15;1136:19:::0;;1154:1;1136:19;;;1047:127;62701:27:::1;62743:22;62753:2;62757:7;62743:9;:22::i;:::-;-1:-1:-1::0;62623:3:0::1;::::0;::::1;:::i;:::-;;;62598:179;;;;62539:245:::0;:::o;48010:155::-;48105:52;19515:10;48138:8;48148;48105:18;:52::i;62044:85::-;20823:13;:11;:13::i;:::-;62107:6:::1;:14:::0;62044:85::o;49061:279::-;49192:41;19515:10;49225:7;49192:18;:41::i;:::-;49184:99;;;;-1:-1:-1;;;49184:99:0;;;;;;;:::i;:::-;49294:38;49308:4;49314:2;49318:7;49327:4;49294:13;:38::i;:::-;49061:279;;;;:::o;46599:281::-;46672:13;46698:23;46713:7;46698:14;:23::i;:::-;46734:21;46758:10;:8;:10::i;:::-;46734:34;;46810:1;46792:7;46786:21;:25;:86;;;;;;;;;;;;;;;;;46838:7;46847:18;:7;:16;:18::i;:::-;46821:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46786:86;46779:93;46599:281;-1:-1:-1;;;46599:281:0:o;62792:551::-;23733:19;:17;:19::i;:::-;61246:3:::1;62875:25;:15;1017:14:::0;;925:114;62875:25:::1;:38;62867:83;;;::::0;-1:-1:-1;;;62867:83:0;;9103:2:1;62867:83:0::1;::::0;::::1;9085:21:1::0;;;9122:18;;;9115:30;9181:34;9161:18;;;9154:62;9233:18;;62867:83:0::1;8901:356:1::0;62867:83:0::1;63007:6;;62998:3;;62981:21;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62971:32;;;;;;:42;:103;;;;;63031:6;;63018:9;:19;;:55;;;-1:-1:-1::0;63069:4:0::1;::::0;63041:15:::1;1017:14:::0;63041:32:::1;63018:55;62971:185;;;;63127:6;;63118:3;;63101:21;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63091:32;;;;;;:42;;:65;;;;;63150:6;;63137:9;:19;;63091:65;62963:229;;;::::0;-1:-1:-1;;;62963:229:0;;9742:2:1;62963:229:0::1;::::0;::::1;9724:21:1::0;9781:2;9761:18;;;9754:30;9820:33;9800:18;;;9793:61;9871:18;;62963:229:0::1;9540:355:1::0;62963:229:0::1;63213:15;63231:25;:15;1017:14:::0;;925:114;63231:25:::1;63213:43;;63267:27;:15;1136:19:::0;;1154:1;1136:19;;;1047:127;63267:27:::1;63305:30;63315:10;63327:7;63305:9;:30::i;21843:201::-:0;20823:13;:11;:13::i;:::-;-1:-1:-1;;;;;21932:22:0;::::1;21924:73;;;::::0;-1:-1:-1;;;21924:73:0;;10102:2:1;21924:73:0::1;::::0;::::1;10084:21:1::0;10141:2;10121:18;;;10114:30;10180:34;10160:18;;;10153:62;-1:-1:-1;;;10231:18:1;;;10224:36;10277:19;;21924:73:0::1;9900:402:1::0;21924:73:0::1;22008:28;22027:8;22008:18;:28::i;57330:135::-:0;51100:4;50698:16;;;:7;:16;;;;;;-1:-1:-1;;;;;50698:16:0;57404:53;;;;-1:-1:-1;;;57404:53:0;;7593:2:1;57404:53:0;;;7575:21:1;7632:2;7612:18;;;7605:30;-1:-1:-1;;;7651:18:1;;;7644:54;7715:18;;57404:53:0;7391:348:1;56643:174:0;56718:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;56718:29:0;-1:-1:-1;;;;;56718:29:0;;;;;;;;:24;;56772:23;56718:24;56772:14;:23::i;:::-;-1:-1:-1;;;;;56763:46:0;;;;;;;;;;;56643:174;;:::o;21102:132::-;21010:6;;-1:-1:-1;;;;;21010:6:0;;;;;19515:10;21166:23;21158:68;;;;-1:-1:-1;;;21158:68:0;;10509:2:1;21158:68:0;;;10491:21:1;;;10528:18;;;10521:30;10587:34;10567:18;;;10560:62;10639:18;;21158:68:0;10307:356:1;51330:264:0;51423:4;51440:13;51456:23;51471:7;51456:14;:23::i;:::-;51440:39;;51509:5;-1:-1:-1;;;;;51498:16:0;:7;-1:-1:-1;;;;;51498:16:0;;:52;;;-1:-1:-1;;;;;;48357:25:0;;;48333:4;48357:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;51518:32;51498:87;;;;51578:7;-1:-1:-1;;;;;51554:31:0;:20;51566:7;51554:11;:20::i;:::-;-1:-1:-1;;;;;51554:31:0;;51498:87;51490:96;51330:264;-1:-1:-1;;;;51330:264:0:o;55295:1229::-;55420:4;-1:-1:-1;;;;;55393:31:0;:23;55408:7;55393:14;:23::i;:::-;-1:-1:-1;;;;;55393:31:0;;55385:81;;;;-1:-1:-1;;;55385:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;55485:16:0;;55477:65;;;;-1:-1:-1;;;55477:65:0;;11276:2:1;55477:65:0;;;11258:21:1;11315:2;11295:18;;;11288:30;11354:34;11334:18;;;11327:62;-1:-1:-1;;;11405:18:1;;;11398:34;11449:19;;55477:65:0;11074:400:1;55477:65:0;55555:42;55576:4;55582:2;55586:7;55595:1;55555:20;:42::i;:::-;55727:4;-1:-1:-1;;;;;55700:31:0;:23;55715:7;55700:14;:23::i;:::-;-1:-1:-1;;;;;55700:31:0;;55692:81;;;;-1:-1:-1;;;55692:81:0;;;;;;;:::i;:::-;55845:24;;;;:15;:24;;;;;;;;55838:31;;-1:-1:-1;;;;;;55838:31:0;;;;;;-1:-1:-1;;;;;56321:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;56321:20:0;;;56356:13;;;;;;;;;:18;;55838:31;56356:18;;;56396:16;;;:7;:16;;;;;;:21;;;;;;;;;;56435:27;;55861:7;;56435:27;;;47355:346;47285:416;;:::o;24983:120::-;23992:16;:14;:16::i;:::-;25042:7:::1;:15:::0;;-1:-1:-1;;25042:15:0::1;::::0;;25073:22:::1;19515:10:::0;25082:12:::1;25073:22;::::0;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;25073:22:0::1;;;;;;;24983:120::o:0;22204:191::-;22297:6;;;-1:-1:-1;;;;;22314:17:0;;;22297:6;22314:17;;;-1:-1:-1;;;;;;22314:17:0;;;;;;22347:40;;22297:6;;;;;;;;22347:40;;22278:16;;22347:40;22267:128;22204:191;:::o;24724:118::-;23733:19;:17;:19::i;:::-;24784:7:::1;:14:::0;;-1:-1:-1;;24784:14:0::1;24794:4;24784:14;::::0;;24814:20:::1;24821:12;19515:10:::0;;19435:98;51936:110;52012:26;52022:2;52026:7;52012:26;;;;;;;;;;;;:9;:26::i;56960:281::-;57081:8;-1:-1:-1;;;;;57072:17:0;:5;-1:-1:-1;;;;;57072:17:0;;;57064:55;;;;-1:-1:-1;;;57064:55:0;;11681:2:1;57064:55:0;;;11663:21:1;11720:2;11700:18;;;11693:30;11759:27;11739:18;;;11732:55;11804:18;;57064:55:0;11479:349:1;57064:55:0;-1:-1:-1;;;;;57130:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;57130:46:0;;;;;;;;;;57192:41;;540::1;;;57192::0;;513:18:1;57192:41:0;;;;;;;56960:281;;;:::o;50221:270::-;50334:28;50344:4;50350:2;50354:7;50334:9;:28::i;:::-;50381:47;50404:4;50410:2;50414:7;50423:4;50381:22;:47::i;:::-;50373:110;;;;-1:-1:-1;;;50373:110:0;;;;;;;:::i;61714:108::-;61774:13;61807:7;61800:14;;;;;:::i;16301:716::-;16357:13;16408:14;16425:17;16436:5;16425:10;:17::i;:::-;16445:1;16425:21;16408:38;;16461:20;16495:6;16484:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16484:18:0;-1:-1:-1;16461:41:0;-1:-1:-1;16626:28:0;;;16642:2;16626:28;16683:288;-1:-1:-1;;16715:5:0;-1:-1:-1;;;16852:2:0;16841:14;;16836:30;16715:5;16823:44;16913:2;16904:11;;;-1:-1:-1;16938:10:0;16934:21;;16950:5;;16934:21;16683:288;;;-1:-1:-1;16992:6:0;16301:716;-1:-1:-1;;;16301:716:0:o;24287:108::-;24199:7;;;;24357:9;24349:38;;;;-1:-1:-1;;;24349:38:0;;12586:2:1;24349:38:0;;;12568:21:1;12625:2;12605:18;;;12598:30;-1:-1:-1;;;12644:18:1;;;12637:46;12700:18;;24349:38:0;12384:340:1;63351:231:0;23733:19;:17;:19::i;:::-;63518:56:::1;63545:4;63551:2;63555:7;63564:9;63518:26;:56::i;24472:108::-:0;24199:7;;;;24531:41;;;;-1:-1:-1;;;24531:41:0;;12931:2:1;24531:41:0;;;12913:21:1;12970:2;12950:18;;;12943:30;-1:-1:-1;;;12989:18:1;;;12982:50;13049:18;;24531:41:0;12729:344:1;52273:285:0;52368:18;52374:2;52378:7;52368:5;:18::i;:::-;52419:53;52450:1;52454:2;52458:7;52467:4;52419:22;:53::i;:::-;52397:153;;;;-1:-1:-1;;;52397:153:0;;;;;;;:::i;58029:853::-;58183:4;-1:-1:-1;;;;;58204:13:0;;26932:19;:23;58200:675;;58240:71;;-1:-1:-1;;;58240:71:0;;-1:-1:-1;;;;;58240:36:0;;;;;:71;;19515:10;;58291:4;;58297:7;;58306:4;;58240:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58240:71:0;;;;;;;;-1:-1:-1;;58240:71:0;;;;;;;;;;;;:::i;:::-;;;58236:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58481:13:0;;58477:328;;58524:60;;-1:-1:-1;;;58524:60:0;;;;;;;:::i;58477:328::-;58755:6;58749:13;58740:6;58736:2;58732:15;58725:38;58236:584;-1:-1:-1;;;;;;58362:51:0;-1:-1:-1;;;58362:51:0;;-1:-1:-1;58355:58:0;;58200:675;-1:-1:-1;58859:4:0;58029:853;;;;;;:::o;13082:948::-;13135:7;;-1:-1:-1;;;13213:17:0;;13209:106;;-1:-1:-1;;;13251:17:0;;;-1:-1:-1;13297:2:0;13287:12;13209:106;13342:8;13333:5;:17;13329:106;;13380:8;13371:17;;;-1:-1:-1;13417:2:0;13407:12;13329:106;13462:8;13453:5;:17;13449:106;;13500:8;13491:17;;;-1:-1:-1;13537:2:0;13527:12;13449:106;13582:7;13573:5;:16;13569:103;;13619:7;13610:16;;;-1:-1:-1;13655:1:0;13645:11;13569:103;13699:7;13690:5;:16;13686:103;;13736:7;13727:16;;;-1:-1:-1;13772:1:0;13762:11;13686:103;13816:7;13807:5;:16;13803:103;;13853:7;13844:16;;;-1:-1:-1;13889:1:0;13879:11;13803:103;13933:7;13924:5;:16;13920:68;;13971:1;13961:11;14016:6;13082:948;-1:-1:-1;;13082:948:0:o;59614:410::-;59804:1;59792:9;:13;59788:229;;;-1:-1:-1;;;;;59826:18:0;;;59822:87;;-1:-1:-1;;;;;59865:15:0;;;;;;:9;:15;;;;;:28;;59884:9;;59865:15;:28;;59884:9;;59865:28;:::i;:::-;;;;-1:-1:-1;;59822:87:0;-1:-1:-1;;;;;59927:16:0;;;59923:83;;-1:-1:-1;;;;;59964:13:0;;;;;;:9;:13;;;;;:26;;59981:9;;59964:13;:26;;59981:9;;59964:26;:::i;:::-;;;;-1:-1:-1;;59614:410:0;;;;:::o;52894:942::-;-1:-1:-1;;;;;52974:16:0;;52966:61;;;;-1:-1:-1;;;52966:61:0;;14291:2:1;52966:61:0;;;14273:21:1;;;14310:18;;;14303:30;14369:34;14349:18;;;14342:62;14421:18;;52966:61:0;14089:356:1;52966:61:0;51100:4;50698:16;;;:7;:16;;;;;;-1:-1:-1;;;;;50698:16:0;51124:31;53038:58;;;;-1:-1:-1;;;53038:58:0;;14652:2:1;53038:58:0;;;14634:21:1;14691:2;14671:18;;;14664:30;14730;14710:18;;;14703:58;14778:18;;53038:58:0;14450:352:1;53038:58:0;53109:48;53138:1;53142:2;53146:7;53155:1;53109:20;:48::i;:::-;51100:4;50698:16;;;:7;:16;;;;;;-1:-1:-1;;;;;50698:16:0;51124:31;53247:58;;;;-1:-1:-1;;;53247:58:0;;14652:2:1;53247:58:0;;;14634:21:1;14691:2;14671:18;;;14664:30;14730;14710:18;;;14703:58;14778:18;;53247:58:0;14450:352:1;53247:58:0;-1:-1:-1;;;;;53654:13:0;;;;;;:9;:13;;;;;;;;:18;;53671:1;53654:18;;;53696:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;53696:21:0;;;;;53735:33;53704:7;;53654:13;;53735:33;;53654:13;;53735:33;62598:179:::1;62539:245:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::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:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:592::-;2759:6;2767;2820:2;2808:9;2799:7;2795:23;2791:32;2788:52;;;2836:1;2833;2826:12;2788:52;2876:9;2863:23;2905:18;2946:2;2938:6;2935:14;2932:34;;;2962:1;2959;2952:12;2932:34;3000:6;2989:9;2985:22;2975:32;;3045:7;3038:4;3034:2;3030:13;3026:27;3016:55;;3067:1;3064;3057:12;3016:55;3107:2;3094:16;3133:2;3125:6;3122:14;3119:34;;;3149:1;3146;3139:12;3119:34;3194:7;3189:2;3180:6;3176:2;3172:15;3168:24;3165:37;3162:57;;;3215:1;3212;3205:12;3162:57;3246:2;3238:11;;;;;3268:6;;-1:-1:-1;2688:592:1;;-1:-1:-1;;;;2688:592:1:o;3285:186::-;3344:6;3397:2;3385:9;3376:7;3372:23;3368:32;3365:52;;;3413:1;3410;3403:12;3365:52;3436:29;3455:9;3436:29;:::i;3658:347::-;3723:6;3731;3784:2;3772:9;3763:7;3759:23;3755:32;3752:52;;;3800:1;3797;3790:12;3752:52;3823:29;3842:9;3823:29;:::i;:::-;3813:39;;3902:2;3891:9;3887:18;3874:32;3949:5;3942:13;3935:21;3928:5;3925:32;3915:60;;3971:1;3968;3961:12;3915:60;3994:5;3984:15;;;3658:347;;;;;:::o;4010:127::-;4071:10;4066:3;4062:20;4059:1;4052:31;4102:4;4099:1;4092:15;4126:4;4123:1;4116:15;4142:1138;4237:6;4245;4253;4261;4314:3;4302:9;4293:7;4289:23;4285:33;4282:53;;;4331:1;4328;4321:12;4282:53;4354:29;4373:9;4354:29;:::i;:::-;4344:39;;4402:38;4436:2;4425:9;4421:18;4402:38;:::i;:::-;4392:48;;4487:2;4476:9;4472:18;4459:32;4449:42;;4542:2;4531:9;4527:18;4514:32;4565:18;4606:2;4598:6;4595:14;4592:34;;;4622:1;4619;4612:12;4592:34;4660:6;4649:9;4645:22;4635:32;;4705:7;4698:4;4694:2;4690:13;4686:27;4676:55;;4727:1;4724;4717:12;4676:55;4763:2;4750:16;4785:2;4781;4778:10;4775:36;;;4791:18;;:::i;:::-;4866:2;4860:9;4834:2;4920:13;;-1:-1:-1;;4916:22:1;;;4940:2;4912:31;4908:40;4896:53;;;4964:18;;;4984:22;;;4961:46;4958:72;;;5010:18;;:::i;:::-;5050:10;5046:2;5039:22;5085:2;5077:6;5070:18;5125:7;5120:2;5115;5111;5107:11;5103:20;5100:33;5097:53;;;5146:1;5143;5136:12;5097:53;5202:2;5197;5193;5189:11;5184:2;5176:6;5172:15;5159:46;5247:1;5242:2;5237;5229:6;5225:15;5221:24;5214:35;5268:6;5258:16;;;;;;;4142:1138;;;;;;;:::o;5285:260::-;5353:6;5361;5414:2;5402:9;5393:7;5389:23;5385:32;5382:52;;;5430:1;5427;5420:12;5382:52;5453:29;5472:9;5453:29;:::i;:::-;5443:39;;5501:38;5535:2;5524:9;5520:18;5501:38;:::i;:::-;5491:48;;5285:260;;;;;:::o;5550:380::-;5629:1;5625:12;;;;5672;;;5693:61;;5747:4;5739:6;5735:17;5725:27;;5693:61;5800:2;5792:6;5789:14;5769:18;5766:38;5763:161;;;5846:10;5841:3;5837:20;5834:1;5827:31;5881:4;5878:1;5871:15;5909:4;5906:1;5899:15;5763:161;;5550:380;;;:::o;6767:409::-;6969:2;6951:21;;;7008:2;6988:18;;;6981:30;7047:34;7042:2;7027:18;;7020:62;-1:-1:-1;;;7113:2:1;7098:18;;7091:43;7166:3;7151:19;;6767:409::o;8154:127::-;8215:10;8210:3;8206:20;8203:1;8196:31;8246:4;8243:1;8236:15;8270:4;8267:1;8260:15;8286:135;8325:3;-1:-1:-1;;8346:17:1;;8343:43;;;8366:18;;:::i;:::-;-1:-1:-1;8413:1:1;8402:13;;8286:135::o;8426:470::-;8605:3;8643:6;8637:13;8659:53;8705:6;8700:3;8693:4;8685:6;8681:17;8659:53;:::i;:::-;8775:13;;8734:16;;;;8797:57;8775:13;8734:16;8831:4;8819:17;;8797:57;:::i;:::-;8870:20;;8426:470;-1:-1:-1;;;;8426:470:1:o;9262:273::-;9447:6;9439;9434:3;9421:33;9403:3;9473:16;;9498:13;;;9473:16;9262:273;-1:-1:-1;9262:273:1:o;10668:401::-;10870:2;10852:21;;;10909:2;10889:18;;;10882:30;10948:34;10943:2;10928:18;;10921:62;-1:-1:-1;;;11014:2:1;10999:18;;10992:35;11059:3;11044:19;;10668:401::o;11833:414::-;12035:2;12017:21;;;12074:2;12054:18;;;12047:30;12113:34;12108:2;12093:18;;12086:62;-1:-1:-1;;;12179:2:1;12164:18;;12157:48;12237:3;12222:19;;11833:414::o;13078:489::-;-1:-1:-1;;;;;13347:15:1;;;13329:34;;13399:15;;13394:2;13379:18;;13372:43;13446:2;13431:18;;13424:34;;;13494:3;13489:2;13474:18;;13467:31;;;13272:4;;13515:46;;13541:19;;13533:6;13515:46;:::i;:::-;13507:54;13078:489;-1:-1:-1;;;;;;13078:489:1:o;13572:249::-;13641:6;13694:2;13682:9;13673:7;13669:23;13665:32;13662:52;;;13710:1;13707;13700:12;13662:52;13742:9;13736:16;13761:30;13785:5;13761:30;:::i;13826:125::-;13866:4;13894:1;13891;13888:8;13885:34;;;13899:18;;:::i;:::-;-1:-1:-1;13936:9:1;;13826:125::o;13956:128::-;13996:3;14027:1;14023:6;14020:1;14017:13;14014:39;;;14033:18;;:::i;:::-;-1:-1:-1;14069:9:1;;13956:128::o

Swarm Source

ipfs://296521b3c7d764b4a8fd672a621ce2f5093b67e13f1897321d406218ccb8488d
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.