ETH Price: $2,476.15 (+1.08%)

Token

Bunzz Early Bird NFT (BEB)
 

Overview

Max Total Supply

222 BEB

Holders

222

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 BEB
0x4efb9f7b080ff924c996f24470a13f0c7212508b
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:
BunzzNFT

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-20
*/

// SPDX-License-Identifier: MIT
/** 
 *  SourceUnit: /Volumes/Everyday/Radical-Chess/solidity/contracts/BunzzNFT.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// 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);
        }
    }
}




/** 
 *  SourceUnit: /Volumes/Everyday/Radical-Chess/solidity/contracts/BunzzNFT.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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




/** 
 *  SourceUnit: /Volumes/Everyday/Radical-Chess/solidity/contracts/BunzzNFT.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

////import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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




/** 
 *  SourceUnit: /Volumes/Everyday/Radical-Chess/solidity/contracts/BunzzNFT.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

////import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * 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;
    }
}




/** 
 *  SourceUnit: /Volumes/Everyday/Radical-Chess/solidity/contracts/BunzzNFT.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

////import "./math/Math.sol";

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




/** 
 *  SourceUnit: /Volumes/Everyday/Radical-Chess/solidity/contracts/BunzzNFT.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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




/** 
 *  SourceUnit: /Volumes/Everyday/Radical-Chess/solidity/contracts/BunzzNFT.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// 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);
        }
    }
}




/** 
 *  SourceUnit: /Volumes/Everyday/Radical-Chess/solidity/contracts/BunzzNFT.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

////import "../IERC721.sol";

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

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

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




/** 
 *  SourceUnit: /Volumes/Everyday/Radical-Chess/solidity/contracts/BunzzNFT.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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




/** 
 *  SourceUnit: /Volumes/Everyday/Radical-Chess/solidity/contracts/BunzzNFT.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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




/** 
 *  SourceUnit: /Volumes/Everyday/Radical-Chess/solidity/contracts/BunzzNFT.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts (last updated v4.8.2) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

////import "./IERC721.sol";
////import "./IERC721Receiver.sol";
////import "./extensions/IERC721Metadata.sol";
////import "../../utils/Address.sol";
////import "../../utils/Context.sol";
////import "../../utils/Strings.sol";
////import "../../utils/introspection/ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _ownerOf(tokenId) != address(0);
    }

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

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

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

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

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

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

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

        _owners[tokenId] = to;

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

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

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

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

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

        // Clear approvals
        delete _tokenApprovals[tokenId];

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

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

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

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

        emit Transfer(from, to, tokenId);

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

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

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

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

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

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

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

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




/** 
 *  SourceUnit: /Volumes/Everyday/Radical-Chess/solidity/contracts/BunzzNFT.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

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

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

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

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

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

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

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

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

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

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

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

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

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




/** 
 *  SourceUnit: /Volumes/Everyday/Radical-Chess/solidity/contracts/BunzzNFT.sol
*/
            
////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

////import "../utils/Context.sol";

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


/** 
 *  SourceUnit: /Volumes/Everyday/Radical-Chess/solidity/contracts/BunzzNFT.sol
*/

////// SPDX-License-Identifier-FLATTEN-SUPPRESS-WARNING: MIT
pragma solidity ^0.8.14;

