Overview
APE Balance
0 APE
APE Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 9 from a total of 9 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Transfer Fr... | 5564883 | 7 hrs ago | IN | 0 APE | 0.00116752 | ||||
Safe Transfer Fr... | 5564798 | 7 hrs ago | IN | 0 APE | 0.00116752 | ||||
Transfer From | 5053898 | 4 days ago | IN | 0 APE | 0.00153177 | ||||
Set Approval For... | 5030066 | 4 days ago | IN | 0 APE | 0.00067075 | ||||
Set Approval For... | 5029286 | 4 days ago | IN | 0 APE | 0.00117662 | ||||
Set Approval For... | 5022754 | 4 days ago | IN | 0 APE | 0.00117448 | ||||
Mint | 5022443 | 4 days ago | IN | 0 APE | 0.03396237 | ||||
Mint | 5021407 | 4 days ago | IN | 0 APE | 0.00825277 | ||||
0x60806040 | 5021352 | 4 days ago | IN | 0 APE | 0.04668133 |
Loading...
Loading
Contract Name:
OMGart_BananaZ
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at apescan.io on 2024-11-22 */ // SPDX-License-Identifier: MIT // File @openzeppelin/contracts/utils/[email protected] // Original license: SPDX_License_Identifier: 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; } } // File @openzeppelin/contracts/access/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // Original license: SPDX_License_Identifier: 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); } // File @openzeppelin/contracts/token/ERC721/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/token/ERC721/[email protected] // Original license: SPDX_License_Identifier: 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); } // File @openzeppelin/contracts/utils/[email protected] // Original license: SPDX_License_Identifier: 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); } } } // File @openzeppelin/contracts/utils/introspection/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/utils/math/[email protected] // Original license: SPDX_License_Identifier: 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); } } } // File @openzeppelin/contracts/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File @openzeppelin/contracts/token/ERC721/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.2) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such * that `ownerOf(tokenId)` is `a`. */ // solhint-disable-next-line func-name-mixedcase function __unsafe_increaseBalance(address account, uint256 amount) internal { _balances[account] += amount; } } pragma solidity 0.8.19; contract OMGart_BananaZ is ERC721, Ownable { string private name_; string private symbol_; string private baseURL_; address private royaltiesReceiver_; uint256 public maxSupply = 333; uint256 public pricePerMint = 99 ether; uint256 currentIndex = 0; constructor(string memory _name, string memory _symbol,address _royaltiesReceiver,string memory _baseURL) ERC721(_name, _symbol){ name_ = _name; symbol_ = _symbol; baseURL_ = _baseURL; royaltiesReceiver_ = _royaltiesReceiver; } function name() public view override returns (string memory) { return name_; } function symbol() public view override returns (string memory) { return symbol_; } function setRoyaltiesReceiver(address _royaltiesReceiver) external onlyOwner{ royaltiesReceiver_ = _royaltiesReceiver; } function setBaseURI(string memory uri_) external onlyOwner{ baseURL_ = uri_; } function royaltyInfo(uint256, uint256 _salePrice) external view returns (address, uint256){ uint256 royaltyFraction = 500; uint256 denominator = 10000; uint256 royaltiesAmount = (_salePrice * royaltyFraction) / denominator; return (royaltiesReceiver_, royaltiesAmount); } function toString(uint256 _i) internal pure returns (string memory) { if (_i == 0) { return "0"; } uint256 j = _i; uint256 len; while (j != 0) { len++; j /= 10; } bytes memory bstr = new bytes(len); uint256 k = len; while (_i != 0) { bstr[--k] = bytes1((48 + uint8(_i - (_i / 10) * 10))); _i /= 10; } return string(bstr); } function tokenURI(uint256 _tokenId) public view override(ERC721) returns(string memory){ return string(abi.encodePacked(baseURL_,"/",toString(_tokenId))); } function uri(uint256 _tokenId) public view returns (string memory) { return tokenURI(_tokenId); } function mint(uint256 amount, address user) payable public { if(amount == 0){ revert ("Invalid Amount!"); } if(msg.sender != owner()){ if(msg.value != amount * pricePerMint){ revert("Insufficient amount!"); } if((currentIndex + amount) > maxSupply){ revert ("Invalid Action"); } } uint256 nextId = currentIndex + 1; for(uint256 i; i < amount;){ uint256 tokenId = nextId + i; _safeMint(user, tokenId); unchecked { i++; currentIndex = currentIndex + 1; } } } function withdrawEarnings(address user) external onlyOwner{ uint256 amount = address(this).balance; if(amount > 0){ address to = user; (bool success, ) = to.call{value: amount}(new bytes(0)); require(success); } } function supportsInterface(bytes4 interfaceId) public view override(ERC721) returns (bool) { return super.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_royaltiesReceiver","type":"address"},{"internalType":"string","name":"_baseURL","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":"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":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"user","type":"address"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltiesReceiver","type":"address"}],"name":"setRoyaltiesReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"withdrawEarnings","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405261014d600b5568055de6a779bbac0000600c556000600d553480156200002957600080fd5b5060405162001f7838038062001f788339810160408190526200004c91620001fa565b838360006200005c83826200033c565b5060016200006b82826200033c565b5050506200008862000082620000df60201b60201c565b620000e3565b60076200009685826200033c565b506008620000a584826200033c565b506009620000b482826200033c565b5050600a80546001600160a01b0319166001600160a01b039290921691909117905550620004089050565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200015d57600080fd5b81516001600160401b03808211156200017a576200017a62000135565b604051601f8301601f19908116603f01168101908282118183101715620001a557620001a562000135565b81604052838152602092508683858801011115620001c257600080fd5b600091505b83821015620001e65785820183015181830184015290820190620001c7565b600093810190920192909252949350505050565b600080600080608085870312156200021157600080fd5b84516001600160401b03808211156200022957600080fd5b62000237888389016200014b565b955060208701519150808211156200024e57600080fd5b6200025c888389016200014b565b604088015190955091506001600160a01b03821682146200027c57600080fd5b6060870151919350808211156200029257600080fd5b50620002a1878288016200014b565b91505092959194509250565b600181811c90821680620002c257607f821691505b602082108103620002e357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200033757600081815260208120601f850160051c81016020861015620003125750805b601f850160051c820191505b8181101562000333578281556001016200031e565b5050505b505050565b81516001600160401b0381111562000358576200035862000135565b6200037081620003698454620002ad565b84620002e9565b602080601f831160018114620003a857600084156200038f5750858301515b600019600386901b1c1916600185901b17855562000333565b600085815260208120601f198616915b82811015620003d957888601518255948401946001909101908401620003b8565b5085821015620003f85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611b6080620004186000396000f3fe60806040526004361061014b5760003560e01c8063715018a6116100b6578063b88d4fde1161006f578063b88d4fde146103c9578063c5610a29146103e9578063c87b56dd146103ff578063d5abeb011461041f578063e985e9c514610435578063f2fde38b1461045557600080fd5b8063715018a61461032e5780638da5cb5b1461034357806394bf804d1461036157806395d89b4114610374578063a22cb46514610389578063b5143715146103a957600080fd5b80632a55205a116101085780632a55205a146102415780633d4d8d4f1461028057806342842e0e146102a057806355f804b3146102c05780636352211e146102e057806370a082311461030057600080fd5b806301ffc9a71461015057806306fdde0314610185578063081812fc146101a7578063095ea7b3146101df5780630e89341c1461020157806323b872dd14610221575b600080fd5b34801561015c57600080fd5b5061017061016b3660046113de565b610475565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b5061019a610486565b60405161017c9190611452565b3480156101b357600080fd5b506101c76101c2366004611465565b610518565b6040516001600160a01b03909116815260200161017c565b3480156101eb57600080fd5b506101ff6101fa36600461149a565b61053f565b005b34801561020d57600080fd5b5061019a61021c366004611465565b610659565b34801561022d57600080fd5b506101ff61023c3660046114c4565b610664565b34801561024d57600080fd5b5061026161025c366004611500565b610695565b604080516001600160a01b03909316835260208301919091520161017c565b34801561028c57600080fd5b506101ff61029b366004611522565b6106cd565b3480156102ac57600080fd5b506101ff6102bb3660046114c4565b61075e565b3480156102cc57600080fd5b506101ff6102db3660046115c9565b610779565b3480156102ec57600080fd5b506101c76102fb366004611465565b61078d565b34801561030c57600080fd5b5061032061031b366004611522565b6107ed565b60405190815260200161017c565b34801561033a57600080fd5b506101ff610873565b34801561034f57600080fd5b506006546001600160a01b03166101c7565b6101ff61036f366004611612565b610887565b34801561038057600080fd5b5061019a6109c6565b34801561039557600080fd5b506101ff6103a436600461163e565b6109d5565b3480156103b557600080fd5b506101ff6103c4366004611522565b6109e0565b3480156103d557600080fd5b506101ff6103e436600461167a565b610a0a565b3480156103f557600080fd5b50610320600c5481565b34801561040b57600080fd5b5061019a61041a366004611465565b610a3c565b34801561042b57600080fd5b50610320600b5481565b34801561044157600080fd5b506101706104503660046116f6565b610a70565b34801561046157600080fd5b506101ff610470366004611522565b610a9e565b600061048082610b17565b92915050565b60606007805461049590611720565b80601f01602080910402602001604051908101604052809291908181526020018280546104c190611720565b801561050e5780601f106104e35761010080835404028352916020019161050e565b820191906000526020600020905b8154815290600101906020018083116104f157829003601f168201915b5050505050905090565b600061052382610b67565b506000908152600460205260409020546001600160a01b031690565b600061054a8261078d565b9050806001600160a01b0316836001600160a01b0316036105bc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806105d857506105d88133610a70565b61064a5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016105b3565b6106548383610bc6565b505050565b606061048082610a3c565b61066e3382610c34565b61068a5760405162461bcd60e51b81526004016105b39061175a565b610654838383610c93565b6000806101f461271082816106aa84886117bd565b6106b491906117d4565b600a546001600160a01b03169890975095505050505050565b6106d5610e0c565b47801561075a576040805160008082526020820192839052849290916001600160a01b038416918591610707916117f6565b60006040518083038185875af1925050503d8060008114610744576040519150601f19603f3d011682016040523d82523d6000602084013e610749565b606091505b505090508061075757600080fd5b50505b5050565b61065483838360405180602001604052806000815250610a0a565b610781610e0c565b600961075a8282611860565b6000818152600260205260408120546001600160a01b0316806104805760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016105b3565b60006001600160a01b0382166108575760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016105b3565b506001600160a01b031660009081526003602052604090205490565b61087b610e0c565b6108856000610e66565b565b816000036108c95760405162461bcd60e51b815260206004820152600f60248201526e496e76616c696420416d6f756e742160881b60448201526064016105b3565b6006546001600160a01b0316331461097d57600c546108e890836117bd565b341461092d5760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e7420616d6f756e742160601b60448201526064016105b3565b600b5482600d5461093e9190611920565b111561097d5760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b21020b1ba34b7b760911b60448201526064016105b3565b6000600d54600161098e9190611920565b905060005b838110156107575760006109a78284611920565b90506109b38482610eb8565b50600d8054600190810190915501610993565b60606008805461049590611720565b61075a338383610ed2565b6109e8610e0c565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b610a143383610c34565b610a305760405162461bcd60e51b81526004016105b39061175a565b61075784848484610fa0565b60606009610a4983610fd3565b604051602001610a5a929190611933565b6040516020818303038152906040529050919050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610aa6610e0c565b6001600160a01b038116610b0b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b3565b610b1481610e66565b50565b60006001600160e01b031982166380ac58cd60e01b1480610b4857506001600160e01b03198216635b5e139f60e01b145b8061048057506301ffc9a760e01b6001600160e01b0319831614610480565b6000818152600260205260409020546001600160a01b0316610b145760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016105b3565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610bfb8261078d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610c408361078d565b9050806001600160a01b0316846001600160a01b03161480610c675750610c678185610a70565b80610c8b5750836001600160a01b0316610c8084610518565b6001600160a01b0316145b949350505050565b826001600160a01b0316610ca68261078d565b6001600160a01b031614610ccc5760405162461bcd60e51b81526004016105b3906119c7565b6001600160a01b038216610d2e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105b3565b610d3b8383836001610757565b826001600160a01b0316610d4e8261078d565b6001600160a01b031614610d745760405162461bcd60e51b81526004016105b3906119c7565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a46106548383836001610757565b6006546001600160a01b031633146108855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b3565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61075a8282604051806020016040528060008152506110f1565b816001600160a01b0316836001600160a01b031603610f335760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105b3565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610fab848484610c93565b610fb784848484611124565b6107575760405162461bcd60e51b81526004016105b390611a0c565b606081600003610ffa5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611024578061100e81611a5e565b915061101d9050600a836117d4565b9150610ffe565b60008167ffffffffffffffff81111561103f5761103f61153d565b6040519080825280601f01601f191660200182016040528015611069576020820181803683370190505b509050815b85156110e85761107f600a876117d4565b61108a90600a6117bd565b6110949087611a77565b61109f906030611a8a565b60f81b826110ac83611aa3565b925082815181106110bf576110bf611aba565b60200101906001600160f81b031916908160001a9053506110e1600a876117d4565b955061106e565b50949350505050565b6110fb8383611225565b6111086000848484611124565b6106545760405162461bcd60e51b81526004016105b390611a0c565b60006001600160a01b0384163b1561121a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611168903390899088908890600401611ad0565b6020604051808303816000875af19250505080156111a3575060408051601f3d908101601f191682019092526111a091810190611b0d565b60015b611200573d8080156111d1576040519150601f19603f3d011682016040523d82523d6000602084013e6111d6565b606091505b5080516000036111f85760405162461bcd60e51b81526004016105b390611a0c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610c8b565b506001949350505050565b6001600160a01b03821661127b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105b3565b6000818152600260205260409020546001600160a01b0316156112e05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105b3565b6112ee600083836001610757565b6000818152600260205260409020546001600160a01b0316156113535760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105b3565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461075a600083836001610757565b6001600160e01b031981168114610b1457600080fd5b6000602082840312156113f057600080fd5b81356113fb816113c8565b9392505050565b60005b8381101561141d578181015183820152602001611405565b50506000910152565b6000815180845261143e816020860160208601611402565b601f01601f19169290920160200192915050565b6020815260006113fb6020830184611426565b60006020828403121561147757600080fd5b5035919050565b80356001600160a01b038116811461149557600080fd5b919050565b600080604083850312156114ad57600080fd5b6114b68361147e565b946020939093013593505050565b6000806000606084860312156114d957600080fd5b6114e28461147e565b92506114f06020850161147e565b9150604084013590509250925092565b6000806040838503121561151357600080fd5b50508035926020909101359150565b60006020828403121561153457600080fd5b6113fb8261147e565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561156e5761156e61153d565b604051601f8501601f19908116603f011681019082821181831017156115965761159661153d565b816040528093508581528686860111156115af57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156115db57600080fd5b813567ffffffffffffffff8111156115f257600080fd5b8201601f8101841361160357600080fd5b610c8b84823560208401611553565b6000806040838503121561162557600080fd5b823591506116356020840161147e565b90509250929050565b6000806040838503121561165157600080fd5b61165a8361147e565b91506020830135801515811461166f57600080fd5b809150509250929050565b6000806000806080858703121561169057600080fd5b6116998561147e565b93506116a76020860161147e565b925060408501359150606085013567ffffffffffffffff8111156116ca57600080fd5b8501601f810187136116db57600080fd5b6116ea87823560208401611553565b91505092959194509250565b6000806040838503121561170957600080fd5b6117128361147e565b91506116356020840161147e565b600181811c9082168061173457607f821691505b60208210810361175457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610480576104806117a7565b6000826117f157634e487b7160e01b600052601260045260246000fd5b500490565b60008251611808818460208701611402565b9190910192915050565b601f82111561065457600081815260208120601f850160051c810160208610156118395750805b601f850160051c820191505b8181101561185857828155600101611845565b505050505050565b815167ffffffffffffffff81111561187a5761187a61153d565b61188e816118888454611720565b84611812565b602080601f8311600181146118c357600084156118ab5750858301515b600019600386901b1c1916600185901b178555611858565b600085815260208120601f198616915b828110156118f2578886015182559484019460019091019084016118d3565b50858210156119105787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115610480576104806117a7565b600080845461194181611720565b60018281168015611959576001811461196e5761199d565b60ff198416875282151583028701945061199d565b8860005260208060002060005b858110156119945781548a82015290840190820161197b565b50505082870194505b50602f60f81b8452865192506119b98382860160208a01611402565b919092010195945050505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600060018201611a7057611a706117a7565b5060010190565b81810381811115610480576104806117a7565b60ff8181168382160190811115610480576104806117a7565b600081611ab257611ab26117a7565b506000190190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b0390830184611426565b9695505050505050565b600060208284031215611b1f57600080fd5b81516113fb816113c856fea264697066735822122038d797d6cf47838937f8ff5279b18ca99dff62e39cedc82945a52bab855fe39d64736f6c63430008130033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000004c91c56f25d1fcad6423c4020368f8c1eda55b8e0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000742616e616e615a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044f4d4762000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a65526d4543594461457942686542647a34536f3642427157716a5937344a356156313958504b35795269370000000000000000000000
Deployed Bytecode
0x60806040526004361061014b5760003560e01c8063715018a6116100b6578063b88d4fde1161006f578063b88d4fde146103c9578063c5610a29146103e9578063c87b56dd146103ff578063d5abeb011461041f578063e985e9c514610435578063f2fde38b1461045557600080fd5b8063715018a61461032e5780638da5cb5b1461034357806394bf804d1461036157806395d89b4114610374578063a22cb46514610389578063b5143715146103a957600080fd5b80632a55205a116101085780632a55205a146102415780633d4d8d4f1461028057806342842e0e146102a057806355f804b3146102c05780636352211e146102e057806370a082311461030057600080fd5b806301ffc9a71461015057806306fdde0314610185578063081812fc146101a7578063095ea7b3146101df5780630e89341c1461020157806323b872dd14610221575b600080fd5b34801561015c57600080fd5b5061017061016b3660046113de565b610475565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b5061019a610486565b60405161017c9190611452565b3480156101b357600080fd5b506101c76101c2366004611465565b610518565b6040516001600160a01b03909116815260200161017c565b3480156101eb57600080fd5b506101ff6101fa36600461149a565b61053f565b005b34801561020d57600080fd5b5061019a61021c366004611465565b610659565b34801561022d57600080fd5b506101ff61023c3660046114c4565b610664565b34801561024d57600080fd5b5061026161025c366004611500565b610695565b604080516001600160a01b03909316835260208301919091520161017c565b34801561028c57600080fd5b506101ff61029b366004611522565b6106cd565b3480156102ac57600080fd5b506101ff6102bb3660046114c4565b61075e565b3480156102cc57600080fd5b506101ff6102db3660046115c9565b610779565b3480156102ec57600080fd5b506101c76102fb366004611465565b61078d565b34801561030c57600080fd5b5061032061031b366004611522565b6107ed565b60405190815260200161017c565b34801561033a57600080fd5b506101ff610873565b34801561034f57600080fd5b506006546001600160a01b03166101c7565b6101ff61036f366004611612565b610887565b34801561038057600080fd5b5061019a6109c6565b34801561039557600080fd5b506101ff6103a436600461163e565b6109d5565b3480156103b557600080fd5b506101ff6103c4366004611522565b6109e0565b3480156103d557600080fd5b506101ff6103e436600461167a565b610a0a565b3480156103f557600080fd5b50610320600c5481565b34801561040b57600080fd5b5061019a61041a366004611465565b610a3c565b34801561042b57600080fd5b50610320600b5481565b34801561044157600080fd5b506101706104503660046116f6565b610a70565b34801561046157600080fd5b506101ff610470366004611522565b610a9e565b600061048082610b17565b92915050565b60606007805461049590611720565b80601f01602080910402602001604051908101604052809291908181526020018280546104c190611720565b801561050e5780601f106104e35761010080835404028352916020019161050e565b820191906000526020600020905b8154815290600101906020018083116104f157829003601f168201915b5050505050905090565b600061052382610b67565b506000908152600460205260409020546001600160a01b031690565b600061054a8261078d565b9050806001600160a01b0316836001600160a01b0316036105bc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806105d857506105d88133610a70565b61064a5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016105b3565b6106548383610bc6565b505050565b606061048082610a3c565b61066e3382610c34565b61068a5760405162461bcd60e51b81526004016105b39061175a565b610654838383610c93565b6000806101f461271082816106aa84886117bd565b6106b491906117d4565b600a546001600160a01b03169890975095505050505050565b6106d5610e0c565b47801561075a576040805160008082526020820192839052849290916001600160a01b038416918591610707916117f6565b60006040518083038185875af1925050503d8060008114610744576040519150601f19603f3d011682016040523d82523d6000602084013e610749565b606091505b505090508061075757600080fd5b50505b5050565b61065483838360405180602001604052806000815250610a0a565b610781610e0c565b600961075a8282611860565b6000818152600260205260408120546001600160a01b0316806104805760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016105b3565b60006001600160a01b0382166108575760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016105b3565b506001600160a01b031660009081526003602052604090205490565b61087b610e0c565b6108856000610e66565b565b816000036108c95760405162461bcd60e51b815260206004820152600f60248201526e496e76616c696420416d6f756e742160881b60448201526064016105b3565b6006546001600160a01b0316331461097d57600c546108e890836117bd565b341461092d5760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e7420616d6f756e742160601b60448201526064016105b3565b600b5482600d5461093e9190611920565b111561097d5760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b21020b1ba34b7b760911b60448201526064016105b3565b6000600d54600161098e9190611920565b905060005b838110156107575760006109a78284611920565b90506109b38482610eb8565b50600d8054600190810190915501610993565b60606008805461049590611720565b61075a338383610ed2565b6109e8610e0c565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b610a143383610c34565b610a305760405162461bcd60e51b81526004016105b39061175a565b61075784848484610fa0565b60606009610a4983610fd3565b604051602001610a5a929190611933565b6040516020818303038152906040529050919050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610aa6610e0c565b6001600160a01b038116610b0b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b3565b610b1481610e66565b50565b60006001600160e01b031982166380ac58cd60e01b1480610b4857506001600160e01b03198216635b5e139f60e01b145b8061048057506301ffc9a760e01b6001600160e01b0319831614610480565b6000818152600260205260409020546001600160a01b0316610b145760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016105b3565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610bfb8261078d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610c408361078d565b9050806001600160a01b0316846001600160a01b03161480610c675750610c678185610a70565b80610c8b5750836001600160a01b0316610c8084610518565b6001600160a01b0316145b949350505050565b826001600160a01b0316610ca68261078d565b6001600160a01b031614610ccc5760405162461bcd60e51b81526004016105b3906119c7565b6001600160a01b038216610d2e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105b3565b610d3b8383836001610757565b826001600160a01b0316610d4e8261078d565b6001600160a01b031614610d745760405162461bcd60e51b81526004016105b3906119c7565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a46106548383836001610757565b6006546001600160a01b031633146108855760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105b3565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61075a8282604051806020016040528060008152506110f1565b816001600160a01b0316836001600160a01b031603610f335760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105b3565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610fab848484610c93565b610fb784848484611124565b6107575760405162461bcd60e51b81526004016105b390611a0c565b606081600003610ffa5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611024578061100e81611a5e565b915061101d9050600a836117d4565b9150610ffe565b60008167ffffffffffffffff81111561103f5761103f61153d565b6040519080825280601f01601f191660200182016040528015611069576020820181803683370190505b509050815b85156110e85761107f600a876117d4565b61108a90600a6117bd565b6110949087611a77565b61109f906030611a8a565b60f81b826110ac83611aa3565b925082815181106110bf576110bf611aba565b60200101906001600160f81b031916908160001a9053506110e1600a876117d4565b955061106e565b50949350505050565b6110fb8383611225565b6111086000848484611124565b6106545760405162461bcd60e51b81526004016105b390611a0c565b60006001600160a01b0384163b1561121a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611168903390899088908890600401611ad0565b6020604051808303816000875af19250505080156111a3575060408051601f3d908101601f191682019092526111a091810190611b0d565b60015b611200573d8080156111d1576040519150601f19603f3d011682016040523d82523d6000602084013e6111d6565b606091505b5080516000036111f85760405162461bcd60e51b81526004016105b390611a0c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610c8b565b506001949350505050565b6001600160a01b03821661127b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105b3565b6000818152600260205260409020546001600160a01b0316156112e05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105b3565b6112ee600083836001610757565b6000818152600260205260409020546001600160a01b0316156113535760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105b3565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461075a600083836001610757565b6001600160e01b031981168114610b1457600080fd5b6000602082840312156113f057600080fd5b81356113fb816113c8565b9392505050565b60005b8381101561141d578181015183820152602001611405565b50506000910152565b6000815180845261143e816020860160208601611402565b601f01601f19169290920160200192915050565b6020815260006113fb6020830184611426565b60006020828403121561147757600080fd5b5035919050565b80356001600160a01b038116811461149557600080fd5b919050565b600080604083850312156114ad57600080fd5b6114b68361147e565b946020939093013593505050565b6000806000606084860312156114d957600080fd5b6114e28461147e565b92506114f06020850161147e565b9150604084013590509250925092565b6000806040838503121561151357600080fd5b50508035926020909101359150565b60006020828403121561153457600080fd5b6113fb8261147e565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561156e5761156e61153d565b604051601f8501601f19908116603f011681019082821181831017156115965761159661153d565b816040528093508581528686860111156115af57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156115db57600080fd5b813567ffffffffffffffff8111156115f257600080fd5b8201601f8101841361160357600080fd5b610c8b84823560208401611553565b6000806040838503121561162557600080fd5b823591506116356020840161147e565b90509250929050565b6000806040838503121561165157600080fd5b61165a8361147e565b91506020830135801515811461166f57600080fd5b809150509250929050565b6000806000806080858703121561169057600080fd5b6116998561147e565b93506116a76020860161147e565b925060408501359150606085013567ffffffffffffffff8111156116ca57600080fd5b8501601f810187136116db57600080fd5b6116ea87823560208401611553565b91505092959194509250565b6000806040838503121561170957600080fd5b6117128361147e565b91506116356020840161147e565b600181811c9082168061173457607f821691505b60208210810361175457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610480576104806117a7565b6000826117f157634e487b7160e01b600052601260045260246000fd5b500490565b60008251611808818460208701611402565b9190910192915050565b601f82111561065457600081815260208120601f850160051c810160208610156118395750805b601f850160051c820191505b8181101561185857828155600101611845565b505050505050565b815167ffffffffffffffff81111561187a5761187a61153d565b61188e816118888454611720565b84611812565b602080601f8311600181146118c357600084156118ab5750858301515b600019600386901b1c1916600185901b178555611858565b600085815260208120601f198616915b828110156118f2578886015182559484019460019091019084016118d3565b50858210156119105787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115610480576104806117a7565b600080845461194181611720565b60018281168015611959576001811461196e5761199d565b60ff198416875282151583028701945061199d565b8860005260208060002060005b858110156119945781548a82015290840190820161197b565b50505082870194505b50602f60f81b8452865192506119b98382860160208a01611402565b919092010195945050505050565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600060018201611a7057611a706117a7565b5060010190565b81810381811115610480576104806117a7565b60ff8181168382160190811115610480576104806117a7565b600081611ab257611ab26117a7565b506000190190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b0390830184611426565b9695505050505050565b600060208284031215611b1f57600080fd5b81516113fb816113c856fea264697066735822122038d797d6cf47838937f8ff5279b18ca99dff62e39cedc82945a52bab855fe39d64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000004c91c56f25d1fcad6423c4020368f8c1eda55b8e0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000742616e616e615a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044f4d4762000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a65526d4543594461457942686542647a34536f3642427157716a5937344a356156313958504b35795269370000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): BananaZ
Arg [1] : _symbol (string): OMGb
Arg [2] : _royaltiesReceiver (address): 0x4C91C56F25d1FcAd6423C4020368F8c1eDa55B8E
Arg [3] : _baseURL (string): ipfs://QmZeRmECYDaEyBheBdz4So6BBqWqjY74J5aV19XPK5yRi7
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000004c91c56f25d1fcad6423c4020368f8c1eda55b8e
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 42616e616e615a00000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4f4d476200000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [9] : 697066733a2f2f516d5a65526d4543594461457942686542647a34536f364242
Arg [10] : 7157716a5937344a356156313958504b35795269370000000000000000000000
Deployed Bytecode Sourcemap
55703:3384:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58890:194;;;;;;;;;;-1:-1:-1;58890:194:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;58890:194:0;;;;;;;;56288:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;41919:171::-;;;;;;;;;;-1:-1:-1;41919:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;41919:171:0;1533:203:1;41437:416:0;;;;;;;;;;-1:-1:-1;41437:416:0;;;;;:::i;:::-;;:::i;:::-;;57745:112;;;;;;;;;;-1:-1:-1;57745:112:0;;;;;:::i;:::-;;:::i;42619:335::-;;;;;;;;;;-1:-1:-1;42619:335:0;;;;;:::i;:::-;;:::i;56736:312::-;;;;;;;;;;-1:-1:-1;56736:312:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;2956:32:1;;;2938:51;;3020:2;3005:18;;2998:34;;;;2911:18;56736:312:0;2764:274:1;58597:285:0;;;;;;;;;;-1:-1:-1;58597:285:0;;;;;:::i;:::-;;:::i;43025:185::-;;;;;;;;;;-1:-1:-1;43025:185:0;;;;;:::i;:::-;;:::i;56636:92::-;;;;;;;;;;-1:-1:-1;56636:92:0;;;;;:::i;:::-;;:::i;40117:223::-;;;;;;;;;;-1:-1:-1;40117:223:0;;;;;:::i;:::-;;:::i;39848:207::-;;;;;;;;;;-1:-1:-1;39848:207:0;;;;;:::i;:::-;;:::i;:::-;;;4605:25:1;;;4593:2;4578:18;39848:207:0;4459:177:1;3208:103:0;;;;;;;;;;;;;:::i;2560:87::-;;;;;;;;;;-1:-1:-1;2633:6:0;;-1:-1:-1;;;;;2633:6:0;2560:87;;57864:725;;;;;;:::i;:::-;;:::i;56389:97::-;;;;;;;;;;;;;:::i;42162:155::-;;;;;;;;;;-1:-1:-1;42162:155:0;;;;;:::i;:::-;;:::i;56494:134::-;;;;;;;;;;-1:-1:-1;56494:134:0;;;;;:::i;:::-;;:::i;43281:322::-;;;;;;;;;;-1:-1:-1;43281:322:0;;;;;:::i;:::-;;:::i;55917:38::-;;;;;;;;;;;;;;;;57564:173;;;;;;;;;;-1:-1:-1;57564:173:0;;;;;:::i;:::-;;:::i;55880:30::-;;;;;;;;;;;;;;;;42388:164;;;;;;;;;;-1:-1:-1;42388:164:0;;;;;:::i;:::-;;:::i;3466:201::-;;;;;;;;;;-1:-1:-1;3466:201:0;;;;;:::i;:::-;;:::i;58890:194::-;59011:4;59040:36;59064:11;59040:23;:36::i;:::-;59033:43;58890:194;-1:-1:-1;;58890:194:0:o;56288:93::-;56335:13;56368:5;56361:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56288:93;:::o;41919:171::-;41995:7;42015:23;42030:7;42015:14;:23::i;:::-;-1:-1:-1;42058:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42058:24:0;;41919:171::o;41437:416::-;41518:13;41534:23;41549:7;41534:14;:23::i;:::-;41518:39;;41582:5;-1:-1:-1;;;;;41576:11:0;:2;-1:-1:-1;;;;;41576:11:0;;41568:57;;;;-1:-1:-1;;;41568:57:0;;6776:2:1;41568:57:0;;;6758:21:1;6815:2;6795:18;;;6788:30;6854:34;6834:18;;;6827:62;-1:-1:-1;;;6905:18:1;;;6898:31;6946:19;;41568:57:0;;;;;;;;;1136:10;-1:-1:-1;;;;;41660:21:0;;;;:62;;-1:-1:-1;41685:37:0;41702:5;1136:10;42388:164;:::i;41685:37::-;41638:173;;;;-1:-1:-1;;;41638:173:0;;7178:2:1;41638:173:0;;;7160:21:1;7217:2;7197:18;;;7190:30;7256:34;7236:18;;;7229:62;7327:31;7307:18;;;7300:59;7376:19;;41638:173:0;6976:425:1;41638:173:0;41824:21;41833:2;41837:7;41824:8;:21::i;:::-;41507:346;41437:416;;:::o;57745:112::-;57798:13;57831:18;57840:8;57831;:18::i;42619:335::-;42814:41;1136:10;42847:7;42814:18;:41::i;:::-;42806:99;;;;-1:-1:-1;;;42806:99:0;;;;;;;:::i;:::-;42918:28;42928:4;42934:2;42938:7;42918:9;:28::i;56736:312::-;56809:7;;56863:3;56899:5;56809:7;56899:5;56942:28;56863:3;56942:10;:28;:::i;:::-;56941:44;;;;:::i;:::-;57004:18;;-1:-1:-1;;;;;57004:18:0;;56915:70;;-1:-1:-1;56736:312:0;-1:-1:-1;;;;;;56736:312:0:o;58597:285::-;2446:13;:11;:13::i;:::-;58684:21:::1;58719:10:::0;;58716:159:::1;;58819:12;::::0;;58745:10:::1;58819:12:::0;;;::::1;::::0;::::1;::::0;;;;58758:4;;58745:10;;-1:-1:-1;;;;;58796:7:0;::::1;::::0;58811:6;;58796:36:::1;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58777:55;;;58855:7;58847:16;;;::::0;::::1;;58730:145;;58716:159;58655:227;58597:285:::0;:::o;43025:185::-;43163:39;43180:4;43186:2;43190:7;43163:39;;;;;;;;;;;;:16;:39::i;56636:92::-;2446:13;:11;:13::i;:::-;56705:8:::1;:15;56716:4:::0;56705:8;:15:::1;:::i;40117:223::-:0;40189:7;45004:16;;;:7;:16;;;;;;-1:-1:-1;;;;;45004:16:0;;40253:56;;;;-1:-1:-1;;;40253:56:0;;11045:2:1;40253:56:0;;;11027:21:1;11084:2;11064:18;;;11057:30;-1:-1:-1;;;11103:18:1;;;11096:54;11167:18;;40253:56:0;10843:348:1;39848:207:0;39920:7;-1:-1:-1;;;;;39948:19:0;;39940:73;;;;-1:-1:-1;;;39940:73:0;;11398:2:1;39940:73:0;;;11380:21:1;11437:2;11417:18;;;11410:30;11476:34;11456:18;;;11449:62;-1:-1:-1;;;11527:18:1;;;11520:39;11576:19;;39940:73:0;11196:405:1;39940:73:0;-1:-1:-1;;;;;;40031:16:0;;;;;:9;:16;;;;;;;39848:207::o;3208:103::-;2446:13;:11;:13::i;:::-;3273:30:::1;3300:1;3273:18;:30::i;:::-;3208:103::o:0;57864:725::-;57937:6;57947:1;57937:11;57934:68;;57964:26;;-1:-1:-1;;;57964:26:0;;11808:2:1;57964:26:0;;;11790:21:1;11847:2;11827:18;;;11820:30;-1:-1:-1;;;11866:18:1;;;11859:45;11921:18;;57964:26:0;11606:339:1;57934:68:0;2633:6;;-1:-1:-1;;;;;2633:6:0;58025:10;:21;58022:267;;58087:12;;58078:21;;:6;:21;:::i;:::-;58065:9;:34;58062:103;;58119:30;;-1:-1:-1;;;58119:30:0;;12152:2:1;58119:30:0;;;12134:21:1;12191:2;12171:18;;;12164:30;-1:-1:-1;;;12210:18:1;;;12203:50;12270:18;;58119:30:0;11950:344:1;58062:103:0;58208:9;;58198:6;58183:12;;:21;;;;:::i;:::-;58182:35;58179:99;;;58237:25;;-1:-1:-1;;;58237:25:0;;12631:2:1;58237:25:0;;;12613:21:1;12670:2;12650:18;;;12643:30;-1:-1:-1;;;12689:18:1;;;12682:44;12743:18;;58237:25:0;12429:338:1;58179:99:0;58301:14;58318:12;;58333:1;58318:16;;;;:::i;:::-;58301:33;;58349:9;58345:233;58364:6;58360:1;:10;58345:233;;;58387:15;58405:10;58414:1;58405:6;:10;:::i;:::-;58387:28;;58430:24;58440:4;58446:7;58430:9;:24::i;:::-;-1:-1:-1;58535:12:0;;;58498:3;58535:16;;;58520:31;;;58498:3;58345:233;;56389:97;56438:13;56471:7;56464:14;;;;;:::i;42162:155::-;42257:52;1136:10;42290:8;42300;42257:18;:52::i;56494:134::-;2446:13;:11;:13::i;:::-;56581:18:::1;:39:::0;;-1:-1:-1;;;;;;56581:39:0::1;-1:-1:-1::0;;;;;56581:39:0;;;::::1;::::0;;;::::1;::::0;;56494:134::o;43281:322::-;43455:41;1136:10;43488:7;43455:18;:41::i;:::-;43447:99;;;;-1:-1:-1;;;43447:99:0;;;;;;;:::i;:::-;43557:38;43571:4;43577:2;43581:7;43590:4;43557:13;:38::i;57564:173::-;57640:13;57696:8;57709:18;57718:8;57709;:18::i;:::-;57679:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57665:64;;57564:173;;;:::o;42388:164::-;-1:-1:-1;;;;;42509:25:0;;;42485:4;42509:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;42388:164::o;3466:201::-;2446:13;:11;:13::i;:::-;-1:-1:-1;;;;;3555:22:0;::::1;3547:73;;;::::0;-1:-1:-1;;;3547:73:0;;14143:2:1;3547:73:0::1;::::0;::::1;14125:21:1::0;14182:2;14162:18;;;14155:30;14221:34;14201:18;;;14194:62;-1:-1:-1;;;14272:18:1;;;14265:36;14318:19;;3547:73:0::1;13941:402:1::0;3547:73:0::1;3631:28;3650:8;3631:18;:28::i;:::-;3466:201:::0;:::o;39479:305::-;39581:4;-1:-1:-1;;;;;;39618:40:0;;-1:-1:-1;;;39618:40:0;;:105;;-1:-1:-1;;;;;;;39675:48:0;;-1:-1:-1;;;39675:48:0;39618:105;:158;;;-1:-1:-1;;;;;;;;;;22651:40:0;;;39740:36;22542:157;51738:135;45406:4;45004:16;;;:7;:16;;;;;;-1:-1:-1;;;;;45004:16:0;51812:53;;;;-1:-1:-1;;;51812:53:0;;11045:2:1;51812:53:0;;;11027:21:1;11084:2;11064:18;;;11057:30;-1:-1:-1;;;11103:18:1;;;11096:54;11167:18;;51812:53:0;10843:348:1;51017:174:0;51092:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;51092:29:0;-1:-1:-1;;;;;51092:29:0;;;;;;;;:24;;51146:23;51092:24;51146:14;:23::i;:::-;-1:-1:-1;;;;;51137:46:0;;;;;;;;;;;51017:174;;:::o;45636:264::-;45729:4;45746:13;45762:23;45777:7;45762:14;:23::i;:::-;45746:39;;45815:5;-1:-1:-1;;;;;45804:16:0;:7;-1:-1:-1;;;;;45804:16:0;;:52;;;;45824:32;45841:5;45848:7;45824:16;:32::i;:::-;45804:87;;;;45884:7;-1:-1:-1;;;;;45860:31:0;:20;45872:7;45860:11;:20::i;:::-;-1:-1:-1;;;;;45860:31:0;;45804:87;45796:96;45636:264;-1:-1:-1;;;;45636:264:0:o;49635:1263::-;49794:4;-1:-1:-1;;;;;49767:31:0;:23;49782:7;49767:14;:23::i;:::-;-1:-1:-1;;;;;49767:31:0;;49759:81;;;;-1:-1:-1;;;49759:81:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49859:16:0;;49851:65;;;;-1:-1:-1;;;49851:65:0;;14956:2:1;49851:65:0;;;14938:21:1;14995:2;14975:18;;;14968:30;15034:34;15014:18;;;15007:62;-1:-1:-1;;;15085:18:1;;;15078:34;15129:19;;49851:65:0;14754:400:1;49851:65:0;49929:42;49950:4;49956:2;49960:7;49969:1;49929:20;:42::i;:::-;50101:4;-1:-1:-1;;;;;50074:31:0;:23;50089:7;50074:14;:23::i;:::-;-1:-1:-1;;;;;50074:31:0;;50066:81;;;;-1:-1:-1;;;50066:81:0;;;;;;;:::i;:::-;50219:24;;;;:15;:24;;;;;;;;50212:31;;-1:-1:-1;;;;;;50212:31:0;;;;;;-1:-1:-1;;;;;50695:15:0;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;50695:20:0;;;50730:13;;;;;;;;;:18;;50212:31;50730:18;;;50770:16;;;:7;:16;;;;;;:21;;;;;;;;;;50809:27;;50235:7;;50809:27;;;50849:41;50869:4;50875:2;50879:7;50888:1;50849:19;:41::i;2725:132::-;2633:6;;-1:-1:-1;;;;;2633:6:0;1136:10;2789:23;2781:68;;;;-1:-1:-1;;;2781:68:0;;15361:2:1;2781:68:0;;;15343:21:1;;;15380:18;;;15373:30;15439:34;15419:18;;;15412:62;15491:18;;2781:68:0;15159:356:1;3827:191:0;3920:6;;;-1:-1:-1;;;;;3937:17:0;;;-1:-1:-1;;;;;;3937:17:0;;;;;;;3970:40;;3920:6;;;3937:17;3920:6;;3970:40;;3901:16;;3970:40;3890:128;3827:191;:::o;46242:110::-;46318:26;46328:2;46332:7;46318:26;;;;;;;;;;;;:9;:26::i;51334:315::-;51489:8;-1:-1:-1;;;;;51480:17:0;:5;-1:-1:-1;;;;;51480:17:0;;51472:55;;;;-1:-1:-1;;;51472:55:0;;15722:2:1;51472:55:0;;;15704:21:1;15761:2;15741:18;;;15734:30;15800:27;15780:18;;;15773:55;15845:18;;51472:55:0;15520:349:1;51472:55:0;-1:-1:-1;;;;;51538:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;51538:46:0;;;;;;;;;;51600:41;;540::1;;;51600::0;;513:18:1;51600:41:0;;;;;;;51334:315;;;:::o;44484:313::-;44640:28;44650:4;44656:2;44660:7;44640:9;:28::i;:::-;44687:47;44710:4;44716:2;44720:7;44729:4;44687:22;:47::i;:::-;44679:110;;;;-1:-1:-1;;;44679:110:0;;;;;;;:::i;57058:498::-;57111:13;57141:2;57147:1;57141:7;57137:50;;-1:-1:-1;;57165:10:0;;;;;;;;;;;;-1:-1:-1;;;57165:10:0;;;;;57058:498::o;57137:50::-;57211:2;57199:9;57246:69;57253:6;;57246:69;;57276:5;;;;:::i;:::-;;-1:-1:-1;57296:7:0;;-1:-1:-1;57301:2:0;57296:7;;:::i;:::-;;;57246:69;;;57327:17;57357:3;57347:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57347:14:0;-1:-1:-1;57327:34:0;-1:-1:-1;57384:3:0;57398:119;57405:7;;57398:119;;57466:7;57471:2;57466;:7;:::i;:::-;57465:14;;57477:2;57465:14;:::i;:::-;57460:19;;:2;:19;:::i;:::-;57449:31;;:2;:31;:::i;:::-;57441:41;;57429:4;57434:3;;;:::i;:::-;;;;57429:9;;;;;;;;:::i;:::-;;;;:53;-1:-1:-1;;;;;57429:53:0;;;;;;;;-1:-1:-1;57497:8:0;57503:2;57497:8;;:::i;:::-;;;57398:119;;;-1:-1:-1;57543:4:0;57058:498;-1:-1:-1;;;;57058:498:0:o;46579:319::-;46708:18;46714:2;46718:7;46708:5;:18::i;:::-;46759:53;46790:1;46794:2;46798:7;46807:4;46759:22;:53::i;:::-;46737:153;;;;-1:-1:-1;;;46737:153:0;;;;;;;:::i;52437:853::-;52591:4;-1:-1:-1;;;;;52612:13:0;;13722:19;:23;52608:675;;52648:71;;-1:-1:-1;;;52648:71:0;;-1:-1:-1;;;;;52648:36:0;;;;;:71;;1136:10;;52699:4;;52705:7;;52714:4;;52648:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52648:71:0;;;;;;;;-1:-1:-1;;52648:71:0;;;;;;;;;;;;:::i;:::-;;;52644:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52889:6;:13;52906:1;52889:18;52885:328;;52932:60;;-1:-1:-1;;;52932:60:0;;;;;;;:::i;52885:328::-;53163:6;53157:13;53148:6;53144:2;53140:15;53133:38;52644:584;-1:-1:-1;;;;;;52770:51:0;-1:-1:-1;;;52770:51:0;;-1:-1:-1;52763:58:0;;52608:675;-1:-1:-1;53267:4:0;52437:853;;;;;;:::o;47234:942::-;-1:-1:-1;;;;;47314:16:0;;47306:61;;;;-1:-1:-1;;;47306:61:0;;17942:2:1;47306:61:0;;;17924:21:1;;;17961:18;;;17954:30;18020:34;18000:18;;;17993:62;18072:18;;47306:61:0;17740:356:1;47306:61:0;45406:4;45004:16;;;:7;:16;;;;;;-1:-1:-1;;;;;45004:16:0;45430:31;47378:58;;;;-1:-1:-1;;;47378:58:0;;18303:2:1;47378:58:0;;;18285:21:1;18342:2;18322:18;;;18315:30;18381;18361:18;;;18354:58;18429:18;;47378:58:0;18101:352:1;47378:58:0;47449:48;47478:1;47482:2;47486:7;47495:1;47449:20;:48::i;:::-;45406:4;45004:16;;;:7;:16;;;;;;-1:-1:-1;;;;;45004:16:0;45430:31;47587:58;;;;-1:-1:-1;;;47587:58:0;;18303:2:1;47587:58:0;;;18285:21:1;18342:2;18322:18;;;18315:30;18381;18361:18;;;18354:58;18429:18;;47587:58:0;18101:352:1;47587:58:0;-1:-1:-1;;;;;47994:13:0;;;;;;:9;:13;;;;;;;;:18;;48011:1;47994:18;;;48036:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;48036:21:0;;;;;48075:33;48044:7;;47994:13;;48075:33;;47994:13;;48075:33;48121:47;48149:1;48153:2;48157:7;48166:1;48121:19;:47::i;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2178:328::-;2255:6;2263;2271;2324:2;2312:9;2303:7;2299:23;2295:32;2292:52;;;2340:1;2337;2330:12;2292:52;2363:29;2382:9;2363:29;:::i;:::-;2353:39;;2411:38;2445:2;2434:9;2430:18;2411:38;:::i;:::-;2401:48;;2496:2;2485:9;2481:18;2468:32;2458:42;;2178:328;;;;;:::o;2511:248::-;2579:6;2587;2640:2;2628:9;2619:7;2615:23;2611:32;2608:52;;;2656:1;2653;2646:12;2608:52;-1:-1:-1;;2679:23:1;;;2749:2;2734:18;;;2721:32;;-1:-1:-1;2511:248:1:o;3043:186::-;3102:6;3155:2;3143:9;3134:7;3130:23;3126:32;3123:52;;;3171:1;3168;3161:12;3123:52;3194:29;3213:9;3194:29;:::i;3234:127::-;3295:10;3290:3;3286:20;3283:1;3276:31;3326:4;3323:1;3316:15;3350:4;3347:1;3340:15;3366:632;3431:5;3461:18;3502:2;3494:6;3491:14;3488:40;;;3508:18;;:::i;:::-;3583:2;3577:9;3551:2;3637:15;;-1:-1:-1;;3633:24:1;;;3659:2;3629:33;3625:42;3613:55;;;3683:18;;;3703:22;;;3680:46;3677:72;;;3729:18;;:::i;:::-;3769:10;3765:2;3758:22;3798:6;3789:15;;3828:6;3820;3813:22;3868:3;3859:6;3854:3;3850:16;3847:25;3844:45;;;3885:1;3882;3875:12;3844:45;3935:6;3930:3;3923:4;3915:6;3911:17;3898:44;3990:1;3983:4;3974:6;3966;3962:19;3958:30;3951:41;;;;3366:632;;;;;:::o;4003:451::-;4072:6;4125:2;4113:9;4104:7;4100:23;4096:32;4093:52;;;4141:1;4138;4131:12;4093:52;4181:9;4168:23;4214:18;4206:6;4203:30;4200:50;;;4246:1;4243;4236:12;4200:50;4269:22;;4322:4;4314:13;;4310:27;-1:-1:-1;4300:55:1;;4351:1;4348;4341:12;4300:55;4374:74;4440:7;4435:2;4422:16;4417:2;4413;4409:11;4374:74;:::i;4641:254::-;4709:6;4717;4770:2;4758:9;4749:7;4745:23;4741:32;4738:52;;;4786:1;4783;4776:12;4738:52;4822:9;4809:23;4799:33;;4851:38;4885:2;4874:9;4870:18;4851:38;:::i;:::-;4841:48;;4641:254;;;;;:::o;4900:347::-;4965:6;4973;5026:2;5014:9;5005:7;5001:23;4997:32;4994:52;;;5042:1;5039;5032:12;4994:52;5065:29;5084:9;5065:29;:::i;:::-;5055:39;;5144:2;5133:9;5129:18;5116:32;5191:5;5184:13;5177:21;5170:5;5167:32;5157:60;;5213:1;5210;5203:12;5157:60;5236:5;5226:15;;;4900:347;;;;;:::o;5252:667::-;5347:6;5355;5363;5371;5424:3;5412:9;5403:7;5399:23;5395:33;5392:53;;;5441:1;5438;5431:12;5392:53;5464:29;5483:9;5464:29;:::i;:::-;5454:39;;5512:38;5546:2;5535:9;5531:18;5512:38;:::i;:::-;5502:48;;5597:2;5586:9;5582:18;5569:32;5559:42;;5652:2;5641:9;5637:18;5624:32;5679:18;5671:6;5668:30;5665:50;;;5711:1;5708;5701:12;5665:50;5734:22;;5787:4;5779:13;;5775:27;-1:-1:-1;5765:55:1;;5816:1;5813;5806:12;5765:55;5839:74;5905:7;5900:2;5887:16;5882:2;5878;5874:11;5839:74;:::i;:::-;5829:84;;;5252:667;;;;;;;:::o;5924:260::-;5992:6;6000;6053:2;6041:9;6032:7;6028:23;6024:32;6021:52;;;6069:1;6066;6059:12;6021:52;6092:29;6111:9;6092:29;:::i;:::-;6082:39;;6140:38;6174:2;6163:9;6159:18;6140:38;:::i;6189:380::-;6268:1;6264:12;;;;6311;;;6332:61;;6386:4;6378:6;6374:17;6364:27;;6332:61;6439:2;6431:6;6428:14;6408:18;6405:38;6402:161;;6485:10;6480:3;6476:20;6473:1;6466:31;6520:4;6517:1;6510:15;6548:4;6545:1;6538:15;6402:161;;6189:380;;;:::o;7406:409::-;7608:2;7590:21;;;7647:2;7627:18;;;7620:30;7686:34;7681:2;7666:18;;7659:62;-1:-1:-1;;;7752:2:1;7737:18;;7730:43;7805:3;7790:19;;7406:409::o;7820:127::-;7881:10;7876:3;7872:20;7869:1;7862:31;7912:4;7909:1;7902:15;7936:4;7933:1;7926:15;7952:168;8025:9;;;8056;;8073:15;;;8067:22;;8053:37;8043:71;;8094:18;;:::i;8125:217::-;8165:1;8191;8181:132;;8235:10;8230:3;8226:20;8223:1;8216:31;8270:4;8267:1;8260:15;8298:4;8295:1;8288:15;8181:132;-1:-1:-1;8327:9:1;;8125:217::o;8347:287::-;8476:3;8514:6;8508:13;8530:66;8589:6;8584:3;8577:4;8569:6;8565:17;8530:66;:::i;:::-;8612:16;;;;;8347:287;-1:-1:-1;;8347:287:1:o;8765:545::-;8867:2;8862:3;8859:11;8856:448;;;8903:1;8928:5;8924:2;8917:17;8973:4;8969:2;8959:19;9043:2;9031:10;9027:19;9024:1;9020:27;9014:4;9010:38;9079:4;9067:10;9064:20;9061:47;;;-1:-1:-1;9102:4:1;9061:47;9157:2;9152:3;9148:12;9145:1;9141:20;9135:4;9131:31;9121:41;;9212:82;9230:2;9223:5;9220:13;9212:82;;;9275:17;;;9256:1;9245:13;9212:82;;;9216:3;;;8765:545;;;:::o;9486:1352::-;9612:3;9606:10;9639:18;9631:6;9628:30;9625:56;;;9661:18;;:::i;:::-;9690:97;9780:6;9740:38;9772:4;9766:11;9740:38;:::i;:::-;9734:4;9690:97;:::i;:::-;9842:4;;9906:2;9895:14;;9923:1;9918:663;;;;10625:1;10642:6;10639:89;;;-1:-1:-1;10694:19:1;;;10688:26;10639:89;-1:-1:-1;;9443:1:1;9439:11;;;9435:24;9431:29;9421:40;9467:1;9463:11;;;9418:57;10741:81;;9888:944;;9918:663;8712:1;8705:14;;;8749:4;8736:18;;-1:-1:-1;;9954:20:1;;;10072:236;10086:7;10083:1;10080:14;10072:236;;;10175:19;;;10169:26;10154:42;;10267:27;;;;10235:1;10223:14;;;;10102:19;;10072:236;;;10076:3;10336:6;10327:7;10324:19;10321:201;;;10397:19;;;10391:26;-1:-1:-1;;10480:1:1;10476:14;;;10492:3;10472:24;10468:37;10464:42;10449:58;10434:74;;10321:201;-1:-1:-1;;;;;10568:1:1;10552:14;;;10548:22;10535:36;;-1:-1:-1;9486:1352:1:o;12299:125::-;12364:9;;;12385:10;;;12382:36;;;12398:18;;:::i;12772:1164::-;13049:3;13078:1;13111:6;13105:13;13141:36;13167:9;13141:36;:::i;:::-;13196:1;13213:18;;;13240:133;;;;13387:1;13382:356;;;;13206:532;;13240:133;-1:-1:-1;;13273:24:1;;13261:37;;13346:14;;13339:22;13327:35;;13318:45;;;-1:-1:-1;13240:133:1;;13382:356;13413:6;13410:1;13403:17;13443:4;13488:2;13485:1;13475:16;13513:1;13527:165;13541:6;13538:1;13535:13;13527:165;;;13619:14;;13606:11;;;13599:35;13662:16;;;;13556:10;;13527:165;;;13531:3;;;13721:6;13716:3;13712:16;13705:23;;13206:532;;-1:-1:-1;;;13754:3:1;13747:16;13794:6;13788:13;13772:29;;13810:77;13878:8;13873:2;13868:3;13864:12;13857:4;13849:6;13845:17;13810:77;:::i;:::-;13907:18;;;;13903:27;;;-1:-1:-1;;;;;12772:1164:1:o;14348:401::-;14550:2;14532:21;;;14589:2;14569:18;;;14562:30;14628:34;14623:2;14608:18;;14601:62;-1:-1:-1;;;14694:2:1;14679:18;;14672:35;14739:3;14724:19;;14348:401::o;15874:414::-;16076:2;16058:21;;;16115:2;16095:18;;;16088:30;16154:34;16149:2;16134:18;;16127:62;-1:-1:-1;;;16220:2:1;16205:18;;16198:48;16278:3;16263:19;;15874:414::o;16293:135::-;16332:3;16353:17;;;16350:43;;16373:18;;:::i;:::-;-1:-1:-1;16420:1:1;16409:13;;16293:135::o;16433:128::-;16500:9;;;16521:11;;;16518:37;;;16535:18;;:::i;16566:148::-;16654:4;16633:12;;;16647;;;16629:31;;16672:13;;16669:39;;;16688:18;;:::i;16719:136::-;16758:3;16786:5;16776:39;;16795:18;;:::i;:::-;-1:-1:-1;;;16831:18:1;;16719:136::o;16860:127::-;16921:10;16916:3;16912:20;16909:1;16902:31;16952:4;16949:1;16942:15;16976:4;16973:1;16966:15;16992:489;-1:-1:-1;;;;;17261:15:1;;;17243:34;;17313:15;;17308:2;17293:18;;17286:43;17360:2;17345:18;;17338:34;;;17408:3;17403:2;17388:18;;17381:31;;;17186:4;;17429:46;;17455:19;;17447:6;17429:46;:::i;:::-;17421:54;16992:489;-1:-1:-1;;;;;;16992:489:1:o;17486:249::-;17555:6;17608:2;17596:9;17587:7;17583:23;17579:32;17576:52;;;17624:1;17621;17614:12;17576:52;17656:9;17650:16;17675:30;17699:5;17675:30;:::i
Swarm Source
ipfs://38d797d6cf47838937f8ff5279b18ca99dff62e39cedc82945a52bab855fe39d
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.