ETH Price: $3,120.96 (+0.89%)
Gas: 2 Gwei

Token

Rifters: Keys (RiftersKeys)
 

Overview

Max Total Supply

10,000 RiftersKeys

Holders

3,805

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xc19b11e2540dc903ea59f9b5ead590e548a0f06a
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:
Keys

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV // Deprecated in v4.8
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            /// @solidity memory-safe-assembly
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

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


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: address zero is not a valid owner");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `ids` and `amounts` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non-ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non-ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: contracts/rifters.sol


// AE THER
pragma solidity >=0.8;







contract Keys is ERC1155, Ownable, ReentrancyGuard {
    using ECDSA for bytes32;
    using Strings for uint256;
    event Received(address, uint256);
    address private _recipient;
    // Contract name
    string public name;
    // Contract symbol
    string public symbol;
    uint256 public constant maxSupply = 10000;
    uint256 public Id;
    uint256 royaltyPercentage;
    string public baseUri;
    string public contractURI;
    string public extension;
    //mapping ID=>address => number of minted nfts
    mapping(address => uint8) public addresstxs;
    address signerAddress;

    constructor(
        string memory _Name,
        string memory _Symbol,
        string memory _contractURI,
        string memory _baseUri,
        address _signerAddress,
        string memory _extension,
        uint256 _royaltyPercentage
    ) ERC1155(_contractURI) {
        name = _Name;
        symbol = _Symbol;
        signerAddress = _signerAddress;
        contractURI = _contractURI;
        baseUri = _baseUri;
        extension = _extension;
        _recipient = owner();
        royaltyPercentage = _royaltyPercentage;
    }

    function validateAmount(uint256 _mintAmount) public view {
        require(Id + _mintAmount <= maxSupply, "Max supply exceeded");
    }

    function validateMintPerAddress(address sender) public view {
        require(addresstxs[sender] < 1, "max wallet supply");
    }

    function mint(bytes calldata signature) public payable nonReentrant {
        //Verify whitelist requirements dont allow mints when public sale starts
        //verify that the supply is not exceeded by address in specifc whitelist phase
        validateAmount(1);
        //can mint
        validateUsingECDASignature(signature);
        //change the phase
        validateMintPerAddress(msg.sender);
        //minting
        _mint(msg.sender, Id, 1, "");
        //updating balances
        Id += 1;
        addresstxs[msg.sender] += uint8(1);
    }

    function validateUsingECDASignature(bytes calldata signature) public view {
        bytes32 hash = keccak256(
            abi.encodePacked(bytes32(uint256(uint160(msg.sender))))
        );
        require(
            signerAddress == hash.toEthSignedMessageHash().recover(signature),
            "Signer address mismatch."
        );
    }

    function airdrop(address[] calldata recievers, uint256[] calldata amounts)
        external
        onlyOwner
    {
        require(recievers.length == amounts.length, "array length mismatch");
        for (uint256 i; i < recievers.length; i++) {
            airdropHelper(recievers[i], amounts[i]);
        }
    }

    //Normal minting allows minting on public sale satisfyign the necessary conditions
    function airdropHelper(address reciever, uint256 amount) private {
        require(amount >= 1, "nonzero airdrop");
        validateAmount(amount);
        if (amount == 1) {
            _mint(reciever, Id, 1, "");
            Id += 1;
        } else {
            uint256[] memory ids = new uint256[](amount);
            uint256[] memory values = new uint256[](amount);
            uint256 iterator = Id;
            for (uint256 i = 0; i < amount; i++) {
                ids[i] = iterator; // line up Unique NFTs ID in  a array.
                iterator = iterator + 1;
                values[i] = 1; // for Unique Nfts  Supply of every ID MUST be one .1   to be injected in the _mintBatch function
            }
            Id += amount;
            _mintBatch(reciever, ids, values, "");
        }
    }

    function uri(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        uint256 _tokenID = _tokenId + 1;
        require(_tokenId < Id, "Id deos not exist ");
        return
            bytes(baseUri).length > 0
                ? string(
                    abi.encodePacked(baseUri, _tokenID.toString(), extension)
                )
                : "";
    }

    function setContractURI(string memory newContractURI)
        public
        onlyOwner
        nonReentrant
    {
        contractURI = newContractURI;
    }

    function setUri(string memory _uri) public onlyOwner nonReentrant {
        baseUri = _uri;
    }

    function setSignerAddress(address _signerAddress)
        public
        onlyOwner
        nonReentrant
    {
        signerAddress = _signerAddress;
    }

    function setExtension(string memory _extension)
        public
        onlyOwner
        nonReentrant
    {
        extension = _extension;
    }

    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount)
    {
        return (_recipient, (_salePrice * royaltyPercentage) / 10000);
    }

    function setRoyalityPercentage(uint256 _royaltyPercentage)
        public
        onlyOwner
        nonReentrant
    {
        royaltyPercentage = _royaltyPercentage;
    }

    // release address based on shares.
    function withdrawEth() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC1155)
        returns (bool)
    {
        return (interfaceId == type(IERC2981).interfaceId ||
            super.supportsInterface(interfaceId));
    }

    function _setRoyalties(address newRecipient) internal {
        require(
            newRecipient != address(0),
            "Royalties: new recipient is the zero address"
        );
        _recipient = newRecipient;
    }

    function setRoyalties(address newRecipient)
        external
        onlyOwner
        nonReentrant
    {
        _setRoyalties(newRecipient);
    }

    receive() external payable {
        emit Received(msg.sender, msg.value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_Name","type":"string"},{"internalType":"string","name":"_Symbol","type":"string"},{"internalType":"string","name":"_contractURI","type":"string"},{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"address","name":"_signerAddress","type":"address"},{"internalType":"string","name":"_extension","type":"string"},{"internalType":"uint256","name":"_royaltyPercentage","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"Received","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"Id","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addresstxs","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recievers","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"extension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newContractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_extension","type":"string"}],"name":"setExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_royaltyPercentage","type":"uint256"}],"name":"setRoyalityPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRecipient","type":"address"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signerAddress","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setUri","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":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"validateAmount","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"validateMintPerAddress","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"validateUsingECDASignature","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040516200309b3803806200309b8339810160408190526200003491620002f1565b8462000040816200010c565b506200004c3362000125565b60016004558651620000669060069060208a019062000177565b5085516200007c90600790602089019062000177565b50600e80546001600160a01b0319166001600160a01b0385161790558451620000ad90600b90602088019062000177565b508351620000c390600a90602087019062000177565b508151620000d990600c90602085019062000177565b50600354600580546001600160a01b0319166001600160a01b039092169190911790556009555062000441945050505050565b80516200012190600290602084019062000177565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200018590620003ee565b90600052602060002090601f016020900481019282620001a95760008555620001f4565b82601f10620001c457805160ff1916838001178555620001f4565b82800160010185558215620001f4579182015b82811115620001f4578251825591602001919060010190620001d7565b506200020292915062000206565b5090565b5b8082111562000202576000815560010162000207565b80516001600160a01b03811681146200023557600080fd5b919050565b600082601f8301126200024c57600080fd5b81516001600160401b03808211156200026957620002696200042b565b604051601f8301601f19908116603f011681019082821181831017156200029457620002946200042b565b81604052838152602092508683858801011115620002b157600080fd5b600091505b83821015620002d55785820183015181830184015290820190620002b6565b83821115620002e75760008385830101525b9695505050505050565b600080600080600080600060e0888a0312156200030d57600080fd5b87516001600160401b03808211156200032557600080fd5b620003338b838c016200023a565b985060208a01519150808211156200034a57600080fd5b620003588b838c016200023a565b975060408a01519150808211156200036f57600080fd5b6200037d8b838c016200023a565b965060608a01519150808211156200039457600080fd5b620003a28b838c016200023a565b9550620003b260808b016200021d565b945060a08a0151915080821115620003c957600080fd5b50620003d88a828b016200023a565b92505060c0880151905092959891949750929550565b600181811c908216806200040357607f821691505b602082108114156200042557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612c4a80620004516000396000f3fe6080604052600436106101e65760003560e01c80638b83093611610102578063c3c563f411610095578063e985e9c511610064578063e985e9c5146105a2578063f242432a146105eb578063f2fde38b1461060b578063fbc401861461062b57600080fd5b8063c3c563f414610537578063c6d1dd2f14610557578063d5abeb0114610577578063e8a3d4851461058d57600080fd5b80639abc8320116100d15780639abc8320146104cd5780639b642de1146104e2578063a0ef91df14610502578063a22cb4651461051757600080fd5b80638b830936146104505780638da5cb5b14610470578063938e3d7b1461049857806395d89b41146104b857600080fd5b80632eb2c2d61161017a578063715018a611610149578063715018a6146103e85780637ba0e2e7146103fd5780637e2285aa14610410578063840750071461043057600080fd5b80632eb2c2d61461036557806339a090c9146103855780634e1273f41461039b57806367243482146103c857600080fd5b80630e89341c116101b65780630e89341c146102d15780632a55205a146102f15780632a9e63c6146103305780632d5537b01461035057600080fd5b8062fdd58e1461022a57806301ffc9a71461025d578063046dc1661461028d57806306fdde03146102af57600080fd5b3661022557604080513381523460208201527f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874910160405180910390a1005b600080fd5b34801561023657600080fd5b5061024a610245366004612345565b61066d565b6040519081526020015b60405180910390f35b34801561026957600080fd5b5061027d6102783660046124aa565b610703565b6040519015158152602001610254565b34801561029957600080fd5b506102ad6102a83660046121ae565b61072e565b005b3480156102bb57600080fd5b506102c4610764565b60405161025491906127ed565b3480156102dd57600080fd5b506102c46102ec3660046125a5565b6107f2565b3480156102fd57600080fd5b5061031161030c3660046125be565b6108aa565b604080516001600160a01b039093168352602083019190915201610254565b34801561033c57600080fd5b506102ad61034b3660046121ae565b6108e5565b34801561035c57600080fd5b506102c4610908565b34801561037157600080fd5b506102ad6103803660046121fc565b610915565b34801561039157600080fd5b5061024a60085481565b3480156103a757600080fd5b506103bb6103b63660046123da565b610961565b60405161025491906127ac565b3480156103d457600080fd5b506102ad6103e336600461236f565b610a8a565b3480156103f457600080fd5b506102ad610b3e565b6102ad61040b3660046124e4565b610b52565b34801561041c57600080fd5b506102ad61042b366004612555565b610bf6565b34801561043c57600080fd5b506102ad61044b3660046121ae565b610c24565b34801561045c57600080fd5b506102ad61046b3660046125a5565b610c85565b34801561047c57600080fd5b506003546040516001600160a01b039091168152602001610254565b3480156104a457600080fd5b506102ad6104b3366004612555565b610ca4565b3480156104c457600080fd5b506102c4610cc7565b3480156104d957600080fd5b506102c4610cd4565b3480156104ee57600080fd5b506102ad6104fd366004612555565b610ce1565b34801561050e57600080fd5b506102ad610d04565b34801561052357600080fd5b506102ad610532366004612309565b610daa565b34801561054357600080fd5b506102ad6105523660046125a5565b610db5565b34801561056357600080fd5b506102ad6105723660046124e4565b610e0a565b34801561058357600080fd5b5061024a61271081565b34801561059957600080fd5b506102c4610edd565b3480156105ae57600080fd5b5061027d6105bd3660046121c9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b3480156105f757600080fd5b506102ad6106063660046122a5565b610eea565b34801561061757600080fd5b506102ad6106263660046121ae565b610f2f565b34801561063757600080fd5b5061065b6106463660046121ae565b600d6020526000908152604090205460ff1681565b60405160ff9091168152602001610254565b60006001600160a01b0383166106dd5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b0319821663152a902d60e11b1480610728575061072882610fa5565b92915050565b610736610ff5565b61073e61104f565b600e80546001600160a01b0319166001600160a01b038316179055600160045550565b50565b6006805461077190612a7f565b80601f016020809104026020016040519081016040528092919081815260200182805461079d90612a7f565b80156107ea5780601f106107bf576101008083540402835291602001916107ea565b820191906000526020600020905b8154815290600101906020018083116107cd57829003601f168201915b505050505081565b606060006108018360016129d1565b905060085483106108495760405162461bcd60e51b8152602060048201526012602482015271024b2103232b7b9903737ba1032bc34b9ba160751b60448201526064016106d4565b6000600a805461085890612a7f565b90501161087457604051806020016040528060008152506108a3565b600a61087f826110a9565b600c604051602001610893939291906126e1565b6040516020818303038152906040525b9392505050565b60055460095460009182916001600160a01b0390911690612710906108cf9086612a30565b6108d99190612a0e565b915091505b9250929050565b6108ed610ff5565b6108f561104f565b6108fe8161113d565b6107616001600455565b600c805461077190612a7f565b6001600160a01b038516331480610931575061093185336105bd565b61094d5760405162461bcd60e51b81526004016106d490612848565b61095a85858585856111ca565b5050505050565b606081518351146109c65760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016106d4565b600083516001600160401b038111156109e1576109e1612b43565b604051908082528060200260200182016040528015610a0a578160200160208202803683370190505b50905060005b8451811015610a8257610a55858281518110610a2e57610a2e612b2d565b6020026020010151858381518110610a4857610a48612b2d565b602002602001015161066d565b828281518110610a6757610a67612b2d565b6020908102919091010152610a7b81612ae6565b9050610a10565b509392505050565b610a92610ff5565b828114610ad95760405162461bcd60e51b81526020600482015260156024820152740c2e4e4c2f240d8cadccee8d040dad2e6dac2e8c6d605b1b60448201526064016106d4565b60005b8381101561095a57610b2c858583818110610af957610af9612b2d565b9050602002016020810190610b0e91906121ae565b848484818110610b2057610b20612b2d565b90506020020135611366565b80610b3681612ae6565b915050610adc565b610b46610ff5565b610b506000611523565b565b610b5a61104f565b610b646001610db5565b610b6e8282610e0a565b610b7733610c24565b610b9533600854600160405180602001604052806000815250611575565b600160086000828254610ba891906129d1565b9091555050336000908152600d60205260408120805460019290610bd090849060ff166129e9565b92506101000a81548160ff021916908360ff160217905550610bf26001600455565b5050565b610bfe610ff5565b610c0661104f565b8051610c1990600c906020840190611fc1565b506107616001600455565b6001600160a01b0381166000908152600d6020526040902054600160ff909116106107615760405162461bcd60e51b81526020600482015260116024820152706d61782077616c6c657420737570706c7960781b60448201526064016106d4565b610c8d610ff5565b610c9561104f565b60098190556107616001600455565b610cac610ff5565b610cb461104f565b8051610c1990600b906020840190611fc1565b6007805461077190612a7f565b600a805461077190612a7f565b610ce9610ff5565b610cf161104f565b8051610c1990600a906020840190611fc1565b610d0c610ff5565b610d1461104f565b604051600090339047908381818185875af1925050503d8060008114610d56576040519150601f19603f3d011682016040523d82523d6000602084013e610d5b565b606091505b5050905080610d9f5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016106d4565b50610b506001600455565b610bf233838361164f565b61271081600854610dc691906129d1565b11156107615760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b60448201526064016106d4565b6040805133602082015260009101604051602081830303815290604052805190602001209050610e7b83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610e7592508591506117309050565b90611783565b600e546001600160a01b03908116911614610ed85760405162461bcd60e51b815260206004820152601860248201527f5369676e65722061646472657373206d69736d617463682e000000000000000060448201526064016106d4565b505050565b600b805461077190612a7f565b6001600160a01b038516331480610f065750610f0685336105bd565b610f225760405162461bcd60e51b81526004016106d490612848565b61095a858585858561179f565b610f37610ff5565b6001600160a01b038116610f9c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d4565b61076181611523565b60006001600160e01b03198216636cdb3d1360e11b1480610fd657506001600160e01b031982166303a24d0760e21b145b8061072857506301ffc9a760e01b6001600160e01b0319831614610728565b6003546001600160a01b03163314610b505760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106d4565b600260045414156110a25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106d4565b6002600455565b606060006110b6836118c9565b60010190506000816001600160401b038111156110d5576110d5612b43565b6040519080825280601f01601f1916602001820160405280156110ff576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461113857610a82565b611109565b6001600160a01b0381166111a85760405162461bcd60e51b815260206004820152602c60248201527f526f79616c746965733a206e657720726563697069656e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016106d4565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b81518351146111eb5760405162461bcd60e51b81526004016106d490612925565b6001600160a01b0384166112115760405162461bcd60e51b81526004016106d490612896565b3360005b84518110156112f857600085828151811061123257611232612b2d565b60200260200101519050600085838151811061125057611250612b2d565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156112a05760405162461bcd60e51b81526004016106d4906128db565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906112dd9084906129d1565b92505081905550505050806112f190612ae6565b9050611215565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516113489291906127bf565b60405180910390a461135e8187878787876119a1565b505050505050565b60018110156113a95760405162461bcd60e51b815260206004820152600f60248201526e06e6f6e7a65726f2061697264726f7608c1b60448201526064016106d4565b6113b281610db5565b80600114156113f7576113d982600854600160405180602001604052806000815250611575565b6001600860008282546113ec91906129d1565b90915550610bf29050565b6000816001600160401b0381111561141157611411612b43565b60405190808252806020026020018201604052801561143a578160200160208202803683370190505b5090506000826001600160401b0381111561145757611457612b43565b604051908082528060200260200182016040528015611480578160200160208202803683370190505b5060085490915060005b848110156114ee57818482815181106114a5576114a5612b2d565b60209081029190910101526114bb8260016129d1565b915060018382815181106114d1576114d1612b2d565b6020908102919091010152806114e681612ae6565b91505061148a565b50836008600082825461150191906129d1565b9250508190555061095a85848460405180602001604052806000815250611b0c565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03841661159b5760405162461bcd60e51b81526004016106d49061296d565b3360006115a785611c57565b905060006115b485611c57565b90506000868152602081815260408083206001600160a01b038b168452909152812080548792906115e69084906129d1565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461164683600089898989611ca2565b50505050505050565b816001600160a01b0316836001600160a01b031614156116c35760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016106d4565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b60008060006117928585611d6c565b91509150610a8281611daf565b6001600160a01b0384166117c55760405162461bcd60e51b81526004016106d490612896565b3360006117d185611c57565b905060006117de85611c57565b90506000868152602081815260408083206001600160a01b038c168452909152902054858110156118215760405162461bcd60e51b81526004016106d4906128db565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a1682528120805488929061185e9084906129d1565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46118be848a8a8a8a8a611ca2565b505050505050505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106119085772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611934576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061195257662386f26fc10000830492506010015b6305f5e100831061196a576305f5e100830492506008015b612710831061197e57612710830492506004015b60648310611990576064830492506002015b600a83106107285760010192915050565b6001600160a01b0384163b1561135e5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906119e59089908990889088908890600401612714565b602060405180830381600087803b1580156119ff57600080fd5b505af1925050508015611a2f575060408051601f3d908101601f19168201909252611a2c918101906124c7565b60015b611adc57611a3b612b59565b806308c379a01415611a755750611a50612b75565b80611a5b5750611a77565b8060405162461bcd60e51b81526004016106d491906127ed565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016106d4565b6001600160e01b0319811663bc197c8160e01b146116465760405162461bcd60e51b81526004016106d490612800565b6001600160a01b038416611b325760405162461bcd60e51b81526004016106d49061296d565b8151835114611b535760405162461bcd60e51b81526004016106d490612925565b3360005b8451811015611bef57838181518110611b7257611b72612b2d565b6020026020010151600080878481518110611b8f57611b8f612b2d565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254611bd791906129d1565b90915550819050611be781612ae6565b915050611b57565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611c409291906127bf565b60405180910390a461095a816000878787876119a1565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611c9157611c91612b2d565b602090810291909101015292915050565b6001600160a01b0384163b1561135e5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611ce69089908990889088908890600401612772565b602060405180830381600087803b158015611d0057600080fd5b505af1925050508015611d30575060408051601f3d908101601f19168201909252611d2d918101906124c7565b60015b611d3c57611a3b612b59565b6001600160e01b0319811663f23a6e6160e01b146116465760405162461bcd60e51b81526004016106d490612800565b600080825160411415611da35760208301516040840151606085015160001a611d9787828585611efd565b945094505050506108de565b506000905060026108de565b6000816004811115611dc357611dc3612b17565b1415611dcc5750565b6001816004811115611de057611de0612b17565b1415611e2e5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016106d4565b6002816004811115611e4257611e42612b17565b1415611e905760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016106d4565b6003816004811115611ea457611ea4612b17565b14156107615760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016106d4565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611f345750600090506003611fb8565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611f88573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611fb157600060019250925050611fb8565b9150600090505b94509492505050565b828054611fcd90612a7f565b90600052602060002090601f016020900481019282611fef5760008555612035565b82601f1061200857805160ff1916838001178555612035565b82800160010185558215612035579182015b8281111561203557825182559160200191906001019061201a565b50612041929150612045565b5090565b5b808211156120415760008155600101612046565b60006001600160401b0383111561207357612073612b43565b60405161208a601f8501601f191660200182612aba565b80915083815284848401111561209f57600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b03811681146120ce57600080fd5b919050565b60008083601f8401126120e557600080fd5b5081356001600160401b038111156120fc57600080fd5b6020830191508360208260051b85010111156108de57600080fd5b600082601f83011261212857600080fd5b81356020612135826129ae565b6040516121428282612aba565b8381528281019150858301600585901b8701840188101561216257600080fd5b60005b8581101561218157813584529284019290840190600101612165565b5090979650505050505050565b600082601f83011261219f57600080fd5b6108a38383356020850161205a565b6000602082840312156121c057600080fd5b6108a3826120b7565b600080604083850312156121dc57600080fd5b6121e5836120b7565b91506121f3602084016120b7565b90509250929050565b600080600080600060a0868803121561221457600080fd5b61221d866120b7565b945061222b602087016120b7565b935060408601356001600160401b038082111561224757600080fd5b61225389838a01612117565b9450606088013591508082111561226957600080fd5b61227589838a01612117565b9350608088013591508082111561228b57600080fd5b506122988882890161218e565b9150509295509295909350565b600080600080600060a086880312156122bd57600080fd5b6122c6866120b7565b94506122d4602087016120b7565b9350604086013592506060860135915060808601356001600160401b038111156122fd57600080fd5b6122988882890161218e565b6000806040838503121561231c57600080fd5b612325836120b7565b91506020830135801515811461233a57600080fd5b809150509250929050565b6000806040838503121561235857600080fd5b612361836120b7565b946020939093013593505050565b6000806000806040858703121561238557600080fd5b84356001600160401b038082111561239c57600080fd5b6123a8888389016120d3565b909650945060208701359150808211156123c157600080fd5b506123ce878288016120d3565b95989497509550505050565b600080604083850312156123ed57600080fd5b82356001600160401b038082111561240457600080fd5b818501915085601f83011261241857600080fd5b81356020612425826129ae565b6040516124328282612aba565b8381528281019150858301600585901b870184018b101561245257600080fd5b600096505b8487101561247c57612468816120b7565b835260019690960195918301918301612457565b509650508601359250508082111561249357600080fd5b506124a085828601612117565b9150509250929050565b6000602082840312156124bc57600080fd5b81356108a381612bfe565b6000602082840312156124d957600080fd5b81516108a381612bfe565b600080602083850312156124f757600080fd5b82356001600160401b038082111561250e57600080fd5b818501915085601f83011261252257600080fd5b81358181111561253157600080fd5b86602082850101111561254357600080fd5b60209290920196919550909350505050565b60006020828403121561256757600080fd5b81356001600160401b0381111561257d57600080fd5b8201601f8101841361258e57600080fd5b61259d8482356020840161205a565b949350505050565b6000602082840312156125b757600080fd5b5035919050565b600080604083850312156125d157600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b83811015612610578151875295820195908201906001016125f4565b509495945050505050565b60008151808452612633816020860160208601612a4f565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061266157607f831692505b602080841082141561268357634e487b7160e01b600052602260045260246000fd5b81801561269757600181146126a8576126d5565b60ff198616895284890196506126d5565b60008881526020902060005b868110156126cd5781548b8201529085019083016126b4565b505084890196505b50505050505092915050565b60006126ed8286612647565b84516126fd818360208901612a4f565b61270981830186612647565b979650505050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090612740908301866125e0565b828103606084015261275281866125e0565b90508281036080840152612766818561261b565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906127099083018461261b565b6020815260006108a360208301846125e0565b6040815260006127d260408301856125e0565b82810360208401526127e481856125e0565b95945050505050565b6020815260006108a3602083018461261b565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6020808252602e908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526d195c881bdc88185c1c1c9bdd995960921b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60006001600160401b038211156129c7576129c7612b43565b5060051b60200190565b600082198211156129e4576129e4612b01565b500190565b600060ff821660ff84168060ff03821115612a0657612a06612b01565b019392505050565b600082612a2b57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612a4a57612a4a612b01565b500290565b60005b83811015612a6a578181015183820152602001612a52565b83811115612a79576000848401525b50505050565b600181811c90821680612a9357607f821691505b60208210811415612ab457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b0381118282101715612adf57612adf612b43565b6040525050565b6000600019821415612afa57612afa612b01565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115612b725760046000803e5060005160e01c5b90565b600060443d1015612b835790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715612bb257505050505090565b8285019150815181811115612bca5750505050505090565b843d8701016020828501011115612be45750505050505090565b612bf360208286010187612aba565b509095945050505050565b6001600160e01b03198116811461076157600080fdfea26469706673582212204107e20e4fc3d2bd34bf7262a96cc79867a192d6c65ed3b7b42789f65840a20f64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000c4d12607206f2f1eea6f8e05241ed052f39a3691000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000003e7000000000000000000000000000000000000000000000000000000000000000d526966746572733a204b65797300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b526966746572734b6579730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261666b7265696765736f6c786173666c717761656a79627134737a6b75793467686435687a66343533717361666c72327a6d796178346a6b6c610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656965796878346468626835773679376868786c6b7a32643763326a78673434707a7a70717a726a6e6d77376a6a65677868646978712f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000052e6a736f6e000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101e65760003560e01c80638b83093611610102578063c3c563f411610095578063e985e9c511610064578063e985e9c5146105a2578063f242432a146105eb578063f2fde38b1461060b578063fbc401861461062b57600080fd5b8063c3c563f414610537578063c6d1dd2f14610557578063d5abeb0114610577578063e8a3d4851461058d57600080fd5b80639abc8320116100d15780639abc8320146104cd5780639b642de1146104e2578063a0ef91df14610502578063a22cb4651461051757600080fd5b80638b830936146104505780638da5cb5b14610470578063938e3d7b1461049857806395d89b41146104b857600080fd5b80632eb2c2d61161017a578063715018a611610149578063715018a6146103e85780637ba0e2e7146103fd5780637e2285aa14610410578063840750071461043057600080fd5b80632eb2c2d61461036557806339a090c9146103855780634e1273f41461039b57806367243482146103c857600080fd5b80630e89341c116101b65780630e89341c146102d15780632a55205a146102f15780632a9e63c6146103305780632d5537b01461035057600080fd5b8062fdd58e1461022a57806301ffc9a71461025d578063046dc1661461028d57806306fdde03146102af57600080fd5b3661022557604080513381523460208201527f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874910160405180910390a1005b600080fd5b34801561023657600080fd5b5061024a610245366004612345565b61066d565b6040519081526020015b60405180910390f35b34801561026957600080fd5b5061027d6102783660046124aa565b610703565b6040519015158152602001610254565b34801561029957600080fd5b506102ad6102a83660046121ae565b61072e565b005b3480156102bb57600080fd5b506102c4610764565b60405161025491906127ed565b3480156102dd57600080fd5b506102c46102ec3660046125a5565b6107f2565b3480156102fd57600080fd5b5061031161030c3660046125be565b6108aa565b604080516001600160a01b039093168352602083019190915201610254565b34801561033c57600080fd5b506102ad61034b3660046121ae565b6108e5565b34801561035c57600080fd5b506102c4610908565b34801561037157600080fd5b506102ad6103803660046121fc565b610915565b34801561039157600080fd5b5061024a60085481565b3480156103a757600080fd5b506103bb6103b63660046123da565b610961565b60405161025491906127ac565b3480156103d457600080fd5b506102ad6103e336600461236f565b610a8a565b3480156103f457600080fd5b506102ad610b3e565b6102ad61040b3660046124e4565b610b52565b34801561041c57600080fd5b506102ad61042b366004612555565b610bf6565b34801561043c57600080fd5b506102ad61044b3660046121ae565b610c24565b34801561045c57600080fd5b506102ad61046b3660046125a5565b610c85565b34801561047c57600080fd5b506003546040516001600160a01b039091168152602001610254565b3480156104a457600080fd5b506102ad6104b3366004612555565b610ca4565b3480156104c457600080fd5b506102c4610cc7565b3480156104d957600080fd5b506102c4610cd4565b3480156104ee57600080fd5b506102ad6104fd366004612555565b610ce1565b34801561050e57600080fd5b506102ad610d04565b34801561052357600080fd5b506102ad610532366004612309565b610daa565b34801561054357600080fd5b506102ad6105523660046125a5565b610db5565b34801561056357600080fd5b506102ad6105723660046124e4565b610e0a565b34801561058357600080fd5b5061024a61271081565b34801561059957600080fd5b506102c4610edd565b3480156105ae57600080fd5b5061027d6105bd3660046121c9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b3480156105f757600080fd5b506102ad6106063660046122a5565b610eea565b34801561061757600080fd5b506102ad6106263660046121ae565b610f2f565b34801561063757600080fd5b5061065b6106463660046121ae565b600d6020526000908152604090205460ff1681565b60405160ff9091168152602001610254565b60006001600160a01b0383166106dd5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a2061646472657373207a65726f206973206e6f742061207660448201526930b634b21037bbb732b960b11b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b0319821663152a902d60e11b1480610728575061072882610fa5565b92915050565b610736610ff5565b61073e61104f565b600e80546001600160a01b0319166001600160a01b038316179055600160045550565b50565b6006805461077190612a7f565b80601f016020809104026020016040519081016040528092919081815260200182805461079d90612a7f565b80156107ea5780601f106107bf576101008083540402835291602001916107ea565b820191906000526020600020905b8154815290600101906020018083116107cd57829003601f168201915b505050505081565b606060006108018360016129d1565b905060085483106108495760405162461bcd60e51b8152602060048201526012602482015271024b2103232b7b9903737ba1032bc34b9ba160751b60448201526064016106d4565b6000600a805461085890612a7f565b90501161087457604051806020016040528060008152506108a3565b600a61087f826110a9565b600c604051602001610893939291906126e1565b6040516020818303038152906040525b9392505050565b60055460095460009182916001600160a01b0390911690612710906108cf9086612a30565b6108d99190612a0e565b915091505b9250929050565b6108ed610ff5565b6108f561104f565b6108fe8161113d565b6107616001600455565b600c805461077190612a7f565b6001600160a01b038516331480610931575061093185336105bd565b61094d5760405162461bcd60e51b81526004016106d490612848565b61095a85858585856111ca565b5050505050565b606081518351146109c65760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b60648201526084016106d4565b600083516001600160401b038111156109e1576109e1612b43565b604051908082528060200260200182016040528015610a0a578160200160208202803683370190505b50905060005b8451811015610a8257610a55858281518110610a2e57610a2e612b2d565b6020026020010151858381518110610a4857610a48612b2d565b602002602001015161066d565b828281518110610a6757610a67612b2d565b6020908102919091010152610a7b81612ae6565b9050610a10565b509392505050565b610a92610ff5565b828114610ad95760405162461bcd60e51b81526020600482015260156024820152740c2e4e4c2f240d8cadccee8d040dad2e6dac2e8c6d605b1b60448201526064016106d4565b60005b8381101561095a57610b2c858583818110610af957610af9612b2d565b9050602002016020810190610b0e91906121ae565b848484818110610b2057610b20612b2d565b90506020020135611366565b80610b3681612ae6565b915050610adc565b610b46610ff5565b610b506000611523565b565b610b5a61104f565b610b646001610db5565b610b6e8282610e0a565b610b7733610c24565b610b9533600854600160405180602001604052806000815250611575565b600160086000828254610ba891906129d1565b9091555050336000908152600d60205260408120805460019290610bd090849060ff166129e9565b92506101000a81548160ff021916908360ff160217905550610bf26001600455565b5050565b610bfe610ff5565b610c0661104f565b8051610c1990600c906020840190611fc1565b506107616001600455565b6001600160a01b0381166000908152600d6020526040902054600160ff909116106107615760405162461bcd60e51b81526020600482015260116024820152706d61782077616c6c657420737570706c7960781b60448201526064016106d4565b610c8d610ff5565b610c9561104f565b60098190556107616001600455565b610cac610ff5565b610cb461104f565b8051610c1990600b906020840190611fc1565b6007805461077190612a7f565b600a805461077190612a7f565b610ce9610ff5565b610cf161104f565b8051610c1990600a906020840190611fc1565b610d0c610ff5565b610d1461104f565b604051600090339047908381818185875af1925050503d8060008114610d56576040519150601f19603f3d011682016040523d82523d6000602084013e610d5b565b606091505b5050905080610d9f5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016106d4565b50610b506001600455565b610bf233838361164f565b61271081600854610dc691906129d1565b11156107615760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b60448201526064016106d4565b6040805133602082015260009101604051602081830303815290604052805190602001209050610e7b83838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610e7592508591506117309050565b90611783565b600e546001600160a01b03908116911614610ed85760405162461bcd60e51b815260206004820152601860248201527f5369676e65722061646472657373206d69736d617463682e000000000000000060448201526064016106d4565b505050565b600b805461077190612a7f565b6001600160a01b038516331480610f065750610f0685336105bd565b610f225760405162461bcd60e51b81526004016106d490612848565b61095a858585858561179f565b610f37610ff5565b6001600160a01b038116610f9c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106d4565b61076181611523565b60006001600160e01b03198216636cdb3d1360e11b1480610fd657506001600160e01b031982166303a24d0760e21b145b8061072857506301ffc9a760e01b6001600160e01b0319831614610728565b6003546001600160a01b03163314610b505760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106d4565b600260045414156110a25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016106d4565b6002600455565b606060006110b6836118c9565b60010190506000816001600160401b038111156110d5576110d5612b43565b6040519080825280601f01601f1916602001820160405280156110ff576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461113857610a82565b611109565b6001600160a01b0381166111a85760405162461bcd60e51b815260206004820152602c60248201527f526f79616c746965733a206e657720726563697069656e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016106d4565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b81518351146111eb5760405162461bcd60e51b81526004016106d490612925565b6001600160a01b0384166112115760405162461bcd60e51b81526004016106d490612896565b3360005b84518110156112f857600085828151811061123257611232612b2d565b60200260200101519050600085838151811061125057611250612b2d565b602090810291909101810151600084815280835260408082206001600160a01b038e1683529093529190912054909150818110156112a05760405162461bcd60e51b81526004016106d4906128db565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906112dd9084906129d1565b92505081905550505050806112f190612ae6565b9050611215565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516113489291906127bf565b60405180910390a461135e8187878787876119a1565b505050505050565b60018110156113a95760405162461bcd60e51b815260206004820152600f60248201526e06e6f6e7a65726f2061697264726f7608c1b60448201526064016106d4565b6113b281610db5565b80600114156113f7576113d982600854600160405180602001604052806000815250611575565b6001600860008282546113ec91906129d1565b90915550610bf29050565b6000816001600160401b0381111561141157611411612b43565b60405190808252806020026020018201604052801561143a578160200160208202803683370190505b5090506000826001600160401b0381111561145757611457612b43565b604051908082528060200260200182016040528015611480578160200160208202803683370190505b5060085490915060005b848110156114ee57818482815181106114a5576114a5612b2d565b60209081029190910101526114bb8260016129d1565b915060018382815181106114d1576114d1612b2d565b6020908102919091010152806114e681612ae6565b91505061148a565b50836008600082825461150191906129d1565b9250508190555061095a85848460405180602001604052806000815250611b0c565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03841661159b5760405162461bcd60e51b81526004016106d49061296d565b3360006115a785611c57565b905060006115b485611c57565b90506000868152602081815260408083206001600160a01b038b168452909152812080548792906115e69084906129d1565b909155505060408051878152602081018790526001600160a01b03808a1692600092918716917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461164683600089898989611ca2565b50505050505050565b816001600160a01b0316836001600160a01b031614156116c35760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b60648201526084016106d4565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b60008060006117928585611d6c565b91509150610a8281611daf565b6001600160a01b0384166117c55760405162461bcd60e51b81526004016106d490612896565b3360006117d185611c57565b905060006117de85611c57565b90506000868152602081815260408083206001600160a01b038c168452909152902054858110156118215760405162461bcd60e51b81526004016106d4906128db565b6000878152602081815260408083206001600160a01b038d8116855292528083208985039055908a1682528120805488929061185e9084906129d1565b909155505060408051888152602081018890526001600160a01b03808b16928c821692918816917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46118be848a8a8a8a8a611ca2565b505050505050505050565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106119085772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611934576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061195257662386f26fc10000830492506010015b6305f5e100831061196a576305f5e100830492506008015b612710831061197e57612710830492506004015b60648310611990576064830492506002015b600a83106107285760010192915050565b6001600160a01b0384163b1561135e5760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906119e59089908990889088908890600401612714565b602060405180830381600087803b1580156119ff57600080fd5b505af1925050508015611a2f575060408051601f3d908101601f19168201909252611a2c918101906124c7565b60015b611adc57611a3b612b59565b806308c379a01415611a755750611a50612b75565b80611a5b5750611a77565b8060405162461bcd60e51b81526004016106d491906127ed565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e2d455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b60648201526084016106d4565b6001600160e01b0319811663bc197c8160e01b146116465760405162461bcd60e51b81526004016106d490612800565b6001600160a01b038416611b325760405162461bcd60e51b81526004016106d49061296d565b8151835114611b535760405162461bcd60e51b81526004016106d490612925565b3360005b8451811015611bef57838181518110611b7257611b72612b2d565b6020026020010151600080878481518110611b8f57611b8f612b2d565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254611bd791906129d1565b90915550819050611be781612ae6565b915050611b57565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611c409291906127bf565b60405180910390a461095a816000878787876119a1565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611c9157611c91612b2d565b602090810291909101015292915050565b6001600160a01b0384163b1561135e5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611ce69089908990889088908890600401612772565b602060405180830381600087803b158015611d0057600080fd5b505af1925050508015611d30575060408051601f3d908101601f19168201909252611d2d918101906124c7565b60015b611d3c57611a3b612b59565b6001600160e01b0319811663f23a6e6160e01b146116465760405162461bcd60e51b81526004016106d490612800565b600080825160411415611da35760208301516040840151606085015160001a611d9787828585611efd565b945094505050506108de565b506000905060026108de565b6000816004811115611dc357611dc3612b17565b1415611dcc5750565b6001816004811115611de057611de0612b17565b1415611e2e5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016106d4565b6002816004811115611e4257611e42612b17565b1415611e905760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016106d4565b6003816004811115611ea457611ea4612b17565b14156107615760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016106d4565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611f345750600090506003611fb8565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611f88573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611fb157600060019250925050611fb8565b9150600090505b94509492505050565b828054611fcd90612a7f565b90600052602060002090601f016020900481019282611fef5760008555612035565b82601f1061200857805160ff1916838001178555612035565b82800160010185558215612035579182015b8281111561203557825182559160200191906001019061201a565b50612041929150612045565b5090565b5b808211156120415760008155600101612046565b60006001600160401b0383111561207357612073612b43565b60405161208a601f8501601f191660200182612aba565b80915083815284848401111561209f57600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b03811681146120ce57600080fd5b919050565b60008083601f8401126120e557600080fd5b5081356001600160401b038111156120fc57600080fd5b6020830191508360208260051b85010111156108de57600080fd5b600082601f83011261212857600080fd5b81356020612135826129ae565b6040516121428282612aba565b8381528281019150858301600585901b8701840188101561216257600080fd5b60005b8581101561218157813584529284019290840190600101612165565b5090979650505050505050565b600082601f83011261219f57600080fd5b6108a38383356020850161205a565b6000602082840312156121c057600080fd5b6108a3826120b7565b600080604083850312156121dc57600080fd5b6121e5836120b7565b91506121f3602084016120b7565b90509250929050565b600080600080600060a0868803121561221457600080fd5b61221d866120b7565b945061222b602087016120b7565b935060408601356001600160401b038082111561224757600080fd5b61225389838a01612117565b9450606088013591508082111561226957600080fd5b61227589838a01612117565b9350608088013591508082111561228b57600080fd5b506122988882890161218e565b9150509295509295909350565b600080600080600060a086880312156122bd57600080fd5b6122c6866120b7565b94506122d4602087016120b7565b9350604086013592506060860135915060808601356001600160401b038111156122fd57600080fd5b6122988882890161218e565b6000806040838503121561231c57600080fd5b612325836120b7565b91506020830135801515811461233a57600080fd5b809150509250929050565b6000806040838503121561235857600080fd5b612361836120b7565b946020939093013593505050565b6000806000806040858703121561238557600080fd5b84356001600160401b038082111561239c57600080fd5b6123a8888389016120d3565b909650945060208701359150808211156123c157600080fd5b506123ce878288016120d3565b95989497509550505050565b600080604083850312156123ed57600080fd5b82356001600160401b038082111561240457600080fd5b818501915085601f83011261241857600080fd5b81356020612425826129ae565b6040516124328282612aba565b8381528281019150858301600585901b870184018b101561245257600080fd5b600096505b8487101561247c57612468816120b7565b835260019690960195918301918301612457565b509650508601359250508082111561249357600080fd5b506124a085828601612117565b9150509250929050565b6000602082840312156124bc57600080fd5b81356108a381612bfe565b6000602082840312156124d957600080fd5b81516108a381612bfe565b600080602083850312156124f757600080fd5b82356001600160401b038082111561250e57600080fd5b818501915085601f83011261252257600080fd5b81358181111561253157600080fd5b86602082850101111561254357600080fd5b60209290920196919550909350505050565b60006020828403121561256757600080fd5b81356001600160401b0381111561257d57600080fd5b8201601f8101841361258e57600080fd5b61259d8482356020840161205a565b949350505050565b6000602082840312156125b757600080fd5b5035919050565b600080604083850312156125d157600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b83811015612610578151875295820195908201906001016125f4565b509495945050505050565b60008151808452612633816020860160208601612a4f565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061266157607f831692505b602080841082141561268357634e487b7160e01b600052602260045260246000fd5b81801561269757600181146126a8576126d5565b60ff198616895284890196506126d5565b60008881526020902060005b868110156126cd5781548b8201529085019083016126b4565b505084890196505b50505050505092915050565b60006126ed8286612647565b84516126fd818360208901612a4f565b61270981830186612647565b979650505050505050565b6001600160a01b0386811682528516602082015260a060408201819052600090612740908301866125e0565b828103606084015261275281866125e0565b90508281036080840152612766818561261b565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906127099083018461261b565b6020815260006108a360208301846125e0565b6040815260006127d260408301856125e0565b82810360208401526127e481856125e0565b95945050505050565b6020815260006108a3602083018461261b565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6020808252602e908201527f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60408201526d195c881bdc88185c1c1c9bdd995960921b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60208082526021908201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60006001600160401b038211156129c7576129c7612b43565b5060051b60200190565b600082198211156129e4576129e4612b01565b500190565b600060ff821660ff84168060ff03821115612a0657612a06612b01565b019392505050565b600082612a2b57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612a4a57612a4a612b01565b500290565b60005b83811015612a6a578181015183820152602001612a52565b83811115612a79576000848401525b50505050565b600181811c90821680612a9357607f821691505b60208210811415612ab457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b0381118282101715612adf57612adf612b43565b6040525050565b6000600019821415612afa57612afa612b01565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d1115612b725760046000803e5060005160e01c5b90565b600060443d1015612b835790565b6040516003193d81016004833e81513d6001600160401b038160248401118184111715612bb257505050505090565b8285019150815181811115612bca5750505050505090565b843d8701016020828501011115612be45750505050505090565b612bf360208286010187612aba565b509095945050505050565b6001600160e01b03198116811461076157600080fdfea26469706673582212204107e20e4fc3d2bd34bf7262a96cc79867a192d6c65ed3b7b42789f65840a20f64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000c4d12607206f2f1eea6f8e05241ed052f39a3691000000000000000000000000000000000000000000000000000000000000026000000000000000000000000000000000000000000000000000000000000003e7000000000000000000000000000000000000000000000000000000000000000d526966746572733a204b65797300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b526966746572734b6579730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261666b7265696765736f6c786173666c717761656a79627134737a6b75793467686435687a66343533717361666c72327a6d796178346a6b6c610000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000043697066733a2f2f6261667962656965796878346468626835773679376868786c6b7a32643763326a78673434707a7a70717a726a6e6d77376a6a65677868646978712f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000052e6a736f6e000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _Name (string): Rifters: Keys
