ETH Price: $2,285.12 (-3.33%)
Gas: 3.74 Gwei

Token

DollarSqueeze (DSQ)
 

Overview

Max Total Supply

5,000 DSQ

Holders

70

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 DSQ
0xde193b9d4901694dfe2e37602fa6bf419d840d3e
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:
DollarSqueezeNFT

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
Author: @bLock_doctor
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
 
/**
 * @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: @openzeppelin/contracts/interfaces/draft-IERC6093.sol
 
 
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
 
/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
 
    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);
 
    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);
 
    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
 
    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);
 
    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}
 
/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);
 
    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);
 
    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
 
    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);
 
    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);
 
    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);
 
    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);
 
    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}
 
/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);
 
    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);
 
    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);
 
    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);
 
    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);
 
    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);
 
    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}
 
// File: @openzeppelin/contracts/utils/math/SignedMath.sol
 
 
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)
 
 
/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }
 
    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }
 
    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }
 
    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}
 
// File: @openzeppelin/contracts/utils/math/Math.sol
 
 
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)
 
 
/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();
 
    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }
 
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }
 
    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }
 
    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }
 
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }
 
    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }
 
    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }
 
    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }
 
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }
 
    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
     * Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }
 
            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }
 
            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }
 
            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////
 
            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)
 
                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }
 
            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.
            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.
 
            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)
 
                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)
 
                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }
 
            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;
 
            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;
 
            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
            // works in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256
 
            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }
 
    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }
 
    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
 
        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);
 
        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }
 
    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }
 
    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }
 
    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }
 
    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }
 
    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }
 
    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }
 
    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }
 
    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}
 
// File: @openzeppelin/contracts/utils/Strings.sol
 
 
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)
 
 
 
 
/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant HEX_DIGITS = "0123456789abcdef";
    uint8 private constant ADDRESS_LENGTH = 20;
 
    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);
 
    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }
 
    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }
 
    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }
 
    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        uint256 localValue = value;
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = HEX_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        return string(buffer);
    }
 
    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal
     * representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);
    }
 
    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}
 
// File: @openzeppelin/contracts/utils/Context.sol
 
 
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)
 
 
/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
 
    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
 
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
 
 
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol)
 
 
/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be
     * reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}
 
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
 
 
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)
 
 
/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
 
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
 
 
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)
 
 
 
/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}
 
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
 
 
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol)
 
 
 
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
 
    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
 
    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
 
    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);
 
    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);
 
    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon
     *   a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
 
    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or
     *   {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon
     *   a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;
 
    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;
 
    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;
 
    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the address zero.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) external;
 
    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);
 
    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}
 
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
 
 
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol)
 
 
 
/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);
 
    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);
 
    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}
 
// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
 
 
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/ERC721.sol)
 
 
/**
 * @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}.
 */
abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors {
    using Strings for uint256;
 
    // Token name
    string private _name;
 
    // Token symbol
    string private _symbol;
 
    mapping(uint256 tokenId => address) private _owners;
 
    mapping(address owner => uint256) private _balances;
 
    mapping(uint256 tokenId => address) private _tokenApprovals;
 
    mapping(address owner => mapping(address operator => 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 returns (uint256) {
        if (owner == address(0)) {
            revert ERC721InvalidOwner(address(0));
        }
        return _balances[owner];
    }
 
    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual returns (address) {
        return _requireOwned(tokenId);
    }
 
    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }
 
    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }
 
    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual returns (string memory) {
        _requireOwned(tokenId);
 
        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string.concat(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 {
        _approve(to, tokenId, _msgSender());
    }
 
    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual returns (address) {
        _requireOwned(tokenId);
 
        return _getApproved(tokenId);
    }
 
    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual {
        _setApprovalForAll(_msgSender(), operator, approved);
    }
 
    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual returns (bool) {
        return _operatorApprovals[owner][operator];
    }
 
    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists
        // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here.
        address previousOwner = _update(to, tokenId, _msgSender());
        if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }
 
    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public {
        safeTransferFrom(from, to, tokenId, "");
    }
 
    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual {
        transferFrom(from, to, tokenId);
        _checkOnERC721Received(from, to, tokenId, data);
    }
 
    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     *
     * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the
     * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances
     * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by
     * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`.
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }
 
    /**
     * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted.
     */
    function _getApproved(uint256 tokenId) internal view virtual returns (address) {
        return _tokenApprovals[tokenId];
    }
 
    /**
     * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in
     * particular (ignoring whether it is owned by `owner`).
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) {
        return
            spender != address(0) &&
            (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender);
    }
 
    /**
     * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner.
     * Reverts if `spender` does not have approval from the provided `owner` for the given token or for all its assets
     * the `spender` for the specific `tokenId`.
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual {
        if (!_isAuthorized(owner, spender, tokenId)) {
            if (owner == address(0)) {
                revert ERC721NonexistentToken(tokenId);
            } else {
                revert ERC721InsufficientApproval(spender, tokenId);
            }
        }
    }
 
    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that
     * a uint256 would ever overflow from increments when these increments are bounded to uint128 values.
     *
     * WARNING: Increasing an account's balance using this function tends to be paired with an override of the
     * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership
     * remain consistent with one another.
     */
    function _increaseBalance(address account, uint128 value) internal virtual {
        unchecked {
            _balances[account] += value;
        }
    }
 
    /**
     * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner
     * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update.
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that
     * `auth` is either the owner of the token, or approved to operate on the token (by the owner).
     *
     * Emits a {Transfer} event.
     *
     * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}.
     */
    function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) {
        address from = _ownerOf(tokenId);
 
        // Perform (optional) operator check
        if (auth != address(0)) {
            _checkAuthorized(from, auth, tokenId);
        }
 
        // Execute the update
        if (from != address(0)) {
            // Clear approval. No need to re-authorize or emit the Approval event
            _approve(address(0), tokenId, address(0), false);
 
            unchecked {
                _balances[from] -= 1;
            }
        }
 
        if (to != address(0)) {
            unchecked {
                _balances[to] += 1;
            }
        }
 
        _owners[tokenId] = to;
 
        emit Transfer(from, to, tokenId);
 
        return from;
    }
 
    /**
     * @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 {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner != address(0)) {
            revert ERC721InvalidSender(address(0));
        }
    }
 
    /**
     * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance.
     *
     * 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 {
        _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);
        _checkOnERC721Received(address(0), to, tokenId, data);
    }
 
    /**
     * @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 {
        address previousOwner = _update(address(0), tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        }
    }
 
    /**
     * @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 {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        } else if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }
 
    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients
     * are aware of the ERC721 standard 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 like {safeTransferFrom} in the sense that it invokes
     * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `tokenId` token must exist and be owned by `from`.
     * - `to` cannot be the zero address.
     * - `from` cannot be the zero address.
     * - 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) internal {
        _safeTransfer(from, to, tokenId, "");
    }
 
    /**
     * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
        _transfer(from, to, tokenId);
        _checkOnERC721Received(from, to, tokenId, data);
    }
 
    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is
     * either the owner of the token, or approved to operate on all tokens held by this owner.
     *
     * Emits an {Approval} event.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address to, uint256 tokenId, address auth) internal {
        _approve(to, tokenId, auth, true);
    }
 
    /**
     * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not
     * emitted in the context of transfers.
     */
    function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual {
        // Avoid reading the owner unless necessary
        if (emitEvent || auth != address(0)) {
            address owner = _requireOwned(tokenId);
 
            // We do not use _isAuthorized because single-token approvals should not be able to call approve
            if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) {
                revert ERC721InvalidApprover(auth);
            }
 
            if (emitEvent) {
                emit Approval(owner, to, tokenId);
            }
        }
 
        _tokenApprovals[tokenId] = to;
    }
 
    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Requirements:
     * - operator can't be the address zero.
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        if (operator == address(0)) {
            revert ERC721InvalidOperator(operator);
        }
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }
 
    /**
     * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned).
     * Returns the owner.
     *
     * Overrides to ownership logic should be done to {_ownerOf}.
     */
    function _requireOwned(uint256 tokenId) internal view returns (address) {
        address owner = _ownerOf(tokenId);
        if (owner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        }
        return owner;
    }
 
    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target address. This will revert if the
     * recipient doesn't accept the token transfer. 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
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private {
        if (to.code.length > 0) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                if (retval != IERC721Receiver.onERC721Received.selector) {
                    revert ERC721InvalidReceiver(to);
                }
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert ERC721InvalidReceiver(to);
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }
    }
}
 
// File: contracts/DSQTreasureChest.sol
 
contract DollarSqueezeNFT is ERC721 {
 
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdCounter;
 
    bool public mintingEnabled;
    uint256 public mintPrice = 0.027 ether;
    uint256 public constant MAX_SUPPLY = 5000;
 
    address public ownerAddress;
    address public multiSigAddress;
 
    bool public ownershipTransferred;
 
    modifier onlyOwner {
        require(msg.sender == ownerAddress, "Caller not owner!");
        _;
    }
 
    event NewMint(address indexed minter, uint256 indexed amount);
    event OwnershipTransferred(address indexed newOwner);
 
    constructor() ERC721 ("DollarSqueeze", "DSQ") {
        ownerAddress = msg.sender;
        multiSigAddress = 0x426F590062DFBBD5aA3654556C4aA4893f362057;
    }
 
    function mintNFT(uint256 amountToMint) public payable {
        require(mintingEnabled, "Minting is not enabled!");
        require(
            amountToMint == 1 ||
            amountToMint == 5 ||
            amountToMint == 10 ||
            amountToMint == 15 ||
            amountToMint == 20,
            "Can only mint 1, 5, 10, 15 20."
        );
        require(msg.value >= mintPrice * amountToMint, "Insufficient ETH!");
        require(_tokenIdCounter.current() < MAX_SUPPLY, "Minting Finished.");
        require(getAmountRemaining() >= amountToMint, "Not enough supply left.");
        for (uint256 i = 0; i < amountToMint; i++) {
            uint256 tokenId = _tokenIdCounter.current();
            _tokenIdCounter.increment();
            _mint(msg.sender, tokenId);
        }
        emit NewMint(msg.sender, amountToMint);
    }
 
    function tokenURI(uint256 tokenId) public pure override  returns (string memory) {
        return "https://gateway.pinata.cloud/ipfs/QmT3PqYCTHCSLhshFdXowurXAtM9Ew2Ps2FgzSu8TtMnKa";
    }
 
    function ownerUpdateMintPrice(uint256 amountWei) public onlyOwner {
        require(amountWei > 0, "Wei must be greater than zero.");
        mintPrice = amountWei;
    }
 
    function ownerWithdrawETH() public onlyOwner {
        (bool success, ) = payable(multiSigAddress).call{value: address(this).balance}("");
        require(success, "Withdraw ETH failed.");
    }
 
    function transferOwnership(address newOwner) public onlyOwner {
        require(!ownershipTransferred);
        ownerAddress = newOwner;
        ownershipTransferred = true;
        emit OwnershipTransferred(newOwner);
    }
 
    function ownerToggleMinting() public onlyOwner {
        mintingEnabled = !mintingEnabled;
    }
 
    function getAmountRemaining() public view returns (uint256) {
        return MAX_SUPPLY - _tokenIdCounter.current();
    }
 
    function totalSupply() public view virtual returns (uint256) {
        return MAX_SUPPLY;
    }
 
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"minter","type":"address"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"NewMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAmountRemaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToMint","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"multiSigAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerAddress","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":"ownerToggleMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountWei","type":"uint256"}],"name":"ownerUpdateMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ownerWithdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ownershipTransferred","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"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":"pure","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"}]

6080604052665fec5b60ef80006008553480156200001b575f80fd5b506040518060400160405280600d81526020017f446f6c6c617253717565657a65000000000000000000000000000000000000008152506040518060400160405280600381526020017f4453510000000000000000000000000000000000000000000000000000000000815250815f9081620000989190620003ab565b508060019081620000aa9190620003ab565b5050503360095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073426f590062dfbbd5aa3654556c4aa4893f362057600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200048f565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620001c357607f821691505b602082108103620001d957620001d86200017e565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200023d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000200565b62000249868362000200565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620002936200028d620002878462000261565b6200026a565b62000261565b9050919050565b5f819050919050565b620002ae8362000273565b620002c6620002bd826200029a565b8484546200020c565b825550505050565b5f90565b620002dc620002ce565b620002e9818484620002a3565b505050565b5b818110156200031057620003045f82620002d2565b600181019050620002ef565b5050565b601f8211156200035f576200032981620001df565b6200033484620001f1565b8101602085101562000344578190505b6200035c6200035385620001f1565b830182620002ee565b50505b505050565b5f82821c905092915050565b5f620003815f198460080262000364565b1980831691505092915050565b5f6200039b838362000370565b9150826002028217905092915050565b620003b68262000147565b67ffffffffffffffff811115620003d257620003d162000151565b5b620003de8254620001ab565b620003eb82828562000314565b5f60209050601f83116001811462000421575f84156200040c578287015190505b6200041885826200038e565b86555062000487565b601f1984166200043186620001df565b5f5b828110156200045a5784890151825560018201915060208501945060208101905062000433565b868310156200047a578489015162000476601f89168262000370565b8355505b6001600288020188555050505b505050505050565b6128e6806200049d5f395ff3fe608060405260043610610180575f3560e01c80636817c76c116100d0578063a22cb46511610089578063c87b56dd11610063578063c87b56dd14610526578063e6cfe6fc14610562578063e985e9c51461058c578063f2fde38b146105c857610180565b8063a22cb465146104ae578063b6e4c317146104d6578063b88d4fde146104fe57610180565b80636817c76c146103ae57806370a08231146103d85780638f84aa0914610414578063926427441461043e57806395d89b411461045a5780639fd6db121461048457610180565b806323b872dd1161013d57806332cb6b0c1161011757806332cb6b0c146102f65780633c55516c1461032057806342842e0e1461034a5780636352211e1461037257610180565b806323b872dd146102a257806325bdc7f6146102ca57806327a910dc146102e057610180565b806301ffc9a71461018457806306fdde03146101c0578063081812fc146101ea578063095ea7b3146102265780631516def71461024e57806318160ddd14610278575b5f80fd5b34801561018f575f80fd5b506101aa60048036038101906101a59190611d48565b6105f0565b6040516101b79190611d8d565b60405180910390f35b3480156101cb575f80fd5b506101d46106d1565b6040516101e19190611e30565b60405180910390f35b3480156101f5575f80fd5b50610210600480360381019061020b9190611e83565b610760565b60405161021d9190611eed565b60405180910390f35b348015610231575f80fd5b5061024c60048036038101906102479190611f30565b61077b565b005b348015610259575f80fd5b50610262610791565b60405161026f9190611eed565b60405180910390f35b348015610283575f80fd5b5061028c6107b6565b6040516102999190611f7d565b60405180910390f35b3480156102ad575f80fd5b506102c860048036038101906102c39190611f96565b6107bf565b005b3480156102d5575f80fd5b506102de6108be565b005b3480156102eb575f80fd5b506102f4610977565b005b348015610301575f80fd5b5061030a610ad2565b6040516103179190611f7d565b60405180910390f35b34801561032b575f80fd5b50610334610ad8565b6040516103419190611f7d565b60405180910390f35b348015610355575f80fd5b50610370600480360381019061036b9190611f96565b610af5565b005b34801561037d575f80fd5b5061039860048036038101906103939190611e83565b610b14565b6040516103a59190611eed565b60405180910390f35b3480156103b9575f80fd5b506103c2610b25565b6040516103cf9190611f7d565b60405180910390f35b3480156103e3575f80fd5b506103fe60048036038101906103f99190611fe6565b610b2b565b60405161040b9190611f7d565b60405180910390f35b34801561041f575f80fd5b50610428610be1565b6040516104359190611eed565b60405180910390f35b61045860048036038101906104539190611e83565b610c06565b005b348015610465575f80fd5b5061046e610e31565b60405161047b9190611e30565b60405180910390f35b34801561048f575f80fd5b50610498610ec1565b6040516104a59190611d8d565b60405180910390f35b3480156104b9575f80fd5b506104d460048036038101906104cf919061203b565b610ed3565b005b3480156104e1575f80fd5b506104fc60048036038101906104f79190611e83565b610ee9565b005b348015610509575f80fd5b50610524600480360381019061051f91906121a5565b610fc4565b005b348015610531575f80fd5b5061054c60048036038101906105479190611e83565b610fe1565b6040516105599190611e30565b60405180910390f35b34801561056d575f80fd5b50610576611003565b6040516105839190611d8d565b60405180910390f35b348015610597575f80fd5b506105b260048036038101906105ad9190612225565b611016565b6040516105bf9190611d8d565b60405180910390f35b3480156105d3575f80fd5b506105ee60048036038101906105e99190611fe6565b6110a4565b005b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106ca57506106c9826111ed565b5b9050919050565b60605f80546106df90612290565b80601f016020809104026020016040519081016040528092919081815260200182805461070b90612290565b80156107565780601f1061072d57610100808354040283529160200191610756565b820191905f5260205f20905b81548152906001019060200180831161073957829003601f168201915b5050505050905090565b5f61076a82611256565b50610774826112dc565b9050919050565b61078d8282610788611315565b61131c565b5050565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f611388905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361082f575f6040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016108269190611eed565b60405180910390fd5b5f610842838361083d611315565b61132e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108b8578382826040517f64283d7b0000000000000000000000000000000000000000000000000000000081526004016108af939291906122c0565b60405180910390fd5b50505050565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461094d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109449061233f565b60405180910390fd5b60075f9054906101000a900460ff161560075f6101000a81548160ff021916908315150217905550565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fd9061233f565b60405180910390fd5b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610a4c9061238a565b5f6040518083038185875af1925050503d805f8114610a86576040519150601f19603f3d011682016040523d82523d5f602084013e610a8b565b606091505b5050905080610acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac6906123e8565b60405180910390fd5b50565b61138881565b5f610ae36006611539565b611388610af09190612433565b905090565b610b0f83838360405180602001604052805f815250610fc4565b505050565b5f610b1e82611256565b9050919050565b60085481565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b9c575f6040517f89c62b64000000000000000000000000000000000000000000000000000000008152600401610b939190611eed565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075f9054906101000a900460ff16610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b906124b0565b60405180910390fd5b6001811480610c635750600581145b80610c6e5750600a81145b80610c795750600f81145b80610c845750601481145b610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba90612518565b60405180910390fd5b80600854610cd19190612536565b341015610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a906125c1565b60405180910390fd5b611388610d206006611539565b10610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5790612629565b60405180910390fd5b80610d69610ad8565b1015610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da190612691565b60405180910390fd5b5f5b81811015610de9575f610dbf6006611539565b9050610dcb6006611545565b610dd53382611559565b508080610de1906126af565b915050610dac565b50803373ffffffffffffffffffffffffffffffffffffffff167f52277f0b4a9b555c5aa96900a13546f972bda413737ec164aac947c87eec602460405160405180910390a350565b606060018054610e4090612290565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6c90612290565b8015610eb75780601f10610e8e57610100808354040283529160200191610eb7565b820191905f5260205f20905b815481529060010190602001808311610e9a57829003601f168201915b5050505050905090565b60075f9054906101000a900460ff1681565b610ee5610ede611315565b838361164c565b5050565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f9061233f565b60405180910390fd5b5f8111610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb190612740565b60405180910390fd5b8060088190555050565b610fcf8484846107bf565b610fdb848484846117b5565b50505050565b6060604051806080016040528060508152602001612861605091399050919050565b600a60149054906101000a900460ff1681565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a9061233f565b60405180910390fd5b600a60149054906101000a900460ff161561114c575f80fd5b8060095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600a60146101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f04dba622d284ed0014ee4b9a6a68386be1a4c08a4913ae272de89199cc68616360405160405180910390a250565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f8061126183611967565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112d357826040517f7e2732890000000000000000000000000000000000000000000000000000000081526004016112ca9190611f7d565b60405180910390fd5b80915050919050565b5f60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f33905090565b61132983838360016119a0565b505050565b5f8061133984611967565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461137a57611379818486611b5f565b5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611405576113b95f855f806119a0565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825403925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161461148457600160035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8460025f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b5f815f01549050919050565b6001815f015f828254019250508190555050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115c9575f6040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016115c09190611eed565b60405180910390fd5b5f6115d583835f61132e565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611647575f6040517f73c6ac6e00000000000000000000000000000000000000000000000000000000815260040161163e9190611eed565b60405180910390fd5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116bc57816040517f5b08ba180000000000000000000000000000000000000000000000000000000081526004016116b39190611eed565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117a89190611d8d565b60405180910390a3505050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1115611961578273ffffffffffffffffffffffffffffffffffffffff1663150b7a026117f8611315565b8685856040518563ffffffff1660e01b815260040161181a94939291906127b0565b6020604051808303815f875af192505050801561185557506040513d601f19601f82011682018060405250810190611852919061280e565b60015b6118d6573d805f8114611883576040519150601f19603f3d011682016040523d82523d5f602084013e611888565b606091505b505f8151036118ce57836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016118c59190611eed565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461195f57836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016119569190611eed565b60405180910390fd5b505b50505050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b80806119d857505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611b0a575f6119e784611256565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611a5157508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b8015611a645750611a628184611016565b155b15611aa657826040517fa9fbf51f000000000000000000000000000000000000000000000000000000008152600401611a9d9190611eed565b60405180910390fd5b8115611b0857838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b8360045f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b611b6a838383611c22565b611c1d575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611bde57806040517f7e273289000000000000000000000000000000000000000000000000000000008152600401611bd59190611f7d565b60405180910390fd5b81816040517f177e802f000000000000000000000000000000000000000000000000000000008152600401611c14929190612839565b60405180910390fd5b505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611cd957508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c9a5750611c998484611016565b5b80611cd857508273ffffffffffffffffffffffffffffffffffffffff16611cc0836112dc565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611d2781611cf3565b8114611d31575f80fd5b50565b5f81359050611d4281611d1e565b92915050565b5f60208284031215611d5d57611d5c611ceb565b5b5f611d6a84828501611d34565b91505092915050565b5f8115159050919050565b611d8781611d73565b82525050565b5f602082019050611da05f830184611d7e565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611ddd578082015181840152602081019050611dc2565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611e0282611da6565b611e0c8185611db0565b9350611e1c818560208601611dc0565b611e2581611de8565b840191505092915050565b5f6020820190508181035f830152611e488184611df8565b905092915050565b5f819050919050565b611e6281611e50565b8114611e6c575f80fd5b50565b5f81359050611e7d81611e59565b92915050565b5f60208284031215611e9857611e97611ceb565b5b5f611ea584828501611e6f565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611ed782611eae565b9050919050565b611ee781611ecd565b82525050565b5f602082019050611f005f830184611ede565b92915050565b611f0f81611ecd565b8114611f19575f80fd5b50565b5f81359050611f2a81611f06565b92915050565b5f8060408385031215611f4657611f45611ceb565b5b5f611f5385828601611f1c565b9250506020611f6485828601611e6f565b9150509250929050565b611f7781611e50565b82525050565b5f602082019050611f905f830184611f6e565b92915050565b5f805f60608486031215611fad57611fac611ceb565b5b5f611fba86828701611f1c565b9350506020611fcb86828701611f1c565b9250506040611fdc86828701611e6f565b9150509250925092565b5f60208284031215611ffb57611ffa611ceb565b5b5f61200884828501611f1c565b91505092915050565b61201a81611d73565b8114612024575f80fd5b50565b5f8135905061203581612011565b92915050565b5f806040838503121561205157612050611ceb565b5b5f61205e85828601611f1c565b925050602061206f85828601612027565b9150509250929050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6120b782611de8565b810181811067ffffffffffffffff821117156120d6576120d5612081565b5b80604052505050565b5f6120e8611ce2565b90506120f482826120ae565b919050565b5f67ffffffffffffffff82111561211357612112612081565b5b61211c82611de8565b9050602081019050919050565b828183375f83830152505050565b5f612149612144846120f9565b6120df565b9050828152602081018484840111156121655761216461207d565b5b612170848285612129565b509392505050565b5f82601f83011261218c5761218b612079565b5b813561219c848260208601612137565b91505092915050565b5f805f80608085870312156121bd576121bc611ceb565b5b5f6121ca87828801611f1c565b94505060206121db87828801611f1c565b93505060406121ec87828801611e6f565b925050606085013567ffffffffffffffff81111561220d5761220c611cef565b5b61221987828801612178565b91505092959194509250565b5f806040838503121561223b5761223a611ceb565b5b5f61224885828601611f1c565b925050602061225985828601611f1c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806122a757607f821691505b6020821081036122ba576122b9612263565b5b50919050565b5f6060820190506122d35f830186611ede565b6122e06020830185611f6e565b6122ed6040830184611ede565b949350505050565b7f43616c6c6572206e6f74206f776e6572210000000000000000000000000000005f82015250565b5f612329601183611db0565b9150612334826122f5565b602082019050919050565b5f6020820190508181035f8301526123568161231d565b9050919050565b5f81905092915050565b50565b5f6123755f8361235d565b915061238082612367565b5f82019050919050565b5f6123948261236a565b9150819050919050565b7f576974686472617720455448206661696c65642e0000000000000000000000005f82015250565b5f6123d2601483611db0565b91506123dd8261239e565b602082019050919050565b5f6020820190508181035f8301526123ff816123c6565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61243d82611e50565b915061244883611e50565b92508282039050818111156124605761245f612406565b5b92915050565b7f4d696e74696e67206973206e6f7420656e61626c6564210000000000000000005f82015250565b5f61249a601783611db0565b91506124a582612466565b602082019050919050565b5f6020820190508181035f8301526124c78161248e565b9050919050565b7f43616e206f6e6c79206d696e7420312c20352c2031302c2031352032302e00005f82015250565b5f612502601e83611db0565b915061250d826124ce565b602082019050919050565b5f6020820190508181035f83015261252f816124f6565b9050919050565b5f61254082611e50565b915061254b83611e50565b925082820261255981611e50565b915082820484148315176125705761256f612406565b5b5092915050565b7f496e73756666696369656e7420455448210000000000000000000000000000005f82015250565b5f6125ab601183611db0565b91506125b682612577565b602082019050919050565b5f6020820190508181035f8301526125d88161259f565b9050919050565b7f4d696e74696e672046696e69736865642e0000000000000000000000000000005f82015250565b5f612613601183611db0565b915061261e826125df565b602082019050919050565b5f6020820190508181035f83015261264081612607565b9050919050565b7f4e6f7420656e6f75676820737570706c79206c6566742e0000000000000000005f82015250565b5f61267b601783611db0565b915061268682612647565b602082019050919050565b5f6020820190508181035f8301526126a88161266f565b9050919050565b5f6126b982611e50565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036126eb576126ea612406565b5b600182019050919050565b7f576569206d7573742062652067726561746572207468616e207a65726f2e00005f82015250565b5f61272a601e83611db0565b9150612735826126f6565b602082019050919050565b5f6020820190508181035f8301526127578161271e565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f6127828261275e565b61278c8185612768565b935061279c818560208601611dc0565b6127a581611de8565b840191505092915050565b5f6080820190506127c35f830187611ede565b6127d06020830186611ede565b6127dd6040830185611f6e565b81810360608301526127ef8184612778565b905095945050505050565b5f8151905061280881611d1e565b92915050565b5f6020828403121561282357612822611ceb565b5b5f612830848285016127fa565b91505092915050565b5f60408201905061284c5f830185611ede565b6128596020830184611f6e565b939250505056fe68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d543350715943544843534c6873684664586f7775725841744d3945773250733246677a53753854744d6e4b61a2646970667358221220857da316c4f22d54e09904c2d925574b2adb22768b4fef8c953ccac17bf83f8964736f6c63430008140033

Deployed Bytecode

0x608060405260043610610180575f3560e01c80636817c76c116100d0578063a22cb46511610089578063c87b56dd11610063578063c87b56dd14610526578063e6cfe6fc14610562578063e985e9c51461058c578063f2fde38b146105c857610180565b8063a22cb465146104ae578063b6e4c317146104d6578063b88d4fde146104fe57610180565b80636817c76c146103ae57806370a08231146103d85780638f84aa0914610414578063926427441461043e57806395d89b411461045a5780639fd6db121461048457610180565b806323b872dd1161013d57806332cb6b0c1161011757806332cb6b0c146102f65780633c55516c1461032057806342842e0e1461034a5780636352211e1461037257610180565b806323b872dd146102a257806325bdc7f6146102ca57806327a910dc146102e057610180565b806301ffc9a71461018457806306fdde03146101c0578063081812fc146101ea578063095ea7b3146102265780631516def71461024e57806318160ddd14610278575b5f80fd5b34801561018f575f80fd5b506101aa60048036038101906101a59190611d48565b6105f0565b6040516101b79190611d8d565b60405180910390f35b3480156101cb575f80fd5b506101d46106d1565b6040516101e19190611e30565b60405180910390f35b3480156101f5575f80fd5b50610210600480360381019061020b9190611e83565b610760565b60405161021d9190611eed565b60405180910390f35b348015610231575f80fd5b5061024c60048036038101906102479190611f30565b61077b565b005b348015610259575f80fd5b50610262610791565b60405161026f9190611eed565b60405180910390f35b348015610283575f80fd5b5061028c6107b6565b6040516102999190611f7d565b60405180910390f35b3480156102ad575f80fd5b506102c860048036038101906102c39190611f96565b6107bf565b005b3480156102d5575f80fd5b506102de6108be565b005b3480156102eb575f80fd5b506102f4610977565b005b348015610301575f80fd5b5061030a610ad2565b6040516103179190611f7d565b60405180910390f35b34801561032b575f80fd5b50610334610ad8565b6040516103419190611f7d565b60405180910390f35b348015610355575f80fd5b50610370600480360381019061036b9190611f96565b610af5565b005b34801561037d575f80fd5b5061039860048036038101906103939190611e83565b610b14565b6040516103a59190611eed565b60405180910390f35b3480156103b9575f80fd5b506103c2610b25565b6040516103cf9190611f7d565b60405180910390f35b3480156103e3575f80fd5b506103fe60048036038101906103f99190611fe6565b610b2b565b60405161040b9190611f7d565b60405180910390f35b34801561041f575f80fd5b50610428610be1565b6040516104359190611eed565b60405180910390f35b61045860048036038101906104539190611e83565b610c06565b005b348015610465575f80fd5b5061046e610e31565b60405161047b9190611e30565b60405180910390f35b34801561048f575f80fd5b50610498610ec1565b6040516104a59190611d8d565b60405180910390f35b3480156104b9575f80fd5b506104d460048036038101906104cf919061203b565b610ed3565b005b3480156104e1575f80fd5b506104fc60048036038101906104f79190611e83565b610ee9565b005b348015610509575f80fd5b50610524600480360381019061051f91906121a5565b610fc4565b005b348015610531575f80fd5b5061054c60048036038101906105479190611e83565b610fe1565b6040516105599190611e30565b60405180910390f35b34801561056d575f80fd5b50610576611003565b6040516105839190611d8d565b60405180910390f35b348015610597575f80fd5b506105b260048036038101906105ad9190612225565b611016565b6040516105bf9190611d8d565b60405180910390f35b3480156105d3575f80fd5b506105ee60048036038101906105e99190611fe6565b6110a4565b005b5f7f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ba57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106ca57506106c9826111ed565b5b9050919050565b60605f80546106df90612290565b80601f016020809104026020016040519081016040528092919081815260200182805461070b90612290565b80156107565780601f1061072d57610100808354040283529160200191610756565b820191905f5260205f20905b81548152906001019060200180831161073957829003601f168201915b5050505050905090565b5f61076a82611256565b50610774826112dc565b9050919050565b61078d8282610788611315565b61131c565b5050565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f611388905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361082f575f6040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016108269190611eed565b60405180910390fd5b5f610842838361083d611315565b61132e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146108b8578382826040517f64283d7b0000000000000000000000000000000000000000000000000000000081526004016108af939291906122c0565b60405180910390fd5b50505050565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461094d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109449061233f565b60405180910390fd5b60075f9054906101000a900460ff161560075f6101000a81548160ff021916908315150217905550565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fd9061233f565b60405180910390fd5b5f600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610a4c9061238a565b5f6040518083038185875af1925050503d805f8114610a86576040519150601f19603f3d011682016040523d82523d5f602084013e610a8b565b606091505b5050905080610acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac6906123e8565b60405180910390fd5b50565b61138881565b5f610ae36006611539565b611388610af09190612433565b905090565b610b0f83838360405180602001604052805f815250610fc4565b505050565b5f610b1e82611256565b9050919050565b60085481565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b9c575f6040517f89c62b64000000000000000000000000000000000000000000000000000000008152600401610b939190611eed565b60405180910390fd5b60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60075f9054906101000a900460ff16610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b906124b0565b60405180910390fd5b6001811480610c635750600581145b80610c6e5750600a81145b80610c795750600f81145b80610c845750601481145b610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba90612518565b60405180910390fd5b80600854610cd19190612536565b341015610d13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0a906125c1565b60405180910390fd5b611388610d206006611539565b10610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5790612629565b60405180910390fd5b80610d69610ad8565b1015610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da190612691565b60405180910390fd5b5f5b81811015610de9575f610dbf6006611539565b9050610dcb6006611545565b610dd53382611559565b508080610de1906126af565b915050610dac565b50803373ffffffffffffffffffffffffffffffffffffffff167f52277f0b4a9b555c5aa96900a13546f972bda413737ec164aac947c87eec602460405160405180910390a350565b606060018054610e4090612290565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6c90612290565b8015610eb75780601f10610e8e57610100808354040283529160200191610eb7565b820191905f5260205f20905b815481529060010190602001808311610e9a57829003601f168201915b5050505050905090565b60075f9054906101000a900460ff1681565b610ee5610ede611315565b838361164c565b5050565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6f9061233f565b60405180910390fd5b5f8111610fba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb190612740565b60405180910390fd5b8060088190555050565b610fcf8484846107bf565b610fdb848484846117b5565b50505050565b6060604051806080016040528060508152602001612861605091399050919050565b600a60149054906101000a900460ff1681565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a9061233f565b60405180910390fd5b600a60149054906101000a900460ff161561114c575f80fd5b8060095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600a60146101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f04dba622d284ed0014ee4b9a6a68386be1a4c08a4913ae272de89199cc68616360405160405180910390a250565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b5f8061126183611967565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112d357826040517f7e2732890000000000000000000000000000000000000000000000000000000081526004016112ca9190611f7d565b60405180910390fd5b80915050919050565b5f60045f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f33905090565b61132983838360016119a0565b505050565b5f8061133984611967565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461137a57611379818486611b5f565b5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611405576113b95f855f806119a0565b600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825403925050819055505b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161461148457600160035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8460025f8681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4809150509392505050565b5f815f01549050919050565b6001815f015f828254019250508190555050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115c9575f6040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016115c09190611eed565b60405180910390fd5b5f6115d583835f61132e565b90505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611647575f6040517f73c6ac6e00000000000000000000000000000000000000000000000000000000815260040161163e9190611eed565b60405180910390fd5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116bc57816040517f5b08ba180000000000000000000000000000000000000000000000000000000081526004016116b39190611eed565b60405180910390fd5b8060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117a89190611d8d565b60405180910390a3505050565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1115611961578273ffffffffffffffffffffffffffffffffffffffff1663150b7a026117f8611315565b8685856040518563ffffffff1660e01b815260040161181a94939291906127b0565b6020604051808303815f875af192505050801561185557506040513d601f19601f82011682018060405250810190611852919061280e565b60015b6118d6573d805f8114611883576040519150601f19603f3d011682016040523d82523d5f602084013e611888565b606091505b505f8151036118ce57836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016118c59190611eed565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461195f57836040517f64a0ae920000000000000000000000000000000000000000000000000000000081526004016119569190611eed565b60405180910390fd5b505b50505050565b5f60025f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b80806119d857505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611b0a575f6119e784611256565b90505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611a5157508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b8015611a645750611a628184611016565b155b15611aa657826040517fa9fbf51f000000000000000000000000000000000000000000000000000000008152600401611a9d9190611eed565b60405180910390fd5b8115611b0857838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b8360045f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b611b6a838383611c22565b611c1d575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611bde57806040517f7e273289000000000000000000000000000000000000000000000000000000008152600401611bd59190611f7d565b60405180910390fd5b81816040517f177e802f000000000000000000000000000000000000000000000000000000008152600401611c14929190612839565b60405180910390fd5b505050565b5f8073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611cd957508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c9a5750611c998484611016565b5b80611cd857508273ffffffffffffffffffffffffffffffffffffffff16611cc0836112dc565b73ffffffffffffffffffffffffffffffffffffffff16145b5b90509392505050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611d2781611cf3565b8114611d31575f80fd5b50565b5f81359050611d4281611d1e565b92915050565b5f60208284031215611d5d57611d5c611ceb565b5b5f611d6a84828501611d34565b91505092915050565b5f8115159050919050565b611d8781611d73565b82525050565b5f602082019050611da05f830184611d7e565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611ddd578082015181840152602081019050611dc2565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611e0282611da6565b611e0c8185611db0565b9350611e1c818560208601611dc0565b611e2581611de8565b840191505092915050565b5f6020820190508181035f830152611e488184611df8565b905092915050565b5f819050919050565b611e6281611e50565b8114611e6c575f80fd5b50565b5f81359050611e7d81611e59565b92915050565b5f60208284031215611e9857611e97611ceb565b5b5f611ea584828501611e6f565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611ed782611eae565b9050919050565b611ee781611ecd565b82525050565b5f602082019050611f005f830184611ede565b92915050565b611f0f81611ecd565b8114611f19575f80fd5b50565b5f81359050611f2a81611f06565b92915050565b5f8060408385031215611f4657611f45611ceb565b5b5f611f5385828601611f1c565b9250506020611f6485828601611e6f565b9150509250929050565b611f7781611e50565b82525050565b5f602082019050611f905f830184611f6e565b92915050565b5f805f60608486031215611fad57611fac611ceb565b5b5f611fba86828701611f1c565b9350506020611fcb86828701611f1c565b9250506040611fdc86828701611e6f565b9150509250925092565b5f60208284031215611ffb57611ffa611ceb565b5b5f61200884828501611f1c565b91505092915050565b61201a81611d73565b8114612024575f80fd5b50565b5f8135905061203581612011565b92915050565b5f806040838503121561205157612050611ceb565b5b5f61205e85828601611f1c565b925050602061206f85828601612027565b9150509250929050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6120b782611de8565b810181811067ffffffffffffffff821117156120d6576120d5612081565b5b80604052505050565b5f6120e8611ce2565b90506120f482826120ae565b919050565b5f67ffffffffffffffff82111561211357612112612081565b5b61211c82611de8565b9050602081019050919050565b828183375f83830152505050565b5f612149612144846120f9565b6120df565b9050828152602081018484840111156121655761216461207d565b5b612170848285612129565b509392505050565b5f82601f83011261218c5761218b612079565b5b813561219c848260208601612137565b91505092915050565b5f805f80608085870312156121bd576121bc611ceb565b5b5f6121ca87828801611f1c565b94505060206121db87828801611f1c565b93505060406121ec87828801611e6f565b925050606085013567ffffffffffffffff81111561220d5761220c611cef565b5b61221987828801612178565b91505092959194509250565b5f806040838503121561223b5761223a611ceb565b5b5f61224885828601611f1c565b925050602061225985828601611f1c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806122a757607f821691505b6020821081036122ba576122b9612263565b5b50919050565b5f6060820190506122d35f830186611ede565b6122e06020830185611f6e565b6122ed6040830184611ede565b949350505050565b7f43616c6c6572206e6f74206f776e6572210000000000000000000000000000005f82015250565b5f612329601183611db0565b9150612334826122f5565b602082019050919050565b5f6020820190508181035f8301526123568161231d565b9050919050565b5f81905092915050565b50565b5f6123755f8361235d565b915061238082612367565b5f82019050919050565b5f6123948261236a565b9150819050919050565b7f576974686472617720455448206661696c65642e0000000000000000000000005f82015250565b5f6123d2601483611db0565b91506123dd8261239e565b602082019050919050565b5f6020820190508181035f8301526123ff816123c6565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61243d82611e50565b915061244883611e50565b92508282039050818111156124605761245f612406565b5b92915050565b7f4d696e74696e67206973206e6f7420656e61626c6564210000000000000000005f82015250565b5f61249a601783611db0565b91506124a582612466565b602082019050919050565b5f6020820190508181035f8301526124c78161248e565b9050919050565b7f43616e206f6e6c79206d696e7420312c20352c2031302c2031352032302e00005f82015250565b5f612502601e83611db0565b915061250d826124ce565b602082019050919050565b5f6020820190508181035f83015261252f816124f6565b9050919050565b5f61254082611e50565b915061254b83611e50565b925082820261255981611e50565b915082820484148315176125705761256f612406565b5b5092915050565b7f496e73756666696369656e7420455448210000000000000000000000000000005f82015250565b5f6125ab601183611db0565b91506125b682612577565b602082019050919050565b5f6020820190508181035f8301526125d88161259f565b9050919050565b7f4d696e74696e672046696e69736865642e0000000000000000000000000000005f82015250565b5f612613601183611db0565b915061261e826125df565b602082019050919050565b5f6020820190508181035f83015261264081612607565b9050919050565b7f4e6f7420656e6f75676820737570706c79206c6566742e0000000000000000005f82015250565b5f61267b601783611db0565b915061268682612647565b602082019050919050565b5f6020820190508181035f8301526126a88161266f565b9050919050565b5f6126b982611e50565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036126eb576126ea612406565b5b600182019050919050565b7f576569206d7573742062652067726561746572207468616e207a65726f2e00005f82015250565b5f61272a601e83611db0565b9150612735826126f6565b602082019050919050565b5f6020820190508181035f8301526127578161271e565b9050919050565b5f81519050919050565b5f82825260208201905092915050565b5f6127828261275e565b61278c8185612768565b935061279c818560208601611dc0565b6127a581611de8565b840191505092915050565b5f6080820190506127c35f830187611ede565b6127d06020830186611ede565b6127dd6040830185611f6e565b81810360608301526127ef8184612778565b905095945050505050565b5f8151905061280881611d1e565b92915050565b5f6020828403121561282357612822611ceb565b5b5f612830848285016127fa565b91505092915050565b5f60408201905061284c5f830185611ede565b6128596020830184611f6e565b939250505056fe68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d543350715943544843534c6873684664586f7775725841744d3945773250733246677a53753854744d6e4b61a2646970667358221220857da316c4f22d54e09904c2d925574b2adb22768b4fef8c953ccac17bf83f8964736f6c63430008140033

Deployed Bytecode Sourcemap

55644:2839:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38975:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39809:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40987:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40805:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55945:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58380:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41660:588;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58140:98;;;;;;;;;;;;;:::i;:::-;;57696:197;;;;;;;;;;;;;:::i;:::-;;55860:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58247:124;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42320:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39621:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55815:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39345:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55911:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56442:865;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39970:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55782:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41219:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57514:173;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42526:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57316:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55985:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41437:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57902:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38975:305;39077:4;39129:25;39114:40;;;:11;:40;;;;:105;;;;39186:33;39171:48;;;:11;:48;;;;39114:105;:158;;;;39236:36;39260:11;39236:23;:36::i;:::-;39114:158;39094:178;;38975:305;;;:::o;39809:91::-;39854:13;39887:5;39880:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39809:91;:::o;40987:159::-;41054:7;41074:22;41088:7;41074:13;:22::i;:::-;;41117:21;41130:7;41117:12;:21::i;:::-;41110:28;;40987:159;;;:::o;40805:115::-;40877:35;40886:2;40890:7;40899:12;:10;:12::i;:::-;40877:8;:35::i;:::-;40805:115;;:::o;55945:30::-;;;;;;;;;;;;;:::o;58380:97::-;58432:7;55897:4;58452:17;;58380:97;:::o;41660:588::-;41769:1;41755:16;;:2;:16;;;41751:89;;41825:1;41795:33;;;;;;;;;;;:::i;:::-;;;;;;;;41751:89;42061:21;42085:34;42093:2;42097:7;42106:12;:10;:12::i;:::-;42085:7;:34::i;:::-;42061:58;;42151:4;42134:21;;:13;:21;;;42130:111;;42200:4;42206:7;42215:13;42179:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;42130:111;41740:508;41660:588;;;:::o;58140:98::-;56079:12;;;;;;;;;;;56065:26;;:10;:26;;;56057:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;58216:14:::1;;;;;;;;;;;58215:15;58198:14;;:32;;;;;;;;;;;;;;;;;;58140:98::o:0;57696:197::-;56079:12;;;;;;;;;;;56065:26;;:10;:26;;;56057:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;57753:12:::1;57779:15;;;;;;;;;;;57771:29;;57808:21;57771:63;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57752:82;;;57853:7;57845:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;57741:152;57696:197::o:0;55860:41::-;55897:4;55860:41;:::o;58247:124::-;58298:7;58338:25;:15;:23;:25::i;:::-;55897:4;58325:38;;;;:::i;:::-;58318:45;;58247:124;:::o;42320:134::-;42407:39;42424:4;42430:2;42434:7;42407:39;;;;;;;;;;;;:16;:39::i;:::-;42320:134;;;:::o;39621:120::-;39684:7;39711:22;39725:7;39711:13;:22::i;:::-;39704:29;;39621:120;;;:::o;55815:38::-;;;;:::o;39345:213::-;39408:7;39449:1;39432:19;;:5;:19;;;39428:89;;39502:1;39475:30;;;;;;;;;;;:::i;:::-;;;;;;;;39428:89;39534:9;:16;39544:5;39534:16;;;;;;;;;;;;;;;;39527:23;;39345:213;;;:::o;55911:27::-;;;;;;;;;;;;;:::o;56442:865::-;56515:14;;;;;;;;;;;56507:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;56606:1;56590:12;:17;:51;;;;56640:1;56624:12;:17;56590:51;:86;;;;56674:2;56658:12;:18;56590:86;:121;;;;56709:2;56693:12;:18;56590:121;:156;;;;56744:2;56728:12;:18;56590:156;56568:236;;;;;;;;;;;;:::i;:::-;;;;;;;;;56848:12;56836:9;;:24;;;;:::i;:::-;56823:9;:37;;56815:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;55897:4;56901:25;:15;:23;:25::i;:::-;:38;56893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57004:12;56980:20;:18;:20::i;:::-;:36;;56972:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;57060:9;57055:196;57079:12;57075:1;:16;57055:196;;;57113:15;57131:25;:15;:23;:25::i;:::-;57113:43;;57171:27;:15;:25;:27::i;:::-;57213:26;57219:10;57231:7;57213:5;:26::i;:::-;57098:153;57093:3;;;;;:::i;:::-;;;;57055:196;;;;57286:12;57274:10;57266:33;;;;;;;;;;;;56442:865;:::o;39970:95::-;40017:13;40050:7;40043:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39970:95;:::o;55782:26::-;;;;;;;;;;;;;:::o;41219:146::-;41305:52;41324:12;:10;:12::i;:::-;41338:8;41348;41305:18;:52::i;:::-;41219:146;;:::o;57514:173::-;56079:12;;;;;;;;;;;56065:26;;:10;:26;;;56057:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;57611:1:::1;57599:9;:13;57591:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;57670:9;57658;:21;;;;57514:173:::0;:::o;42526:211::-;42640:31;42653:4;42659:2;42663:7;42640:12;:31::i;:::-;42682:47;42705:4;42711:2;42715:7;42724:4;42682:22;:47::i;:::-;42526:211;;;;:::o;57316:189::-;57382:13;57408:89;;;;;;;;;;;;;;;;;;;57316:189;;;:::o;55985:32::-;;;;;;;;;;;;;:::o;41437:155::-;41525:4;41549:18;:25;41568:5;41549:25;;;;;;;;;;;;;;;:35;41575:8;41549:35;;;;;;;;;;;;;;;;;;;;;;;;;41542:42;;41437:155;;;;:::o;57902:229::-;56079:12;;;;;;;;;;;56065:26;;:10;:26;;;56057:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;57984:20:::1;;;;;;;;;;;57983:21;57975:30;;;::::0;::::1;;58031:8;58016:12;;:23;;;;;;;;;;;;;;;;;;58073:4;58050:20;;:27;;;;;;;;;;;;;;;;;;58114:8;58093:30;;;;;;;;;;;;57902:229:::0;:::o;31770:148::-;31846:4;31885:25;31870:40;;;:11;:40;;;;31863:47;;31770:148;;;:::o;53995:247::-;54058:7;54078:13;54094:17;54103:7;54094:8;:17::i;:::-;54078:33;;54143:1;54126:19;;:5;:19;;;54122:90;;54192:7;54169:31;;;;;;;;;;;:::i;:::-;;;;;;;;54122:90;54229:5;54222:12;;;53995:247;;;:::o;43501:129::-;43571:7;43598:15;:24;43614:7;43598:24;;;;;;;;;;;;;;;;;;;;;43591:31;;43501:129;;;:::o;28840:98::-;28893:7;28920:10;28913:17;;28840:98;:::o;52221:122::-;52302:33;52311:2;52315:7;52324:4;52330;52302:8;:33::i;:::-;52221:122;;;:::o;46467:831::-;46553:7;46573:12;46588:17;46597:7;46588:8;:17::i;:::-;46573:32;;46685:1;46669:18;;:4;:18;;;46665:88;;46704:37;46721:4;46727;46733:7;46704:16;:37::i;:::-;46665:88;46817:1;46801:18;;:4;:18;;;46797:264;;46919:48;46936:1;46940:7;46957:1;46961:5;46919:8;:48::i;:::-;47033:1;47014:9;:15;47024:4;47014:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;46797:264;47092:1;47078:16;;:2;:16;;;47074:111;;47157:1;47140:9;:13;47150:2;47140:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;47074:111;47217:2;47198:7;:16;47206:7;47198:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;47257:7;47253:2;47238:27;;47247:4;47238:27;;;;;;;;;;;;47286:4;47279:11;;;46467:831;;;;;:::o;826:114::-;891:7;918;:14;;;911:21;;826:114;;;:::o;949:127::-;1056:1;1038:7;:14;;;:19;;;;;;;;;;;949:127;:::o;47635:335::-;47717:1;47703:16;;:2;:16;;;47699:89;;47773:1;47743:33;;;;;;;;;;;:::i;:::-;;;;;;;;47699:89;47798:21;47822:32;47830:2;47834:7;47851:1;47822:7;:32::i;:::-;47798:56;;47894:1;47869:27;;:13;:27;;;47865:98;;47948:1;47920:31;;;;;;;;;;;:::i;:::-;;;;;;;;47865:98;47688:282;47635:335;;:::o;53433:318::-;53561:1;53541:22;;:8;:22;;;53537:93;;53609:8;53587:31;;;;;;;;;;;:::i;:::-;;;;;;;;53537:93;53678:8;53640:18;:25;53659:5;53640:25;;;;;;;;;;;;;;;:35;53666:8;53640:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;53724:8;53702:41;;53717:5;53702:41;;;53734:8;53702:41;;;;;;:::i;:::-;;;;;;;;53433:318;;;:::o;54793:799::-;54927:1;54910:2;:14;;;:18;54906:679;;;54965:2;54949:36;;;54986:12;:10;:12::i;:::-;55000:4;55006:7;55015:4;54949:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;54945:629;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55280:1;55263:6;:13;:18;55259:300;;55335:2;55313:25;;;;;;;;;;;:::i;:::-;;;;;;;;55259:300;55509:6;55503:13;55494:6;55490:2;55486:15;55479:38;54945:629;55078:41;;;55068:51;;;:6;:51;;;;55064:132;;55173:2;55151:25;;;;;;;;;;;:::i;:::-;;;;;;;;55064:132;55021:190;54906:679;54793:799;;;;:::o;43262:117::-;43328:7;43355;:16;43363:7;43355:16;;;;;;;;;;;;;;;;;;;;;43348:23;;43262:117;;;:::o;52532:681::-;52694:9;:31;;;;52723:1;52707:18;;:4;:18;;;;52694:31;52690:473;;;52742:13;52758:22;52772:7;52758:13;:22::i;:::-;52742:38;;52928:1;52912:18;;:4;:18;;;;:35;;;;;52943:4;52934:13;;:5;:13;;;;52912:35;:69;;;;;52952:29;52969:5;52976:4;52952:16;:29::i;:::-;52951:30;52912:69;52908:144;;;53031:4;53009:27;;;;;;;;;;;:::i;:::-;;;;;;;;52908:144;53073:9;53069:83;;;53128:7;53124:2;53108:28;;53117:5;53108:28;;;;;;;;;;;;53069:83;52727:436;52690:473;53203:2;53176:15;:24;53192:7;53176:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;52532:681;;;;:::o;44672:376::-;44785:38;44799:5;44806:7;44815;44785:13;:38::i;:::-;44780:261;;44861:1;44844:19;;:5;:19;;;44840:190;;44914:7;44891:31;;;;;;;;;;;:::i;:::-;;;;;;;;44840:190;44997:7;45006;44970:44;;;;;;;;;;;;:::i;:::-;;;;;;;;44780:261;44672:376;;;:::o;43951:276::-;44054:4;44110:1;44091:21;;:7;:21;;;;:128;;;;;44139:7;44130:16;;:5;:16;;;:52;;;;44150:32;44167:5;44174:7;44150:16;:32::i;:::-;44130:52;:88;;;;44211:7;44186:32;;:21;44199:7;44186:12;:21::i;:::-;:32;;;44130:88;44091:128;44071:148;;43951:276;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:329::-;5926:6;5975:2;5963:9;5954:7;5950:23;5946:32;5943:119;;;5981:79;;:::i;:::-;5943:119;6101:1;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6072:117;5867:329;;;;:::o;6202:116::-;6272:21;6287:5;6272:21;:::i;:::-;6265:5;6262:32;6252:60;;6308:1;6305;6298:12;6252:60;6202:116;:::o;6324:133::-;6367:5;6405:6;6392:20;6383:29;;6421:30;6445:5;6421:30;:::i;:::-;6324:133;;;;:::o;6463:468::-;6528:6;6536;6585:2;6573:9;6564:7;6560:23;6556:32;6553:119;;;6591:79;;:::i;:::-;6553:119;6711:1;6736:53;6781:7;6772:6;6761:9;6757:22;6736:53;:::i;:::-;6726:63;;6682:117;6838:2;6864:50;6906:7;6897:6;6886:9;6882:22;6864:50;:::i;:::-;6854:60;;6809:115;6463:468;;;;;:::o;6937:117::-;7046:1;7043;7036:12;7060:117;7169:1;7166;7159:12;7183:180;7231:77;7228:1;7221:88;7328:4;7325:1;7318:15;7352:4;7349:1;7342:15;7369:281;7452:27;7474:4;7452:27;:::i;:::-;7444:6;7440:40;7582:6;7570:10;7567:22;7546:18;7534:10;7531:34;7528:62;7525:88;;;7593:18;;:::i;:::-;7525:88;7633:10;7629:2;7622:22;7412:238;7369:281;;:::o;7656:129::-;7690:6;7717:20;;:::i;:::-;7707:30;;7746:33;7774:4;7766:6;7746:33;:::i;:::-;7656:129;;;:::o;7791:307::-;7852:4;7942:18;7934:6;7931:30;7928:56;;;7964:18;;:::i;:::-;7928:56;8002:29;8024:6;8002:29;:::i;:::-;7994:37;;8086:4;8080;8076:15;8068:23;;7791:307;;;:::o;8104:146::-;8201:6;8196:3;8191;8178:30;8242:1;8233:6;8228:3;8224:16;8217:27;8104:146;;;:::o;8256:423::-;8333:5;8358:65;8374:48;8415:6;8374:48;:::i;:::-;8358:65;:::i;:::-;8349:74;;8446:6;8439:5;8432:21;8484:4;8477:5;8473:16;8522:3;8513:6;8508:3;8504:16;8501:25;8498:112;;;8529:79;;:::i;:::-;8498:112;8619:54;8666:6;8661:3;8656;8619:54;:::i;:::-;8339:340;8256:423;;;;;:::o;8698:338::-;8753:5;8802:3;8795:4;8787:6;8783:17;8779:27;8769:122;;8810:79;;:::i;:::-;8769:122;8927:6;8914:20;8952:78;9026:3;9018:6;9011:4;9003:6;8999:17;8952:78;:::i;:::-;8943:87;;8759:277;8698:338;;;;:::o;9042:943::-;9137:6;9145;9153;9161;9210:3;9198:9;9189:7;9185:23;9181:33;9178:120;;;9217:79;;:::i;:::-;9178:120;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:53;9535:7;9526:6;9515:9;9511:22;9490:53;:::i;:::-;9480:63;;9435:118;9592:2;9618:53;9663:7;9654:6;9643:9;9639:22;9618:53;:::i;:::-;9608:63;;9563:118;9748:2;9737:9;9733:18;9720:32;9779:18;9771:6;9768:30;9765:117;;;9801:79;;:::i;:::-;9765:117;9906:62;9960:7;9951:6;9940:9;9936:22;9906:62;:::i;:::-;9896:72;;9691:287;9042:943;;;;;;;:::o;9991:474::-;10059:6;10067;10116:2;10104:9;10095:7;10091:23;10087:32;10084:119;;;10122:79;;:::i;:::-;10084:119;10242:1;10267:53;10312:7;10303:6;10292:9;10288:22;10267:53;:::i;:::-;10257:63;;10213:117;10369:2;10395:53;10440:7;10431:6;10420:9;10416:22;10395:53;:::i;:::-;10385:63;;10340:118;9991:474;;;;;:::o;10471:180::-;10519:77;10516:1;10509:88;10616:4;10613:1;10606:15;10640:4;10637:1;10630:15;10657:320;10701:6;10738:1;10732:4;10728:12;10718:22;;10785:1;10779:4;10775:12;10806:18;10796:81;;10862:4;10854:6;10850:17;10840:27;;10796:81;10924:2;10916:6;10913:14;10893:18;10890:38;10887:84;;10943:18;;:::i;:::-;10887:84;10708:269;10657:320;;;:::o;10983:442::-;11132:4;11170:2;11159:9;11155:18;11147:26;;11183:71;11251:1;11240:9;11236:17;11227:6;11183:71;:::i;:::-;11264:72;11332:2;11321:9;11317:18;11308:6;11264:72;:::i;:::-;11346;11414:2;11403:9;11399:18;11390:6;11346:72;:::i;:::-;10983:442;;;;;;:::o;11431:167::-;11571:19;11567:1;11559:6;11555:14;11548:43;11431:167;:::o;11604:366::-;11746:3;11767:67;11831:2;11826:3;11767:67;:::i;:::-;11760:74;;11843:93;11932:3;11843:93;:::i;:::-;11961:2;11956:3;11952:12;11945:19;;11604:366;;;:::o;11976:419::-;12142:4;12180:2;12169:9;12165:18;12157:26;;12229:9;12223:4;12219:20;12215:1;12204:9;12200:17;12193:47;12257:131;12383:4;12257:131;:::i;:::-;12249:139;;11976:419;;;:::o;12401:147::-;12502:11;12539:3;12524:18;;12401:147;;;;:::o;12554:114::-;;:::o;12674:398::-;12833:3;12854:83;12935:1;12930:3;12854:83;:::i;:::-;12847:90;;12946:93;13035:3;12946:93;:::i;:::-;13064:1;13059:3;13055:11;13048:18;;12674:398;;;:::o;13078:379::-;13262:3;13284:147;13427:3;13284:147;:::i;:::-;13277:154;;13448:3;13441:10;;13078:379;;;:::o;13463:170::-;13603:22;13599:1;13591:6;13587:14;13580:46;13463:170;:::o;13639:366::-;13781:3;13802:67;13866:2;13861:3;13802:67;:::i;:::-;13795:74;;13878:93;13967:3;13878:93;:::i;:::-;13996:2;13991:3;13987:12;13980:19;;13639:366;;;:::o;14011:419::-;14177:4;14215:2;14204:9;14200:18;14192:26;;14264:9;14258:4;14254:20;14250:1;14239:9;14235:17;14228:47;14292:131;14418:4;14292:131;:::i;:::-;14284:139;;14011:419;;;:::o;14436:180::-;14484:77;14481:1;14474:88;14581:4;14578:1;14571:15;14605:4;14602:1;14595:15;14622:194;14662:4;14682:20;14700:1;14682:20;:::i;:::-;14677:25;;14716:20;14734:1;14716:20;:::i;:::-;14711:25;;14760:1;14757;14753:9;14745:17;;14784:1;14778:4;14775:11;14772:37;;;14789:18;;:::i;:::-;14772:37;14622:194;;;;:::o;14822:173::-;14962:25;14958:1;14950:6;14946:14;14939:49;14822:173;:::o;15001:366::-;15143:3;15164:67;15228:2;15223:3;15164:67;:::i;:::-;15157:74;;15240:93;15329:3;15240:93;:::i;:::-;15358:2;15353:3;15349:12;15342:19;;15001:366;;;:::o;15373:419::-;15539:4;15577:2;15566:9;15562:18;15554:26;;15626:9;15620:4;15616:20;15612:1;15601:9;15597:17;15590:47;15654:131;15780:4;15654:131;:::i;:::-;15646:139;;15373:419;;;:::o;15798:180::-;15938:32;15934:1;15926:6;15922:14;15915:56;15798:180;:::o;15984:366::-;16126:3;16147:67;16211:2;16206:3;16147:67;:::i;:::-;16140:74;;16223:93;16312:3;16223:93;:::i;:::-;16341:2;16336:3;16332:12;16325:19;;15984:366;;;:::o;16356:419::-;16522:4;16560:2;16549:9;16545:18;16537:26;;16609:9;16603:4;16599:20;16595:1;16584:9;16580:17;16573:47;16637:131;16763:4;16637:131;:::i;:::-;16629:139;;16356:419;;;:::o;16781:410::-;16821:7;16844:20;16862:1;16844:20;:::i;:::-;16839:25;;16878:20;16896:1;16878:20;:::i;:::-;16873:25;;16933:1;16930;16926:9;16955:30;16973:11;16955:30;:::i;:::-;16944:41;;17134:1;17125:7;17121:15;17118:1;17115:22;17095:1;17088:9;17068:83;17045:139;;17164:18;;:::i;:::-;17045:139;16829:362;16781:410;;;;:::o;17197:167::-;17337:19;17333:1;17325:6;17321:14;17314:43;17197:167;:::o;17370:366::-;17512:3;17533:67;17597:2;17592:3;17533:67;:::i;:::-;17526:74;;17609:93;17698:3;17609:93;:::i;:::-;17727:2;17722:3;17718:12;17711:19;;17370:366;;;:::o;17742:419::-;17908:4;17946:2;17935:9;17931:18;17923:26;;17995:9;17989:4;17985:20;17981:1;17970:9;17966:17;17959:47;18023:131;18149:4;18023:131;:::i;:::-;18015:139;;17742:419;;;:::o;18167:167::-;18307:19;18303:1;18295:6;18291:14;18284:43;18167:167;:::o;18340:366::-;18482:3;18503:67;18567:2;18562:3;18503:67;:::i;:::-;18496:74;;18579:93;18668:3;18579:93;:::i;:::-;18697:2;18692:3;18688:12;18681:19;;18340:366;;;:::o;18712:419::-;18878:4;18916:2;18905:9;18901:18;18893:26;;18965:9;18959:4;18955:20;18951:1;18940:9;18936:17;18929:47;18993:131;19119:4;18993:131;:::i;:::-;18985:139;;18712:419;;;:::o;19137:173::-;19277:25;19273:1;19265:6;19261:14;19254:49;19137:173;:::o;19316:366::-;19458:3;19479:67;19543:2;19538:3;19479:67;:::i;:::-;19472:74;;19555:93;19644:3;19555:93;:::i;:::-;19673:2;19668:3;19664:12;19657:19;;19316:366;;;:::o;19688:419::-;19854:4;19892:2;19881:9;19877:18;19869:26;;19941:9;19935:4;19931:20;19927:1;19916:9;19912:17;19905:47;19969:131;20095:4;19969:131;:::i;:::-;19961:139;;19688:419;;;:::o;20113:233::-;20152:3;20175:24;20193:5;20175:24;:::i;:::-;20166:33;;20221:66;20214:5;20211:77;20208:103;;20291:18;;:::i;:::-;20208:103;20338:1;20331:5;20327:13;20320:20;;20113:233;;;:::o;20352:180::-;20492:32;20488:1;20480:6;20476:14;20469:56;20352:180;:::o;20538:366::-;20680:3;20701:67;20765:2;20760:3;20701:67;:::i;:::-;20694:74;;20777:93;20866:3;20777:93;:::i;:::-;20895:2;20890:3;20886:12;20879:19;;20538:366;;;:::o;20910:419::-;21076:4;21114:2;21103:9;21099:18;21091:26;;21163:9;21157:4;21153:20;21149:1;21138:9;21134:17;21127:47;21191:131;21317:4;21191:131;:::i;:::-;21183:139;;20910:419;;;:::o;21335:98::-;21386:6;21420:5;21414:12;21404:22;;21335:98;;;:::o;21439:168::-;21522:11;21556:6;21551:3;21544:19;21596:4;21591:3;21587:14;21572:29;;21439:168;;;;:::o;21613:373::-;21699:3;21727:38;21759:5;21727:38;:::i;:::-;21781:70;21844:6;21839:3;21781:70;:::i;:::-;21774:77;;21860:65;21918:6;21913:3;21906:4;21899:5;21895:16;21860:65;:::i;:::-;21950:29;21972:6;21950:29;:::i;:::-;21945:3;21941:39;21934:46;;21703:283;21613:373;;;;:::o;21992:640::-;22187:4;22225:3;22214:9;22210:19;22202:27;;22239:71;22307:1;22296:9;22292:17;22283:6;22239:71;:::i;:::-;22320:72;22388:2;22377:9;22373:18;22364:6;22320:72;:::i;:::-;22402;22470:2;22459:9;22455:18;22446:6;22402:72;:::i;:::-;22521:9;22515:4;22511:20;22506:2;22495:9;22491:18;22484:48;22549:76;22620:4;22611:6;22549:76;:::i;:::-;22541:84;;21992:640;;;;;;;:::o;22638:141::-;22694:5;22725:6;22719:13;22710:22;;22741:32;22767:5;22741:32;:::i;:::-;22638:141;;;;:::o;22785:349::-;22854:6;22903:2;22891:9;22882:7;22878:23;22874:32;22871:119;;;22909:79;;:::i;:::-;22871:119;23029:1;23054:63;23109:7;23100:6;23089:9;23085:22;23054:63;:::i;:::-;23044:73;;23000:127;22785:349;;;;:::o;23140:332::-;23261:4;23299:2;23288:9;23284:18;23276:26;;23312:71;23380:1;23369:9;23365:17;23356:6;23312:71;:::i;:::-;23393:72;23461:2;23450:9;23446:18;23437:6;23393:72;:::i;:::-;23140:332;;;;;:::o

Swarm Source

ipfs://857da316c4f22d54e09904c2d925574b2adb22768b4fef8c953ccac17bf83f89
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.