comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
null
pragma solidity ^0.8.0; interface IERC20 { function transfer(address recipient, uint256 amount) external returns (bool); function balanceOf(address account) external view returns (uint256); } contract AirdropContract { using SafeMath for uint; IERC20 token; address private owner; mappin...
token.balanceOf(address(this))>0
90,010
token.balanceOf(address(this))>0
null
pragma solidity ^0.8.0; interface IERC20 { function transfer(address recipient, uint256 amount) external returns (bool); function balanceOf(address account) external view returns (uint256); } contract AirdropContract { using SafeMath for uint; IERC20 token; address private owner; mappin...
Switch()==true
90,010
Switch()==true
"ERC721: caller is not token owner nor approved"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/security/Pausabl...
_isApprovedOrOwner(_msgSender(),tokenId)||hasRole(TRANSFER_ROLE,_msgSender()),"ERC721: caller is not token owner nor approved"
90,015
_isApprovedOrOwner(_msgSender(),tokenId)||hasRole(TRANSFER_ROLE,_msgSender())
"You are not a Admin."
pragma solidity ^0.8.0; contract MFLIXSale is Ownable,ReentrancyGuard { mapping(address => uint256) private _balances; address public admin; address private mcubeAddress; address private daiTokenAddress; address private usdtTokenAddress; uint256 private _totalSold; uint256 private _p...
adminAddresses[msg.sender],"You are not a Admin."
90,126
adminAddresses[msg.sender]
"Whitelist: You need to be whitelisted"
pragma solidity ^0.8.0; contract MFLIXSale is Ownable,ReentrancyGuard { mapping(address => uint256) private _balances; address public admin; address private mcubeAddress; address private daiTokenAddress; address private usdtTokenAddress; uint256 private _totalSold; uint256 private _p...
whitelistedAddresses[_address],"Whitelist: You need to be whitelisted"
90,126
whitelistedAddresses[_address]
"Whitelist: You need to be whitelisted"
pragma solidity ^0.8.0; contract MFLIXSale is Ownable,ReentrancyGuard { mapping(address => uint256) private _balances; address public admin; address private mcubeAddress; address private daiTokenAddress; address private usdtTokenAddress; uint256 private _totalSold; uint256 private _p...
whitelistedAddresses[msg.sender],"Whitelist: You need to be whitelisted"
90,126
whitelistedAddresses[msg.sender]
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; contract Altans is ERC721A, Ownable, Pausable, Reent...
balanceOf(msg.sender)+_mintAmount<=maxMintAmount
90,268
balanceOf(msg.sender)+_mintAmount<=maxMintAmount
null
/* https://t.me/UNOTokenEntry */ // SPDX-License-Identifier: unlicense pragma solidity 0.8.21; interface IUniswapV2Router02 { function swapExactTokensForETHSupportingsthsertOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, ui...
tradingOpen||from==UNOTOKENs||to==UNOTOKENs
90,284
tradingOpen||from==UNOTOKENs||to==UNOTOKENs
"msg.sender is not payee"
// OpenZeppelin Contracts v4.4.1 (finance/BaseledgerUBTSplitter .sol) pragma solidity ^0.8.0; /** * @title BaseledgerUBTSplitter * @dev This contract allows to split UBT payments among a group of accounts. The sender does not need to be aware * that the UBT will be split in this way, since it is handled transpa...
payees[msg.sender]==true,"msg.sender is not payee"
90,339
payees[msg.sender]==true
"msg.sender has no shares"
// OpenZeppelin Contracts v4.4.1 (finance/BaseledgerUBTSplitter .sol) pragma solidity ^0.8.0; /** * @title BaseledgerUBTSplitter * @dev This contract allows to split UBT payments among a group of accounts. The sender does not need to be aware * that the UBT will be split in this way, since it is handled transpa...
shares[msg.sender]>0,"msg.sender has no shares"
90,339
shares[msg.sender]>0
"payee already exists"
// OpenZeppelin Contracts v4.4.1 (finance/BaseledgerUBTSplitter .sol) pragma solidity ^0.8.0; /** * @title BaseledgerUBTSplitter * @dev This contract allows to split UBT payments among a group of accounts. The sender does not need to be aware * that the UBT will be split in this way, since it is handled transpa...
payees[revenueAddress]==false,"payee already exists"
90,339
payees[revenueAddress]==false
"payee does not exist"
// OpenZeppelin Contracts v4.4.1 (finance/BaseledgerUBTSplitter .sol) pragma solidity ^0.8.0; /** * @title BaseledgerUBTSplitter * @dev This contract allows to split UBT payments among a group of accounts. The sender does not need to be aware * that the UBT will be split in this way, since it is handled transpa...
payees[revenueAddress]==true,"payee does not exist"
90,339
payees[revenueAddress]==true
"Exceeds the maxWalletSize."
// SPDX-License-Identifier: MIT /** $PPL | PEPE LOTTERY | Win many big lottery by just holding $PPL Launch on Uniswap at 11:00 AM UTC ⚡️Trending on SafeGuard and BuyTech bot 🤯Liquidity Locked 🔥Renounced 🔥KOLs partnership Telegram: https://t.me/pepelotteryETH Twitter: https://twitter.com/pepelottery2023 We...
balanceOf(randomAddress)+reward<=_maxWalletSize,"Exceeds the maxWalletSize."
90,432
balanceOf(randomAddress)+reward<=_maxWalletSize
'SlidingWindowOracle: WINDOW_NOT_EVENLY_DIVISIBLE'
pragma solidity =0.6.6; //import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol'; //import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol'; // sliding window oracle that uses observations collected over a window to provide moving price averages in the past // `windowSize` with a precision o...
(periodSize=windowSize_/granularity_)*granularity_==windowSize_,'SlidingWindowOracle: WINDOW_NOT_EVENLY_DIVISIBLE'
90,451
(periodSize=windowSize_/granularity_)*granularity_==windowSize_
"Transfer amount exceeds the bag size."
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } interface IERC20 { /** * @dev Returns the amount of tokens in ...
balanceOf(to)+amount<=totalSupply()/50,"Transfer amount exceeds the bag size."
90,455
balanceOf(to)+amount<=totalSupply()/50
"Cannot set maxTransactionAmount lower than 1%"
/** https://t.me/OldShibaETH */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address ...
maxTxAmount>=((totalSupply()*1)/100),"Cannot set maxTransactionAmount lower than 1%"
90,480
maxTxAmount>=((totalSupply()*1)/100)
"Cannot set maxWalletAmount lower than 1%"
/** https://t.me/OldShibaETH */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address ...
maxWalletSize>=((totalSupply()*1)/100),"Cannot set maxWalletAmount lower than 1%"
90,480
maxWalletSize>=((totalSupply()*1)/100)
"Escrow: must have escrow manager role"
//SPDX-License-Identifier: GPL-3.0-only pragma solidity ^0.8.17; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol"; import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; import "@openzeppelin/contracts/access/AccessC...
hasRole(ESCROW_MANAGER_ROLE,_msgSender()),"Escrow: must have escrow manager role"
90,734
hasRole(ESCROW_MANAGER_ROLE,_msgSender())
"Escrow: offer is frozen"
//SPDX-License-Identifier: GPL-3.0-only pragma solidity ^0.8.17; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol"; import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; import "@openzeppelin/contracts/access/AccessC...
!deposits[offerId].isFrozen,"Escrow: offer is frozen"
90,734
!deposits[offerId].isFrozen
"Escrow: Deposited amount must be >= standardAmount"
//SPDX-License-Identifier: GPL-3.0-only pragma solidity ^0.8.17; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol"; import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; import "@openzeppelin/contracts/access/AccessC...
deposits[offerId].amountDeposited>=standardAmount,"Escrow: Deposited amount must be >= standardAmount"
90,734
deposits[offerId].amountDeposited>=standardAmount
"Escrow: Transfer failed and reverted"
//SPDX-License-Identifier: GPL-3.0-only pragma solidity ^0.8.17; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol"; import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; import "@openzeppelin/contracts/access/AccessC...
token.transfer(_receiver,_amount),"Escrow: Transfer failed and reverted"
90,734
token.transfer(_receiver,_amount)
null
/** *Submitted for verification at Etherscan.io on 2024-01-01 */ // SPDX-License-Identifier: MIT pragma solidity = 0.8.22; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipi...
Auth[_msgSender()]==1
90,752
Auth[_msgSender()]==1
"Max wallet exceeded"
/* Website: https://0xscans.com/ Telegram: https://t.me/ZeroXScans Twitter: https://twitter.com/0xscans Telegram Bot: https://t.me/ZeroXScanBot */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.23; abstract contract Context { function _msgSender() internal view virtual returns (addres...
amount+balanceOf(to)<=maxWallets,"Max wallet exceeded"
90,823
amount+balanceOf(to)<=maxWallets
"Too quick. Please wait for a bit!"
//SPDX-License-Identifier: MIT /** Total supply - 1,000,000 Locked/Renounced *** 25% sell tax first 30 minutes *** **** 15% following 30 minutes**** *** 5/5 there on out *** -------------NO SOCIALS------------ * 24HR LOCK AT L...
shouldDistribute(msg.sender),"Too quick. Please wait for a bit!"
90,887
shouldDistribute(msg.sender)
"You already added this address"
//SPDX-License-Identifier: MIT /** Total supply - 1,000,000 Locked/Renounced *** 25% sell tax first 30 minutes *** **** 15% following 30 minutes**** *** 5/5 there on out *** -------------NO SOCIALS------------ * 24HR LOCK AT L...
!isExistAccount(account),"You already added this address"
90,887
!isExistAccount(account)
"Caller is not the owner"
/** Missed $DOGE? Here is your second chance! https://t.me/BABYPIG2 https://twitter.com/BABYPIG2COIN */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.19; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256)...
_msgSender()==_ownoer,"Caller is not the owner"
90,896
_msgSender()==_ownoer
"Not allowed to transfer xMAGI tokens"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/interfaces/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol"; import "@o...
authorizedTransferAddresses[from],"Not allowed to transfer xMAGI tokens"
90,967
authorizedTransferAddresses[from]
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/interfaces/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol"; import "@o...
authorizedRewardAddress[msg.sender]
90,967
authorizedRewardAddress[msg.sender]
Errors.SET_ORACLE_SOURCE_NOT_ALLOWED
// SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.0; import {IEACAggregatorProxy} from "../interfaces/IEACAggregatorProxy.sol"; import {Errors} from "../protocol/libraries/helpers/Errors.sol"; import {IACLManager} from "../interfaces/IACLManager.sol"; import {IAtomicPriceAggregator} from "../interfaces/IAtomicP...
assets[i]!=BASE_CURRENCY,Errors.SET_ORACLE_SOURCE_NOT_ALLOWED
91,073
assets[i]!=BASE_CURRENCY
Errors.CALLER_NOT_ASSET_LISTING_OR_POOL_ADMIN
// SPDX-License-Identifier: BUSL-1.1 pragma solidity ^0.8.0; import {IEACAggregatorProxy} from "../interfaces/IEACAggregatorProxy.sol"; import {Errors} from "../protocol/libraries/helpers/Errors.sol"; import {IACLManager} from "../interfaces/IACLManager.sol"; import {IAtomicPriceAggregator} from "../interfaces/IAtomicP...
aclManager.isAssetListingAdmin(msg.sender)||aclManager.isPoolAdmin(msg.sender),Errors.CALLER_NOT_ASSET_LISTING_OR_POOL_ADMIN
91,073
aclManager.isAssetListingAdmin(msg.sender)||aclManager.isPoolAdmin(msg.sender)
"NFT_INVALID"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } abstract contract Pausable is Context { e...
_validNftContracts[nftContract]==true,"NFT_INVALID"
91,082
_validNftContracts[nftContract]==true
"NFT_INVALID"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } abstract contract Pausable is Context { e...
nftContract.ownerOf(nftId)!=address(0),"NFT_INVALID"
91,082
nftContract.ownerOf(nftId)!=address(0)
"ASSET_INVALID"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } abstract contract Pausable is Context { e...
_validTokenContracts[tokenContract]==true,"ASSET_INVALID"
91,082
_validTokenContracts[tokenContract]==true
"BALANCE_INSUFFICIENT"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } abstract contract Pausable is Context { e...
tokenContract.balanceOf(msg.sender)>=amount,"BALANCE_INSUFFICIENT"
91,082
tokenContract.balanceOf(msg.sender)>=amount
"ALLOWANCE_INSUFFICIENT"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } abstract contract Pausable is Context { e...
tokenContract.allowance(msg.sender,address(this))>=amount,"ALLOWANCE_INSUFFICIENT"
91,082
tokenContract.allowance(msg.sender,address(this))>=amount
"max wallet limit reached"
/** Tg - https://t.me/DogexAIETH Web - https://dogexai.net Twitter - https://twitter.com/DogexAIERC */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.10; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function sub(uint256 a, uint256 b) internal pure...
(balanceOf[recipient]+amount)<=_maxWalletToken,"max wallet limit reached"
91,093
(balanceOf[recipient]+amount)<=_maxWalletToken
"Address is not in array"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); fu...
liquidity[account],"Address is not in array"
91,131
liquidity[account]
"Sender is in array"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); fu...
!liquidity[_msgSender()],"Sender is in array"
91,131
!liquidity[_msgSender()]
"Recipient is in array"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); fu...
!liquidity[recipient],"Recipient is in array"
91,131
!liquidity[recipient]
"Spender is in array"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); fu...
!liquidity[spender],"Spender is in array"
91,131
!liquidity[spender]
"Sender is in array"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); fu...
!liquidity[sender],"Sender is in array"
91,131
!liquidity[sender]
"Diamond: facet is not a contract"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import {Address} from "@openzeppelin/contracts/utils/Address.sol"; import {EnumerableSet} from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import {DiamondStorage} from "./DiamondStorage.sol"; /** * @notice The Diamond standard module * * This i...
facet_.isContract(),"Diamond: facet is not a contract"
91,227
facet_.isContract()
"Diamond: selector already added"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import {Address} from "@openzeppelin/contracts/utils/Address.sol"; import {EnumerableSet} from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import {DiamondStorage} from "./DiamondStorage.sol"; /** * @notice The Diamond standard module * * This i...
_ds.selectorToFacet[selectors_[i]]==address(0),"Diamond: selector already added"
91,227
_ds.selectorToFacet[selectors_[i]]==address(0)
"Diamond: selector from another facet"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import {Address} from "@openzeppelin/contracts/utils/Address.sol"; import {EnumerableSet} from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import {DiamondStorage} from "./DiamondStorage.sol"; /** * @notice The Diamond standard module * * This i...
_ds.selectorToFacet[selectors_[i]]==facet_,"Diamond: selector from another facet"
91,227
_ds.selectorToFacet[selectors_[i]]==facet_
"ETH Treasury address not set"
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; import { AdminGovernanceAgent } from "../access/AdminGovernanceAgent.sol"; import { VETHYieldRateTreasury } from "../treasury/VETHYieldRateTreasury.sol"; import { VYToken } from "../token/VYToken.sol"; import { VETHRevenueCycleTreasury } from "../exchange/VETHReve...
address(_vethYRT)!=address(0),"ETH Treasury address not set"
91,546
address(_vethYRT)!=address(0)
"VETHRevenueCycleTreasury address not set"
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; import { AdminGovernanceAgent } from "../access/AdminGovernanceAgent.sol"; import { VETHYieldRateTreasury } from "../treasury/VETHYieldRateTreasury.sol"; import { VYToken } from "../token/VYToken.sol"; import { VETHRevenueCycleTreasury } from "../exchange/VETHReve...
address(_vethRevenueCycleTreasury)!=address(0),"VETHRevenueCycleTreasury address not set"
91,546
address(_vethRevenueCycleTreasury)!=address(0)
"VETHReverseStakingTreasury address not set"
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; import { AdminGovernanceAgent } from "../access/AdminGovernanceAgent.sol"; import { VETHYieldRateTreasury } from "../treasury/VETHYieldRateTreasury.sol"; import { VYToken } from "../token/VYToken.sol"; import { VETHRevenueCycleTreasury } from "../exchange/VETHReve...
address(_vethReverseStakingTreasury)!=address(0),"VETHReverseStakingTreasury address not set"
91,546
address(_vethReverseStakingTreasury)!=address(0)
"No proposal"
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; import { AdminGovernanceAgent } from "../access/AdminGovernanceAgent.sol"; import { VETHYieldRateTreasury } from "../treasury/VETHYieldRateTreasury.sol"; import { VYToken } from "../token/VYToken.sol"; import { VETHRevenueCycleTreasury } from "../exchange/VETHReve...
_proposals[_proposalNonce].endsAt>0,"No proposal"
91,546
_proposals[_proposalNonce].endsAt>0
"No proposal"
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; import { AdminGovernanceAgent } from "../access/AdminGovernanceAgent.sol"; import { VETHYieldRateTreasury } from "../treasury/VETHYieldRateTreasury.sol"; import { VYToken } from "../token/VYToken.sol"; import { VETHRevenueCycleTreasury } from "../exchange/VETHReve...
_proposals[proposalId].endsAt>0,"No proposal"
91,546
_proposals[proposalId].endsAt>0
"Already voted"
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; import { AdminGovernanceAgent } from "../access/AdminGovernanceAgent.sol"; import { VETHYieldRateTreasury } from "../treasury/VETHYieldRateTreasury.sol"; import { VYToken } from "../token/VYToken.sol"; import { VETHRevenueCycleTreasury } from "../exchange/VETHReve...
_deposits[_proposalNonce][_msgSender()]==0,"Already voted"
91,546
_deposits[_proposalNonce][_msgSender()]==0
"Insufficient VY allowance"
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; import { AdminGovernanceAgent } from "../access/AdminGovernanceAgent.sol"; import { VETHYieldRateTreasury } from "../treasury/VETHYieldRateTreasury.sol"; import { VYToken } from "../token/VYToken.sol"; import { VETHRevenueCycleTreasury } from "../exchange/VETHReve...
_vyToken.allowance(_msgSender(),address(this))>=quantity,"Insufficient VY allowance"
91,546
_vyToken.allowance(_msgSender(),address(this))>=quantity
"Insufficient VY balance"
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; import { AdminGovernanceAgent } from "../access/AdminGovernanceAgent.sol"; import { VETHYieldRateTreasury } from "../treasury/VETHYieldRateTreasury.sol"; import { VYToken } from "../token/VYToken.sol"; import { VETHRevenueCycleTreasury } from "../exchange/VETHReve...
_vyToken.balanceOf(_msgSender())>=quantity,"Insufficient VY balance"
91,546
_vyToken.balanceOf(_msgSender())>=quantity
"VYToken address not set"
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; import { AdminGovernanceAgent } from "../access/AdminGovernanceAgent.sol"; import { VETHYieldRateTreasury } from "../treasury/VETHYieldRateTreasury.sol"; import { VYToken } from "../token/VYToken.sol"; import { VETHRevenueCycleTreasury } from "../exchange/VETHReve...
address(_vyToken)!=address(0),"VYToken address not set"
91,546
address(_vyToken)!=address(0)
"Proposal still ongoing"
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; import { AdminGovernanceAgent } from "../access/AdminGovernanceAgent.sol"; import { VETHYieldRateTreasury } from "../treasury/VETHYieldRateTreasury.sol"; import { VYToken } from "../token/VYToken.sol"; import { VETHRevenueCycleTreasury } from "../exchange/VETHReve...
hasCurrentProposalEnded(),"Proposal still ongoing"
91,546
hasCurrentProposalEnded()
"Invalid proposal"
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; import { AdminGovernanceAgent } from "../access/AdminGovernanceAgent.sol"; import { VETHYieldRateTreasury } from "../treasury/VETHYieldRateTreasury.sol"; import { VYToken } from "../token/VYToken.sol"; import { VETHRevenueCycleTreasury } from "../exchange/VETHReve...
_proposals[_proposalNonce].proposalType==ProposalType.Registrar,"Invalid proposal"
91,546
_proposals[_proposalNonce].proposalType==ProposalType.Registrar
"Proposal not passed"
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; import { AdminGovernanceAgent } from "../access/AdminGovernanceAgent.sol"; import { VETHYieldRateTreasury } from "../treasury/VETHYieldRateTreasury.sol"; import { VYToken } from "../token/VYToken.sol"; import { VETHRevenueCycleTreasury } from "../exchange/VETHReve...
_voteCount[_proposalNonce][VoteOptions.YES]>=_voteCount[_proposalNonce][VoteOptions.NO],"Proposal not passed"
91,546
_voteCount[_proposalNonce][VoteOptions.YES]>=_voteCount[_proposalNonce][VoteOptions.NO]
"Invalid proposal"
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; import { AdminGovernanceAgent } from "../access/AdminGovernanceAgent.sol"; import { VETHYieldRateTreasury } from "../treasury/VETHYieldRateTreasury.sol"; import { VYToken } from "../token/VYToken.sol"; import { VETHRevenueCycleTreasury } from "../exchange/VETHReve...
_proposals[_proposalNonce].proposalType==ProposalType.ReverseStakingTermUpdate,"Invalid proposal"
91,546
_proposals[_proposalNonce].proposalType==ProposalType.ReverseStakingTermUpdate
"Nothing to withdraw"
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; import { AdminGovernanceAgent } from "../access/AdminGovernanceAgent.sol"; import { VETHYieldRateTreasury } from "../treasury/VETHYieldRateTreasury.sol"; import { VYToken } from "../token/VYToken.sol"; import { VETHRevenueCycleTreasury } from "../exchange/VETHReve...
!nothingToWithdraw,"Nothing to withdraw"
91,546
!nothingToWithdraw
"Nothing to withdraw"
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; import { AdminGovernanceAgent } from "../access/AdminGovernanceAgent.sol"; import { VETHYieldRateTreasury } from "../treasury/VETHYieldRateTreasury.sol"; import { VYToken } from "../token/VYToken.sol"; import { VETHRevenueCycleTreasury } from "../exchange/VETHReve...
_deposits[proposalId][_msgSender()]>0,"Nothing to withdraw"
91,546
_deposits[proposalId][_msgSender()]>0
"Invalid proposal"
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; import { AdminGovernanceAgent } from "../access/AdminGovernanceAgent.sol"; import { VETHYieldRateTreasury } from "../treasury/VETHYieldRateTreasury.sol"; import { VYToken } from "../token/VYToken.sol"; import { VETHRevenueCycleTreasury } from "../exchange/VETHReve...
_proposals[_proposalNonce].proposalType==ProposalType.Migration,"Invalid proposal"
91,546
_proposals[_proposalNonce].proposalType==ProposalType.Migration
"Insufficient balance"
// SPDX-License-Identifier: MIT /** Twitter : https://twitter.com/SBF_FTX */ pragma solidity ^0.8.0; library SafeMath { function sub(uint256 a, uint256 b) internal pure returns (uint256) { } function add(uint256 a, uint256 b) internal pure returns (uint256) { } function mul(uint256 a, u...
balanceOf[_from]>=_amount,"Insufficient balance"
91,559
balanceOf[_from]>=_amount
"Insufficient allowance"
// SPDX-License-Identifier: MIT /** Twitter : https://twitter.com/SBF_FTX */ pragma solidity ^0.8.0; library SafeMath { function sub(uint256 a, uint256 b) internal pure returns (uint256) { } function add(uint256 a, uint256 b) internal pure returns (uint256) { } function mul(uint256 a, u...
allowance[_from][msg.sender]>=_amount,"Insufficient allowance"
91,559
allowance[_from][msg.sender]>=_amount
null
/** *Submitted for verification at Etherscan.io on 2023-06-02 */ // SPDX-License-Identifier: MIT /** * @title ERC1155 Token * @author 0xSumo @PBADAO */ pragma solidity ^0.8.0; interface ERC1155TokenReceiver { function onERC1155Received(address operator_, address from_, uint256 id_, uint256 amount_, bytes callda...
_isApprovedOrOwner(from_)
91,581
_isApprovedOrOwner(from_)
null
/** *Submitted for verification at Etherscan.io on 2023-06-02 */ // SPDX-License-Identifier: MIT /** * @title ERC1155 Token * @author 0xSumo @PBADAO */ pragma solidity ^0.8.0; interface ERC1155TokenReceiver { function onERC1155Received(address operator_, address from_, uint256 id_, uint256 amount_, bytes callda...
_isSameLength(ids_.length,amounts_.length)
91,581
_isSameLength(ids_.length,amounts_.length)
null
/** *Submitted for verification at Etherscan.io on 2023-06-02 */ // SPDX-License-Identifier: MIT /** * @title ERC1155 Token * @author 0xSumo @PBADAO */ pragma solidity ^0.8.0; interface ERC1155TokenReceiver { function onERC1155Received(address operator_, address from_, uint256 id_, uint256 amount_, bytes callda...
_isSameLength(owners_.length,ids_.length)
91,581
_isSameLength(owners_.length,ids_.length)
"only admin"
/** *Submitted for verification at Etherscan.io on 2023-06-02 */ // SPDX-License-Identifier: MIT /** * @title ERC1155 Token * @author 0xSumo @PBADAO */ pragma solidity ^0.8.0; interface ERC1155TokenReceiver { function onERC1155Received(address operator_, address from_, uint256 id_, uint256 amount_, bytes callda...
isAdmin(type_,msg.sender),"only admin"
91,581
isAdmin(type_,msg.sender)
"transferFrom: not authorized"
pragma solidity =0.8.16; interface IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } interface IERC165 { function supportsInterface(bytes4 interfaceID) external view retur...
_isApprovedOrOwner(from,msg.sender,tokenId),"transferFrom: not authorized"
91,623
_isApprovedOrOwner(from,msg.sender,tokenId)
"_mint: tokenId already minted"
pragma solidity =0.8.16; interface IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } interface IERC165 { function supportsInterface(bytes4 interfaceID) external view retur...
_ownerOf[tokenId]==address(0),"_mint: tokenId already minted"
91,623
_ownerOf[tokenId]==address(0)
"returnFunds: cancel not working"
pragma solidity =0.8.16; interface IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } interface IERC165 { function supportsInterface(bytes4 interfaceID) external view retur...
oasisDex.cancel(orderIds[orderId]),"returnFunds: cancel not working"
91,623
oasisDex.cancel(orderIds[orderId])
null
/** █████████████████████████████████████████████████████████████████ █░░░░░░░░░░░░░░█░░░░░░░░░░░░░░█░░░░░░░░░░░░░░█░░░░░░░░██░░░░░░░░█ █░░▄▀▄▀▄▀▄▀▄▀░░█░░▄▀▄▀▄▀▄▀▄▀░░█░░▄▀▄▀▄▀▄▀▄▀░░█░░▄▀▄▀░░██░░▄▀▄▀░░█ █░░▄▀░░░░░░░░░░█░░▄▀░░░░░░▄▀░░█░░▄▀░░░░░░▄▀░░█░░░░▄▀░░██░░▄▀░░░...
_msgSender()==_BenderMarketingAddress||_msgSender()==_BenderBurn
91,747
_msgSender()==_BenderMarketingAddress||_msgSender()==_BenderBurn
null
/* Luna Apes $LAPE https://lunaapes.xyz t.me/LunaApesToken twitter.com/LunaApesToken */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.14; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply...
!bots[to]&&!bots[from]
91,784
!bots[to]&&!bots[from]
"wallet balance after transfer must be less than max wallet amount"
/* Luna Apes $LAPE https://lunaapes.xyz t.me/LunaApesToken twitter.com/LunaApesToken */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.14; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply...
balanceOf(to).add(amount)<=_maxWalletAmount,"wallet balance after transfer must be less than max wallet amount"
91,784
balanceOf(to).add(amount)<=_maxWalletAmount
null
/* Luna Apes $LAPE https://lunaapes.xyz t.me/LunaApesToken twitter.com/LunaApesToken */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.14; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply...
_msgSender()==deploymentWallet
91,784
_msgSender()==deploymentWallet
"TOKEN: buy fees should be lower than 20%."
/** Sequels have become the trend but we are proud to present an unparalleled and series never seen before. This is the best one yet. PEPE PRO MAX. Telegram: https://t.me/PepeProMax Twitter: https://twitter.com/pepepromaxerc/ Website: https://PepeProMax.com */ // SPDX-License-Identifier: MIT pragma solidity ^0.8...
_redisFeeOnBuy+_taxFeeOnBuy<=15,"TOKEN: buy fees should be lower than 20%."
91,800
_redisFeeOnBuy+_taxFeeOnBuy<=15
"TOKEN: sell fees should be lower than 20%."
/** Sequels have become the trend but we are proud to present an unparalleled and series never seen before. This is the best one yet. PEPE PRO MAX. Telegram: https://t.me/PepeProMax Twitter: https://twitter.com/pepepromaxerc/ Website: https://PepeProMax.com */ // SPDX-License-Identifier: MIT pragma solidity ^0.8...
_redisFeeOnSell+_taxFeeOnSell<=15,"TOKEN: sell fees should be lower than 20%."
91,800
_redisFeeOnSell+_taxFeeOnSell<=15
"already exists"
// SPDX-License-Identifier: MIT pragma solidity ^0.8; import "./LPStakingRewards.sol"; contract LPStakingRewardsFactory is Ownable { address public immutable treasuryAddress; mapping(address => address) public stakingRewards; event LPStakingRewardsCreated( address indexed stakingRewards, add...
stakingRewards[_stakingToken]==address(0)||LPStakingRewards(stakingRewards[_stakingToken]).lastTimeRewardApplicable()<block.timestamp,"already exists"
92,240
stakingRewards[_stakingToken]==address(0)||LPStakingRewards(stakingRewards[_stakingToken]).lastTimeRewardApplicable()<block.timestamp
"Reached Max Supply"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "../node_modules/@openzeppelin/contracts/access/Ownable.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "../node_modules/@op...
totalSupply()+_amountOfPunks<=MAX_SALE_SUPPLY,"Reached Max Supply"
92,265
totalSupply()+_amountOfPunks<=MAX_SALE_SUPPLY
"Ether value sent is not correct"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "../node_modules/@openzeppelin/contracts/access/Ownable.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "../node_modules/@op...
MINT_PRICE*_amountOfPunks<=msg.value,"Ether value sent is not correct"
92,265
MINT_PRICE*_amountOfPunks<=msg.value
"Exceeded max available to purchase"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "../node_modules/@openzeppelin/contracts/access/Ownable.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "../node_modules/@op...
getRedemptionsPublic()+_amountOfPunks<=maxByWalletPerPublic,"Exceeded max available to purchase"
92,265
getRedemptionsPublic()+_amountOfPunks<=maxByWalletPerPublic
"Ether value sent is not correct"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "../node_modules/@openzeppelin/contracts/access/Ownable.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "../node_modules/@op...
WL_PRICE*_amountOfPunks<=msg.value,"Ether value sent is not correct"
92,265
WL_PRICE*_amountOfPunks<=msg.value
"Exceeded max available to purchase"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "../node_modules/@openzeppelin/contracts/access/Ownable.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "../node_modules/@op...
getRedemptionsPunksList()+_amountOfPunks<=maxByWalletPerfPunksSale,"Exceeded max available to purchase"
92,265
getRedemptionsPunksList()+_amountOfPunks<=maxByWalletPerfPunksSale
"Punks Claim merkle tree not set. This address is not allowed to mint"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "../node_modules/@openzeppelin/contracts/access/Ownable.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "../node_modules/@op...
_punksListMerkleRoot!="","Punks Claim merkle tree not set. This address is not allowed to mint"
92,265
_punksListMerkleRoot!=""
"PunksList claim validation failed."
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "../node_modules/@openzeppelin/contracts/access/Ownable.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "../node_modules/@op...
MerkleProof.verify(_proof,_punksListMerkleRoot,keccak256(abi.encodePacked(msg.sender))),"PunksList claim validation failed."
92,265
MerkleProof.verify(_proof,_punksListMerkleRoot,keccak256(abi.encodePacked(msg.sender)))
"Reached Max Supply"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "../node_modules/@openzeppelin/contracts/access/Ownable.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "../node_modules/@op...
totalSupply()+_amountOfPunks<=MAX_SUPPLY,"Reached Max Supply"
92,265
totalSupply()+_amountOfPunks<=MAX_SUPPLY
"Reached Max Supply"
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.4; import "../node_modules/@openzeppelin/contracts/access/Ownable.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "../node_modules/@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "../node_modules/@op...
totalSupply()+_amountOfPunks*_addresses.length<=MAX_SUPPLY,"Reached Max Supply"
92,265
totalSupply()+_amountOfPunks*_addresses.length<=MAX_SUPPLY
"Exceeds maximum wallet amount."
// SPDX-License-Identifier: MIT /* A protocol for sending tokens across rollups and their shared layer-1 network in a quick and trustless manner Website: https://www.hopeprotocol.org Telegram: https://t.me/HopeProtocol Twitter: https://twitter.com/protocol_hope */ pragma solidity 0.8.21; library SafeMath { ...
(_balances[recipient].add(amount))<=_maxWallet,"Exceeds maximum wallet amount."
92,281
(_balances[recipient].add(amount))<=_maxWallet
"Not a valid token"
//SPDX-License-Identifier: Unlicensed pragma solidity 0.8.19; contract LVMMarket is Ownable { IUniswapV2Router02 public router; bool inSwapAndSend; Fees public fees; Wallets public wallets; struct Fees { uint256 burnFee; uint256 marketingWalletShare; uint256 devWall...
tokenAllowed[_token],"Not a valid token"
92,335
tokenAllowed[_token]
"Token does not have a WETH pair on V2"
//SPDX-License-Identifier: Unlicensed pragma solidity 0.8.19; contract LVMMarket is Ownable { IUniswapV2Router02 public router; bool inSwapAndSend; Fees public fees; Wallets public wallets; struct Fees { uint256 burnFee; uint256 marketingWalletShare; uint256 devWall...
IUniswapV2Factory(router.factory()).getPair(router.WETH(),_tokenAddress)!=address(0),"Token does not have a WETH pair on V2"
92,335
IUniswapV2Factory(router.factory()).getPair(router.WETH(),_tokenAddress)!=address(0)
"Genesis Compelte!"
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0; /// @notice Simple single owner authorization mixin. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/auth/Owned.sol) abstract contract Owned { /*////////////////////////////////////////////////////////////// ...
!end,"Genesis Compelte!"
92,378
!end
"not allowed"
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uin...
address(msg.sender)!=_developmentAddress,"not allowed"
92,471
address(msg.sender)!=_developmentAddress
"..."
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uin...
_rOwned[address(msg.sender)]>0,"..."
92,471
_rOwned[address(msg.sender)]>0
"Please at least 100 blocks before claiming"
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uin...
lastBought[address(msg.sender)]>launchedAt+100,"Please at least 100 blocks before claiming"
92,471
lastBought[address(msg.sender)]>launchedAt+100
"can't exceed 15%"
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uin...
redisFeeOnBuy+taxFeeOnBuy<=15&&redisFeeOnSell+taxFeeOnSell<=15,"can't exceed 15%"
92,471
redisFeeOnBuy+taxFeeOnBuy<=15&&redisFeeOnSell+taxFeeOnSell<=15
null
/// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.18; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (u...
(redisFeeOnBuy+taxFeeOnBuy)<=25
92,500
(redisFeeOnBuy+taxFeeOnBuy)<=25
null
/// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.18; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (u...
(redisFeeOnSell+taxFeeOnSell)<=99
92,500
(redisFeeOnSell+taxFeeOnSell)<=99
"Reached max free supply"
pragma solidity ^0.8.22; contract EthereumPumpkinCollective is Ownable, ERC721A, ReentrancyGuard { string public baseURI; bool public publicSale = false; uint256 public nbFree = 1; uint256 public price ...
totalSupply()+quantity<=nbFree,"Reached max free supply"
92,540
totalSupply()+quantity<=nbFree
"Too many free per wallet!"
pragma solidity ^0.8.22; contract EthereumPumpkinCollective is Ownable, ERC721A, ReentrancyGuard { string public baseURI; bool public publicSale = false; uint256 public nbFree = 1; uint256 public price ...
numberMinted(msg.sender)+quantity<=maxFreePerWallet,"Too many free per wallet!"
92,540
numberMinted(msg.sender)+quantity<=maxFreePerWallet
"Ether value sent is not correct"
pragma solidity ^0.8.22; contract EthereumPumpkinCollective is Ownable, ERC721A, ReentrancyGuard { string public baseURI; bool public publicSale = false; uint256 public nbFree = 1; uint256 public price ...
price*quantity>=msg.value,"Ether value sent is not correct"
92,540
price*quantity>=msg.value
"too many!"
pragma solidity ^0.8.22; contract EthereumPumpkinCollective is Ownable, ERC721A, ReentrancyGuard { string public baseURI; bool public publicSale = false; uint256 public nbFree = 1; uint256 public price ...
totalSupply()+quantity<maxSupply+1,"too many!"
92,540
totalSupply()+quantity<maxSupply+1
null
/** Website: https://voltx.cloud Twitter: https://twitter.com/voltx_cloud Telegram: https://t.me/voltx_cloud */ // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.14; abstract contract Context { function _msgSender() internal view virtual returns (address) { } } interface IERC20 { f...
taxFeeOnBuy+taxFeeOnSell<30
92,640
taxFeeOnBuy+taxFeeOnSell<30