Arg [1] : _Symbol (string): RiftersKeys
Arg [2] : _contractURI (string): ipfs://bafkreigesolxasflqwaejybq4szkuy4ghd5hzf453qsaflr2zmyax4jkla
Arg [3] : _baseUri (string): ipfs://bafybeieyhx4dhbh5w6y7hhxlkz2d7c2jxg44pzzpqzrjnmw7jjegxhdixq/
Arg [4] : _signerAddress (address): 0xC4D12607206F2f1eeA6f8E05241eD052F39A3691
Arg [5] : _extension (string): .json
Arg [6] : _royaltyPercentage (uint256): 999

-----Encoded View---------------
21 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [4] : 000000000000000000000000c4d12607206f2f1eea6f8e05241ed052f39a3691
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000260
Arg [6] : 00000000000000000000000000000000000000000000000000000000000003e7
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [8] : 526966746572733a204b65797300000000000000000000000000000000000000
Arg [9] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [10] : 526966746572734b657973000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [12] : 697066733a2f2f6261666b7265696765736f6c786173666c717761656a796271
Arg [13] : 34737a6b75793467686435687a66343533717361666c72327a6d796178346a6b
Arg [14] : 6c61000000000000000000000000000000000000000000000000000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [16] : 697066733a2f2f6261667962656965796878346468626835773679376868786c
Arg [17] : 6b7a32643763326a78673434707a7a70717a726a6e6d77376a6a656778686469
Arg [18] : 78712f0000000000000000000000000000000000000000000000000000000000
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [20] : 2e6a736f6e000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