////import "@openzeppelin/contracts/access/Ownable.sol";
////import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
////import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
////import "@openzeppelin/contracts/utils/Counters.sol";
////import "@openzeppelin/contracts/utils/Strings.sol";

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

    Counters.Counter private _tokenIdCounter;

    uint256 public maxSupply = 1000;
    bytes32 public merkleRoot = 0xef857cff54d8c89e90284f0e302744ae516029b193fdb2f9be2cb396686bf0ed;
    string private _tokenURI;
    bool public startMinting;

    mapping(address => bool) private mintList;

    modifier mintable() {
        require(startMinting, "didn't start minting");
        _;
    }

    constructor(string memory name_, string memory symbol_, string memory tokenURI_) ERC721(name_, symbol_) {
        _tokenURI = tokenURI_;
    }

    function enableMinting() external onlyOwner {
        startMinting = true;
    }

    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner
    {
        merkleRoot = _merkleRoot;
    }

    function verifyAddress(bytes32[] calldata _merkleProof) private view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        return MerkleProof.verify(_merkleProof, merkleRoot, leaf);
    }

    function claim(bytes32[] calldata _merkleProof) external mintable {
        require(!mintList[msg.sender], "already minted");
        require(verifyAddress(_merkleProof), "merkleproof is invalid");
        _tokenIdCounter.increment();
        uint256 tokenId = _tokenIdCounter.current();
        require(tokenId <= maxSupply, "tokenId is over maxSupply");
        _safeMint(msg.sender, tokenId);
        mintList[msg.sender] = true;
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        return _tokenURI;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"tokenURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526103e86008557fef857cff54d8c89e90284f0e302744ae516029b193fdb2f9be2cb396686bf0ed60001b6009553480156200003e57600080fd5b5060405162003333380380620033338339818101604052810190620000649190620003f5565b8282620000866200007a620000dc60201b60201c565b620000e460201b60201c565b81600190805190602001906200009e929190620001a8565b508060029080519060200190620000b7929190620001a8565b50505080600a9080519060200190620000d2929190620001a8565b5050505062000512565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b690620004dd565b90600052602060002090601f016020900481019282620001da576000855562000226565b82601f10620001f557805160ff191683800117855562000226565b8280016001018555821562000226579182015b828111156200022557825182559160200191906001019062000208565b5b50905062000235919062000239565b5090565b5b80821115620002545760008160009055506001016200023a565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002c18262000276565b810181811067ffffffffffffffff82111715620002e357620002e262000287565b5b80604052505050565b6000620002f862000258565b9050620003068282620002b6565b919050565b600067ffffffffffffffff82111562000329576200032862000287565b5b620003348262000276565b9050602081019050919050565b60005b838110156200036157808201518184015260208101905062000344565b8381111562000371576000848401525b50505050565b60006200038e62000388846200030b565b620002ec565b905082815260208101848484011115620003ad57620003ac62000271565b5b620003ba84828562000341565b509392505050565b600082601f830112620003da57620003d96200026c565b5b8151620003ec84826020860162000377565b91505092915050565b60008060006060848603121562000411576200041062000262565b5b600084015167ffffffffffffffff81111562000432576200043162000267565b5b6200044086828701620003c2565b935050602084015167ffffffffffffffff81111562000464576200046362000267565b5b6200047286828701620003c2565b925050604084015167ffffffffffffffff81111562000496576200049562000267565b5b620004a486828701620003c2565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004f657607f821691505b6020821081036200050c576200050b620004ae565b5b50919050565b612e1180620005226000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80637cb64759116100c3578063b88d4fde1161007c578063b88d4fde14610378578063c87b56dd14610394578063d5abeb01146103c4578063e797ec1b146103e2578063e985e9c5146103ec578063f2fde38b1461041c5761014d565b80637cb64759146102ca5780638da5cb5b146102e657806395d89b41146103045780639a65ea2614610322578063a22cb46514610340578063b391c5081461035c5761014d565b806323b872dd1161011557806323b872dd1461020a5780632eb4a7ab1461022657806342842e0e146102445780636352211e1461026057806370a0823114610290578063715018a6146102c05761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806318160ddd146101ec575b600080fd5b61016c60048036038101906101679190611ca2565b610438565b6040516101799190611cea565b60405180910390f35b61018a61051a565b6040516101979190611d9e565b60405180910390f35b6101ba60048036038101906101b59190611df6565b6105ac565b6040516101c79190611e64565b60405180910390f35b6101ea60048036038101906101e59190611eab565b6105f2565b005b6101f4610709565b6040516102019190611efa565b60405180910390f35b610224600480360381019061021f9190611f15565b61071a565b005b61022e61077a565b60405161023b9190611f81565b60405180910390f35b61025e60048036038101906102599190611f15565b610780565b005b61027a60048036038101906102759190611df6565b6107a0565b6040516102879190611e64565b60405180910390f35b6102aa60048036038101906102a59190611f9c565b610826565b6040516102b79190611efa565b60405180910390f35b6102c86108dd565b005b6102e460048036038101906102df9190611ff5565b6108f1565b005b6102ee610903565b6040516102fb9190611e64565b60405180910390f35b61030c61092c565b6040516103199190611d9e565b60405180910390f35b61032a6109be565b6040516103379190611cea565b60405180910390f35b61035a6004803603810190610355919061204e565b6109d1565b005b610376600480360381019061037191906120f3565b6109e7565b005b610392600480360381019061038d9190612270565b610bd0565b005b6103ae60048036038101906103a99190611df6565b610c32565b6040516103bb9190611d9e565b60405180910390f35b6103cc610cc6565b6040516103d99190611efa565b60405180910390f35b6103ea610ccc565b005b610406600480360381019061040191906122f3565b610cf1565b6040516104139190611cea565b60405180910390f35b61043660048036038101906104319190611f9c565b610d85565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061050357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610513575061051282610e08565b5b9050919050565b60606001805461052990612362565b80601f016020809104026020016040519081016040528092919081815260200182805461055590612362565b80156105a25780601f10610577576101008083540402835291602001916105a2565b820191906000526020600020905b81548152906001019060200180831161058557829003601f168201915b5050505050905090565b60006105b782610e72565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105fd826107a0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361066d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066490612405565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661068c610ebd565b73ffffffffffffffffffffffffffffffffffffffff1614806106bb57506106ba816106b5610ebd565b610cf1565b5b6106fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f190612497565b60405180910390fd5b6107048383610ec5565b505050565b60006107156007610f7e565b905090565b61072b610725610ebd565b82610f8c565b61076a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076190612529565b60405180910390fd5b610775838383611021565b505050565b60095481565b61079b83838360405180602001604052806000815250610bd0565b505050565b6000806107ac8361131a565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361081d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081490612595565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088d90612627565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108e5611357565b6108ef60006113d5565b565b6108f9611357565b8060098190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461093b90612362565b80601f016020809104026020016040519081016040528092919081815260200182805461096790612362565b80156109b45780601f10610989576101008083540402835291602001916109b4565b820191906000526020600020905b81548152906001019060200180831161099757829003601f168201915b5050505050905090565b600b60009054906101000a900460ff1681565b6109e36109dc610ebd565b8383611499565b5050565b600b60009054906101000a900460ff16610a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2d90612693565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba906126ff565b60405180910390fd5b610acd8282611605565b610b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b039061276b565b60405180910390fd5b610b166007611688565b6000610b226007610f7e565b9050600854811115610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b60906127d7565b60405180910390fd5b610b73338261169e565b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b610be1610bdb610ebd565b83610f8c565b610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1790612529565b60405180910390fd5b610c2c848484846116bc565b50505050565b6060600a8054610c4190612362565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6d90612362565b8015610cba5780601f10610c8f57610100808354040283529160200191610cba565b820191906000526020600020905b815481529060010190602001808311610c9d57829003601f168201915b50505050509050919050565b60085481565b610cd4611357565b6001600b60006101000a81548160ff021916908315150217905550565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610d8d611357565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df390612869565b60405180910390fd5b610e05816113d5565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610e7b81611718565b610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb190612595565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610f38836107a0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600080610f98836107a0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610fda5750610fd98185610cf1565b5b8061101857508373ffffffffffffffffffffffffffffffffffffffff16611000846105ac565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611041826107a0565b73ffffffffffffffffffffffffffffffffffffffff1614611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e906128fb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fd9061298d565b60405180910390fd5b6111138383836001611759565b8273ffffffffffffffffffffffffffffffffffffffff16611133826107a0565b73ffffffffffffffffffffffffffffffffffffffff1614611189576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611180906128fb565b60405180910390fd5b6005600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611315838383600161175f565b505050565b60006003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61135f610ebd565b73ffffffffffffffffffffffffffffffffffffffff1661137d610903565b73ffffffffffffffffffffffffffffffffffffffff16146113d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ca906129f9565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe90612a65565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115f89190611cea565b60405180910390a3505050565b600080336040516020016116199190612acd565b60405160208183030381529060405280519060200120905061167f848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060095483611765565b91505092915050565b6001816000016000828254019250508190555050565b6116b882826040518060200160405280600081525061177c565b5050565b6116c7848484611021565b6116d3848484846117d7565b611712576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170990612b5a565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff1661173a8361131a565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b50505050565b50505050565b600082611772858461195e565b1490509392505050565b61178683836119b4565b61179360008484846117d7565b6117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c990612b5a565b60405180910390fd5b505050565b60006117f88473ffffffffffffffffffffffffffffffffffffffff16611bd1565b15611951578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611821610ebd565b8786866040518563ffffffff1660e01b81526004016118439493929190612bcf565b6020604051808303816000875af192505050801561187f57506040513d601f19601f8201168201806040525081019061187c9190612c30565b60015b611901573d80600081146118af576040519150601f19603f3d011682016040523d82523d6000602084013e6118b4565b606091505b5060008151036118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f090612b5a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611956565b600190505b949350505050565b60008082905060005b84518110156119a9576119948286838151811061198757611986612c5d565b5b6020026020010151611bf4565b915080806119a190612cbb565b915050611967565b508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1a90612d4f565b60405180910390fd5b611a2c81611718565b15611a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6390612dbb565b60405180910390fd5b611a7a600083836001611759565b611a8381611718565b15611ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aba90612dbb565b60405180910390fd5b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bcd60008383600161175f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000818310611c0c57611c078284611c1f565b611c17565b611c168383611c1f565b5b905092915050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611c7f81611c4a565b8114611c8a57600080fd5b50565b600081359050611c9c81611c76565b92915050565b600060208284031215611cb857611cb7611c40565b5b6000611cc684828501611c8d565b91505092915050565b60008115159050919050565b611ce481611ccf565b82525050565b6000602082019050611cff6000830184611cdb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d3f578082015181840152602081019050611d24565b83811115611d4e576000848401525b50505050565b6000601f19601f8301169050919050565b6000611d7082611d05565b611d7a8185611d10565b9350611d8a818560208601611d21565b611d9381611d54565b840191505092915050565b60006020820190508181036000830152611db88184611d65565b905092915050565b6000819050919050565b611dd381611dc0565b8114611dde57600080fd5b50565b600081359050611df081611dca565b92915050565b600060208284031215611e0c57611e0b611c40565b5b6000611e1a84828501611de1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e4e82611e23565b9050919050565b611e5e81611e43565b82525050565b6000602082019050611e796000830184611e55565b92915050565b611e8881611e43565b8114611e9357600080fd5b50565b600081359050611ea581611e7f565b92915050565b60008060408385031215611ec257611ec1611c40565b5b6000611ed085828601611e96565b9250506020611ee185828601611de1565b9150509250929050565b611ef481611dc0565b82525050565b6000602082019050611f0f6000830184611eeb565b92915050565b600080600060608486031215611f2e57611f2d611c40565b5b6000611f3c86828701611e96565b9350506020611f4d86828701611e96565b9250506040611f5e86828701611de1565b9150509250925092565b6000819050919050565b611f7b81611f68565b82525050565b6000602082019050611f966000830184611f72565b92915050565b600060208284031215611fb257611fb1611c40565b5b6000611fc084828501611e96565b91505092915050565b611fd281611f68565b8114611fdd57600080fd5b50565b600081359050611fef81611fc9565b92915050565b60006020828403121561200b5761200a611c40565b5b600061201984828501611fe0565b91505092915050565b61202b81611ccf565b811461203657600080fd5b50565b60008135905061204881612022565b92915050565b6000806040838503121561206557612064611c40565b5b600061207385828601611e96565b925050602061208485828601612039565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126120b3576120b261208e565b5b8235905067ffffffffffffffff8111156120d0576120cf612093565b5b6020830191508360208202830111156120ec576120eb612098565b5b9250929050565b6000806020838503121561210a57612109611c40565b5b600083013567ffffffffffffffff81111561212857612127611c45565b5b6121348582860161209d565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61217d82611d54565b810181811067ffffffffffffffff8211171561219c5761219b612145565b5b80604052505050565b60006121af611c36565b90506121bb8282612174565b919050565b600067ffffffffffffffff8211156121db576121da612145565b5b6121e482611d54565b9050602081019050919050565b82818337600083830152505050565b600061221361220e846121c0565b6121a5565b90508281526020810184848401111561222f5761222e612140565b5b61223a8482856121f1565b509392505050565b600082601f8301126122575761225661208e565b5b8135612267848260208601612200565b91505092915050565b6000806000806080858703121561228a57612289611c40565b5b600061229887828801611e96565b94505060206122a987828801611e96565b93505060406122ba87828801611de1565b925050606085013567ffffffffffffffff8111156122db576122da611c45565b5b6122e787828801612242565b91505092959194509250565b6000806040838503121561230a57612309611c40565b5b600061231885828601611e96565b925050602061232985828601611e96565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061237a57607f821691505b60208210810361238d5761238c612333565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006123ef602183611d10565b91506123fa82612393565b604082019050919050565b6000602082019050818103600083015261241e816123e2565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612481603d83611d10565b915061248c82612425565b604082019050919050565b600060208201905081810360008301526124b081612474565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612513602d83611d10565b915061251e826124b7565b604082019050919050565b6000602082019050818103600083015261254281612506565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061257f601883611d10565b915061258a82612549565b602082019050919050565b600060208201905081810360008301526125ae81612572565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612611602983611d10565b915061261c826125b5565b604082019050919050565b6000602082019050818103600083015261264081612604565b9050919050565b7f6469646e2774207374617274206d696e74696e67000000000000000000000000600082015250565b600061267d601483611d10565b915061268882612647565b602082019050919050565b600060208201905081810360008301526126ac81612670565b9050919050565b7f616c7265616479206d696e746564000000000000000000000000000000000000600082015250565b60006126e9600e83611d10565b91506126f4826126b3565b602082019050919050565b60006020820190508181036000830152612718816126dc565b9050919050565b7f6d65726b6c6570726f6f6620697320696e76616c696400000000000000000000600082015250565b6000612755601683611d10565b91506127608261271f565b602082019050919050565b6000602082019050818103600083015261278481612748565b9050919050565b7f746f6b656e4964206973206f766572206d6178537570706c7900000000000000600082015250565b60006127c1601983611d10565b91506127cc8261278b565b602082019050919050565b600060208201905081810360008301526127f0816127b4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612853602683611d10565b915061285e826127f7565b604082019050919050565b6000602082019050818103600083015261288281612846565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006128e5602583611d10565b91506128f082612889565b604082019050919050565b60006020820190508181036000830152612914816128d8565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612977602483611d10565b91506129828261291b565b604082019050919050565b600060208201905081810360008301526129a68161296a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129e3602083611d10565b91506129ee826129ad565b602082019050919050565b60006020820190508181036000830152612a12816129d6565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612a4f601983611d10565b9150612a5a82612a19565b602082019050919050565b60006020820190508181036000830152612a7e81612a42565b9050919050565b60008160601b9050919050565b6000612a9d82612a85565b9050919050565b6000612aaf82612a92565b9050919050565b612ac7612ac282611e43565b612aa4565b82525050565b6000612ad98284612ab6565b60148201915081905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612b44603283611d10565b9150612b4f82612ae8565b604082019050919050565b60006020820190508181036000830152612b7381612b37565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612ba182612b7a565b612bab8185612b85565b9350612bbb818560208601611d21565b612bc481611d54565b840191505092915050565b6000608082019050612be46000830187611e55565b612bf16020830186611e55565b612bfe6040830185611eeb565b8181036060830152612c108184612b96565b905095945050505050565b600081519050612c2a81611c76565b92915050565b600060208284031215612c4657612c45611c40565b5b6000612c5484828501612c1b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612cc682611dc0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612cf857612cf7612c8c565b5b600182019050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612d39602083611d10565b9150612d4482612d03565b602082019050919050565b60006020820190508181036000830152612d6881612d2c565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612da5601c83611d10565b9150612db082612d6f565b602082019050919050565b60006020820190508181036000830152612dd481612d98565b905091905056fea26469706673582212205e7d4169ce2dc88810d340c14f462a7098a5af96fcf649846757d80f39fb217164736f6c634300080e0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001442756e7a7a204561726c792042697264204e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000034245420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006368747470733a2f2f6261667962656966697574706369687a753637336671796532346735356a6378376f66696a677a6567706f7672726b3274743666336c72783374792e697066732e7733732e6c696e6b2f4245422d6d657461646174612e6a736f6e0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80637cb64759116100c3578063b88d4fde1161007c578063b88d4fde14610378578063c87b56dd14610394578063d5abeb01146103c4578063e797ec1b146103e2578063e985e9c5146103ec578063f2fde38b1461041c5761014d565b80637cb64759146102ca5780638da5cb5b146102e657806395d89b41146103045780639a65ea2614610322578063a22cb46514610340578063b391c5081461035c5761014d565b806323b872dd1161011557806323b872dd1461020a5780632eb4a7ab1461022657806342842e0e146102445780636352211e1461026057806370a0823114610290578063715018a6146102c05761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806318160ddd146101ec575b600080fd5b61016c60048036038101906101679190611ca2565b610438565b6040516101799190611cea565b60405180910390f35b61018a61051a565b6040516101979190611d9e565b60405180910390f35b6101ba60048036038101906101b59190611df6565b6105ac565b6040516101c79190611e64565b60405180910390f35b6101ea60048036038101906101e59190611eab565b6105f2565b005b6101f4610709565b6040516102019190611efa565b60405180910390f35b610224600480360381019061021f9190611f15565b61071a565b005b61022e61077a565b60405161023b9190611f81565b60405180910390f35b61025e60048036038101906102599190611f15565b610780565b005b61027a60048036038101906102759190611df6565b6107a0565b6040516102879190611e64565b60405180910390f35b6102aa60048036038101906102a59190611f9c565b610826565b6040516102b79190611efa565b60405180910390f35b6102c86108dd565b005b6102e460048036038101906102df9190611ff5565b6108f1565b005b6102ee610903565b6040516102fb9190611e64565b60405180910390f35b61030c61092c565b6040516103199190611d9e565b60405180910390f35b61032a6109be565b6040516103379190611cea565b60405180910390f35b61035a6004803603810190610355919061204e565b6109d1565b005b610376600480360381019061037191906120f3565b6109e7565b005b610392600480360381019061038d9190612270565b610bd0565b005b6103ae60048036038101906103a99190611df6565b610c32565b6040516103bb9190611d9e565b60405180910390f35b6103cc610cc6565b6040516103d99190611efa565b60405180910390f35b6103ea610ccc565b005b610406600480360381019061040191906122f3565b610cf1565b6040516104139190611cea565b60405180910390f35b61043660048036038101906104319190611f9c565b610d85565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061050357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610513575061051282610e08565b5b9050919050565b60606001805461052990612362565b80601f016020809104026020016040519081016040528092919081815260200182805461055590612362565b80156105a25780601f10610577576101008083540402835291602001916105a2565b820191906000526020600020905b81548152906001019060200180831161058557829003601f168201915b5050505050905090565b60006105b782610e72565b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105fd826107a0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361066d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066490612405565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661068c610ebd565b73ffffffffffffffffffffffffffffffffffffffff1614806106bb57506106ba816106b5610ebd565b610cf1565b5b6106fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f190612497565b60405180910390fd5b6107048383610ec5565b505050565b60006107156007610f7e565b905090565b61072b610725610ebd565b82610f8c565b61076a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076190612529565b60405180910390fd5b610775838383611021565b505050565b60095481565b61079b83838360405180602001604052806000815250610bd0565b505050565b6000806107ac8361131a565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361081d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081490612595565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088d90612627565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108e5611357565b6108ef60006113d5565b565b6108f9611357565b8060098190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461093b90612362565b80601f016020809104026020016040519081016040528092919081815260200182805461096790612362565b80156109b45780601f10610989576101008083540402835291602001916109b4565b820191906000526020600020905b81548152906001019060200180831161099757829003601f168201915b5050505050905090565b600b60009054906101000a900460ff1681565b6109e36109dc610ebd565b8383611499565b5050565b600b60009054906101000a900460ff16610a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2d90612693565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba906126ff565b60405180910390fd5b610acd8282611605565b610b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b039061276b565b60405180910390fd5b610b166007611688565b6000610b226007610f7e565b9050600854811115610b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b60906127d7565b60405180910390fd5b610b73338261169e565b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505050565b610be1610bdb610ebd565b83610f8c565b610c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1790612529565b60405180910390fd5b610c2c848484846116bc565b50505050565b6060600a8054610c4190612362565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6d90612362565b8015610cba5780601f10610c8f57610100808354040283529160200191610cba565b820191906000526020600020905b815481529060010190602001808311610c9d57829003601f168201915b50505050509050919050565b60085481565b610cd4611357565b6001600b60006101000a81548160ff021916908315150217905550565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610d8d611357565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df390612869565b60405180910390fd5b610e05816113d5565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610e7b81611718565b610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb190612595565b60405180910390fd5b50565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610f38836107a0565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b600080610f98836107a0565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610fda5750610fd98185610cf1565b5b8061101857508373ffffffffffffffffffffffffffffffffffffffff16611000846105ac565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611041826107a0565b73ffffffffffffffffffffffffffffffffffffffff1614611097576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108e906128fb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fd9061298d565b60405180910390fd5b6111138383836001611759565b8273ffffffffffffffffffffffffffffffffffffffff16611133826107a0565b73ffffffffffffffffffffffffffffffffffffffff1614611189576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611180906128fb565b60405180910390fd5b6005600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611315838383600161175f565b505050565b60006003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61135f610ebd565b73ffffffffffffffffffffffffffffffffffffffff1661137d610903565b73ffffffffffffffffffffffffffffffffffffffff16146113d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ca906129f9565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fe90612a65565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115f89190611cea565b60405180910390a3505050565b600080336040516020016116199190612acd565b60405160208183030381529060405280519060200120905061167f848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060095483611765565b91505092915050565b6001816000016000828254019250508190555050565b6116b882826040518060200160405280600081525061177c565b5050565b6116c7848484611021565b6116d3848484846117d7565b611712576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170990612b5a565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff1661173a8361131a565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b50505050565b50505050565b600082611772858461195e565b1490509392505050565b61178683836119b4565b61179360008484846117d7565b6117d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c990612b5a565b60405180910390fd5b505050565b60006117f88473ffffffffffffffffffffffffffffffffffffffff16611bd1565b15611951578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611821610ebd565b8786866040518563ffffffff1660e01b81526004016118439493929190612bcf565b6020604051808303816000875af192505050801561187f57506040513d601f19601f8201168201806040525081019061187c9190612c30565b60015b611901573d80600081146118af576040519150601f19603f3d011682016040523d82523d6000602084013e6118b4565b606091505b5060008151036118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f090612b5a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611956565b600190505b949350505050565b60008082905060005b84518110156119a9576119948286838151811061198757611986612c5d565b5b6020026020010151611bf4565b915080806119a190612cbb565b915050611967565b508091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1a90612d4f565b60405180910390fd5b611a2c81611718565b15611a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6390612dbb565b60405180910390fd5b611a7a600083836001611759565b611a8381611718565b15611ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aba90612dbb565b60405180910390fd5b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bcd60008383600161175f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000818310611c0c57611c078284611c1f565b611c17565b611c168383611c1f565b5b905092915050565b600082600052816020526040600020905092915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611c7f81611c4a565b8114611c8a57600080fd5b50565b600081359050611c9c81611c76565b92915050565b600060208284031215611cb857611cb7611c40565b5b6000611cc684828501611c8d565b91505092915050565b60008115159050919050565b611ce481611ccf565b82525050565b6000602082019050611cff6000830184611cdb565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d3f578082015181840152602081019050611d24565b83811115611d4e576000848401525b50505050565b6000601f19601f8301169050919050565b6000611d7082611d05565b611d7a8185611d10565b9350611d8a818560208601611d21565b611d9381611d54565b840191505092915050565b60006020820190508181036000830152611db88184611d65565b905092915050565b6000819050919050565b611dd381611dc0565b8114611dde57600080fd5b50565b600081359050611df081611dca565b92915050565b600060208284031215611e0c57611e0b611c40565b5b6000611e1a84828501611de1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e4e82611e23565b9050919050565b611e5e81611e43565b82525050565b6000602082019050611e796000830184611e55565b92915050565b611e8881611e43565b8114611e9357600080fd5b50565b600081359050611ea581611e7f565b92915050565b60008060408385031215611ec257611ec1611c40565b5b6000611ed085828601611e96565b9250506020611ee185828601611de1565b9150509250929050565b611ef481611dc0565b82525050565b6000602082019050611f0f6000830184611eeb565b92915050565b600080600060608486031215611f2e57611f2d611c40565b5b6000611f3c86828701611e96565b9350506020611f4d86828701611e96565b9250506040611f5e86828701611de1565b9150509250925092565b6000819050919050565b611f7b81611f68565b82525050565b6000602082019050611f966000830184611f72565b92915050565b600060208284031215611fb257611fb1611c40565b5b6000611fc084828501611e96565b91505092915050565b611fd281611f68565b8114611fdd57600080fd5b50565b600081359050611fef81611fc9565b92915050565b60006020828403121561200b5761200a611c40565b5b600061201984828501611fe0565b91505092915050565b61202b81611ccf565b811461203657600080fd5b50565b60008135905061204881612022565b92915050565b6000806040838503121561206557612064611c40565b5b600061207385828601611e96565b925050602061208485828601612039565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126120b3576120b261208e565b5b8235905067ffffffffffffffff8111156120d0576120cf612093565b5b6020830191508360208202830111156120ec576120eb612098565b5b9250929050565b6000806020838503121561210a57612109611c40565b5b600083013567ffffffffffffffff81111561212857612127611c45565b5b6121348582860161209d565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61217d82611d54565b810181811067ffffffffffffffff8211171561219c5761219b612145565b5b80604052505050565b60006121af611c36565b90506121bb8282612174565b919050565b600067ffffffffffffffff8211156121db576121da612145565b5b6121e482611d54565b9050602081019050919050565b82818337600083830152505050565b600061221361220e846121c0565b6121a5565b90508281526020810184848401111561222f5761222e612140565b5b61223a8482856121f1565b509392505050565b600082601f8301126122575761225661208e565b5b8135612267848260208601612200565b91505092915050565b6000806000806080858703121561228a57612289611c40565b5b600061229887828801611e96565b94505060206122a987828801611e96565b93505060406122ba87828801611de1565b925050606085013567ffffffffffffffff8111156122db576122da611c45565b5b6122e787828801612242565b91505092959194509250565b6000806040838503121561230a57612309611c40565b5b600061231885828601611e96565b925050602061232985828601611e96565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061237a57607f821691505b60208210810361238d5761238c612333565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006123ef602183611d10565b91506123fa82612393565b604082019050919050565b6000602082019050818103600083015261241e816123e2565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612481603d83611d10565b915061248c82612425565b604082019050919050565b600060208201905081810360008301526124b081612474565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612513602d83611d10565b915061251e826124b7565b604082019050919050565b6000602082019050818103600083015261254281612506565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061257f601883611d10565b915061258a82612549565b602082019050919050565b600060208201905081810360008301526125ae81612572565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612611602983611d10565b915061261c826125b5565b604082019050919050565b6000602082019050818103600083015261264081612604565b9050919050565b7f6469646e2774207374617274206d696e74696e67000000000000000000000000600082015250565b600061267d601483611d10565b915061268882612647565b602082019050919050565b600060208201905081810360008301526126ac81612670565b9050919050565b7f616c7265616479206d696e746564000000000000000000000000000000000000600082015250565b60006126e9600e83611d10565b91506126f4826126b3565b602082019050919050565b60006020820190508181036000830152612718816126dc565b9050919050565b7f6d65726b6c6570726f6f6620697320696e76616c696400000000000000000000600082015250565b6000612755601683611d10565b91506127608261271f565b602082019050919050565b6000602082019050818103600083015261278481612748565b9050919050565b7f746f6b656e4964206973206f766572206d6178537570706c7900000000000000600082015250565b60006127c1601983611d10565b91506127cc8261278b565b602082019050919050565b600060208201905081810360008301526127f0816127b4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612853602683611d10565b915061285e826127f7565b604082019050919050565b6000602082019050818103600083015261288281612846565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006128e5602583611d10565b91506128f082612889565b604082019050919050565b60006020820190508181036000830152612914816128d8565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612977602483611d10565b91506129828261291b565b604082019050919050565b600060208201905081810360008301526129a68161296a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129e3602083611d10565b91506129ee826129ad565b602082019050919050565b60006020820190508181036000830152612a12816129d6565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612a4f601983611d10565b9150612a5a82612a19565b602082019050919050565b60006020820190508181036000830152612a7e81612a42565b9050919050565b60008160601b9050919050565b6000612a9d82612a85565b9050919050565b6000612aaf82612a92565b9050919050565b612ac7612ac282611e43565b612aa4565b82525050565b6000612ad98284612ab6565b60148201915081905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612b44603283611d10565b9150612b4f82612ae8565b604082019050919050565b60006020820190508181036000830152612b7381612b37565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612ba182612b7a565b612bab8185612b85565b9350612bbb818560208601611d21565b612bc481611d54565b840191505092915050565b6000608082019050612be46000830187611e55565b612bf16020830186611e55565b612bfe6040830185611eeb565b8181036060830152612c108184612b96565b905095945050505050565b600081519050612c2a81611c76565b92915050565b600060208284031215612c4657612c45611c40565b5b6000612c5484828501612c1b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612cc682611dc0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612cf857612cf7612c8c565b5b600182019050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000612d39602083611d10565b9150612d4482612d03565b602082019050919050565b60006020820190508181036000830152612d6881612d2c565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000612da5601c83611d10565b9150612db082612d6f565b602082019050919050565b60006020820190508181036000830152612dd481612d98565b905091905056fea26469706673582212205e7d4169ce2dc88810d340c14f462a7098a5af96fcf649846757d80f39fb217164736f6c634300080e0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001442756e7a7a204561726c792042697264204e465400000000000000000000000000000000000000000000000000000000000000000000000000000000000000034245420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006368747470733a2f2f6261667962656966697574706369687a753637336671796532346735356a6378376f66696a677a6567706f7672726b3274743666336c72783374792e697066732e7733732e6c696e6b2f4245422d6d657461646174612e6a736f6e0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Bunzz Early Bird NFT
Arg [1] : symbol_ (string): BEB
Arg [2] : tokenURI_ (string): https://bafybeifiutpcihzu673fqye24g55jcx7ofijgzegpovrrk2tt6f3lrx3ty.ipfs.w3s.link/BEB-metadata.json

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [4] : 42756e7a7a204561726c792042697264204e4654000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4245420000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000063
Arg [8] : 68747470733a2f2f6261667962656966697574706369687a7536373366717965
Arg [9] : 32346735356a6378376f66696a677a6567706f7672726b3274743666336c7278
Arg [10] : 3374792e697066732e7733732e6c696e6b2f4245422d6d657461646174612e6a
Arg [11] : 736f6e0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

68166:1772:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38961:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39889:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41401:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40919:416;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69831:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42101:335;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68341:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42507:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39599:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39330:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66852:103;;;:::i;:::-;;68902:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66204:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40058:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68473:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41644:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69254:446;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42763:322;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69708:115;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68303:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68812:82;;;:::i;:::-;;41870:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67110:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38961:305;39063:4;39115:25;39100:40;;;:11;:40;;;;:105;;;;39172:33;39157:48;;;:11;:48;;;;39100:105;:158;;;;39222:36;39246:11;39222:23;:36::i;:::-;39100:158;39080:178;;38961:305;;;:::o;39889:100::-;39943:13;39976:5;39969:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39889:100;:::o;41401:171::-;41477:7;41497:23;41512:7;41497:14;:23::i;:::-;41540:15;:24;41556:7;41540:24;;;;;;;;;;;;;;;;;;;;;41533:31;;41401:171;;;:::o;40919:416::-;41000:13;41016:23;41031:7;41016:14;:23::i;:::-;41000:39;;41064:5;41058:11;;:2;:11;;;41050:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41158:5;41142:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;41167:37;41184:5;41191:12;:10;:12::i;:::-;41167:16;:37::i;:::-;41142:62;41120:173;;;;;;;;;;;;:::i;:::-;;;;;;;;;41306:21;41315:2;41319:7;41306:8;:21::i;:::-;40989:346;40919:416;;:::o;69831:104::-;69875:7;69902:25;:15;:23;:25::i;:::-;69895:32;;69831:104;:::o;42101:335::-;42296:41;42315:12;:10;:12::i;:::-;42329:7;42296:18;:41::i;:::-;42288:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;42400:28;42410:4;42416:2;42420:7;42400:9;:28::i;:::-;42101:335;;;:::o;68341:94::-;;;;:::o;42507:185::-;42645:39;42662:4;42668:2;42672:7;42645:39;;;;;;;;;;;;:16;:39::i;:::-;42507:185;;;:::o;39599:223::-;39671:7;39691:13;39707:17;39716:7;39707:8;:17::i;:::-;39691:33;;39760:1;39743:19;;:5;:19;;;39735:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;39809:5;39802:12;;;39599:223;;;:::o;39330:207::-;39402:7;39447:1;39430:19;;:5;:19;;;39422:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;39513:9;:16;39523:5;39513:16;;;;;;;;;;;;;;;;39506:23;;39330:207;;;:::o;66852:103::-;66090:13;:11;:13::i;:::-;66917:30:::1;66944:1;66917:18;:30::i;:::-;66852:103::o:0;68902:111::-;66090:13;:11;:13::i;:::-;68994:11:::1;68981:10;:24;;;;68902:111:::0;:::o;66204:87::-;66250:7;66277:6;;;;;;;;;;;66270:13;;66204:87;:::o;40058:104::-;40114:13;40147:7;40140:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40058:104;:::o;68473:24::-;;;;;;;;;;;;;:::o;41644:155::-;41739:52;41758:12;:10;:12::i;:::-;41772:8;41782;41739:18;:52::i;:::-;41644:155;;:::o;69254:446::-;68595:12;;;;;;;;;;;68587:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;69340:8:::1;:20;69349:10;69340:20;;;;;;;;;;;;;;;;;;;;;;;;;69339:21;69331:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;69398:27;69412:12;;69398:13;:27::i;:::-;69390:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;69463:27;:15;:25;:27::i;:::-;69501:15;69519:25;:15;:23;:25::i;:::-;69501:43;;69574:9;;69563:7;:20;;69555:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;69624:30;69634:10;69646:7;69624:9;:30::i;:::-;69688:4;69665:8;:20;69674:10;69665:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;69320:380;69254:446:::0;;:::o;42763:322::-;42937:41;42956:12;:10;:12::i;:::-;42970:7;42937:18;:41::i;:::-;42929:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;43039:38;43053:4;43059:2;43063:7;43072:4;43039:13;:38::i;:::-;42763:322;;;;:::o;69708:115::-;69773:13;69806:9;69799:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69708:115;;;:::o;68303:31::-;;;;:::o;68812:82::-;66090:13;:11;:13::i;:::-;68882:4:::1;68867:12;;:19;;;;;;;;;;;;;;;;;;68812:82::o:0;41870:164::-;41967:4;41991:18;:25;42010:5;41991:25;;;;;;;;;;;;;;;:35;42017:8;41991:35;;;;;;;;;;;;;;;;;;;;;;;;;41984:42;;41870:164;;;;:::o;67110:201::-;66090:13;:11;:13::i;:::-;67219:1:::1;67199:22;;:8;:22;;::::0;67191:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;67275:28;67294:8;67275:18;:28::i;:::-;67110:201:::0;:::o;20304:157::-;20389:4;20428:25;20413:40;;;:11;:40;;;;20406:47;;20304:157;;;:::o;51220:135::-;51302:16;51310:7;51302;:16::i;:::-;51294:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;51220:135;:::o;23734:98::-;23787:7;23814:10;23807:17;;23734:98;:::o;50499:174::-;50601:2;50574:15;:24;50590:7;50574:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;50657:7;50653:2;50619:46;;50628:23;50643:7;50628:14;:23::i;:::-;50619:46;;;;;;;;;;;;50499:174;;:::o;36579:114::-;36644:7;36671;:14;;;36664:21;;36579:114;;;:::o;45118:264::-;45211:4;45228:13;45244:23;45259:7;45244:14;:23::i;:::-;45228:39;;45297:5;45286:16;;:7;:16;;;:52;;;;45306:32;45323:5;45330:7;45306:16;:32::i;:::-;45286:52;:87;;;;45366:7;45342:31;;:20;45354:7;45342:11;:20::i;:::-;:31;;;45286:87;45278:96;;;45118:264;;;;:::o;49117:1263::-;49276:4;49249:31;;:23;49264:7;49249:14;:23::i;:::-;:31;;;49241:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;49355:1;49341:16;;:2;:16;;;49333:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;49411:42;49432:4;49438:2;49442:7;49451:1;49411:20;:42::i;:::-;49583:4;49556:31;;:23;49571:7;49556:14;:23::i;:::-;:31;;;49548:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;49701:15;:24;49717:7;49701:24;;;;;;;;;;;;49694:31;;;;;;;;;;;50196:1;50177:9;:15;50187:4;50177:15;;;;;;;;;;;;;;;;:20;;;;;;;;;;;50229:1;50212:9;:13;50222:2;50212:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;50271:2;50252:7;:16;50260:7;50252:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;50310:7;50306:2;50291:27;;50300:4;50291:27;;;;;;;;;;;;50331:41;50351:4;50357:2;50361:7;50370:1;50331:19;:41::i;:::-;49117:1263;;;:::o;44393:117::-;44459:7;44486;:16;44494:7;44486:16;;;;;;;;;;;;;;;;;;;;;44479:23;;44393:117;;;:::o;66369:132::-;66444:12;:10;:12::i;:::-;66433:23;;:7;:5;:7::i;:::-;:23;;;66425:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66369:132::o;67471:191::-;67545:16;67564:6;;;;;;;;;;;67545:25;;67590:8;67581:6;;:17;;;;;;;;;;;;;;;;;;67645:8;67614:40;;67635:8;67614:40;;;;;;;;;;;;67534:128;67471:191;:::o;50816:315::-;50971:8;50962:17;;:5;:17;;;50954:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;51058:8;51020:18;:25;51039:5;51020:25;;;;;;;;;;;;;;;:35;51046:8;51020:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;51104:8;51082:41;;51097:5;51082:41;;;51114:8;51082:41;;;;;;:::i;:::-;;;;;;;;50816:315;;;:::o;69021:225::-;69099:4;69116:12;69158:10;69141:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;69131:39;;;;;;69116:54;;69188:50;69207:12;;69188:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69221:10;;69233:4;69188:18;:50::i;:::-;69181:57;;;69021:225;;;;:::o;36701:127::-;36808:1;36790:7;:14;;;:19;;;;;;;;;;;36701:127;:::o;45724:110::-;45800:26;45810:2;45814:7;45800:26;;;;;;;;;;;;:9;:26::i;:::-;45724:110;;:::o;43966:313::-;44122:28;44132:4;44138:2;44142:7;44122:9;:28::i;:::-;44169:47;44192:4;44198:2;44202:7;44211:4;44169:22;:47::i;:::-;44161:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;43966:313;;;;:::o;44823:128::-;44888:4;44941:1;44912:31;;:17;44921:7;44912:8;:17::i;:::-;:31;;;;44905:38;;44823:128;;;:::o;53504:159::-;;;;;:::o;54385:158::-;;;;;:::o;56478:190::-;56603:4;56656;56627:25;56640:5;56647:4;56627:12;:25::i;:::-;:33;56620:40;;56478:190;;;;;:::o;46061:319::-;46190:18;46196:2;46200:7;46190:5;:18::i;:::-;46241:53;46272:1;46276:2;46280:7;46289:4;46241:22;:53::i;:::-;46219:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;46061:319;;;:::o;51919:853::-;52073:4;52094:15;:2;:13;;;:15::i;:::-;52090:675;;;52146:2;52130:36;;;52167:12;:10;:12::i;:::-;52181:4;52187:7;52196:4;52130:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;52126:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52388:1;52371:6;:13;:18;52367:328;;52414:60;;;;;;;;;;:::i;:::-;;;;;;;;52367:328;52645:6;52639:13;52630:6;52626:2;52622:15;52615:38;52126:584;52262:41;;;52252:51;;;:6;:51;;;;52245:58;;;;;52090:675;52749:4;52742:11;;51919:853;;;;;;;:::o;57345:296::-;57428:7;57448:20;57471:4;57448:27;;57491:9;57486:118;57510:5;:12;57506:1;:16;57486:118;;;57559:33;57569:12;57583:5;57589:1;57583:8;;;;;;;;:::i;:::-;;;;;;;;57559:9;:33::i;:::-;57544:48;;57524:3;;;;;:::i;:::-;;;;57486:118;;;;57621:12;57614:19;;;57345:296;;;;:::o;46716:942::-;46810:1;46796:16;;:2;:16;;;46788:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;46869:16;46877:7;46869;:16::i;:::-;46868:17;46860:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;46931:48;46960:1;46964:2;46968:7;46977:1;46931:20;:48::i;:::-;47078:16;47086:7;47078;:16::i;:::-;47077:17;47069:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;47493:1;47476:9;:13;47486:2;47476:13;;;;;;;;;;;;;;;;:18;;;;;;;;;;;47537:2;47518:7;:16;47526:7;47518:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;47582:7;47578:2;47557:33;;47574:1;47557:33;;;;;;;;;;;;47603:47;47631:1;47635:2;47639:7;47648:1;47603:19;:47::i;:::-;46716:942;;:::o;25302:326::-;25362:4;25619:1;25597:7;:19;;;:23;25590:30;;25302:326;;;:::o;64385:149::-;64448:7;64479:1;64475;:5;:51;;64506:20;64521:1;64524;64506:14;:20::i;:::-;64475:51;;;64483:20;64498:1;64501;64483:14;:20::i;:::-;64475:51;64468:58;;64385:149;;;;:::o;64542:268::-;64610:13;64717:1;64711:4;64704:15;64746:1;64740:4;64733:15;64787:4;64781;64771:21;64762:30;;64542:268;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:77::-;5952:7;5981:5;5970:16;;5915:77;;;:::o;5998:118::-;6085:24;6103:5;6085:24;:::i;:::-;6080:3;6073:37;5998:118;;:::o;6122:222::-;6215:4;6253:2;6242:9;6238:18;6230:26;;6266:71;6334:1;6323:9;6319:17;6310:6;6266:71;:::i;:::-;6122:222;;;;:::o;6350:329::-;6409:6;6458:2;6446:9;6437:7;6433:23;6429:32;6426:119;;;6464:79;;:::i;:::-;6426:119;6584:1;6609:53;6654:7;6645:6;6634:9;6630:22;6609:53;:::i;:::-;6599:63;;6555:117;6350:329;;;;:::o;6685:122::-;6758:24;6776:5;6758:24;:::i;:::-;6751:5;6748:35;6738:63;;6797:1;6794;6787:12;6738:63;6685:122;:::o;6813:139::-;6859:5;6897:6;6884:20;6875:29;;6913:33;6940:5;6913:33;:::i;:::-;6813:139;;;;:::o;6958:329::-;7017:6;7066:2;7054:9;7045:7;7041:23;7037:32;7034:119;;;7072:79;;:::i;:::-;7034:119;7192:1;7217:53;7262:7;7253:6;7242:9;7238:22;7217:53;:::i;:::-;7207:63;;7163:117;6958:329;;;;:::o;7293:116::-;7363:21;7378:5;7363:21;:::i;:::-;7356:5;7353:32;7343:60;;7399:1;7396;7389:12;7343:60;7293:116;:::o;7415:133::-;7458:5;7496:6;7483:20;7474:29;;7512:30;7536:5;7512:30;:::i;:::-;7415:133;;;;:::o;7554:468::-;7619:6;7627;7676:2;7664:9;7655:7;7651:23;7647:32;7644:119;;;7682:79;;:::i;:::-;7644:119;7802:1;7827:53;7872:7;7863:6;7852:9;7848:22;7827:53;:::i;:::-;7817:63;;7773:117;7929:2;7955:50;7997:7;7988:6;7977:9;7973:22;7955:50;:::i;:::-;7945:60;;7900:115;7554:468;;;;;:::o;8028:117::-;8137:1;8134;8127:12;8151:117;8260:1;8257;8250:12;8274:117;8383:1;8380;8373:12;8414:568;8487:8;8497:6;8547:3;8540:4;8532:6;8528:17;8524:27;8514:122;;8555:79;;:::i;:::-;8514:122;8668:6;8655:20;8645:30;;8698:18;8690:6;8687:30;8684:117;;;8720:79;;:::i;:::-;8684:117;8834:4;8826:6;8822:17;8810:29;;8888:3;8880:4;8872:6;8868:17;8858:8;8854:32;8851:41;8848:128;;;8895:79;;:::i;:::-;8848:128;8414:568;;;;;:::o;8988:559::-;9074:6;9082;9131:2;9119:9;9110:7;9106:23;9102:32;9099:119;;;9137:79;;:::i;:::-;9099:119;9285:1;9274:9;9270:17;9257:31;9315:18;9307:6;9304:30;9301:117;;;9337:79;;:::i;:::-;9301:117;9450:80;9522:7;9513:6;9502:9;9498:22;9450:80;:::i;:::-;9432:98;;;;9228:312;8988:559;;;;;:::o;9553:117::-;9662:1;9659;9652:12;9676:180;9724:77;9721:1;9714:88;9821:4;9818:1;9811:15;9845:4;9842:1;9835:15;9862:281;9945:27;9967:4;9945:27;:::i;:::-;9937:6;9933:40;10075:6;10063:10;10060:22;10039:18;10027:10;10024:34;10021:62;10018:88;;;10086:18;;:::i;:::-;10018:88;10126:10;10122:2;10115:22;9905:238;9862:281;;:::o;10149:129::-;10183:6;10210:20;;:::i;:::-;10200:30;;10239:33;10267:4;10259:6;10239:33;:::i;:::-;10149:129;;;:::o;10284:307::-;10345:4;10435:18;10427:6;10424:30;10421:56;;;10457:18;;:::i;:::-;10421:56;10495:29;10517:6;10495:29;:::i;:::-;10487:37;;10579:4;10573;10569:15;10561:23;;10284:307;;;:::o;10597:154::-;10681:6;10676:3;10671;10658:30;10743:1;10734:6;10729:3;10725:16;10718:27;10597:154;;;:::o;10757:410::-;10834:5;10859:65;10875:48;10916:6;10875:48;:::i;:::-;10859:65;:::i;:::-;10850:74;;10947:6;10940:5;10933:21;10985:4;10978:5;10974:16;11023:3;11014:6;11009:3;11005:16;11002:25;10999:112;;;11030:79;;:::i;:::-;10999:112;11120:41;11154:6;11149:3;11144;11120:41;:::i;:::-;10840:327;10757:410;;;;;:::o;11186:338::-;11241:5;11290:3;11283:4;11275:6;11271:17;11267:27;11257:122;;11298:79;;:::i;:::-;11257:122;11415:6;11402:20;11440:78;11514:3;11506:6;11499:4;11491:6;11487:17;11440:78;:::i;:::-;11431:87;;11247:277;11186:338;;;;:::o;11530:943::-;11625:6;11633;11641;11649;11698:3;11686:9;11677:7;11673:23;11669:33;11666:120;;;11705:79;;:::i;:::-;11666:120;11825:1;11850:53;11895:7;11886:6;11875:9;11871:22;11850:53;:::i;:::-;11840:63;;11796:117;11952:2;11978:53;12023:7;12014:6;12003:9;11999:22;11978:53;:::i;:::-;11968:63;;11923:118;12080:2;12106:53;12151:7;12142:6;12131:9;12127:22;12106:53;:::i;:::-;12096:63;;12051:118;12236:2;12225:9;12221:18;12208:32;12267:18;12259:6;12256:30;12253:117;;;12289:79;;:::i;:::-;12253:117;12394:62;12448:7;12439:6;12428:9;12424:22;12394:62;:::i;:::-;12384:72;;12179:287;11530:943;;;;;;;:::o;12479:474::-;12547:6;12555;12604:2;12592:9;12583:7;12579:23;12575:32;12572:119;;;12610:79;;:::i;:::-;12572:119;12730:1;12755:53;12800:7;12791:6;12780:9;12776:22;12755:53;:::i;:::-;12745:63;;12701:117;12857:2;12883:53;12928:7;12919:6;12908:9;12904:22;12883:53;:::i;:::-;12873:63;;12828:118;12479:474;;;;;:::o;12959:180::-;13007:77;13004:1;12997:88;13104:4;13101:1;13094:15;13128:4;13125:1;13118:15;13145:320;13189:6;13226:1;13220:4;13216:12;13206:22;;13273:1;13267:4;13263:12;13294:18;13284:81;;13350:4;13342:6;13338:17;13328:27;;13284:81;13412:2;13404:6;13401:14;13381:18;13378:38;13375:84;;13431:18;;:::i;:::-;13375:84;13196:269;13145:320;;;:::o;13471:220::-;13611:34;13607:1;13599:6;13595:14;13588:58;13680:3;13675:2;13667:6;13663:15;13656:28;13471:220;:::o;13697:366::-;13839:3;13860:67;13924:2;13919:3;13860:67;:::i;:::-;13853:74;;13936:93;14025:3;13936:93;:::i;:::-;14054:2;14049:3;14045:12;14038:19;;13697:366;;;:::o;14069:419::-;14235:4;14273:2;14262:9;14258:18;14250:26;;14322:9;14316:4;14312:20;14308:1;14297:9;14293:17;14286:47;14350:131;14476:4;14350:131;:::i;:::-;14342:139;;14069:419;;;:::o;14494:248::-;14634:34;14630:1;14622:6;14618:14;14611:58;14703:31;14698:2;14690:6;14686:15;14679:56;14494:248;:::o;14748:366::-;14890:3;14911:67;14975:2;14970:3;14911:67;:::i;:::-;14904:74;;14987:93;15076:3;14987:93;:::i;:::-;15105:2;15100:3;15096:12;15089:19;;14748:366;;;:::o;15120:419::-;15286:4;15324:2;15313:9;15309:18;15301:26;;15373:9;15367:4;15363:20;15359:1;15348:9;15344:17;15337:47;15401:131;15527:4;15401:131;:::i;:::-;15393:139;;15120:419;;;:::o;15545:232::-;15685:34;15681:1;15673:6;15669:14;15662:58;15754:15;15749:2;15741:6;15737:15;15730:40;15545:232;:::o;15783:366::-;15925:3;15946:67;16010:2;16005:3;15946:67;:::i;:::-;15939:74;;16022:93;16111:3;16022:93;:::i;:::-;16140:2;16135:3;16131:12;16124:19;;15783:366;;;:::o;16155:419::-;16321:4;16359:2;16348:9;16344:18;16336:26;;16408:9;16402:4;16398:20;16394:1;16383:9;16379:17;16372:47;16436:131;16562:4;16436:131;:::i;:::-;16428:139;;16155:419;;;:::o;16580:174::-;16720:26;16716:1;16708:6;16704:14;16697:50;16580:174;:::o;16760:366::-;16902:3;16923:67;16987:2;16982:3;16923:67;:::i;:::-;16916:74;;16999:93;17088:3;16999:93;:::i;:::-;17117:2;17112:3;17108:12;17101:19;;16760:366;;;:::o;17132:419::-;17298:4;17336:2;17325:9;17321:18;17313:26;;17385:9;17379:4;17375:20;17371:1;17360:9;17356:17;17349:47;17413:131;17539:4;17413:131;:::i;:::-;17405:139;;17132:419;;;:::o;17557:228::-;17697:34;17693:1;17685:6;17681:14;17674:58;17766:11;17761:2;17753:6;17749:15;17742:36;17557:228;:::o;17791:366::-;17933:3;17954:67;18018:2;18013:3;17954:67;:::i;:::-;17947:74;;18030:93;18119:3;18030:93;:::i;:::-;18148:2;18143:3;18139:12;18132:19;;17791:366;;;:::o;18163:419::-;18329:4;18367:2;18356:9;18352:18;18344:26;;18416:9;18410:4;18406:20;18402:1;18391:9;18387:17;18380:47;18444:131;18570:4;18444:131;:::i;:::-;18436:139;;18163:419;;;:::o;18588:170::-;18728:22;18724:1;18716:6;18712:14;18705:46;18588:170;:::o;18764:366::-;18906:3;18927:67;18991:2;18986:3;18927:67;:::i;:::-;18920:74;;19003:93;19092:3;19003:93;:::i;:::-;19121:2;19116:3;19112:12;19105:19;;18764:366;;;:::o;19136:419::-;19302:4;19340:2;19329:9;19325:18;19317:26;;19389:9;19383:4;19379:20;19375:1;19364:9;19360:17;19353:47;19417:131;19543:4;19417:131;:::i;:::-;19409:139;;19136:419;;;:::o;19561:164::-;19701:16;19697:1;19689:6;19685:14;19678:40;19561:164;:::o;19731:366::-;19873:3;19894:67;19958:2;19953:3;19894:67;:::i;:::-;19887:74;;19970:93;20059:3;19970:93;:::i;:::-;20088:2;20083:3;20079:12;20072:19;;19731:366;;;:::o;20103:419::-;20269:4;20307:2;20296:9;20292:18;20284:26;;20356:9;20350:4;20346:20;20342:1;20331:9;20327:17;20320:47;20384:131;20510:4;20384:131;:::i;:::-;20376:139;;20103:419;;;:::o;20528:172::-;20668:24;20664:1;20656:6;20652:14;20645:48;20528:172;:::o;20706:366::-;20848:3;20869:67;20933:2;20928:3;20869:67;:::i;:::-;20862:74;;20945:93;21034:3;20945:93;:::i;:::-;21063:2;21058:3;21054:12;21047:19;;20706:366;;;:::o;21078:419::-;21244:4;21282:2;21271:9;21267:18;21259:26;;21331:9;21325:4;21321:20;21317:1;21306:9;21302:17;21295:47;21359:131;21485:4;21359:131;:::i;:::-;21351:139;;21078:419;;;:::o;21503:175::-;21643:27;21639:1;21631:6;21627:14;21620:51;21503:175;:::o;21684:366::-;21826:3;21847:67;21911:2;21906:3;21847:67;:::i;:::-;21840:74;;21923:93;22012:3;21923:93;:::i;:::-;22041:2;22036:3;22032:12;22025:19;;21684:366;;;:::o;22056:419::-;22222:4;22260:2;22249:9;22245:18;22237:26;;22309:9;22303:4;22299:20;22295:1;22284:9;22280:17;22273:47;22337:131;22463:4;22337:131;:::i;:::-;22329:139;;22056:419;;;:::o;22481:225::-;22621:34;22617:1;22609:6;22605:14;22598:58;22690:8;22685:2;22677:6;22673:15;22666:33;22481:225;:::o;22712:366::-;22854:3;22875:67;22939:2;22934:3;22875:67;:::i;:::-;22868:74;;22951:93;23040:3;22951:93;:::i;:::-;23069:2;23064:3;23060:12;23053:19;;22712:366;;;:::o;23084:419::-;23250:4;23288:2;23277:9;23273:18;23265:26;;23337:9;23331:4;23327:20;23323:1;23312:9;23308:17;23301:47;23365:131;23491:4;23365:131;:::i;:::-;23357:139;;23084:419;;;:::o;23509:224::-;23649:34;23645:1;23637:6;23633:14;23626:58;23718:7;23713:2;23705:6;23701:15;23694:32;23509:224;:::o;23739:366::-;23881:3;23902:67;23966:2;23961:3;23902:67;:::i;:::-;23895:74;;23978:93;24067:3;23978:93;:::i;:::-;24096:2;24091:3;24087:12;24080:19;;23739:366;;;:::o;24111:419::-;24277:4;24315:2;24304:9;24300:18;24292:26;;24364:9;24358:4;24354:20;24350:1;24339:9;24335:17;24328:47;24392:131;24518:4;24392:131;:::i;:::-;24384:139;;24111:419;;;:::o;24536:223::-;24676:34;24672:1;24664:6;24660:14;24653:58;24745:6;24740:2;24732:6;24728:15;24721:31;24536:223;:::o;24765:366::-;24907:3;24928:67;24992:2;24987:3;24928:67;:::i;:::-;24921:74;;25004:93;25093:3;25004:93;:::i;:::-;25122:2;25117:3;25113:12;25106:19;;24765:366;;;:::o;25137:419::-;25303:4;25341:2;25330:9;25326:18;25318:26;;25390:9;25384:4;25380:20;25376:1;25365:9;25361:17;25354:47;25418:131;25544:4;25418:131;:::i;:::-;25410:139;;25137:419;;;:::o;25562:182::-;25702:34;25698:1;25690:6;25686:14;25679:58;25562:182;:::o;25750:366::-;25892:3;25913:67;25977:2;25972:3;25913:67;:::i;:::-;25906:74;;25989:93;26078:3;25989:93;:::i;:::-;26107:2;26102:3;26098:12;26091:19;;25750:366;;;:::o;26122:419::-;26288:4;26326:2;26315:9;26311:18;26303:26;;26375:9;26369:4;26365:20;26361:1;26350:9;26346:17;26339:47;26403:131;26529:4;26403:131;:::i;:::-;26395:139;;26122:419;;;:::o;26547:175::-;26687:27;26683:1;26675:6;26671:14;26664:51;26547:175;:::o;26728:366::-;26870:3;26891:67;26955:2;26950:3;26891:67;:::i;:::-;26884:74;;26967:93;27056:3;26967:93;:::i;:::-;27085:2;27080:3;27076:12;27069:19;;26728:366;;;:::o;27100:419::-;27266:4;27304:2;27293:9;27289:18;27281:26;;27353:9;27347:4;27343:20;27339:1;27328:9;27324:17;27317:47;27381:131;27507:4;27381:131;:::i;:::-;27373:139;;27100:419;;;:::o;27525:94::-;27558:8;27606:5;27602:2;27598:14;27577:35;;27525:94;;;:::o;27625:::-;27664:7;27693:20;27707:5;27693:20;:::i;:::-;27682:31;;27625:94;;;:::o;27725:100::-;27764:7;27793:26;27813:5;27793:26;:::i;:::-;27782:37;;27725:100;;;:::o;27831:157::-;27936:45;27956:24;27974:5;27956:24;:::i;:::-;27936:45;:::i;:::-;27931:3;27924:58;27831:157;;:::o;27994:256::-;28106:3;28121:75;28192:3;28183:6;28121:75;:::i;:::-;28221:2;28216:3;28212:12;28205:19;;28241:3;28234:10;;27994:256;;;;:::o;28256:237::-;28396:34;28392:1;28384:6;28380:14;28373:58;28465:20;28460:2;28452:6;28448:15;28441:45;28256:237;:::o;28499:366::-;28641:3;28662:67;28726:2;28721:3;28662:67;:::i;:::-;28655:74;;28738:93;28827:3;28738:93;:::i;:::-;28856:2;28851:3;28847:12;28840:19;;28499:366;;;:::o;28871:419::-;29037:4;29075:2;29064:9;29060:18;29052:26;;29124:9;29118:4;29114:20;29110:1;29099:9;29095:17;29088:47;29152:131;29278:4;29152:131;:::i;:::-;29144:139;;28871:419;;;:::o;29296:98::-;29347:6;29381:5;29375:12;29365:22;;29296:98;;;:::o;29400:168::-;29483:11;29517:6;29512:3;29505:19;29557:4;29552:3;29548:14;29533:29;;29400:168;;;;:::o;29574:360::-;29660:3;29688:38;29720:5;29688:38;:::i;:::-;29742:70;29805:6;29800:3;29742:70;:::i;:::-;29735:77;;29821:52;29866:6;29861:3;29854:4;29847:5;29843:16;29821:52;:::i;:::-;29898:29;29920:6;29898:29;:::i;:::-;29893:3;29889:39;29882:46;;29664:270;29574:360;;;;:::o;29940:640::-;30135:4;30173:3;30162:9;30158:19;30150:27;;30187:71;30255:1;30244:9;30240:17;30231:6;30187:71;:::i;:::-;30268:72;30336:2;30325:9;30321:18;30312:6;30268:72;:::i;:::-;30350;30418:2;30407:9;30403:18;30394:6;30350:72;:::i;:::-;30469:9;30463:4;30459:20;30454:2;30443:9;30439:18;30432:48;30497:76;30568:4;30559:6;30497:76;:::i;:::-;30489:84;;29940:640;;;;;;;:::o;30586:141::-;30642:5;30673:6;30667:13;30658:22;;30689:32;30715:5;30689:32;:::i;:::-;30586:141;;;;:::o;30733:349::-;30802:6;30851:2;30839:9;30830:7;30826:23;30822:32;30819:119;;;30857:79;;:::i;:::-;30819:119;30977:1;31002:63;31057:7;31048:6;31037:9;31033:22;31002:63;:::i;:::-;30992:73;;30948:127;30733:349;;;;:::o;31088:180::-;31136:77;31133:1;31126:88;31233:4;31230:1;31223:15;31257:4;31254:1;31247:15;31274:180;31322:77;31319:1;31312:88;31419:4;31416:1;31409:15;31443:4;31440:1;31433:15;31460:233;31499:3;31522:24;31540:5;31522:24;:::i;:::-;31513:33;;31568:66;31561:5;31558:77;31555:103;;31638:18;;:::i;:::-;31555:103;31685:1;31678:5;31674:13;31667:20;;31460:233;;;:::o;31699:182::-;31839:34;31835:1;31827:6;31823:14;31816:58;31699:182;:::o;31887:366::-;32029:3;32050:67;32114:2;32109:3;32050:67;:::i;:::-;32043:74;;32126:93;32215:3;32126:93;:::i;:::-;32244:2;32239:3;32235:12;32228:19;;31887:366;;;:::o;32259:419::-;32425:4;32463:2;32452:9;32448:18;32440:26;;32512:9;32506:4;32502:20;32498:1;32487:9;32483:17;32476:47;32540:131;32666:4;32540:131;:::i;:::-;32532:139;;32259:419;;;:::o;32684:178::-;32824:30;32820:1;32812:6;32808:14;32801:54;32684:178;:::o;32868:366::-;33010:3;33031:67;33095:2;33090:3;33031:67;:::i;:::-;33024:74;;33107:93;33196:3;33107:93;:::i;:::-;33225:2;33220:3;33216:12;33209:19;;32868:366;;;:::o;33240:419::-;33406:4;33444:2;33433:9;33429:18;33421:26;;33493:9;33487:4;33483:20;33479:1;33468:9;33464:17;33457:47;33521:131;33647:4;33521:131;:::i;:::-;33513:139;;33240:419;;;:::o

Swarm Source

ipfs://5e7d4169ce2dc88810d340c14f462a7098a5af96fcf649846757d80f39fb2171
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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