Token Mystic Pepper
Overview ERC-721
Total Supply:
6,995 Mystic Pepper
Holders:
478 addresses
Transfers:
-
Contract:
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PolygonPepper
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract PolygonPepper is ERC721Enumerable, ERC721Burnable, ERC721Pausable, Ownable { using Strings for uint256; IERC20 public currencyContract; uint256 public constant MAX_PEPPERS = 10000; uint256 public constant MAX_PURCHASES_PER_TRANSACTION = 50; bool public isSaleActive = false; uint256 public price = 150000000000000000; uint256 public supplyIndex = 6626; string internal _baseTokenURI; mapping(address => bool) public minters; event AddMinter(address minter); event RevokeMinter(address minter); constructor(string memory _baseURIInput, IERC20 _address) ERC721("Mystic Pepper", "Mystic Pepper") { addMinter(msg.sender); updateBaseURI(_baseURIInput); currencyContract = _address; } modifier saleHasNotEnded() { require(supplyIndex < MAX_PEPPERS, "PEPPER::SALE_HAS_ENDED"); _; } modifier onlyMinters() { require(minters[msg.sender], "PEPPER::ONLY_MINTER_CAN_MINT"); _; } function _validateSaleProgress( address _buyerAddress, uint256 _qty, address _ownerAddress, uint256 _supplyIndex, bool _isSaleActive ) internal pure { if (_buyerAddress != _ownerAddress) { require(_isSaleActive, "PEPPER::SALE_IS_NOT_ACTIVE"); } require(_supplyIndex < MAX_PEPPERS, "PEPPER::SALE_HAS_ENDED"); require( SafeMath.add(_supplyIndex, _qty) <= MAX_PEPPERS, "PEPPER::EXCEED_TOTAL_PEPPER_SUPPLY" ); require( _qty <= MAX_PURCHASES_PER_TRANSACTION, "PEPPER::EXCEED_MAX_PURCHASES" ); } function _validateMint( address _buyerAddress, address _contractAddress, uint256 _mintingCost ) internal view { require(_contractAddress != address(0), "PEPPER::INVALID_BENEFICIARY"); require(_mintingCost > 0, "PEPPER::INVALID_MINTING_COST"); uint256 allowanceForContract = currencyContract.allowance( _buyerAddress, _contractAddress ); require( allowanceForContract >= _mintingCost, "PEPPER::INSUFFICIENT_ALLOWANCE" ); } function mintPeppers(uint256 qty) public saleHasNotEnded { // Prevalidate current sales progress _validateSaleProgress( msg.sender, qty, owner(), supplyIndex, isSaleActive ); // Validate the mint price uint256 mintingCost = _calculatePrice(price, qty); _validateMint(msg.sender, address(this), mintingCost); // Transfer currency tokens require( currencyContract.transferFrom( msg.sender, address(this), mintingCost ), "PEPPER::CURRENCY_TOKEN_TRANSFER_ERROR" ); // Mint for (uint256 i = 0; i < qty; i++) { _safeMint(msg.sender, supplyIndex); supplyIndex = supplyIndex + 1; } } function _calculatePrice(uint256 _price, uint256 _qty) internal pure returns (uint256) { return _price * _qty; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string( abi.encodePacked(baseURI, "/", tokenId.toString(), ".json") ) : ""; } // Get list pepper token of an address function tokensOf(address _owner) public view returns (uint256[] memory) { uint256 totalToken = balanceOf(_owner); uint256[] memory result = new uint256[](totalToken); if (totalToken == 0) { return result; } else { uint256 resIndex = 0; for (uint256 i = 0; i < totalToken; i++) { result[resIndex] = tokenOfOwnerByIndex(_owner, i); resIndex++; } return result; } } function exists(uint256 tokenId) external view returns (bool) { return _exists(tokenId); } function batchExists(uint256[] calldata tokenIds) external view returns (bool[] memory) { bool[] memory existedTokens = new bool[](tokenIds.length); for (uint256 i = 0; i < tokenIds.length; i++) { uint256 tokenId = tokenIds[i]; existedTokens[i] = _exists(tokenId); } return existedTokens; } function allExists() external view returns (bool[10000] memory) { bool[10000] memory existedTokens; for (uint256 i = 0; i < 10000; i++) { existedTokens[i] = _exists(i); } return existedTokens; } /* ------------------- onlyMinters functions --------------------------------- */ function directMint(address to, uint256[] calldata tokenIds) public onlyMinters { require( tokenIds.length <= MAX_PURCHASES_PER_TRANSACTION, "PEPPER::EXCEED_MAX_DIRECT_MINT" ); for (uint256 i = 0; i < tokenIds.length; i++) { uint256 tokenId = tokenIds[i]; require( tokenId < supplyIndex, "PEPPER::ONLY_PAST_TOKENS_CAN_BE_MINTED" ); if (!_exists(tokenId)) { _safeMint(to, tokenId); } } } /* ---------------------------------- onlyOwner functions ---------------------------------- */ function getBaseURI() public view onlyOwner returns (string memory) { return _baseURI(); } function updateCurrencyContract(IERC20 _address) public onlyOwner { currencyContract = _address; } /** * Update tokenURI through baseURI. * This function will be called when setting the initial tokenURI and when revealing the Peppers */ function updateBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } function updatePrice(uint256 newPrice) external onlyOwner { price = newPrice; } function setSupplyIndex(uint256 _index) external onlyOwner { supplyIndex = _index; } function setSaleActive(bool isActive) external onlyOwner { isSaleActive = isActive; } function withdrawAll() public onlyOwner { require(msg.sender != address(0), "PEPPER::INVALID_WITHDRAWAL_ADDRESS"); uint256 currencyBalance = currencyContract.balanceOf(address(this)); require(currencyBalance > 0, "PEPPER::INVALID_WITHDRAWAL_AMOUNT"); require(currencyContract.transfer(msg.sender, currencyBalance)); } /** * @notice Only minters can mint tokens * @dev Add new minter role - able to mint token */ function addMinter(address _minter) public onlyOwner { minters[_minter] = true; emit AddMinter(_minter); } /** * @notice Only minters can mint tokens * @dev Revoke minter role - unable to mint token */ function revokeMinter(address _minter) public onlyOwner { minters[_minter] = false; emit RevokeMinter(_minter); } function pause() public virtual onlyOwner { _pause(); } function unpause() public virtual onlyOwner { _unpause(); } /** --------------------- Override functions ---------------------- */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal override(ERC721, ERC721Enumerable, ERC721Pausable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } /* ----------------------- utils functions ------------------------ */ function checkIsMinter(address _minter) public view returns (bool) { return minters[_minter]; } function checkApprovedOrOwner(address spender, uint256 tokenId) external view returns (bool) { return super._isApprovedOrOwner(spender, tokenId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "../../../utils/Context.sol"; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "../../../security/Pausable.sol"; /** * @dev ERC721 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. */ abstract contract ERC721Pausable is ERC721, Pausable { /** * @dev See {ERC721-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); require(!paused(), "ERC721Pausable: token transfer while paused"); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @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] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); 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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); 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 overriden 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 owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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: transfer caller is not owner nor 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: transfer caller is not owner nor 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 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 _owners[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) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, 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); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @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 { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, 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 be 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: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; }
// SPDX-License-Identifier: MIT 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 `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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 functionCall(target, data, "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"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(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) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(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) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason 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 { // 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT 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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT 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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_baseURIInput","type":"string"},{"internalType":"contract IERC20","name":"_address","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"}],"name":"AddMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"}],"name":"RevokeMinter","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_PEPPERS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PURCHASES_PER_TRANSACTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allExists","outputs":[{"internalType":"bool[10000]","name":"","type":"bool[10000]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"batchExists","outputs":[{"internalType":"bool[]","name":"","type":"bool[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"checkApprovedOrOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"checkIsMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currencyContract","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"directMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mintPeppers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"revokeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isActive","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_index","type":"uint256"}],"name":"setSupplyIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_owner","type":"address"}],"name":"tokensOf","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_address","type":"address"}],"name":"updateCurrencyContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600b805460ff60a01b19169055670214e8348c4f0000600c556119e2600d553480156200003057600080fd5b50604051620037fc380380620037fc833981016040819052620000539162000352565b604080518082018252600d8082526c26bcb9ba34b1902832b83832b960991b6020808401828152855180870190965292855284015281519192916200009b916000916200028f565b508051620000b19060019060208401906200028f565b5050600a805460ff1916905550620000d2620000cc6200010f565b62000113565b620000dd336200016d565b620000e8826200021c565b600b80546001600160a01b0319166001600160a01b039290921691909117905550620004d2565b3390565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001776200010f565b6001600160a01b03166200018a6200027b565b6001600160a01b031614620001bc5760405162461bcd60e51b8152600401620001b3906200044a565b60405180910390fd5b6001600160a01b0381166000908152600f602052604090819020805460ff19166001179055517f16baa937b08d58713325f93ac58b8a9369a4359bbefb4957d6d9b402735722ab906200021190839062000436565b60405180910390a150565b620002266200010f565b6001600160a01b0316620002396200027b565b6001600160a01b031614620002625760405162461bcd60e51b8152600401620001b3906200044a565b80516200027790600e9060208401906200028f565b5050565b600a5461010090046001600160a01b031690565b8280546200029d906200047f565b90600052602060002090601f016020900481019282620002c157600085556200030c565b82601f10620002dc57805160ff19168380011785556200030c565b828001600101855582156200030c579182015b828111156200030c578251825591602001919060010190620002ef565b506200031a9291506200031e565b5090565b5b808211156200031a57600081556001016200031f565b80516001600160a01b03811681146200034d57600080fd5b919050565b6000806040838503121562000365578182fd5b82516001600160401b03808211156200037c578384fd5b818501915085601f83011262000390578384fd5b815181811115620003a557620003a5620004bc565b6040516020601f8301601f1916820181018481118382101715620003cd57620003cd620004bc565b6040528282528483018101891015620003e4578687fd5b8693505b82841015620004075784840181015182850182015292830192620003e8565b828411156200041857868184840101525b8196506200042881890162000335565b955050505050509250929050565b6001600160a01b0391909116815260200190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200049457607f821691505b60208210811415620004b657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61331a80620004e26000396000f3fe608060405234801561001057600080fd5b50600436106102955760003560e01c80638456cb5911610167578063b95812f4116100ce578063db8bd09011610087578063db8bd09014610541578063e985e9c514610556578063f101992814610569578063f2fde38b14610589578063f46eccc41461059c578063fae176a8146105af57610295565b8063b95812f4146104e5578063c3dabff7146104ed578063c87b56dd14610500578063cfbd488514610513578063d2ad002e14610526578063dafb5ac01461052e57610295565b806395d89b411161012057806395d89b4114610494578063983b2d561461049c57806398f1bc12146104af578063a035b1fe146104b7578063a22cb465146104bf578063b88d4fde146104d257610295565b80638456cb5914610443578063853828b61461044b5780638d6cc56d146104535780638da5cb5b146104665780639204b0561461046e578063931688cb1461048157610295565b806342966c681161020b5780636352211e116101c45780636352211e146103e757806370a08231146103fa578063714c53981461040d578063715018a6146104155780637e2a02901461041d578063841718a61461043057610295565b806342966c681461037e5780634f558e79146103915780634f6ccce7146103a4578063564566a8146103b75780635a3f2672146103bf5780635c975abb146103df57610295565b806318160ddd1161025d57806318160ddd1461032257806323b872dd1461032a5780632f745c591461033d57806333361601146103505780633f4ba83a1461036357806342842e0e1461036b57610295565b806301ffc9a71461029a57806306fdde03146102c3578063081812fc146102d8578063095ea7b3146102f857806312fa81f31461030d575b600080fd5b6102ad6102a83660046125d5565b6105c2565b6040516102ba9190612859565b60405180910390f35b6102cb6105d5565b6040516102ba9190612864565b6102eb6102e6366004612653565b610667565b6040516102ba91906126fd565b61030b610306366004612532565b6106b3565b005b61031561074b565b6040516102ba9190613168565b610315610750565b61030b6103383660046123f5565b610756565b61031561034b366004612532565b61078e565b61030b61035e366004612653565b6107e0565b61030b610824565b61030b6103793660046123f5565b61086d565b61030b61038c366004612653565b610888565b6102ad61039f366004612653565b6108bb565b6103156103b2366004612653565b6108c6565b6102ad610921565b6103d26103cd3660046123a1565b610931565b6040516102ba9190612821565b6102ad610a10565b6102eb6103f5366004612653565b610a19565b6103156104083660046123a1565b610a4e565b6102cb610a92565b61030b610ae0565b6102ad61042b366004612532565b610b29565b61030b61043e36600461259d565b610b3c565b61030b610b99565b61030b610be0565b61030b610461366004612653565b610d6c565b6102eb610db0565b61030b61047c3660046123a1565b610dc4565b61030b61048f36600461260d565b610e25565b6102cb610e7b565b61030b6104aa3660046123a1565b610e8a565b610315610f27565b610315610f2d565b61030b6104cd366004612505565b610f33565b61030b6104e0366004612435565b611001565b6102eb611040565b61030b6104fb3660046124b2565b61104f565b6102cb61050e366004612653565b611120565b61030b6105213660046123a1565b6111a2565b610315611231565b6102ad61053c3660046123a1565b611237565b610549611255565b6040516102ba91906127a5565b6102ad6105643660046123bd565b6112be565b61057c61057736600461255d565b6112ec565b6040516102ba91906127db565b61030b6105973660046123a1565b6113cd565b6102ad6105aa3660046123a1565b61143b565b61030b6105bd366004612653565b611450565b60006105cd8261158c565b90505b919050565b6060600080546105e4906131ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610610906131ff565b801561065d5780601f106106325761010080835404028352916020019161065d565b820191906000526020600020905b81548152906001019060200180831161064057829003601f168201915b5050505050905090565b6000610672826115b1565b6106975760405162461bcd60e51b815260040161068e90612df5565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106be82610a19565b9050806001600160a01b0316836001600160a01b031614156106f25760405162461bcd60e51b815260040161068e90612f45565b806001600160a01b03166107046115ce565b6001600160a01b031614806107205750610720816105646115ce565b61073c5760405162461bcd60e51b815260040161068e90612c99565b61074683836115d2565b505050565b603281565b60085490565b6107676107616115ce565b82611640565b6107835760405162461bcd60e51b815260040161068e90612fff565b6107468383836116c5565b600061079983610a4e565b82106107b75760405162461bcd60e51b815260040161068e90612920565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107e86115ce565b6001600160a01b03166107f9610db0565b6001600160a01b03161461081f5760405162461bcd60e51b815260040161068e90612e78565b600d55565b61082c6115ce565b6001600160a01b031661083d610db0565b6001600160a01b0316146108635760405162461bcd60e51b815260040161068e90612e78565b61086b6117f2565b565b61074683838360405180602001604052806000815250611001565b6108936107616115ce565b6108af5760405162461bcd60e51b815260040161068e9061309c565b6108b881611860565b50565b60006105cd826115b1565b60006108d0610750565b82106108ee5760405162461bcd60e51b815260040161068e90613050565b6008828154811061090f57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600b54600160a01b900460ff1681565b6060600061093e83610a4e565b905060008167ffffffffffffffff81111561096957634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610992578160200160208202803683370190505b509050816109a35791506105d09050565b6000805b83811015610a04576109b9868261078e565b8383815181106109d957634e487b7160e01b600052603260045260246000fd5b6020908102919091010152816109ee8161323a565b92505080806109fc9061323a565b9150506109a7565b508193505050506105d0565b600a5460ff1690565b6000818152600260205260408120546001600160a01b0316806105cd5760405162461bcd60e51b815260040161068e90612d40565b60006001600160a01b038216610a765760405162461bcd60e51b815260040161068e90612cf6565b506001600160a01b031660009081526003602052604090205490565b6060610a9c6115ce565b6001600160a01b0316610aad610db0565b6001600160a01b031614610ad35760405162461bcd60e51b815260040161068e90612e78565b610adb611907565b905090565b610ae86115ce565b6001600160a01b0316610af9610db0565b6001600160a01b031614610b1f5760405162461bcd60e51b815260040161068e90612e78565b61086b6000611916565b6000610b358383611640565b9392505050565b610b446115ce565b6001600160a01b0316610b55610db0565b6001600160a01b031614610b7b5760405162461bcd60e51b815260040161068e90612e78565b600b8054911515600160a01b0260ff60a01b19909216919091179055565b610ba16115ce565b6001600160a01b0316610bb2610db0565b6001600160a01b031614610bd85760405162461bcd60e51b815260040161068e90612e78565b61086b611970565b610be86115ce565b6001600160a01b0316610bf9610db0565b6001600160a01b031614610c1f5760405162461bcd60e51b815260040161068e90612e78565b33610c3c5760405162461bcd60e51b815260040161068e90612ab7565b600b546040516370a0823160e01b81526000916001600160a01b0316906370a0823190610c6d9030906004016126fd565b60206040518083038186803b158015610c8557600080fd5b505afa158015610c99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cbd919061266b565b905060008111610cdf5760405162461bcd60e51b815260040161068e90612af9565b600b5460405163a9059cbb60e01b81526001600160a01b039091169063a9059cbb90610d11903390859060040161278c565b602060405180830381600087803b158015610d2b57600080fd5b505af1158015610d3f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6391906125b9565b6108b857600080fd5b610d746115ce565b6001600160a01b0316610d85610db0565b6001600160a01b031614610dab5760405162461bcd60e51b815260040161068e90612e78565b600c55565b600a5461010090046001600160a01b031690565b610dcc6115ce565b6001600160a01b0316610ddd610db0565b6001600160a01b031614610e035760405162461bcd60e51b815260040161068e90612e78565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b610e2d6115ce565b6001600160a01b0316610e3e610db0565b6001600160a01b031614610e645760405162461bcd60e51b815260040161068e90612e78565b8051610e7790600e90602084019061222e565b5050565b6060600180546105e4906131ff565b610e926115ce565b6001600160a01b0316610ea3610db0565b6001600160a01b031614610ec95760405162461bcd60e51b815260040161068e90612e78565b6001600160a01b0381166000908152600f602052604090819020805460ff19166001179055517f16baa937b08d58713325f93ac58b8a9369a4359bbefb4957d6d9b402735722ab90610f1c9083906126fd565b60405180910390a150565b600d5481565b600c5481565b610f3b6115ce565b6001600160a01b0316826001600160a01b03161415610f6c5760405162461bcd60e51b815260040161068e90612b7e565b8060056000610f796115ce565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610fbd6115ce565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ff59190612859565b60405180910390a35050565b61101261100c6115ce565b83611640565b61102e5760405162461bcd60e51b815260040161068e90612fff565b61103a848484846119cb565b50505050565b600b546001600160a01b031681565b336000908152600f602052604090205460ff1661107e5760405162461bcd60e51b815260040161068e90612e41565b603281111561109f5760405162461bcd60e51b815260040161068e90613131565b60005b8181101561103a5760008383838181106110cc57634e487b7160e01b600052603260045260246000fd5b905060200201359050600d5481106110f65760405162461bcd60e51b815260040161068e906129bd565b6110ff816115b1565b61110d5761110d85826119fe565b50806111188161323a565b9150506110a2565b606061112b826115b1565b6111475760405162461bcd60e51b815260040161068e90612ef6565b6000611151611907565b905060008151116111715760405180602001604052806000815250610b35565b8061117b84611a18565b60405160200161118c9291906126af565b6040516020818303038152906040529392505050565b6111aa6115ce565b6001600160a01b03166111bb610db0565b6001600160a01b0316146111e15760405162461bcd60e51b815260040161068e90612e78565b6001600160a01b0381166000908152600f602052604090819020805460ff19169055517fb25deee473f0ba18671a95db5d000875190013846968f76c09db86657cac5e4290610f1c9083906126fd565b61271081565b6001600160a01b03166000908152600f602052604090205460ff1690565b61125d6122b2565b6112656122b2565b60005b6127108110156112b85761127b816115b1565b8282612710811061129c57634e487b7160e01b600052603260045260246000fd5b91151560209092020152806112b08161323a565b915050611268565b50905090565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b606060008267ffffffffffffffff81111561131757634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611340578160200160208202803683370190505b50905060005b838110156113c557600085858381811061137057634e487b7160e01b600052603260045260246000fd5b905060200201359050611382816115b1565b8383815181106113a257634e487b7160e01b600052603260045260246000fd5b9115156020928302919091019091015250806113bd8161323a565b915050611346565b509392505050565b6113d56115ce565b6001600160a01b03166113e6610db0565b6001600160a01b03161461140c5760405162461bcd60e51b815260040161068e90612e78565b6001600160a01b0381166114325760405162461bcd60e51b815260040161068e90612a3a565b6108b881611916565b600f6020526000908152604090205460ff1681565b612710600d54106114735760405162461bcd60e51b815260040161068e906128f0565b6114953382611480610db0565b600d54600b54600160a01b900460ff16611b33565b60006114a3600c5483611bdd565b90506114b0333083611be9565b600b546040516323b872dd60e01b81526001600160a01b03909116906323b872dd906114e49033903090869060040161272b565b602060405180830381600087803b1580156114fe57600080fd5b505af1158015611512573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061153691906125b9565b6115525760405162461bcd60e51b815260040161068e906130ec565b60005b828110156107465761156933600d546119fe565b600d54611577906001613171565b600d55806115848161323a565b915050611555565b60006001600160e01b0319821663780e9d6360e01b14806105cd57506105cd82611cd4565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061160782610a19565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061164b826115b1565b6116675760405162461bcd60e51b815260040161068e90612bec565b600061167283610a19565b9050806001600160a01b0316846001600160a01b031614806116ad5750836001600160a01b03166116a284610667565b6001600160a01b0316145b806116bd57506116bd81856112be565b949350505050565b826001600160a01b03166116d882610a19565b6001600160a01b0316146116fe5760405162461bcd60e51b815260040161068e90612ead565b6001600160a01b0382166117245760405162461bcd60e51b815260040161068e90612b3a565b61172f838383611d14565b61173a6000826115d2565b6001600160a01b03831660009081526003602052604081208054600192906117639084906131bc565b90915550506001600160a01b0382166000908152600360205260408120805460019290611791908490613171565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6117fa610a10565b6118165760405162461bcd60e51b815260040161068e906128c2565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6118496115ce565b60405161185691906126fd565b60405180910390a1565b600061186b82610a19565b905061187981600084611d14565b6118846000836115d2565b6001600160a01b03811660009081526003602052604081208054600192906118ad9084906131bc565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6060600e80546105e4906131ff565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611978610a10565b156119955760405162461bcd60e51b815260040161068e90612c6f565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586118496115ce565b6119d68484846116c5565b6119e284848484611d1f565b61103a5760405162461bcd60e51b815260040161068e9061296b565b610e77828260405180602001604052806000815250611e3a565b606081611a3d57506040805180820190915260018152600360fc1b60208201526105d0565b8160005b8115611a675780611a518161323a565b9150611a609050600a83613189565b9150611a41565b60008167ffffffffffffffff811115611a9057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611aba576020820181803683370190505b5090505b84156116bd57611acf6001836131bc565b9150611adc600a86613255565b611ae7906030613171565b60f81b818381518110611b0a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611b2c600a86613189565b9450611abe565b826001600160a01b0316856001600160a01b031614611b695780611b695760405162461bcd60e51b815260040161068e90612a03565b6127108210611b8a5760405162461bcd60e51b815260040161068e906128f0565b612710611b978386611e6d565b1115611bb55760405162461bcd60e51b815260040161068e90612f86565b6032841115611bd65760405162461bcd60e51b815260040161068e90612d89565b5050505050565b6000610b35828461319d565b6001600160a01b038216611c0f5760405162461bcd60e51b815260040161068e90612fc8565b60008111611c2f5760405162461bcd60e51b815260040161068e90612c38565b600b54604051636eb1769f60e11b81526000916001600160a01b03169063dd62ed3e90611c629087908790600401612711565b60206040518083038186803b158015611c7a57600080fd5b505afa158015611c8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cb2919061266b565b90508181101561103a5760405162461bcd60e51b815260040161068e90612bb5565b60006001600160e01b031982166380ac58cd60e01b1480611d0557506001600160e01b03198216635b5e139f60e01b145b806105cd57506105cd82611e79565b610746838383611e92565b6000611d33846001600160a01b0316611ec2565b15611e2f57836001600160a01b031663150b7a02611d4f6115ce565b8786866040518563ffffffff1660e01b8152600401611d71949392919061274f565b602060405180830381600087803b158015611d8b57600080fd5b505af1925050508015611dbb575060408051601f3d908101601f19168201909252611db8918101906125f1565b60015b611e15573d808015611de9576040519150601f19603f3d011682016040523d82523d6000602084013e611dee565b606091505b508051611e0d5760405162461bcd60e51b815260040161068e9061296b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116bd565b506001949350505050565b611e448383611ec8565b611e516000848484611d1f565b6107465760405162461bcd60e51b815260040161068e9061296b565b6000610b358284613171565b6001600160e01b031981166301ffc9a760e01b14919050565b611e9d838383611fa7565b611ea5610a10565b156107465760405162461bcd60e51b815260040161068e90612877565b3b151590565b6001600160a01b038216611eee5760405162461bcd60e51b815260040161068e90612dc0565b611ef7816115b1565b15611f145760405162461bcd60e51b815260040161068e90612a80565b611f2060008383611d14565b6001600160a01b0382166000908152600360205260408120805460019290611f49908490613171565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611fb2838383610746565b6001600160a01b038316611fce57611fc981612030565b611ff1565b816001600160a01b0316836001600160a01b031614611ff157611ff18382612074565b6001600160a01b03821661200d5761200881612111565b610746565b826001600160a01b0316826001600160a01b0316146107465761074682826121ea565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161208184610a4e565b61208b91906131bc565b6000838152600760205260409020549091508082146120de576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612123906001906131bc565b6000838152600960205260408120546008805493945090928490811061215957634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061218857634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806121ce57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006121f583610a4e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461223a906131ff565b90600052602060002090601f01602090048101928261225c57600085556122a2565b82601f1061227557805160ff19168380011785556122a2565b828001600101855582156122a2579182015b828111156122a2578251825591602001919060010190612287565b506122ae9291506122d3565b5090565b604051806204e2000160405280612710906020820280368337509192915050565b5b808211156122ae57600081556001016122d4565b600067ffffffffffffffff8084111561230357612303613295565b604051601f8501601f19168101602001828111828210171561232757612327613295565b60405284815291508183850186101561233f57600080fd5b8484602083013760006020868301015250509392505050565b60008083601f840112612369578081fd5b50813567ffffffffffffffff811115612380578182fd5b602083019150836020808302850101111561239a57600080fd5b9250929050565b6000602082840312156123b2578081fd5b8135610b35816132ab565b600080604083850312156123cf578081fd5b82356123da816132ab565b915060208301356123ea816132ab565b809150509250929050565b600080600060608486031215612409578081fd5b8335612414816132ab565b92506020840135612424816132ab565b929592945050506040919091013590565b6000806000806080858703121561244a578081fd5b8435612455816132ab565b93506020850135612465816132ab565b925060408501359150606085013567ffffffffffffffff811115612487578182fd5b8501601f81018713612497578182fd5b6124a6878235602084016122e8565b91505092959194509250565b6000806000604084860312156124c6578283fd5b83356124d1816132ab565b9250602084013567ffffffffffffffff8111156124ec578283fd5b6124f886828701612358565b9497909650939450505050565b60008060408385031215612517578182fd5b8235612522816132ab565b915060208301356123ea816132c0565b60008060408385031215612544578182fd5b823561254f816132ab565b946020939093013593505050565b6000806020838503121561256f578182fd5b823567ffffffffffffffff811115612585578283fd5b61259185828601612358565b90969095509350505050565b6000602082840312156125ae578081fd5b8135610b35816132c0565b6000602082840312156125ca578081fd5b8151610b35816132c0565b6000602082840312156125e6578081fd5b8135610b35816132ce565b600060208284031215612602578081fd5b8151610b35816132ce565b60006020828403121561261e578081fd5b813567ffffffffffffffff811115612634578182fd5b8201601f81018413612644578182fd5b6116bd848235602084016122e8565b600060208284031215612664578081fd5b5035919050565b60006020828403121561267c578081fd5b5051919050565b6000815180845261269b8160208601602086016131d3565b601f01601f19169290920160200192915050565b600083516126c18184602088016131d3565b602f60f81b90830190815283516126df8160018401602088016131d3565b64173539b7b760d91b60019290910191820152600601949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061278290830184612683565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b6204e2008101818360005b6127108110156127d257815115158352602092830192909101906001016127b0565b50505092915050565b6020808252825182820181905260009190848201906040850190845b818110156128155783511515835292840192918401916001016127f7565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156128155783518352928401929184019160010161283d565b901515815260200190565b600060208252610b356020830184612683565b6020808252602b908201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760408201526a1a1a5b19481c185d5cd95960aa1b606082015260800190565b60208082526014908201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604082015260600190565b6020808252601690820152751411541411548e8e94d0531157d21054d7d15391115160521b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f5045505045523a3a4f4e4c595f504153545f544f4b454e535f43414e5f42455f60408201526513525395115160d21b606082015260800190565b6020808252601a908201527f5045505045523a3a53414c455f49535f4e4f545f414354495645000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526022908201527f5045505045523a3a494e56414c49445f5749544844524157414c5f4144445245604082015261535360f01b606082015260800190565b60208082526021908201527f5045505045523a3a494e56414c49445f5749544844524157414c5f414d4f554e6040820152601560fa1b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601e908201527f5045505045523a3a494e53554646494349454e545f414c4c4f57414e43450000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601c908201527f5045505045523a3a494e56414c49445f4d494e54494e475f434f535400000000604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601c908201527f5045505045523a3a4558434545445f4d41585f50555243484153455300000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601c908201527f5045505045523a3a4f4e4c595f4d494e5445525f43414e5f4d494e5400000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526022908201527f5045505045523a3a4558434545445f544f54414c5f5045505045525f535550506040820152614c5960f01b606082015260800190565b6020808252601b908201527f5045505045523a3a494e56414c49445f42454e45464943494152590000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b60208082526025908201527f5045505045523a3a43555252454e43595f544f4b454e5f5452414e534645525f60408201526422a92927a960d91b606082015260800190565b6020808252601e908201527f5045505045523a3a4558434545445f4d41585f4449524543545f4d494e540000604082015260600190565b90815260200190565b6000821982111561318457613184613269565b500190565b6000826131985761319861327f565b500490565b60008160001904831182151516156131b7576131b7613269565b500290565b6000828210156131ce576131ce613269565b500390565b60005b838110156131ee5781810151838201526020016131d6565b8381111561103a5750506000910152565b60028104600182168061321357607f821691505b6020821081141561323457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561324e5761324e613269565b5060010190565b6000826132645761326461327f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146108b857600080fd5b80151581146108b857600080fd5b6001600160e01b0319811681146108b857600080fdfea2646970667358221220f1fab940a44c755090689ef1df211782f595904537ca1ceb3103eb96eca8636764736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000007ceb23fd6bc0add59e62ac25578270cff1b9f619000000000000000000000000000000000000000000000000000000000000003668747470733a2f2f6170692e70657070657261747461636b2e636f6d2f76312f6d657461646174612f6d79737469632d70657070657200000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000007ceb23fd6bc0add59e62ac25578270cff1b9f619000000000000000000000000000000000000000000000000000000000000003668747470733a2f2f6170692e70657070657261747461636b2e636f6d2f76312f6d657461646174612f6d79737469632d70657070657200000000000000000000
-----Decoded View---------------
Arg [0] : _baseURIInput (string): https://api.pepperattack.com/v1/metadata/mystic-pepper
Arg [1] : _address (address): 0x7ceb23fd6bc0add59e62ac25578270cff1b9f619
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000007ceb23fd6bc0add59e62ac25578270cff1b9f619
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 68747470733a2f2f6170692e70657070657261747461636b2e636f6d2f76312f
Arg [4] : 6d657461646174612f6d79737469632d70657070657200000000000000000000