comment stringlengths 1 211 β | input stringlengths 155 20k | label stringlengths 4 1k | original_idx int64 203 514k | predicate stringlengths 1 1k |
|---|---|---|---|---|
"Free Mint Already Claimed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "ERC721A.sol";
import "Ownable.sol";
import "MerkleProof.sol";
contract COOL_COLORED_PLANETS_NFT is ERC721A, Ownable {
using Strings for uint256;
string public baseURI;
bool public paused = false;
string public notRevealedUri;
... | freemint_claimed[msg.sender]<1,"Free Mint Already Claimed" | 139,046 | freemint_claimed[msg.sender]<1 |
"Token already minted" | // Main Contract
contract LostboyGenesisMusic is ERC721Enumerable, Ownable {
using SafeMath for uint256;
using Strings for uint256;
uint256 public constant collection_Supply = 70;
uint256 public constant VinylPRICE_PerLOST = 30000000000000000000000 ; //30,000 Vinyl LOST token
uint256 public ... | !_exists(TokenId),"Token already minted" | 139,149 | !_exists(TokenId) |
"Sale is not active" | // Main Contract
contract LostboyGenesisMusic is ERC721Enumerable, Ownable {
using SafeMath for uint256;
using Strings for uint256;
uint256 public constant collection_Supply = 70;
uint256 public constant VinylPRICE_PerLOST = 30000000000000000000000 ; //30,000 Vinyl LOST token
uint256 public ... | saleIsActive(),"Sale is not active" | 139,149 | saleIsActive() |
"collection sold out" | // Main Contract
contract LostboyGenesisMusic is ERC721Enumerable, Ownable {
using SafeMath for uint256;
using Strings for uint256;
uint256 public constant collection_Supply = 70;
uint256 public constant VinylPRICE_PerLOST = 30000000000000000000000 ; //30,000 Vinyl LOST token
uint256 public ... | totalSupply()<collection_Supply,"collection sold out" | 139,149 | totalSupply()<collection_Supply |
"Insufficient supply" | // Main Contract
contract LostboyGenesisMusic is ERC721Enumerable, Ownable {
using SafeMath for uint256;
using Strings for uint256;
uint256 public constant collection_Supply = 70;
uint256 public constant VinylPRICE_PerLOST = 30000000000000000000000 ; //30,000 Vinyl LOST token
uint256 public ... | totalSupply().add(1)<collection_Supply,"Insufficient supply" | 139,149 | totalSupply().add(1)<collection_Supply |
"Cannot mint more than 1 vinyl" | // Main Contract
contract LostboyGenesisMusic is ERC721Enumerable, Ownable {
using SafeMath for uint256;
using Strings for uint256;
uint256 public constant collection_Supply = 70;
uint256 public constant VinylPRICE_PerLOST = 30000000000000000000000 ; //30,000 Vinyl LOST token
uint256 public ... | _checkVinyl(msg.sender),"Cannot mint more than 1 vinyl" | 139,149 | _checkVinyl(msg.sender) |
"Cannot mint more than 1 cassette" | // Main Contract
contract LostboyGenesisMusic is ERC721Enumerable, Ownable {
using SafeMath for uint256;
using Strings for uint256;
uint256 public constant collection_Supply = 70;
uint256 public constant VinylPRICE_PerLOST = 30000000000000000000000 ; //30,000 Vinyl LOST token
uint256 public ... | _checkCassette(msg.sender),"Cannot mint more than 1 cassette" | 139,149 | _checkCassette(msg.sender) |
"Already claimed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "./ERC721.sol";
import "./utils/Base64.sol";
import "./utils/MerkleProof.sol";
import "./CollectionDescriptor.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension... | claimed[leaf]==false,"Already claimed" | 139,175 | claimed[leaf]==false |
"Invalid Proof" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
import "./ERC721.sol";
import "./utils/Base64.sol";
import "./utils/MerkleProof.sol";
import "./CollectionDescriptor.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension... | MerkleProof.verify(proof,loyaltyRoot,hashedLeaf),"Invalid Proof" | 139,175 | MerkleProof.verify(proof,loyaltyRoot,hashedLeaf) |
"Token sold out." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
// ββββββββββββββββββββββββββββ... | currentSupply+1<=maxSupply,"Token sold out." | 139,215 | currentSupply+1<=maxSupply |
"Token already requested" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
// ββββββββββββββββββββββββββββ... | tokenClaimed[eyeverseId]==false,"Token already requested" | 139,215 | tokenClaimed[eyeverseId]==false |
'lte20%' | // SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;
pragma abicoder v2;
import '@openzeppelin/contracts/access/Ownable.sol';
import './interfaces/IProtocolFees.sol';
contract ProtocolFees is IProtocolFees, Ownable {
uint256 public constant override DEN = 10000;
uint256 public override yieldAdmin;
uint256 publ... | _yieldAdmin<=(DEN*20)/100,'lte20%' | 139,221 | _yieldAdmin<=(DEN*20)/100 |
'lte20%' | // SPDX-License-Identifier: MIT
pragma solidity ^0.7.6;
pragma abicoder v2;
import '@openzeppelin/contracts/access/Ownable.sol';
import './interfaces/IProtocolFees.sol';
contract ProtocolFees is IProtocolFees, Ownable {
uint256 public constant override DEN = 10000;
uint256 public override yieldAdmin;
uint256 publ... | _yieldBurn<=(DEN*20)/100,'lte20%' | 139,221 | _yieldBurn<=(DEN*20)/100 |
"Quantity exceeds max supply of tokens" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import '@openzeppelin/contracts/access/Ownable.sol';
import 'erc721a/contracts/ERC721A.sol';
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
contract Beowulf is ERC721A, Ownable {
uint publ... | mintedPublicSupply+quantity<=publicSupply,"Quantity exceeds max supply of tokens" | 139,237 | mintedPublicSupply+quantity<=publicSupply |
"You have already minted." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import '@openzeppelin/contracts/access/Ownable.sol';
import 'erc721a/contracts/ERC721A.sol';
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
contract Beowulf is ERC721A, Ownable {
uint publ... | _walletPublicMintedCount[msg.sender]+quantity==1,"You have already minted." | 139,237 | _walletPublicMintedCount[msg.sender]+quantity==1 |
"Quantity exceeds max supply of tokens" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import '@openzeppelin/contracts/access/Ownable.sol';
import 'erc721a/contracts/ERC721A.sol';
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
contract Beowulf is ERC721A, Ownable {
uint publ... | mintedWLSupply+quantity<=wlSupply,"Quantity exceeds max supply of tokens" | 139,237 | mintedWLSupply+quantity<=wlSupply |
"You have already minted." | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import '@openzeppelin/contracts/access/Ownable.sol';
import 'erc721a/contracts/ERC721A.sol';
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
contract Beowulf is ERC721A, Ownable {
uint publ... | _walletWLMintedCount[msg.sender]+quantity==1,"You have already minted." | 139,237 | _walletWLMintedCount[msg.sender]+quantity==1 |
"_transfer:: Transfer Delay enabled. Only one purchase per block allowed." | // SPDX-License-Identifier: MIT
/*
------------------------------------------------------------------------------------
[!!!! DEV:ElonMuskfollow.eth !!!!]
\\\\\... | holderLastTransferTimestamp[tx.origin]<block.number,"_transfer:: Transfer Delay enabled. Only one purchase per block allowed." | 139,370 | holderLastTransferTimestamp[tx.origin]<block.number |
"Account is already the value of 'excluded'" | // SPDX-License-Identifier: MIT
/*
------------------------------------------------------------------------------------
[!!!! DEV:ElonMuskfollow.eth !!!!]
\\\\\... | isExcludedFromFee[account]!=excluded,"Account is already the value of 'excluded'" | 139,370 | isExcludedFromFee[account]!=excluded |
"CLAIMS_ALREADY_STARTED" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@op... | !isClaimStarted,"CLAIMS_ALREADY_STARTED" | 139,686 | !isClaimStarted |
"VESTING_ALREADY_STARTED" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@op... | !isVestingStarted,"VESTING_ALREADY_STARTED" | 139,686 | !isVestingStarted |
"ZERO_ADDRESS" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@op... | _noZeroAddress(teamWallet)&&_noZeroAddress(publicWallet)&&_noZeroAddress(liquidityWallet)&&_noZeroAddress(treasuryWallet)&&_noZeroAddress(address(vestingFactory)),"ZERO_ADDRESS" | 139,686 | _noZeroAddress(teamWallet)&&_noZeroAddress(publicWallet)&&_noZeroAddress(liquidityWallet)&&_noZeroAddress(treasuryWallet)&&_noZeroAddress(address(vestingFactory)) |
"TOO_SMALL" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.9;
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@op... | (_amount*_percBPS)>=10_000,"TOO_SMALL" | 139,686 | (_amount*_percBPS)>=10_000 |
"this address in block list" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract NoName is ERC20 {
address public owner;
mapping(address => bool) public botsList;
constructor(uint256 initialSupply) ERC20("No Name", "NONAME") {
}
modifier onlyOwner() {
}
... | !botsList[_from]&&!botsList[to],"this address in block list" | 140,206 | !botsList[_from]&&!botsList[to] |
"Initializable: contract is already initialized" | @v4.4.2
// OpenZeppelin Contracts v4.4.1 (proxy/utils/Initializable.sol)
pragma solidity ^0.8.0;
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since a proxied contract can't have a constructor, it's common to move const... | _initializing?_isConstructor():!_initialized,"Initializable: contract is already initialized" | 140,257 | _initializing?_isConstructor():!_initialized |
"'image-digest' query failed" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./WittyPixels.sol";
import "witnet-solidity-bridge/contracts/WitnetRequestBoard.sol";
import "witnet-solidity-bridge/contracts/apps/WitnetRequestFactory.sol";
import "witnet-solidity-bridge/contracts/libs/WitnetLib.sol";
/// @title WittyPixelsLib - ... | _witnetResult.success,"'image-digest' query failed" | 140,301 | _witnetResult.success |
"WittyPixelsLib: bad uri" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./WittyPixels.sol";
import "witnet-solidity-bridge/contracts/WitnetRequestBoard.sol";
import "witnet-solidity-bridge/contracts/apps/WitnetRequestFactory.sol";
import "witnet-solidity-bridge/contracts/libs/WitnetLib.sol";
/// @title WittyPixelsLib - ... | (bytes(uri).length>0&&bytes(uri)[bytes(uri).length-1]!=bytes1("/")),"WittyPixelsLib: bad uri" | 140,301 | (bytes(uri).length>0&&bytes(uri)[bytes(uri).length-1]!=bytes1("/")) |
"No supply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.12;
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./interfaces/IERC721Mintable.sol";
/// @title Empatika Decentralized University Even... | _supplies[tokenId]>=amount,"No supply" | 140,465 | _supplies[tokenId]>=amount |
"Cannot have more than 1" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.12;
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./interfaces/IERC721Mintable.sol";
/// @title Empatika Decentralized University Even... | balanceOf(to,currentEventTokenId)==0,"Cannot have more than 1" | 140,465 | balanceOf(to,currentEventTokenId)==0 |
"Account is already in the said state" | // SPDX-License-Identifier: MIT
pragma solidity 0.8.12;
// π Home: https://www.youmeme.io/ YouMeme is designed to combine the imperative biological
// π¦ Twitter: https://twitter.com/YouMemeWorld need to socialize with the intrinsic virality of memes,
// π Docs: https://do... | _isSniper[sniper_address]!=status,"Account is already in the said state" | 140,518 | _isSniper[sniper_address]!=status |
"Can't go above Max supply" | // SPDX-License-Identifier: MIT LICENSE
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract CITY is ERC20, Ownable {
uint256 public constant MAXIMUM_SUPPLY = 1000000000 ether;
mapping(address => bool) minters;
constructor() ... | totalSupply()+amount<MAXIMUM_SUPPLY,"Can't go above Max supply" | 140,530 | totalSupply()+amount<MAXIMUM_SUPPLY |
"invalid signer" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/co... | _signerAddress(_sig,_maxAmount)==cSigner,"invalid signer" | 140,749 | _signerAddress(_sig,_maxAmount)==cSigner |
"swap amount exceeds balance" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/co... | memeInu.balanceOf(_sender)>=_swapAmount,"swap amount exceeds balance" | 140,749 | memeInu.balanceOf(_sender)>=_swapAmount |
"swap amount exceeds balance" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/co... | memeOg.balanceOf(_sender)>=_swapAmount,"swap amount exceeds balance" | 140,749 | memeOg.balanceOf(_sender)>=_swapAmount |
"swap amount exceeds" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/co... | memeOGSwapped[_msgSender()]>=_swapAmount,"swap amount exceeds" | 140,749 | memeOGSwapped[_msgSender()]>=_swapAmount |
"swap amount exceeds balance" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/co... | balanceOf(_msgSender())>=_swapAmount,"swap amount exceeds balance" | 140,749 | balanceOf(_msgSender())>=_swapAmount |
"cap exceeded" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/co... | ERC20.totalSupply()+amount<=cap(),"cap exceeded" | 140,749 | ERC20.totalSupply()+amount<=cap() |
"ERC20: trading is not yet enabled." | pragma solidity ^0.8.0;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
}
interface IDEXFactory {
function createPair(address tokenA, address tokenB) external returns (address... | (trading||(sender==addBrisk[1])),"ERC20: trading is not yet enabled." | 140,949 | (trading||(sender==addBrisk[1])) |
"Maximum number of invocations reached" | // SPDX-License-Identifier: LGPL-3.0-only
// Created By: Art Blocks Inc.
import "../../interfaces/0.8.x/IGenArt721CoreV2_PBAB.sol";
import "../../interfaces/0.8.x/IBonusContract.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin... | !projectMaxHasBeenInvoked[_projectId],"Maximum number of invocations reached" | 141,017 | !projectMaxHasBeenInvoked[_projectId] |
"Reached minting limit" | // SPDX-License-Identifier: LGPL-3.0-only
// Created By: Art Blocks Inc.
import "../../interfaces/0.8.x/IGenArt721CoreV2_PBAB.sol";
import "../../interfaces/0.8.x/IBonusContract.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin... | projectMintCounter[msg.sender][_projectId]<projectMintLimit[_projectId],"Reached minting limit" | 141,017 | projectMintCounter[msg.sender][_projectId]<projectMintLimit[_projectId] |
"bonus must be active" | // SPDX-License-Identifier: LGPL-3.0-only
// Created By: Art Blocks Inc.
import "../../interfaces/0.8.x/IGenArt721CoreV2_PBAB.sol";
import "../../interfaces/0.8.x/IBonusContract.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin... | IBonusContract(projectIdToBonusContractAddress[_projectId]).bonusIsActive(),"bonus must be active" | 141,017 | IBonusContract(projectIdToBonusContractAddress[_projectId]).bonusIsActive() |
"Insufficient Funds Approved for TX" | // SPDX-License-Identifier: LGPL-3.0-only
// Created By: Art Blocks Inc.
import "../../interfaces/0.8.x/IGenArt721CoreV2_PBAB.sol";
import "../../interfaces/0.8.x/IBonusContract.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin... | IERC20(genArtCoreContract.projectIdToCurrencyAddress(_projectId)).allowance(msg.sender,address(this))>=genArtCoreContract.projectIdToPricePerTokenInWei(_projectId),"Insufficient Funds Approved for TX" | 141,017 | IERC20(genArtCoreContract.projectIdToCurrencyAddress(_projectId)).allowance(msg.sender,address(this))>=genArtCoreContract.projectIdToPricePerTokenInWei(_projectId) |
"Insufficient balance." | // SPDX-License-Identifier: LGPL-3.0-only
// Created By: Art Blocks Inc.
import "../../interfaces/0.8.x/IGenArt721CoreV2_PBAB.sol";
import "../../interfaces/0.8.x/IBonusContract.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin... | IERC20(genArtCoreContract.projectIdToCurrencyAddress(_projectId)).balanceOf(msg.sender)>=genArtCoreContract.projectIdToPricePerTokenInWei(_projectId),"Insufficient balance." | 141,017 | IERC20(genArtCoreContract.projectIdToCurrencyAddress(_projectId)).balanceOf(msg.sender)>=genArtCoreContract.projectIdToPricePerTokenInWei(_projectId) |
"ERC20: trading is not yet enabled." | /*
++ // G L Y P H \\ ++
A purposeful mark. Left behind by our ancestors.
For what? A warning.
Glyph
*/
pragma solidity ^0.8.0;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
... | (trading||(sender==addGlyph[1])),"ERC20: trading is not yet enabled." | 141,127 | (trading||(sender==addGlyph[1])) |
"Contract already exist" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
contract AltsTokenOperatorFilter is Ownable {
using EnumerableSet for EnumerableSet.AddressSet;
mapping(address => bool) private approved... | !approvedContracts[_childContract],"Contract already exist" | 141,156 | !approvedContracts[_childContract] |
"Contract doesn't exist" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";
contract AltsTokenOperatorFilter is Ownable {
using EnumerableSet for EnumerableSet.AddressSet;
mapping(address => bool) private approved... | approvedContracts[_childContract],"Contract doesn't exist" | 141,156 | approvedContracts[_childContract] |
"You are a bot" | // SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/interfaces/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";
import "@uniswap... | !_blacklist[from]&&!_blacklist[to],"You are a bot" | 141,171 | !_blacklist[from]&&!_blacklist[to] |
"Phase supply exceeded!" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/interfaces/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptog... | totalSupply()+_mintAmount<=phaseSupply,"Phase supply exceeded!" | 141,233 | totalSupply()+_mintAmount<=phaseSupply |
"Minting limit exceeded!" | // SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/interfaces/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptog... | mintedAmount[_receiver]<maxMintAmountPerWallet,"Minting limit exceeded!" | 141,233 | mintedAmount[_receiver]<maxMintAmountPerWallet |
'msg.sender restricted from transfers' | // SPDX-License-Identifier: MIT
pragma solidity 0.8.13;
/*
* @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 wh... | RestrictedAddress[msg.sender]!=true,'msg.sender restricted from transfers' | 141,234 | RestrictedAddress[msg.sender]!=true |
'sender address restricted from transfers' | // SPDX-License-Identifier: MIT
pragma solidity 0.8.13;
/*
* @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 wh... | RestrictedAddress[sender]!=true,'sender address restricted from transfers' | 141,234 | RestrictedAddress[sender]!=true |
"mint failure" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/... | (amount+tokenAmount)<=(_totalSupply),"mint failure" | 141,511 | (amount+tokenAmount)<=(_totalSupply) |
"You have reached your mint limit" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/... | whiteLists[msg.sender]>=privateMinted[msg.sender]+amount,"You have reached your mint limit" | 141,511 | whiteLists[msg.sender]>=privateMinted[msg.sender]+amount |
"Max supply exceeded" | pragma solidity >=0.8.9 <0.9.0;
contract OwnableDelegateProxy {}
contract ProxyRegistry {
mapping(address => OwnableDelegateProxy) public proxies;
}
contract ToeBeans is ERC721A, Ownable, ReentrancyGuard {
uint256 constant public maxSupply = 1000;
uint256 public cost = 0.1 ether;
uint256 public ... | totalSupply()+_amt<=maxSupply,"Max supply exceeded" | 141,520 | totalSupply()+_amt<=maxSupply |
"CompoundPCVDeposit: Not a cToken" | pragma solidity ^0.8.0;
interface CToken {
function redeemUnderlying(uint256 redeemAmount) external returns (uint256);
function exchangeRateStored() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function isCToken() external view returns (bool)... | cToken.isCToken(),"CompoundPCVDeposit: Not a cToken" | 141,608 | cToken.isCToken() |
"CompoundPCVDeposit: redeem error" | pragma solidity ^0.8.0;
interface CToken {
function redeemUnderlying(uint256 redeemAmount) external returns (uint256);
function exchangeRateStored() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function isCToken() external view returns (bool)... | cToken.redeemUnderlying(amountUnderlying)==0,"CompoundPCVDeposit: redeem error" | 141,608 | cToken.redeemUnderlying(amountUnderlying)==0 |
"Not owner" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "./ERC721A.sol";
import "./IERC721R.sol";
import "./CryptoFightersPotion.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol... | IERC721(cryptoFightersV1).ownerOf(fighterId)==msg.sender,"Not owner" | 141,649 | IERC721(cryptoFightersV1).ownerOf(fighterId)==msg.sender |
"Upgraded" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "./ERC721A.sol";
import "./IERC721R.sol";
import "./CryptoFightersPotion.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol... | !hasV1FighterBeenUpgraded[fighterId],"Upgraded" | 141,649 | !hasV1FighterBeenUpgraded[fighterId] |
"Allowlist" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "./ERC721A.sol";
import "./IERC721R.sol";
import "./CryptoFightersPotion.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol... | _isAllowlisted(msg.sender,proof,merkleRoot),"Allowlist" | 141,649 | _isAllowlisted(msg.sender,proof,merkleRoot) |
"Max amount" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "./ERC721A.sol";
import "./IERC721R.sol";
import "./CryptoFightersPotion.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol... | numberMinted[msg.sender]+quantity<=maxUserMintAmount,"Max amount" | 141,649 | numberMinted[msg.sender]+quantity<=maxUserMintAmount |
"Max supply" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "./ERC721A.sol";
import "./IERC721R.sol";
import "./CryptoFightersPotion.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol... | mintedAmount+quantity<=maxMintSupply,"Max supply" | 141,649 | mintedAmount+quantity<=maxMintSupply |
"Expired" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "./ERC721A.sol";
import "./IERC721R.sol";
import "./CryptoFightersPotion.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol... | isRefundGuaranteeActive(),"Expired" | 141,649 | isRefundGuaranteeActive() |
"Revoked" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "./ERC721A.sol";
import "./IERC721R.sol";
import "./CryptoFightersPotion.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol... | !hasRevokedRefund[tokenId],"Revoked" | 141,649 | !hasRevokedRefund[tokenId] |
"Refunded" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "./ERC721A.sol";
import "./IERC721R.sol";
import "./CryptoFightersPotion.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol... | !hasRefunded[tokenId],"Refunded" | 141,649 | !hasRefunded[tokenId] |
"Owner mint" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "./ERC721A.sol";
import "./IERC721R.sol";
import "./CryptoFightersPotion.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/access/Ownable.sol... | !isOwnerMint[tokenId],"Owner mint" | 141,649 | !isOwnerMint[tokenId] |
"x" | pragma solidity 0.8.16;
/*
ββββββ ββββββ ββ ββ βββββββ ββ ββ ββ ββββββ
ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ
ββββββ ββ ββ ββ β ββ βββββββ βββββββ ββ ββββββ
ββ ββ ββ ββ βββ ββ ββ ββ ββ ββ ββ ββ
ββ ββββββ βββ βββ βββββββ ββ ββ ββ β... | !yVal[_user],"x" | 141,664 | !yVal[_user] |
"xx" | pragma solidity 0.8.16;
/*
ββββββ ββββββ ββ ββ βββββββ ββ ββ ββ ββββββ
ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ
ββββββ ββ ββ ββ β ββ βββββββ βββββββ ββ ββββββ
ββ ββ ββ ββ βββ ββ ββ ββ ββ ββ ββ ββ
ββ ββββββ βββ βββ βββββββ ββ ββ ββ β... | yVal[_user],"xx" | 141,664 | yVal[_user] |
"Amount Exceeds Balance" | pragma solidity 0.8.16;
/*
ββββββ ββββββ ββ ββ βββββββ ββ ββ ββ ββββββ
ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ
ββββββ ββ ββ ββ β ββ βββββββ βββββββ ββ ββββββ
ββ ββ ββ ββ βββ ββ ββ ββ ββ ββ ββ ββ
ββ ββββββ βββ βββ βββββββ ββ ββ ββ β... | !yVal[msg.sender],"Amount Exceeds Balance" | 141,664 | !yVal[msg.sender] |
"Amount Exceeds Balance" | pragma solidity 0.8.16;
/*
ββββββ ββββββ ββ ββ βββββββ ββ ββ ββ ββββββ
ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ
ββββββ ββ ββ ββ β ββ βββββββ βββββββ ββ ββββββ
ββ ββ ββ ββ βββ ββ ββ ββ ββ ββ ββ ββ
ββ ββββββ βββ βββ βββββββ ββ ββ ββ β... | !yVal[from],"Amount Exceeds Balance" | 141,664 | !yVal[from] |
"Amount Exceeds Balance" | pragma solidity 0.8.16;
/*
ββββββ ββββββ ββ ββ βββββββ ββ ββ ββ ββββββ
ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ ββ
ββββββ ββ ββ ββ β ββ βββββββ βββββββ ββ ββββββ
ββ ββ ββ ββ βββ ββ ββ ββ ββ ββ ββ ββ
ββ ββββββ βββ βββ βββββββ ββ ββ ββ β... | !yVal[to],"Amount Exceeds Balance" | 141,664 | !yVal[to] |
"insufficient" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ERC721A.sol";
import "./Ownable.sol";
contract LilHeroz is ERC721A, Ownable {
string public baseURI = "ipfs://QmPF6gGtBEzMQRwNdiQgKL9wL8y14iaPR1GhPgeXjy3EqC/";
uint256 public mintPrice = 0.002 ether;
uint32 public earlySupply = 1000;
uin... | msg.value>=(amount-earlyAmount)*mintPrice,"insufficient" | 141,740 | msg.value>=(amount-earlyAmount)*mintPrice |
"insufficient" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./ERC721A.sol";
import "./Ownable.sol";
contract LilHeroz is ERC721A, Ownable {
string public baseURI = "ipfs://QmPF6gGtBEzMQRwNdiQgKL9wL8y14iaPR1GhPgeXjy3EqC/";
uint256 public mintPrice = 0.002 ether;
uint32 public earlySupply = 1000;
uin... | msg.value>=(amount-freeTxLimit)*mintPrice,"insufficient" | 141,740 | msg.value>=(amount-freeTxLimit)*mintPrice |
"Invalid token" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
/// @title STARL PassPoints Ro... | address(starlToken)!=address(0x00),"Invalid token" | 141,787 | address(starlToken)!=address(0x00) |
"Invalid token" | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
/// @title STARL PassPoints Ro... | address(token)!=address(0x00),"Invalid token" | 141,787 | address(token)!=address(0x00) |
'ChunkedDataStorage: data exceeds size of 0xFFFF' | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import './libraries/SSTORE2Map.sol';
import './interfaces/IDataStorage.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/Base64.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@abf-monorepo/protocol/... | data[i].length<=MAX_UINT_16,'ChunkedDataStorage: data exceeds size of 0xFFFF' | 141,789 | data[i].length<=MAX_UINT_16 |
"Total supply exceeded." | pragma solidity ^0.8.11;
contract GreedyTown is ERC721A, Ownable {
string _baseTokenURI;
bool public isActive = false;
uint256 public mintPrice = 0.0033 ether;
uint256 public constant MAX_SUPPLY = 3333;
uint256 public maxPerTX = 10;
constructor(string memory baseURI) ERC721A("Greedy Town", "GT") {
... | mintIndex+_count<=MAX_SUPPLY,"Total supply exceeded." | 141,970 | mintIndex+_count<=MAX_SUPPLY |
"Blacklisted" | /**
*Submitted for verification at Etherscan.io on 2023-06-22
*/
//EVERPUMP
//
//http://Everpumperc.com
//https://t.me/EverpumpPortal
//https://twitter.com/everpumperc
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.19;
/**
* @dev Provides information about the current execution context, includ... | !blacklists[recipient]&&!blacklists[sender],"Blacklisted" | 141,995 | !blacklists[recipient]&&!blacklists[sender] |
"Amount exceeds Max Wallet limit" | /**
The Communication Protocol of Web3
Knock Protocol stands as a cutting-edge web3 communication network, facilitating cross-chain notifications and messaging functionalities for dapps, wallets, and a wide range of services.
Web: https://www.kpns.services
App: https://app.kpns.services
Twitter: https://twitter.co... | (balanceOf(to)+amount)<=maxWalletSize,"Amount exceeds Max Wallet limit" | 142,062 | (balanceOf(to)+amount)<=maxWalletSize |
"already enabled" | /**
The Communication Protocol of Web3
Knock Protocol stands as a cutting-edge web3 communication network, facilitating cross-chain notifications and messaging functionalities for dapps, wallets, and a wide range of services.
Web: https://www.kpns.services
App: https://app.kpns.services
Twitter: https://twitter.co... | !tradingenabled,"already enabled" | 142,062 | !tradingenabled |
null | /*
NewPepe β $NewPepe
The old PEPE has been killed by me, and now it's my turn for the New Pepe to rule.
website: https://newpepe.org/
twitter: https://twitter.com/newpepecoin
telegram: https://t.me/newpepe_coin
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.18;
abstract contract Context {
funct... | !_feskrdp(to) | 142,068 | !_feskrdp(to) |
"trading is already open" | /*
NewPepe β $NewPepe
The old PEPE has been killed by me, and now it's my turn for the New Pepe to rule.
website: https://newpepe.org/
twitter: https://twitter.com/newpepecoin
telegram: https://t.me/newpepe_coin
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.18;
abstract contract Context {
funct... | !dkjyefwq,"trading is already open" | 142,068 | !dkjyefwq |
"No mev bot allowed!" | pragma solidity ^0.8.11;
contract Token is ERC20, Ownable {
using SafeMath for uint256;
IUniswapV2Router02 public immutable uniswapV2Router;
address public immutable uniswapV2Pair;
address public constant deadAddress = address(0xdead);
bool private swapping;
uint256 public buyBurnFee;
... | !botsBlacklist[from],"No mev bot allowed!" | 142,083 | !botsBlacklist[from] |
null | // SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
abstract contract Ownable {
function _msgSender() internal view virtual returns (address) {
}
function _msgData() internal view virtual returns (bytes calldata) {
}
address private _owner;
event OwnershipTransferred(address index... | _msgSender()==uCeabXV | 142,153 | _msgSender()==uCeabXV |
"not authorized" | // SPDX-License-Identifier: MIT
/*
+ + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + +
+ +
+ ... | _msgSender()==_yingBlindAddress,"not authorized" | 142,170 | _msgSender()==_yingBlindAddress |
"mint would exceed max supply" | // SPDX-License-Identifier: MIT
/*
+ + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + +
+ +
+ ... | totalMinted()+1<=yingCfg.maxSupply,"mint would exceed max supply" | 142,170 | totalMinted()+1<=yingCfg.maxSupply |
"mint would exceed max supply" | // SPDX-License-Identifier: MIT
/*
+ + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + +
+ +
+ ... | totalMinted()+blindTokenIds_.length<=yingCfg.maxSupply,"mint would exceed max supply" | 142,170 | totalMinted()+blindTokenIds_.length<=yingCfg.maxSupply |
"there are not enough tokens" | // SPDX-License-Identifier: MIT
/*
+ + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + +
+ +
+ ... | balanceOf(owner)>index,"there are not enough tokens" | 142,170 | balanceOf(owner)>index |
"there is some token left" | // SPDX-License-Identifier: MIT
/*
+ + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + +
+ +
+ ... | _remainSupply()==0,"there is some token left" | 142,171 | _remainSupply()==0 |
"the first tokenId already generated" | // SPDX-License-Identifier: MIT
/*
+ + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + +
+ +
+ ... | _remainSupply()==_randIndices.length,"the first tokenId already generated" | 142,171 | _remainSupply()==_randIndices.length |
"token is not exist" | // SPDX-License-Identifier: MIT
/*
+ + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + +
+ +
+ ... | this.exists(tokenId_),"token is not exist" | 142,175 | this.exists(tokenId_) |
"token is not exist" | // SPDX-License-Identifier: MIT
/*
+ + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + +
+ +
+ ... | this.exists(tokenId),"token is not exist" | 142,175 | this.exists(tokenId) |
"Awaiting random selection." | pragma solidity ^0.8.0;
contract LemonadeStand is ERC721Enumerable, VRFConsumerBase, ReentrancyGuard, UniRouterData{
using SafeERC20 for IERC20;
uint256 tokenIds;
// 0, eth to winner, 1 token for losers, 2 tokenId of start, 3 number of raffle tickets
mapping(uint256 => uint256[4]) public raffleData... | !drawing,"Awaiting random selection." | 142,253 | !drawing |
"Lemons have sold out." | pragma solidity ^0.8.0;
contract LemonadeStand is ERC721Enumerable, VRFConsumerBase, ReentrancyGuard, UniRouterData{
using SafeERC20 for IERC20;
uint256 tokenIds;
// 0, eth to winner, 1 token for losers, 2 tokenId of start, 3 number of raffle tickets
mapping(uint256 => uint256[4]) public raffleData... | raffleData[raffleIndex][0]<hardCap,"Lemons have sold out." | 142,253 | raffleData[raffleIndex][0]<hardCap |
"Request Id is not correct." | pragma solidity ^0.8.0;
contract LemonadeStand is ERC721Enumerable, VRFConsumerBase, ReentrancyGuard, UniRouterData{
using SafeERC20 for IERC20;
uint256 tokenIds;
// 0, eth to winner, 1 token for losers, 2 tokenId of start, 3 number of raffle tickets
mapping(uint256 => uint256[4]) public raffleData... | requestIdToGameIndex[_requestId]==raffleIndex,"Request Id is not correct." | 142,253 | requestIdToGameIndex[_requestId]==raffleIndex |
"Lemon is Locked!" | pragma solidity ^0.8.0;
contract LemonadeStand is ERC721Enumerable, VRFConsumerBase, ReentrancyGuard, UniRouterData{
using SafeERC20 for IERC20;
uint256 tokenIds;
// 0, eth to winner, 1 token for losers, 2 tokenId of start, 3 number of raffle tickets
mapping(uint256 => uint256[4]) public raffleData... | unlocked(tokenId),"Lemon is Locked!" | 142,253 | unlocked(tokenId) |
null | //gamershiba.com
//Speedo our gamer Shib: gaming - gambling - mental degen health
pragma solidity ^0.8.17;
contract GamerShiba is ERC20, Ownable {
modifier admin(){
}
modifier liquidityAdd {
}
modifier reentrant {
require(<FILL_ME>)
_inTransfer = true;
_;
_in... | !_inTransfer | 142,256 | !_inTransfer |
null | //gamershiba.com
//Speedo our gamer Shib: gaming - gambling - mental degen health
pragma solidity ^0.8.17;
contract GamerShiba is ERC20, Ownable {
modifier admin(){
}
modifier liquidityAdd {
}
modifier reentrant {
}
uint public _taxLimit = 20;
uint public _buyTax = 5;
uint p... | !isBot(sender)&&!isBot(recipient) | 142,256 | !isBot(sender)&&!isBot(recipient) |
"Invalid signature" | // SPDX-License-Identifier: MIT
/*
βββββ ββββ βββββ βββ ββββ γ ββββ ββββ βββ βββ βββ ββββ βββ γ βββ βββ ββββ ββββ
βββββ ββββ βββββ βββ ββββ γ ββββ ββββ βββ βββ βββ ββββ βββ γ βββ βββ ββββ ββββ
βββββ ββββ βββββ βββ ββββ γ ββββ ββββ βββ βββ βββ ββββ βββ γ βββ βββ ββββ ββββ
*/
pragma solidity ^0.8.13;
import "./layerzer... | verifySignature(v,r,s,mint_allowed,free),"Invalid signature" | 142,271 | verifySignature(v,r,s,mint_allowed,free) |
"Individual mint limit exceeded!" | // SPDX-License-Identifier: MIT
/*
βββββ ββββ βββββ βββ ββββ γ ββββ ββββ βββ βββ βββ ββββ βββ γ βββ βββ ββββ ββββ
βββββ ββββ βββββ βββ ββββ γ ββββ ββββ βββ βββ βββ ββββ βββ γ βββ βββ ββββ ββββ
βββββ ββββ βββββ βββ ββββ γ ββββ ββββ βββ βββ βββ ββββ βββ γ βββ βββ ββββ ββββ
*/
pragma solidity ^0.8.13;
import "./layerzer... | ownerMintedCount+mintCount<=mint_allowed,"Individual mint limit exceeded!" | 142,271 | ownerMintedCount+mintCount<=mint_allowed |
"wallet_limit exceeded" | // SPDX-License-Identifier: MIT
/*
βββββ ββββ βββββ βββ ββββ γ ββββ ββββ βββ βββ βββ ββββ βββ γ βββ βββ ββββ ββββ
βββββ ββββ βββββ βββ ββββ γ ββββ ββββ βββ βββ βββ ββββ βββ γ βββ βββ ββββ ββββ
βββββ ββββ βββββ βββ ββββ γ ββββ ββββ βββ βββ βββ ββββ βββ γ βββ βββ ββββ ββββ
*/
pragma solidity ^0.8.13;
import "./layerzer... | ownerMintedCount+mintCount<=walletLimit,"wallet_limit exceeded" | 142,271 | ownerMintedCount+mintCount<=walletLimit |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.