67914:6116:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73988:31;;;73997:10;13324:51:1;;74009:9:0;13406:2:1;13391:18;;13384:34;73988:31:0;;13297:18:1;73988:31:0;;;;;;;67914:6116;;;;;52303:230;;;;;;;;;;-1:-1:-1;52303:230:0;;;;;:::i;:::-;;:::i;:::-;;;24324:25:1;;;24312:2;24297:18;52303:230:0;;;;;;;;73266:272;;;;;;;;;;-1:-1:-1;73266:272:0;;;;;:::i;:::-;;:::i;:::-;;;14330:14:1;;14323:22;14305:41;;14293:2;14278:18;73266:272:0;14165:187:1;72271:161:0;;;;;;;;;;-1:-1:-1;72271:161:0;;;;;:::i;:::-;;:::i;:::-;;68128:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;71560:425::-;;;;;;;;;;-1:-1:-1;71560:425:0;;;;;:::i;:::-;;:::i;72599:235::-;;;;;;;;;;-1:-1:-1;72599:235:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;13342:32:1;;;13324:51;;13406:2;13391:18;;13384:34;;;;13297:18;72599:235:0;13150:274:1;73783:154:0;;;;;;;;;;-1:-1:-1;73783:154:0;;;;;:::i;:::-;;:::i;68368:23::-;;;;;;;;;;;;;:::i;54246:438::-;;;;;;;;;;-1:-1:-1;54246:438:0;;;;;:::i;:::-;;:::i;68252:17::-;;;;;;;;;;;;;;;;52699:524;;;;;;;;;;-1:-1:-1;52699:524:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;70307:323::-;;;;;;;;;;-1:-1:-1;70307:323:0;;;;;:::i;:::-;;:::i;29682:103::-;;;;;;;;;;;;;:::i;69378:565::-;;;;;;:::i;:::-;;:::i;72440:151::-;;;;;;;;;;-1:-1:-1;72440:151:0;;;;;:::i;:::-;;:::i;69239:131::-;;;;;;;;;;-1:-1:-1;69239:131:0;;;;;:::i;:::-;;:::i;72842:178::-;;;;;;;;;;-1:-1:-1;72842:178:0;;;;;:::i;:::-;;:::i;29034:87::-;;;;;;;;;;-1:-1:-1;29107:6:0;;29034:87;;-1:-1:-1;;;;;29107:6:0;;;11692:51:1;;11680:2;11665:18;29034:87:0;11546:203:1;71993:163:0;;;;;;;;;;-1:-1:-1;71993:163:0;;;;;:::i;:::-;;:::i;68177:20::-;;;;;;;;;;;;;:::i;68308:21::-;;;;;;;;;;;;;:::i;72164:99::-;;;;;;;;;;-1:-1:-1;72164:99:0;;;;;:::i;:::-;;:::i;73069:189::-;;;;;;;;;;;;;:::i;53296:155::-;;;;;;;;;;-1:-1:-1;53296:155:0;;;;;:::i;:::-;;:::i;69094:137::-;;;;;;;;;;-1:-1:-1;69094:137:0;;;;;:::i;:::-;;:::i;69951:348::-;;;;;;;;;;-1:-1:-1;69951:348:0;;;;;:::i;:::-;;:::i;68204:41::-;;;;;;;;;;;;68240:5;68204:41;;68336:25;;;;;;;;;;;;;:::i;53523:168::-;;;;;;;;;;-1:-1:-1;53523:168:0;;;;;:::i;:::-;-1:-1:-1;;;;;53646:27:0;;;53622:4;53646:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;53523:168;53763:406;;;;;;;;;;-1:-1:-1;53763:406:0;;;;;:::i;:::-;;:::i;29940:201::-;;;;;;;;;;-1:-1:-1;29940:201:0;;;;;:::i;:::-;;:::i;68450:43::-;;;;;;;;;;-1:-1:-1;68450:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24785:4:1;24773:17;;;24755:36;;24743:2;24728:18;68450:43:0;24613:184:1;52303:230:0;52389:7;-1:-1:-1;;;;;52417:21:0;;52409:76;;;;-1:-1:-1;;;52409:76:0;;17760:2:1;52409:76:0;;;17742:21:1;17799:2;17779:18;;;17772:30;17838:34;17818:18;;;17811:62;-1:-1:-1;;;17889:18:1;;;17882:40;17939:19;;52409:76:0;;;;;;;;;-1:-1:-1;52503:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;52503:22:0;;;;;;;;;;;;52303:230::o;73266:272::-;73405:4;-1:-1:-1;;;;;;73435:41:0;;-1:-1:-1;;;73435:41:0;;:94;;;73493:36;73517:11;73493:23;:36::i;:::-;73427:103;73266:272;-1:-1:-1;;73266:272:0:o;72271:161::-;28920:13;:11;:13::i;:::-;2345:21:::1;:19;:21::i;:::-;72394:13:::2;:30:::0;;-1:-1:-1;;;;;;72394:30:0::2;-1:-1:-1::0;;;;;72394:30:0;::::2;;::::0;;-1:-1:-1;2909:7:0;:22;72271:161;:::o;2389:20::-:1;72271:161:::0;:::o;68128:18::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;71560:425::-;71657:13;71688:16;71707:12;:8;71718:1;71707:12;:::i;:::-;71688:31;;71749:2;;71738:8;:13;71730:44;;;;-1:-1:-1;;;71730:44:0;;21621:2:1;71730:44:0;;;21603:21:1;21660:2;21640:18;;;21633:30;-1:-1:-1;;;21679:18:1;;;21672:48;21737:18;;71730:44:0;21419:342:1;71730:44:0;71829:1;71811:7;71805:21;;;;;:::i;:::-;;;:25;:172;;;;;;;;;;;;;;;;;71896:7;71905:19;:8;:17;:19::i;:::-;71926:9;71879:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;71805:172;71785:192;71560:425;-1:-1:-1;;;71560:425:0:o;72599:235::-;72773:10;;72799:17;;72708:16;;;;-1:-1:-1;;;;;72773:10:0;;;;72820:5;;72786:30;;:10;:30;:::i;:::-;72785:40;;;;:::i;:::-;72765:61;;;;72599:235;;;;;;:::o;73783:154::-;28920:13;:11;:13::i;:::-;2345:21:::1;:19;:21::i;:::-;73902:27:::2;73916:12;73902:13;:27::i;:::-;2389:20:::1;1783:1:::0;2909:7;:22;2726:213;68368:23;;;;;;;:::i;54246:438::-;-1:-1:-1;;;;;54479:20:0;;27665:10;54479:20;;:60;;-1:-1:-1;54503:36:0;54520:4;27665:10;53523:168;:::i;54503:36::-;54457:156;;;;-1:-1:-1;;;54457:156:0;;;;;;;:::i;:::-;54624:52;54647:4;54653:2;54657:3;54662:7;54671:4;54624:22;:52::i;:::-;54246:438;;;;;:::o;52699:524::-;52855:16;52916:3;:10;52897:8;:15;:29;52889:83;;;;-1:-1:-1;;;52889:83:0;;22378:2:1;52889:83:0;;;22360:21:1;22417:2;22397:18;;;22390:30;22456:34;22436:18;;;22429:62;-1:-1:-1;;;22507:18:1;;;22500:39;22556:19;;52889:83:0;22176:405:1;52889:83:0;52985:30;53032:8;:15;-1:-1:-1;;;;;53018:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53018:30:0;;52985:63;;53066:9;53061:122;53085:8;:15;53081:1;:19;53061:122;;;53141:30;53151:8;53160:1;53151:11;;;;;;;;:::i;:::-;;;;;;;53164:3;53168:1;53164:6;;;;;;;;:::i;:::-;;;;;;;53141:9;:30::i;:::-;53122:13;53136:1;53122:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;53102:3;;;:::i;:::-;;;53061:122;;;-1:-1:-1;53202:13:0;52699:524;-1:-1:-1;;;52699:524:0:o;70307:323::-;28920:13;:11;:13::i;:::-;70443:34;;::::1;70435:68;;;::::0;-1:-1:-1;;;70435:68:0;;19335:2:1;70435:68:0::1;::::0;::::1;19317:21:1::0;19374:2;19354:18;;;19347:30;-1:-1:-1;;;19393:18:1;;;19386:51;19454:18;;70435:68:0::1;19133:345:1::0;70435:68:0::1;70519:9;70514:109;70530:20:::0;;::::1;70514:109;;;70572:39;70586:9;;70596:1;70586:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;70600:7;;70608:1;70600:10;;;;;;;:::i;:::-;;;;;;;70572:13;:39::i;:::-;70552:3:::0;::::1;::::0;::::1;:::i;:::-;;;;70514:109;;29682:103:::0;28920:13;:11;:13::i;:::-;29747:30:::1;29774:1;29747:18;:30::i;:::-;29682:103::o:0;69378:565::-;2345:21;:19;:21::i;:::-;69627:17:::1;69642:1;69627:14;:17::i;:::-;69675:37;69702:9;;69675:26;:37::i;:::-;69751:34;69774:10;69751:22;:34::i;:::-;69815:28;69821:10;69833:2;;69837:1;69815:28;;;;;;;;;;;::::0;:5:::1;:28::i;:::-;69889:1;69883:2;;:7;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;69912:10:0::1;69901:22;::::0;;;:10:::1;:22;::::0;;;;:34;;69933:1:::1;::::0;69901:22;:34:::1;::::0;69933:1;;69901:34:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;2389:20:::0;1783:1;2909:7;:22;2726:213;2389:20;69378:565;;:::o;72440:151::-;28920:13;:11;:13::i;:::-;2345:21:::1;:19;:21::i;:::-;72561:22:::0;;::::2;::::0;:9:::2;::::0;:22:::2;::::0;::::2;::::0;::::2;:::i;:::-;;2389:20:::1;1783:1:::0;2909:7;:22;2726:213;69239:131;-1:-1:-1;;;;;69318:18:0;;;;;;:10;:18;;;;;;69339:1;69318:18;;;;:22;69310:52;;;;-1:-1:-1;;;69310:52:0;;18989:2:1;69310:52:0;;;18971:21:1;19028:2;19008:18;;;19001:30;-1:-1:-1;;;19047:18:1;;;19040:47;19104:18;;69310:52:0;18787:341:1;72842:178:0;28920:13;:11;:13::i;:::-;2345:21:::1;:19;:21::i;:::-;72974:17:::2;:38:::0;;;2389:20:::1;1783:1:::0;2909:7;:22;2726:213;71993:163;28920:13;:11;:13::i;:::-;2345:21:::1;:19;:21::i;:::-;72120:28:::0;;::::2;::::0;:11:::2;::::0;:28:::2;::::0;::::2;::::0;::::2;:::i;68177:20::-:0;;;;;;;:::i;68308:21::-;;;;;;;:::i;72164:99::-;28920:13;:11;:13::i;:::-;2345:21:::1;:19;:21::i;:::-;72241:14:::0;;::::2;::::0;:7:::2;::::0;:14:::2;::::0;::::2;::::0;::::2;:::i;73069:189::-:0;28920:13;:11;:13::i;:::-;2345:21:::1;:19;:21::i;:::-;73154:49:::2;::::0;73136:12:::2;::::0;73154:10:::2;::::0;73177:21:::2;::::0;73136:12;73154:49;73136:12;73154:49;73177:21;73154:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73135:68;;;73222:7;73214:36;;;::::0;-1:-1:-1;;;73214:36:0;;21276:2:1;73214:36:0::2;::::0;::::2;21258:21:1::0;21315:2;21295:18;;;21288:30;-1:-1:-1;;;21334:18:1;;;21327:46;21390:18;;73214:36:0::2;21074:340:1::0;73214:36:0::2;73124:134;2389:20:::1;1783:1:::0;2909:7;:22;2726:213;53296:155;53391:52;27665:10;53424:8;53434;53391:18;:52::i;69094:137::-;68240:5;69175:11;69170:2;;:16;;;;:::i;:::-;:29;;69162:61;;;;-1:-1:-1;;;69162:61:0;;16292:2:1;69162:61:0;;;16274:21:1;16331:2;16311:18;;;16304:30;-1:-1:-1;;;16350:18:1;;;16343:49;16409:18;;69162:61:0;16090:343:1;69951:348:0;70075:55;;;70116:10;70075:55;;;10432:19:1;70036:12:0;;10467::1;70075:55:0;;;;;;;;;;;;70051:90;;;;;;70036:105;;70191:48;70229:9;;70191:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;70191:29:0;;-1:-1:-1;70191:4:0;;-1:-1:-1;70191:27:0;;-1:-1:-1;70191:29:0:i;:::-;:37;;:48::i;:::-;70174:13;;-1:-1:-1;;;;;70174:13:0;;;:65;;;70152:139;;;;-1:-1:-1;;;70152:139:0;;16640:2:1;70152:139:0;;;16622:21:1;16679:2;16659:18;;;16652:30;16718:26;16698:18;;;16691:54;16762:18;;70152:139:0;16438:348:1;70152:139:0;70025:274;69951:348;;:::o;68336:25::-;;;;;;;:::i;53763:406::-;-1:-1:-1;;;;;53971:20:0;;27665:10;53971:20;;:60;;-1:-1:-1;53995:36:0;54012:4;27665:10;53523:168;:::i;53995:36::-;53949:156;;;;-1:-1:-1;;;53949:156:0;;;;;;;:::i;:::-;54116:45;54134:4;54140:2;54144;54148:6;54156:4;54116:17;:45::i;29940:201::-;28920:13;:11;:13::i;:::-;-1:-1:-1;;;;;30029:22:0;::::1;30021:73;;;::::0;-1:-1:-1;;;30021:73:0;;17353:2:1;30021:73:0::1;::::0;::::1;17335:21:1::0;17392:2;17372:18;;;17365:30;17431:34;17411:18;;;17404:62;-1:-1:-1;;;17482:18:1;;;17475:36;17528:19;;30021:73:0::1;17151:402:1::0;30021:73:0::1;30105:28;30124:8;30105:18;:28::i;51326:310::-:0;51428:4;-1:-1:-1;;;;;;51465:41:0;;-1:-1:-1;;;51465:41:0;;:110;;-1:-1:-1;;;;;;;51523:52:0;;-1:-1:-1;;;51523:52:0;51465:110;:163;;;-1:-1:-1;;;;;;;;;;42716:40:0;;;51592:36;42607:157;29199:132;29107:6;;-1:-1:-1;;;;;29107:6:0;27665:10;29263:23;29255:68;;;;-1:-1:-1;;;29255:68:0;;20502:2:1;29255:68:0;;;20484:21:1;;;20521:18;;;20514:30;20580:34;20560:18;;;20553:62;20632:18;;29255:68:0;20300:356:1;2425:293:0;1827:1;2559:7;;:19;;2551:63;;;;-1:-1:-1;;;2551:63:0;;23599:2:1;2551:63:0;;;23581:21:1;23638:2;23618:18;;;23611:30;23677:33;23657:18;;;23650:61;23728:18;;2551:63:0;23397:355:1;2551:63:0;1827:1;2692:7;:18;2425:293::o;16251:716::-;16307:13;16358:14;16375:17;16386:5;16375:10;:17::i;:::-;16395:1;16375:21;16358:38;;16411:20;16445:6;-1:-1:-1;;;;;16434:18:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16434:18:0;-1:-1:-1;16411:41:0;-1:-1:-1;16576:28:0;;;16592:2;16576:28;16633:288;-1:-1:-1;;16665:5:0;-1:-1:-1;;;16802:2:0;16791:14;;16786:30;16665:5;16773:44;16863:2;16854:11;;;-1:-1:-1;16888:10:0;16884:21;;16900:5;;16884:21;16633:288;;73546:229;-1:-1:-1;;;;;73633:26:0;;73611:120;;;;-1:-1:-1;;;73611:120:0;;20863:2:1;73611:120:0;;;20845:21:1;20902:2;20882:18;;;20875:30;20941:34;20921:18;;;20914:62;-1:-1:-1;;;20992:18:1;;;20985:42;21044:19;;73611:120:0;20661:408:1;73611:120:0;73742:10;:25;;-1:-1:-1;;;;;;73742:25:0;-1:-1:-1;;;;;73742:25:0;;;;;;;;;;73546:229::o;56480:1146::-;56707:7;:14;56693:3;:10;:28;56685:81;;;;-1:-1:-1;;;56685:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;56785:16:0;;56777:66;;;;-1:-1:-1;;;56777:66:0;;;;;;;:::i;:::-;27665:10;56856:16;56973:421;56997:3;:10;56993:1;:14;56973:421;;;57029:10;57042:3;57046:1;57042:6;;;;;;;;:::i;:::-;;;;;;;57029:19;;57063:14;57080:7;57088:1;57080:10;;;;;;;;:::i;:::-;;;;;;;;;;;;57107:19;57129:13;;;;;;;;;;-1:-1:-1;;;;;57129:19:0;;;;;;;;;;;;57080:10;;-1:-1:-1;57171:21:0;;;;57163:76;;;;-1:-1:-1;;;57163:76:0;;;;;;;:::i;:::-;57283:9;:13;;;;;;;;;;;-1:-1:-1;;;;;57283:19:0;;;;;;;;;;57305:20;;;57283:42;;57355:17;;;;;;;:27;;57305:20;;57283:9;57355:27;;57305:20;;57355:27;:::i;:::-;;;;;;;;57014:380;;;57009:3;;;;:::i;:::-;;;56973:421;;;;57441:2;-1:-1:-1;;;;;57411:47:0;57435:4;-1:-1:-1;;;;;57411:47:0;57425:8;-1:-1:-1;;;;;57411:47:0;;57445:3;57450:7;57411:47;;;;;;;:::i;:::-;;;;;;;;57543:75;57579:8;57589:4;57595:2;57599:3;57604:7;57613:4;57543:35;:75::i;:::-;56674:952;56480:1146;;;;;:::o;70726:826::-;70820:1;70810:6;:11;;70802:39;;;;-1:-1:-1;;;70802:39:0;;15539:2:1;70802:39:0;;;15521:21:1;15578:2;15558:18;;;15551:30;-1:-1:-1;;;15597:18:1;;;15590:45;15652:18;;70802:39:0;15337:339:1;70802:39:0;70852:22;70867:6;70852:14;:22::i;:::-;70889:6;70899:1;70889:11;70885:660;;;70917:26;70923:8;70933:2;;70937:1;70917:26;;;;;;;;;;;;:5;:26::i;:::-;70964:1;70958:2;;:7;;;;;;;:::i;:::-;;;;-1:-1:-1;70885:660:0;;-1:-1:-1;70885:660:0;;70998:20;71035:6;-1:-1:-1;;;;;71021:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;71021:21:0;;70998:44;;71057:23;71097:6;-1:-1:-1;;;;;71083:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;71083:21:0;-1:-1:-1;71138:2:0;;71057:47;;-1:-1:-1;71119:16:0;71155:300;71179:6;71175:1;:10;71155:300;;;71220:8;71211:3;71215:1;71211:6;;;;;;;;:::i;:::-;;;;;;;;;;:17;71297:12;:8;71308:1;71297:12;:::i;:::-;71286:23;;71340:1;71328:6;71335:1;71328:9;;;;;;;;:::i;:::-;;;;;;;;;;:13;71187:3;;;;:::i;:::-;;;;71155:300;;;;71475:6;71469:2;;:12;;;;;;;:::i;:::-;;;;;;;;71496:37;71507:8;71517:3;71522:6;71496:37;;;;;;;;;;;;:10;:37::i;30301:191::-;30394:6;;;-1:-1:-1;;;;;30411:17:0;;;-1:-1:-1;;;;;;30411:17:0;;;;;;;30444:40;;30394:6;;;30411:17;30394:6;;30444:40;;30375:16;;30444:40;30364:128;30301:191;:::o;58944:729::-;-1:-1:-1;;;;;59097:16:0;;59089:62;;;;-1:-1:-1;;;59089:62:0;;;;;;;:::i;:::-;27665:10;59164:16;59229:21;59247:2;59229:17;:21::i;:::-;59206:44;;59261:24;59288:25;59306:6;59288:17;:25::i;:::-;59261:52;;59405:9;:13;;;;;;;;;;;-1:-1:-1;;;;;59405:17:0;;;;;;;;;:27;;59426:6;;59405:9;:27;;59426:6;;59405:27;:::i;:::-;;;;-1:-1:-1;;59448:52:0;;;24534:25:1;;;24590:2;24575:18;;24568:34;;;-1:-1:-1;;;;;59448:52:0;;;;59481:1;;59448:52;;;;;;24507:18:1;59448:52:0;;;;;;;59591:74;59622:8;59640:1;59644:2;59648;59652:6;59660:4;59591:30;:74::i;:::-;59078:595;;;58944:729;;;;:::o;63357:331::-;63512:8;-1:-1:-1;;;;;63503:17:0;:5;-1:-1:-1;;;;;63503:17:0;;;63495:71;;;;-1:-1:-1;;;63495:71:0;;21968:2:1;63495:71:0;;;21950:21:1;22007:2;21987:18;;;21980:30;22046:34;22026:18;;;22019:62;-1:-1:-1;;;22097:18:1;;;22090:39;22146:19;;63495:71:0;21766:405:1;63495:71:0;-1:-1:-1;;;;;63577:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;63577:46:0;;;;;;;;;;63639:41;;14305::1;;;63639::0;;14278:18:1;63639:41:0;;;;;;;63357:331;;;:::o;25591:269::-;25793:58;;11193:66:1;25793:58:0;;;11181:79:1;11276:12;;;11269:28;;;25660:7:0;;11313:12:1;;25793:58:0;;;;;;;;;;;;25783:69;;;;;;25776:76;;25591:269;;;:::o;21901:231::-;21979:7;22000:17;22019:18;22041:27;22052:4;22058:9;22041:10;:27::i;:::-;21999:69;;;;22079:18;22091:5;22079:11;:18::i;55148:974::-;-1:-1:-1;;;;;55336:16:0;;55328:66;;;;-1:-1:-1;;;55328:66:0;;;;;;;:::i;:::-;27665:10;55407:16;55472:21;55490:2;55472:17;:21::i;:::-;55449:44;;55504:24;55531:25;55549:6;55531:17;:25::i;:::-;55504:52;;55642:19;55664:13;;;;;;;;;;;-1:-1:-1;;;;;55664:19:0;;;;;;;;;;55702:21;;;;55694:76;;;;-1:-1:-1;;;55694:76:0;;;;;;;:::i;:::-;55806:9;:13;;;;;;;;;;;-1:-1:-1;;;;;55806:19:0;;;;;;;;;;55828:20;;;55806:42;;55870:17;;;;;;;:27;;55828:20;;55806:9;55870:27;;55828:20;;55870:27;:::i;:::-;;;;-1:-1:-1;;55915:46:0;;;24534:25:1;;;24590:2;24575:18;;24568:34;;;-1:-1:-1;;;;;55915:46:0;;;;;;;;;;;;;;24507:18:1;55915:46:0;;;;;;;56046:68;56077:8;56087:4;56093:2;56097;56101:6;56109:4;56046:30;:68::i;:::-;55317:805;;;;55148:974;;;;;:::o;13117:922::-;13170:7;;-1:-1:-1;;;13248:15:0;;13244:102;;-1:-1:-1;;;13284:15:0;;;-1:-1:-1;13328:2:0;13318:12;13244:102;13373:6;13364:5;:15;13360:102;;13409:6;13400:15;;;-1:-1:-1;13444:2:0;13434:12;13360:102;13489:6;13480:5;:15;13476:102;;13525:6;13516:15;;;-1:-1:-1;13560:2:0;13550:12;13476:102;13605:5;13596;:14;13592:99;;13640:5;13631:14;;;-1:-1:-1;13674:1:0;13664:11;13592:99;13718:5;13709;:14;13705:99;;13753:5;13744:14;;;-1:-1:-1;13787:1:0;13777:11;13705:99;13831:5;13822;:14;13818:99;;13866:5;13857:14;;;-1:-1:-1;13900:1:0;13890:11;13818:99;13944:5;13935;:14;13931:66;;13980:1;13970:11;14025:6;13117:922;-1:-1:-1;;13117:922:0:o;66802:813::-;-1:-1:-1;;;;;67042:13:0;;32027:19;:23;67038:570;;67078:79;;-1:-1:-1;;;67078:79:0;;-1:-1:-1;;;;;67078:43:0;;;;;:79;;67122:8;;67132:4;;67138:3;;67143:7;;67152:4;;67078:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;67078:79:0;;;;;;;;-1:-1:-1;;67078:79:0;;;;;;;;;;;;:::i;:::-;;;67074:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;67470:6;67463:14;;-1:-1:-1;;;67463:14:0;;;;;;;;:::i;67074:523::-;;;67519:62;;-1:-1:-1;;;67519:62:0;;23959:2:1;67519:62:0;;;23941:21:1;23998:2;23978:18;;;23971:30;24037:34;24017:18;;;24010:62;-1:-1:-1;;;24088:18:1;;;24081:50;24148:19;;67519:62:0;23757:416:1;67074:523:0;-1:-1:-1;;;;;;67239:60:0;;-1:-1:-1;;;67239:60:0;67235:159;;67324:50;;-1:-1:-1;;;67324:50:0;;;;;;;:::i;60076:813::-;-1:-1:-1;;;;;60254:16:0;;60246:62;;;;-1:-1:-1;;;60246:62:0;;;;;;;:::i;:::-;60341:7;:14;60327:3;:10;:28;60319:81;;;;-1:-1:-1;;;60319:81:0;;;;;;;:::i;:::-;27665:10;60413:16;60536:103;60560:3;:10;60556:1;:14;60536:103;;;60617:7;60625:1;60617:10;;;;;;;;:::i;:::-;;;;;;;60592:9;:17;60602:3;60606:1;60602:6;;;;;;;;:::i;:::-;;;;;;;60592:17;;;;;;;;;;;:21;60610:2;-1:-1:-1;;;;;60592:21:0;-1:-1:-1;;;;;60592:21:0;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;60572:3:0;;-1:-1:-1;60572:3:0;;;:::i;:::-;;;;60536:103;;;;60692:2;-1:-1:-1;;;;;60656:53:0;60688:1;-1:-1:-1;;;;;60656:53:0;60670:8;-1:-1:-1;;;;;60656:53:0;;60696:3;60701:7;60656:53;;;;;;;:::i;:::-;;;;;;;;60800:81;60836:8;60854:1;60858:2;60862:3;60867:7;60876:4;60800:35;:81::i;67623:198::-;67743:16;;;67757:1;67743:16;;;;;;;;;67689;;67718:22;;67743:16;;;;;;;;;;;;-1:-1:-1;67743:16:0;67718:41;;67781:7;67770:5;67776:1;67770:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;67808:5;67623:198;-1:-1:-1;;67623:198:0:o;66050:744::-;-1:-1:-1;;;;;66265:13:0;;32027:19;:23;66261:526;;66301:72;;-1:-1:-1;;;66301:72:0;;-1:-1:-1;;;;;66301:38:0;;;;;:72;;66340:8;;66350:4;;66356:2;;66360:6;;66368:4;;66301:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66301:72:0;;;;;;;;-1:-1:-1;;66301:72:0;;;;;;;;;;;;:::i;:::-;;;66297:479;;;;:::i;:::-;-1:-1:-1;;;;;;66423:55:0;;-1:-1:-1;;;66423:55:0;66419:154;;66503:50;;-1:-1:-1;;;66503:50:0;;;;;;;:::i;20352:747::-;20433:7;20442:12;20471:9;:16;20491:2;20471:22;20467:625;;;20815:4;20800:20;;20794:27;20865:4;20850:20;;20844:27;20923:4;20908:20;;20902:27;20510:9;20894:36;20966:25;20977:4;20894:36;20794:27;20844;20966:10;:25::i;:::-;20959:32;;;;;;;;;20467:625;-1:-1:-1;21040:1:0;;-1:-1:-1;21044:35:0;21024:56;;18745:521;18823:20;18814:5;:29;;;;;;;;:::i;:::-;;18810:449;;;18745:521;:::o;18810:449::-;18921:29;18912:5;:38;;;;;;;;:::i;:::-;;18908:351;;;18967:34;;-1:-1:-1;;;18967:34:0;;15186:2:1;18967:34:0;;;15168:21:1;15225:2;15205:18;;;15198:30;15264:26;15244:18;;;15237:54;15308:18;;18967:34:0;14984:348:1;18908:351:0;19032:35;19023:5;:44;;;;;;;;:::i;:::-;;19019:240;;;19084:41;;-1:-1:-1;;;19084:41:0;;16993:2:1;19084:41:0;;;16975:21:1;17032:2;17012:18;;;17005:30;17071:33;17051:18;;;17044:61;17122:18;;19084:41:0;16791:355:1;19019:240:0;19156:30;19147:5;:39;;;;;;;;:::i;:::-;;19143:116;;;19203:44;;-1:-1:-1;;;19203:44:0;;18586:2:1;19203:44:0;;;18568:21:1;18625:2;18605:18;;;18598:30;18664:34;18644:18;;;18637:62;-1:-1:-1;;;18715:18:1;;;18708:32;18757:19;;19203:44:0;18384:398:1;23353:1520:0;23484:7;;24418:66;24405:79;;24401:163;;;-1:-1:-1;24517:1:0;;-1:-1:-1;24521:30:0;24501:51;;24401:163;24678:24;;;24661:14;24678:24;;;;;;;;;14584:25:1;;;14657:4;14645:17;;14625:18;;;14618:45;;;;14679:18;;;14672:34;;;14722:18;;;14715:34;;;24678:24:0;;14556:19:1;;24678:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;24678:24:0;;-1:-1:-1;;24678:24:0;;;-1:-1:-1;;;;;;;24717:20:0;;24713:103;;24770:1;24774:29;24754:50;;;;;;;24713:103;24836:6;-1:-1:-1;24844:20:0;;-1:-1:-1;23353:1520:0;;;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:468:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:1;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:45;;;369:1;366;359:12;328:45;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;14:468;;;;;:::o;487:173::-;555:20;;-1:-1:-1;;;;;604:31:1;;594:42;;584:70;;650:1;647;640:12;584:70;487:173;;;:::o;665:367::-;728:8;738:6;792:3;785:4;777:6;773:17;769:27;759:55;;810:1;807;800:12;759:55;-1:-1:-1;833:20:1;;-1:-1:-1;;;;;865:30:1;;862:50;;;908:1;905;898:12;862:50;945:4;937:6;933:17;921:29;;1005:3;998:4;988:6;985:1;981:14;973:6;969:27;965:38;962:47;959:67;;;1022:1;1019;1012:12;1037:735;1091:5;1144:3;1137:4;1129:6;1125:17;1121:27;1111:55;;1162:1;1159;1152:12;1111:55;1198:6;1185:20;1224:4;1247:43;1287:2;1247:43;:::i;:::-;1319:2;1313:9;1331:31;1359:2;1351:6;1331:31;:::i;:::-;1397:18;;;1431:15;;;;-1:-1:-1;1466:15:1;;;1516:1;1512:10;;;1500:23;;1496:32;;1493:41;-1:-1:-1;1490:61:1;;;1547:1;1544;1537:12;1490:61;1569:1;1579:163;1593:2;1590:1;1587:9;1579:163;;;1650:17;;1638:30;;1688:12;;;;1720;;;;1611:1;1604:9;1579:163;;;-1:-1:-1;1760:6:1;;1037:735;-1:-1:-1;;;;;;;1037:735:1:o;1777:220::-;1819:5;1872:3;1865:4;1857:6;1853:17;1849:27;1839:55;;1890:1;1887;1880:12;1839:55;1912:79;1987:3;1978:6;1965:20;1958:4;1950:6;1946:17;1912:79;:::i;2002:186::-;2061:6;2114:2;2102:9;2093:7;2089:23;2085:32;2082:52;;;2130:1;2127;2120:12;2082:52;2153:29;2172:9;2153:29;:::i;2193:260::-;2261:6;2269;2322:2;2310:9;2301:7;2297:23;2293:32;2290:52;;;2338:1;2335;2328:12;2290:52;2361:29;2380:9;2361:29;:::i;:::-;2351:39;;2409:38;2443:2;2432:9;2428:18;2409:38;:::i;:::-;2399:48;;2193:260;;;;;:::o;2458:943::-;2612:6;2620;2628;2636;2644;2697:3;2685:9;2676:7;2672:23;2668:33;2665:53;;;2714:1;2711;2704:12;2665:53;2737:29;2756:9;2737:29;:::i;:::-;2727:39;;2785:38;2819:2;2808:9;2804:18;2785:38;:::i;:::-;2775:48;;2874:2;2863:9;2859:18;2846:32;-1:-1:-1;;;;;2938:2:1;2930:6;2927:14;2924:34;;;2954:1;2951;2944:12;2924:34;2977:61;3030:7;3021:6;3010:9;3006:22;2977:61;:::i;:::-;2967:71;;3091:2;3080:9;3076:18;3063:32;3047:48;;3120:2;3110:8;3107:16;3104:36;;;3136:1;3133;3126:12;3104:36;3159:63;3214:7;3203:8;3192:9;3188:24;3159:63;:::i;:::-;3149:73;;3275:3;3264:9;3260:19;3247:33;3231:49;;3305:2;3295:8;3292:16;3289:36;;;3321:1;3318;3311:12;3289:36;;3344:51;3387:7;3376:8;3365:9;3361:24;3344:51;:::i;:::-;3334:61;;;2458:943;;;;;;;;:::o;3406:606::-;3510:6;3518;3526;3534;3542;3595:3;3583:9;3574:7;3570:23;3566:33;3563:53;;;3612:1;3609;3602:12;3563:53;3635:29;3654:9;3635:29;:::i;:::-;3625:39;;3683:38;3717:2;3706:9;3702:18;3683:38;:::i;:::-;3673:48;;3768:2;3757:9;3753:18;3740:32;3730:42;;3819:2;3808:9;3804:18;3791:32;3781:42;;3874:3;3863:9;3859:19;3846:33;-1:-1:-1;;;;;3894:6:1;3891:30;3888:50;;;3934:1;3931;3924:12;3888:50;3957:49;3998:7;3989:6;3978:9;3974:22;3957:49;:::i;4017:347::-;4082:6;4090;4143:2;4131:9;4122:7;4118:23;4114:32;4111:52;;;4159:1;4156;4149:12;4111:52;4182:29;4201:9;4182:29;:::i;:::-;4172:39;;4261:2;4250:9;4246:18;4233:32;4308:5;4301:13;4294:21;4287:5;4284:32;4274:60;;4330:1;4327;4320:12;4274:60;4353:5;4343:15;;;4017:347;;;;;:::o;4369:254::-;4437:6;4445;4498:2;4486:9;4477:7;4473:23;4469:32;4466:52;;;4514:1;4511;4504:12;4466:52;4537:29;4556:9;4537:29;:::i;:::-;4527:39;4613:2;4598:18;;;;4585:32;;-1:-1:-1;;;4369:254:1:o;4628:773::-;4750:6;4758;4766;4774;4827:2;4815:9;4806:7;4802:23;4798:32;4795:52;;;4843:1;4840;4833:12;4795:52;4883:9;4870:23;-1:-1:-1;;;;;4953:2:1;4945:6;4942:14;4939:34;;;4969:1;4966;4959:12;4939:34;5008:70;5070:7;5061:6;5050:9;5046:22;5008:70;:::i;:::-;5097:8;;-1:-1:-1;4982:96:1;-1:-1:-1;5185:2:1;5170:18;;5157:32;;-1:-1:-1;5201:16:1;;;5198:36;;;5230:1;5227;5220:12;5198:36;;5269:72;5333:7;5322:8;5311:9;5307:24;5269:72;:::i;:::-;4628:773;;;;-1:-1:-1;5360:8:1;-1:-1:-1;;;;4628:773:1:o;5406:1219::-;5524:6;5532;5585:2;5573:9;5564:7;5560:23;5556:32;5553:52;;;5601:1;5598;5591:12;5553:52;5641:9;5628:23;-1:-1:-1;;;;;5711:2:1;5703:6;5700:14;5697:34;;;5727:1;5724;5717:12;5697:34;5765:6;5754:9;5750:22;5740:32;;5810:7;5803:4;5799:2;5795:13;5791:27;5781:55;;5832:1;5829;5822:12;5781:55;5868:2;5855:16;5890:4;5913:43;5953:2;5913:43;:::i;:::-;5985:2;5979:9;5997:31;6025:2;6017:6;5997:31;:::i;:::-;6063:18;;;6097:15;;;;-1:-1:-1;6132:11:1;;;6174:1;6170:10;;;6162:19;;6158:28;;6155:41;-1:-1:-1;6152:61:1;;;6209:1;6206;6199:12;6152:61;6231:1;6222:10;;6241:169;6255:2;6252:1;6249:9;6241:169;;;6312:23;6331:3;6312:23;:::i;:::-;6300:36;;6273:1;6266:9;;;;;6356:12;;;;6388;;6241:169;;;-1:-1:-1;6429:6:1;-1:-1:-1;;6473:18:1;;6460:32;;-1:-1:-1;;6504:16:1;;;6501:36;;;6533:1;6530;6523:12;6501:36;;6556:63;6611:7;6600:8;6589:9;6585:24;6556:63;:::i;:::-;6546:73;;;5406:1219;;;;;:::o;6630:245::-;6688:6;6741:2;6729:9;6720:7;6716:23;6712:32;6709:52;;;6757:1;6754;6747:12;6709:52;6796:9;6783:23;6815:30;6839:5;6815:30;:::i;6880:249::-;6949:6;7002:2;6990:9;6981:7;6977:23;6973:32;6970:52;;;7018:1;7015;7008:12;6970:52;7050:9;7044:16;7069:30;7093:5;7069:30;:::i;7134:591::-;7204:6;7212;7265:2;7253:9;7244:7;7240:23;7236:32;7233:52;;;7281:1;7278;7271:12;7233:52;7321:9;7308:23;-1:-1:-1;;;;;7391:2:1;7383:6;7380:14;7377:34;;;7407:1;7404;7397:12;7377:34;7445:6;7434:9;7430:22;7420:32;;7490:7;7483:4;7479:2;7475:13;7471:27;7461:55;;7512:1;7509;7502:12;7461:55;7552:2;7539:16;7578:2;7570:6;7567:14;7564:34;;;7594:1;7591;7584:12;7564:34;7639:7;7634:2;7625:6;7621:2;7617:15;7613:24;7610:37;7607:57;;;7660:1;7657;7650:12;7607:57;7691:2;7683:11;;;;;7713:6;;-1:-1:-1;7134:591:1;;-1:-1:-1;;;;7134:591:1:o;7730:450::-;7799:6;7852:2;7840:9;7831:7;7827:23;7823:32;7820:52;;;7868:1;7865;7858:12;7820:52;7908:9;7895:23;-1:-1:-1;;;;;7933:6:1;7930:30;7927:50;;;7973:1;7970;7963:12;7927:50;7996:22;;8049:4;8041:13;;8037:27;-1:-1:-1;8027:55:1;;8078:1;8075;8068:12;8027:55;8101:73;8166:7;8161:2;8148:16;8143:2;8139;8135:11;8101:73;:::i;:::-;8091:83;7730:450;-1:-1:-1;;;;7730:450:1:o;8185:180::-;8244:6;8297:2;8285:9;8276:7;8272:23;8268:32;8265:52;;;8313:1;8310;8303:12;8265:52;-1:-1:-1;8336:23:1;;8185:180;-1:-1:-1;8185:180:1:o;8370:248::-;8438:6;8446;8499:2;8487:9;8478:7;8474:23;8470:32;8467:52;;;8515:1;8512;8505:12;8467:52;-1:-1:-1;;8538:23:1;;;8608:2;8593:18;;;8580:32;;-1:-1:-1;8370:248:1:o;8623:435::-;8676:3;8714:5;8708:12;8741:6;8736:3;8729:19;8767:4;8796:2;8791:3;8787:12;8780:19;;8833:2;8826:5;8822:14;8854:1;8864:169;8878:6;8875:1;8872:13;8864:169;;;8939:13;;8927:26;;8973:12;;;;9008:15;;;;8900:1;8893:9;8864:169;;;-1:-1:-1;9049:3:1;;8623:435;-1:-1:-1;;;;;8623:435:1:o;9063:257::-;9104:3;9142:5;9136:12;9169:6;9164:3;9157:19;9185:63;9241:6;9234:4;9229:3;9225:14;9218:4;9211:5;9207:16;9185:63;:::i;:::-;9302:2;9281:15;-1:-1:-1;;9277:29:1;9268:39;;;;9309:4;9264:50;;9063:257;-1:-1:-1;;9063:257:1:o;9325:973::-;9410:12;;9375:3;;9465:1;9485:18;;;;9538;;;;9565:61;;9619:4;9611:6;9607:17;9597:27;;9565:61;9645:2;9693;9685:6;9682:14;9662:18;9659:38;9656:161;;;9739:10;9734:3;9730:20;9727:1;9720:31;9774:4;9771:1;9764:15;9802:4;9799:1;9792:15;9656:161;9833:18;9860:104;;;;9978:1;9973:319;;;;9826:466;;9860:104;-1:-1:-1;;9893:24:1;;9881:37;;9938:16;;;;-1:-1:-1;9860:104:1;;9973:319;25063:1;25056:14;;;25100:4;25087:18;;10067:1;10081:165;10095:6;10092:1;10089:13;10081:165;;;10173:14;;10160:11;;;10153:35;10216:16;;;;10110:10;;10081:165;;;10085:3;;10275:6;10270:3;10266:16;10259:23;;9826:466;;;;;;;9325:973;;;;:::o;10490:456::-;10711:3;10739:38;10773:3;10765:6;10739:38;:::i;:::-;10806:6;10800:13;10822:52;10867:6;10863:2;10856:4;10848:6;10844:17;10822:52;:::i;:::-;10890:50;10932:6;10928:2;10924:15;10916:6;10890:50;:::i;:::-;10883:57;10490:456;-1:-1:-1;;;;;;;10490:456:1:o;11754:826::-;-1:-1:-1;;;;;12151:15:1;;;12133:34;;12203:15;;12198:2;12183:18;;12176:43;12113:3;12250:2;12235:18;;12228:31;;;12076:4;;12282:57;;12319:19;;12311:6;12282:57;:::i;:::-;12387:9;12379:6;12375:22;12370:2;12359:9;12355:18;12348:50;12421:44;12458:6;12450;12421:44;:::i;:::-;12407:58;;12514:9;12506:6;12502:22;12496:3;12485:9;12481:19;12474:51;12542:32;12567:6;12559;12542:32;:::i;:::-;12534:40;11754:826;-1:-1:-1;;;;;;;;11754:826:1:o;12585:560::-;-1:-1:-1;;;;;12882:15:1;;;12864:34;;12934:15;;12929:2;12914:18;;12907:43;12981:2;12966:18;;12959:34;;;13024:2;13009:18;;13002:34;;;12844:3;13067;13052:19;;13045:32;;;12807:4;;13094:45;;13119:19;;13111:6;13094:45;:::i;13429:261::-;13608:2;13597:9;13590:21;13571:4;13628:56;13680:2;13669:9;13665:18;13657:6;13628:56;:::i;13695:465::-;13952:2;13941:9;13934:21;13915:4;13978:56;14030:2;14019:9;14015:18;14007:6;13978:56;:::i;:::-;14082:9;14074:6;14070:22;14065:2;14054:9;14050:18;14043:50;14110:44;14147:6;14139;14110:44;:::i;:::-;14102:52;13695:465;-1:-1:-1;;;;;13695:465:1:o;14760:219::-;14909:2;14898:9;14891:21;14872:4;14929:44;14969:2;14958:9;14954:18;14946:6;14929:44;:::i;15681:404::-;15883:2;15865:21;;;15922:2;15902:18;;;15895:30;15961:34;15956:2;15941:18;;15934:62;-1:-1:-1;;;16027:2:1;16012:18;;16005:38;16075:3;16060:19;;15681:404::o;17969:410::-;18171:2;18153:21;;;18210:2;18190:18;;;18183:30;18249:34;18244:2;18229:18;;18222:62;-1:-1:-1;;;18315:2:1;18300:18;;18293:44;18369:3;18354:19;;17969:410::o;19483:401::-;19685:2;19667:21;;;19724:2;19704:18;;;19697:30;19763:34;19758:2;19743:18;;19736:62;-1:-1:-1;;;19829:2:1;19814:18;;19807:35;19874:3;19859:19;;19483:401::o;19889:406::-;20091:2;20073:21;;;20130:2;20110:18;;;20103:30;20169:34;20164:2;20149:18;;20142:62;-1:-1:-1;;;20235:2:1;20220:18;;20213:40;20285:3;20270:19;;19889:406::o;22586:404::-;22788:2;22770:21;;;22827:2;22807:18;;;22800:30;22866:34;22861:2;22846:18;;22839:62;-1:-1:-1;;;22932:2:1;22917:18;;22910:38;22980:3;22965:19;;22586:404::o;22995:397::-;23197:2;23179:21;;;23236:2;23216:18;;;23209:30;23275:34;23270:2;23255:18;;23248:62;-1:-1:-1;;;23341:2:1;23326:18;;23319:31;23382:3;23367:19;;22995:397::o;24802:183::-;24862:4;-1:-1:-1;;;;;24887:6:1;24884:30;24881:56;;;24917:18;;:::i;:::-;-1:-1:-1;24962:1:1;24958:14;24974:4;24954:25;;24802:183::o;25116:128::-;25156:3;25187:1;25183:6;25180:1;25177:13;25174:39;;;25193:18;;:::i;:::-;-1:-1:-1;25229:9:1;;25116:128::o;25249:204::-;25287:3;25323:4;25320:1;25316:12;25355:4;25352:1;25348:12;25390:3;25384:4;25380:14;25375:3;25372:23;25369:49;;;25398:18;;:::i;:::-;25434:13;;25249:204;-1:-1:-1;;;25249:204:1:o;25458:217::-;25498:1;25524;25514:132;;25568:10;25563:3;25559:20;25556:1;25549:31;25603:4;25600:1;25593:15;25631:4;25628:1;25621:15;25514:132;-1:-1:-1;25660:9:1;;25458:217::o;25680:168::-;25720:7;25786:1;25782;25778:6;25774:14;25771:1;25768:21;25763:1;25756:9;25749:17;25745:45;25742:71;;;25793:18;;:::i;:::-;-1:-1:-1;25833:9:1;;25680:168::o;25853:258::-;25925:1;25935:113;25949:6;25946:1;25943:13;25935:113;;;26025:11;;;26019:18;26006:11;;;25999:39;25971:2;25964:10;25935:113;;;26066:6;26063:1;26060:13;26057:48;;;26101:1;26092:6;26087:3;26083:16;26076:27;26057:48;;25853:258;;;:::o;26116:380::-;26195:1;26191:12;;;;26238;;;26259:61;;26313:4;26305:6;26301:17;26291:27;;26259:61;26366:2;26358:6;26355:14;26335:18;26332:38;26329:161;;;26412:10;26407:3;26403:20;26400:1;26393:31;26447:4;26444:1;26437:15;26475:4;26472:1;26465:15;26329:161;;26116:380;;;:::o;26501:249::-;26611:2;26592:13;;-1:-1:-1;;26588:27:1;26576:40;;-1:-1:-1;;;;;26631:34:1;;26667:22;;;26628:62;26625:88;;;26693:18;;:::i;:::-;26729:2;26722:22;-1:-1:-1;;26501:249:1:o;26755:135::-;26794:3;-1:-1:-1;;26815:17:1;;26812:43;;;26835:18;;:::i;:::-;-1:-1:-1;26882:1:1;26871:13;;26755:135::o;26895:127::-;26956:10;26951:3;26947:20;26944:1;26937:31;26987:4;26984:1;26977:15;27011:4;27008:1;27001:15;27159:127;27220:10;27215:3;27211:20;27208:1;27201:31;27251:4;27248:1;27241:15;27275:4;27272:1;27265:15;27291:127;27352:10;27347:3;27343:20;27340:1;27333:31;27383:4;27380:1;27373:15;27407:4;27404:1;27397:15;27423:127;27484:10;27479:3;27475:20;27472:1;27465:31;27515:4;27512:1;27505:15;27539:4;27536:1;27529:15;27555:179;27590:3;27632:1;27614:16;27611:23;27608:120;;;27678:1;27675;27672;27657:23;-1:-1:-1;27715:1:1;27709:8;27704:3;27700:18;27608:120;27555:179;:::o;27739:671::-;27778:3;27820:4;27802:16;27799:26;27796:39;;;27739:671;:::o;27796:39::-;27862:2;27856:9;-1:-1:-1;;27927:16:1;27923:25;;27920:1;27856:9;27899:50;27978:4;27972:11;28002:16;-1:-1:-1;;;;;28108:2:1;28101:4;28093:6;28089:17;28086:25;28081:2;28073:6;28070:14;28067:45;28064:58;;;28115:5;;;;;27739:671;:::o;28064:58::-;28152:6;28146:4;28142:17;28131:28;;28188:3;28182:10;28215:2;28207:6;28204:14;28201:27;;;28221:5;;;;;;27739:671;:::o;28201:27::-;28305:2;28286:16;28280:4;28276:27;28272:36;28265:4;28256:6;28251:3;28247:16;28243:27;28240:69;28237:82;;;28312:5;;;;;;27739:671;:::o;28237:82::-;28328:57;28379:4;28370:6;28362;28358:19;28354:30;28348:4;28328:57;:::i;:::-;-1:-1:-1;28401:3:1;;27739:671;-1:-1:-1;;;;;27739:671:1:o;28415:131::-;-1:-1:-1;;;;;;28489:32:1;;28479:43;;28469:71;;28536:1;28533;28526:12

Swarm Source

ipfs://4107e20e4fc3d2bd34bf7262a96cc79867a192d6c65ed3b7b42789f65840a20f
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.