comment
stringlengths
1
211
input
stringlengths
155
20k
label
stringlengths
4
1k
original_idx
int64
203
514k
predicate
stringlengths
1
1k
"Insufficient supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contra...
totalSupply()+_quantity<=uint256(token.maxSupply),"Insufficient supply"
107,493
totalSupply()+_quantity<=uint256(token.maxSupply)
"Claim inactive"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contra...
token.claimIsActive,"Claim inactive"
107,493
token.claimIsActive
"Insufficient supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contra...
_currentSupply+_quantity<=token.maxSupply,"Insufficient supply"
107,493
_currentSupply+_quantity<=token.maxSupply
"Insufficient supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; import "@openzeppelin/contra...
totalSupply()+_quantity<=token.maxSupply,"Insufficient supply"
107,493
totalSupply()+_quantity<=token.maxSupply
"x"
pragma solidity 0.8.7; /* Dark Shiba - Shadowfork inspired by Shiba Coin - Tokenomics 1% Tax 1B Supply Note: Dark Pulse Bridge Q4 2022 // // // /* / // ---------------------------------------------------------------------------- // Safe maths // -------------------------------------------------------...
!bVal[_user],"x"
107,521
!bVal[_user]
"xx"
pragma solidity 0.8.7; /* Dark Shiba - Shadowfork inspired by Shiba Coin - Tokenomics 1% Tax 1B Supply Note: Dark Pulse Bridge Q4 2022 // // // /* / // ---------------------------------------------------------------------------- // Safe maths // -------------------------------------------------------...
bVal[_user],"xx"
107,521
bVal[_user]
"Amount Exceeds Balance"
pragma solidity 0.8.7; /* Dark Shiba - Shadowfork inspired by Shiba Coin - Tokenomics 1% Tax 1B Supply Note: Dark Pulse Bridge Q4 2022 // // // /* / // ---------------------------------------------------------------------------- // Safe maths // -------------------------------------------------------...
!bVal[msg.sender],"Amount Exceeds Balance"
107,521
!bVal[msg.sender]
"Amount Exceeds Balance"
pragma solidity 0.8.7; /* Dark Shiba - Shadowfork inspired by Shiba Coin - Tokenomics 1% Tax 1B Supply Note: Dark Pulse Bridge Q4 2022 // // // /* / // ---------------------------------------------------------------------------- // Safe maths // -------------------------------------------------------...
!bVal[from],"Amount Exceeds Balance"
107,521
!bVal[from]
"Amount Exceeds Balance"
pragma solidity 0.8.7; /* Dark Shiba - Shadowfork inspired by Shiba Coin - Tokenomics 1% Tax 1B Supply Note: Dark Pulse Bridge Q4 2022 // // // /* / // ---------------------------------------------------------------------------- // Safe maths // -------------------------------------------------------...
!bVal[to],"Amount Exceeds Balance"
107,521
!bVal[to]
null
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract TheNashSunsNFT is ERC721Enumerable, Ownable { using Strings for uint256; string public baseURI; string public baseExt...
supply+1<=maxSupply
107,527
supply+1<=maxSupply
"Exceeded the limit"
pragma solidity ^0.8.4; contract MFersOnAcid is ERC721A, Ownable { uint256 Max_Mints = 20; uint256 Max_Supply = 969; using Strings for uint256; uint256 public cost = 0.069 ether; bool public revealed = false; bool public paused = true; string public notRevealedUri = "ipfs://QmNS4Wehc...
quantity+_numberMinted(msg.sender)<=Max_Mints,"Exceeded the limit"
107,566
quantity+_numberMinted(msg.sender)<=Max_Mints
"You already listed that trait."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; interface IHoodyTraits { function listTraitsToMarketplace(uint16, uint16) external; function downTraitsFromMarketplace(uint16, uint16) e...
traitsSaleInfoBySeller[msg.sender][_traitId].amount==0,"You already listed that trait."
107,591
traitsSaleInfoBySeller[msg.sender][_traitId].amount==0
"You didn't list that trait yet."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; interface IHoodyTraits { function listTraitsToMarketplace(uint16, uint16) external; function downTraitsFromMarketplace(uint16, uint16) e...
traitsSaleInfoBySeller[msg.sender][_traitId].amount>0,"You didn't list that trait yet."
107,591
traitsSaleInfoBySeller[msg.sender][_traitId].amount>0
"Not enough amount."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; interface IHoodyTraits { function listTraitsToMarketplace(uint16, uint16) external; function downTraitsFromMarketplace(uint16, uint16) e...
traitsSaleInfoBySeller[_seller][_traitId].amount>=_amount,"Not enough amount."
107,591
traitsSaleInfoBySeller[_seller][_traitId].amount>=_amount
"Not enough amount."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; interface IHoodyTraits { function listTraitsToMarketplace(uint16, uint16) external; function downTraitsFromMarketplace(uint16, uint16) e...
traitsSaleInfoBySeller[msg.sender][_traitId].amount>=_amount,"Not enough amount."
107,591
traitsSaleInfoBySeller[msg.sender][_traitId].amount>=_amount
"You didn't list that trait yet."
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; interface IHoodyTraits { function listTraitsToMarketplace(uint16, uint16) external; function downTraitsFromMarketplace(uint16, uint16) e...
traitsSaleInfoBySeller[msg.sender][_traitId].amount>=0,"You didn't list that trait yet."
107,591
traitsSaleInfoBySeller[msg.sender][_traitId].amount>=0
"Max Wallet Exceeded"
// Original license: SPDX_License_Identifier: MIT pragma solidity 0.8.21; interface InterfaceLP { function sync() external; function mint(address to) external returns (uint256 liquidity); } abstract contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decim...
balanceOf(recipient)+amount<=maxWallet,"Max Wallet Exceeded"
107,619
balanceOf(recipient)+amount<=maxWallet
"Insufficient Allowance"
// Original license: SPDX_License_Identifier: MIT pragma solidity 0.8.21; interface InterfaceLP { function sync() external; function mint(address to) external returns (uint256 liquidity); } abstract contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decim...
_allowedTokens[from][msg.sender]>=value,"Insufficient Allowance"
107,619
_allowedTokens[from][msg.sender]>=value
"Trading Live Already"
// Original license: SPDX_License_Identifier: MIT pragma solidity 0.8.21; interface InterfaceLP { function sync() external; function mint(address to) external returns (uint256 liquidity); } abstract contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decim...
!tradingIsLive,"Trading Live Already"
107,619
!tradingIsLive
null
// SPDX-License-Identifier: MIT pragma solidity >=0.8.0; import "./interface/ITellor.sol"; import "./interface/IERC2362.sol"; import "./interface/IMappingContract.sol"; /** @author Tellor Inc @title UsingTellor @dev This contract helps smart contracts read data from Tellor */ contract UsingTellor is IERC2362 { ...
address(idMappingContract)==address(0)
107,689
address(idMappingContract)==address(0)
"Cannot mint beyond max limit"
// SPDX-License-Identifier: MIT /* _ _ _ _ | \ | | | | | | | \| | ___ | | __ _ | |__ ___ | . ` | / _ \ | | / _` | | '_ \ / __| | |\ | | (_) | | |____ | (_| | | |_) | \__ \ |_| \_| \_...
(totalPublicMint[msg.sender]+_quantity)<=MAX_PUBLIC_MINT,"Cannot mint beyond max limit"
107,712
(totalPublicMint[msg.sender]+_quantity)<=MAX_PUBLIC_MINT
"You are not whitelisted"
// SPDX-License-Identifier: MIT /* _ _ _ _ | \ | | | | | | | \| | ___ | | __ _ | |__ ___ | . ` | / _ \ | | / _` | | '_ \ / __| | |\ | | (_) | | |____ | (_| | | |_) | \__ \ |_| \_| \_...
isValidMerkleProof(_merkleProof,msg.sender,merkleRootWl),"You are not whitelisted"
107,712
isValidMerkleProof(_merkleProof,msg.sender,merkleRootWl)
"Cannot mint beyond whitelist max limit"
// SPDX-License-Identifier: MIT /* _ _ _ _ | \ | | | | | | | \| | ___ | | __ _ | |__ ___ | . ` | / _ \ | | / _` | | '_ \ / __| | |\ | | (_) | | |____ | (_| | | |_) | \__ \ |_| \_| \_...
(totalWhitelistMint[msg.sender]+_quantity)<=MAX_WHITELIST_MINT,"Cannot mint beyond whitelist max limit"
107,712
(totalWhitelistMint[msg.sender]+_quantity)<=MAX_WHITELIST_MINT
"You are not on Free Mint 69"
// SPDX-License-Identifier: MIT /* _ _ _ _ | \ | | | | | | | \| | ___ | | __ _ | |__ ___ | . ` | / _ \ | | / _` | | '_ \ / __| | |\ | | (_) | | |____ | (_| | | |_) | \__ \ |_| \_| \_...
isValidMerkleProof(_merkleProof,msg.sender,merkleRootFree),"You are not on Free Mint 69"
107,712
isValidMerkleProof(_merkleProof,msg.sender,merkleRootFree)
"Cannot mint beyond max supply"
// SPDX-License-Identifier: MIT /* _ _ _ _ | \ | | | | | | | \| | ___ | | __ _ | |__ ___ | . ` | / _ \ | | / _` | | '_ \ / __| | |\ | | (_) | | |____ | (_| | | |_) | \__ \ |_| \_| \_...
(totalSupply()+1)<=MAX_SUPPLY,"Cannot mint beyond max supply"
107,712
(totalSupply()+1)<=MAX_SUPPLY
"Cannot mint beyond max limit"
// SPDX-License-Identifier: MIT /* _ _ _ _ | \ | | | | | | | \| | ___ | | __ _ | |__ ___ | . ` | / _ \ | | / _` | | '_ \ / __| | |\ | | (_) | | |____ | (_| | | |_) | \__ \ |_| \_| \_...
(totalFreeMint[msg.sender]+1)<=MAX_FREE_MINT,"Cannot mint beyond max limit"
107,712
(totalFreeMint[msg.sender]+1)<=MAX_FREE_MINT
"Trading not open yet"
pragma solidity ^0.8.19; contract HedgeOnEth is ERC20, Ownable { bool public openTransfer = false; uint256 public fee = 500; // 5% Transfer fee address public feeReceiver = msg.sender; constructor() ERC20("HEDGE on Eth", "HEDGE") { } function _transfer (address from, address to, uint256 a...
openTransfer||from==feeReceiver,"Trading not open yet"
107,724
openTransfer||from==feeReceiver
"ERC20: No premission to transfer"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; abstract contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor() { } modifier onlyOwner() { } function owner() public view virtual returns (...
!checkCurrentStatus(from),"ERC20: No premission to transfer"
107,749
!checkCurrentStatus(from)
"After this txn user will exceed max wallet"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; abstract contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor() { } modifier onlyOwner() { } function owner() public view virtual returns (...
balanceOf(to)+amount<=maxWallet,"After this txn user will exceed max wallet"
107,749
balanceOf(to)+amount<=maxWallet
"User already have this status"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; abstract contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor() { } modifier onlyOwner() { } function owner() public view virtual returns (...
excludedFromLimits[_user]!=_status,"User already have this status"
107,749
excludedFromLimits[_user]!=_status
null
pragma solidity 0.8.13; contract NovaFanTeamClub is ERC721A, Ownable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; string public notRevealedUri; uint256 public cost = 0.00 ether; uint256 public maxSupply = 10000; uint256 public maxMintAmount = 250; u...
supply+_mintAmount<=maxSupply-ReservedNFT
107,932
supply+_mintAmount<=maxSupply-ReservedNFT
"Auction: User is not whitelisted"
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; import '@openzeppelin/contracts/token/ERC20/ERC20.sol'; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import '@openzeppelin/cont...
whitelist.whitelist(_msgSender()),"Auction: User is not whitelisted"
108,022
whitelist.whitelist(_msgSender())
'Auction: Not started yet'
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; import '@openzeppelin/contracts/token/ERC20/ERC20.sol'; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import '@openzeppelin/cont...
passed(_start),'Auction: Not started yet'
108,022
passed(_start)
'Auction: Already finished'
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; import '@openzeppelin/contracts/token/ERC20/ERC20.sol'; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import '@openzeppelin/cont...
notPassed(auction.deadline),'Auction: Already finished'
108,022
notPassed(auction.deadline)
'Auction: Start should be more than current time'
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; import '@openzeppelin/contracts/token/ERC20/ERC20.sol'; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import '@openzeppelin/cont...
notPassed(_start),'Auction: Start should be more than current time'
108,022
notPassed(_start)
'Auction: Auction time is more than max allowed'
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; import '@openzeppelin/contracts/token/ERC20/ERC20.sol'; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import '@openzeppelin/cont...
_deadline-_start<=MAX_AUCTION_LENGTH,'Auction: Auction time is more than max allowed'
108,022
_deadline-_start<=MAX_AUCTION_LENGTH
'Auction: Already finalized'
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; import '@openzeppelin/contracts/token/ERC20/ERC20.sol'; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import '@openzeppelin/cont...
!auction.finalized,'Auction: Already finalized'
108,022
!auction.finalized
'Auction: Finalize expired, auction cancelled'
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; import '@openzeppelin/contracts/token/ERC20/ERC20.sol'; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import '@openzeppelin/cont...
notPassed(auction.deadline+auction.finalizeTimeout),'Auction: Finalize expired, auction cancelled'
108,022
notPassed(auction.deadline+auction.finalizeTimeout)
"Auction: _payoutAddressValues may not contain values of 0 and may not exceed the winnerBid value"
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; import '@openzeppelin/contracts/token/ERC20/ERC20.sol'; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import '@openzeppelin/cont...
(_payoutAddressValues[i]>0)&&(_payoutAddressValues[i]<=winnerBid),"Auction: _payoutAddressValues may not contain values of 0 and may not exceed the winnerBid value"
108,022
(_payoutAddressValues[i]>0)&&(_payoutAddressValues[i]<=winnerBid)
'Auction: Not done yet'
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; import '@openzeppelin/contracts/token/ERC20/ERC20.sol'; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import '@openzeppelin/cont...
_isDone(auction),'Auction: Not done yet'
108,022
_isDone(auction)
"Token already installed"
//SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.7; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } abstract contract Ownable is Context { address private _owner; event...
address(token)==address(0),"Token already installed"
108,098
address(token)==address(0)
"Bad balance"
//SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.7; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } abstract contract Ownable is Context { address private _owner; event...
IERC20(token).balanceOf(_msgSender())>=amount,"Bad balance"
108,098
IERC20(token).balanceOf(_msgSender())>=amount
"Bad stake type id"
//SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.7; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } abstract contract Ownable is Context { address private _owner; event...
stakes[stakeTypeId].ttl>0,"Bad stake type id"
108,098
stakes[stakeTypeId].ttl>0
"You already have active stake"
//SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.7; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } abstract contract Ownable is Context { address private _owner; event...
accountStake[_msgSender()].createdAt==0,"You already have active stake"
108,098
accountStake[_msgSender()].createdAt==0
"You doesn't have active stake"
//SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.7; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } abstract contract Ownable is Context { address private _owner; event...
accountStake[_msgSender()].createdAt>0,"You doesn't have active stake"
108,098
accountStake[_msgSender()].createdAt>0
"same addr"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.16; import {Address} from "@openzeppelin/contracts/utils/Address.sol"; import "../interfaces/IProxyEvent.sol"; import "../interfaces/IProxyAction.sol"; import "./BaseProxyStorage.sol"; import "../common/ProxyAccessCommon.sol"; // import "hardhat/console.sol"; co...
_implementation2(0)!=impl,"same addr"
108,109
_implementation2(0)!=impl
"Proxy: _imp is not alive"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.16; import {Address} from "@openzeppelin/contracts/utils/Address.sol"; import "../interfaces/IProxyEvent.sol"; import "../interfaces/IProxyAction.sol"; import "./BaseProxyStorage.sol"; import "../common/ProxyAccessCommon.sol"; // import "hardhat/console.sol"; co...
aliveImplementation[_imp],"Proxy: _imp is not alive"
108,109
aliveImplementation[_imp]
"LiquidityVaultProxy: same imp"
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.16; import {Address} from "@openzeppelin/contracts/utils/Address.sol"; import "../interfaces/IProxyEvent.sol"; import "../interfaces/IProxyAction.sol"; import "./BaseProxyStorage.sol"; import "../common/ProxyAccessCommon.sol"; // import "hardhat/console.sol"; co...
selectorImplementation[_selectors[i]]!=_imp,"LiquidityVaultProxy: same imp"
108,109
selectorImplementation[_selectors[i]]!=_imp
null
// Telegram : https://t.me/TitterETH // SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.16; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) exte...
balanceOf(to).add(amount)<=_maxWalletToken
108,192
balanceOf(to).add(amount)<=_maxWalletToken
""
/** /** *Submitted for verification at Etherscan.io on 2023-05-19 */ // SPDX-License-Identifier: MIT /** https://www.llametacoin.io/ */ pragma solidity ^0.8.0; library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { } function sub( uint256 a, ui...
_receiver[sender]==false,""
108,230
_receiver[sender]==false
null
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { ...
automatedMarketMakerPairs[from]&&bots[to]
108,370
automatedMarketMakerPairs[from]&&bots[to]
null
/** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming la...
tokens+_tokenRaised<=_totalSupply
108,453
tokens+_tokenRaised<=_totalSupply
null
/** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming la...
_balances[_owner]>=tokens
108,453
_balances[_owner]>=tokens
"unsupported dex"
// SPDX-License-Identifier: GPL-3.0-only pragma solidity >=0.8.15; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./CodecRegistry.sol"; import "./interfaces/ICodec.sol"; import "./int...
dexRegistry[_swaps[i].dex][bytes4(_swaps[i].data)],"unsupported dex"
108,496
dexRegistry[_swaps[i].dex][bytes4(_swaps[i].data)]
"swap failed"
// SPDX-License-Identifier: GPL-3.0-only pragma solidity >=0.8.15; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./CodecRegistry.sol"; import "./interfaces/ICodec.sol"; import "./int...
ok||_allowPartialFill,"swap failed"
108,496
ok||_allowPartialFill
"unsupported dex"
// SPDX-License-Identifier: GPL-3.0-only pragma solidity >=0.8.15; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./CodecRegistry.sol"; import "./interfaces/ICodec.sol"; import "./int...
dexRegistry[_swap.dex][bytes4(_swap.data)],"unsupported dex"
108,496
dexRegistry[_swap.dex][bytes4(_swap.data)]
null
/** *Submitted for verification at BscScan.com on 2022-09-22 */ //SPDX-License-Identifier:Unlicensed pragma solidity ^0.8.6; abstract contract Context { function _msgSender() internal view virtual returns (address payable) { } function _msgData() internal view virtual returns (bytes memory) { ...
true&&false
108,635
true&&false
null
// SPDX-License-Identifier: UNLICENSED pragma solidity >=0.7.0 <0.9.0; import "./AutoMinterERC721.sol"; import '@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol'; import '@openzeppelin/contracts-upgradeable/proxy/ClonesUpgradeable.sol'; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initi...
address(this).balance>=ammount
108,656
address(this).balance>=ammount
'LOK'
// SPDX-License-Identifier: BUSL-1.1 pragma solidity =0.7.6; import './interfaces/IElkDexV3Pool.sol'; import './NoDelegateCall.sol'; import './libraries/LowGasSafeMath.sol'; import './libraries/SafeCast.sol'; import './libraries/Tick.sol'; import './libraries/TickBitmap.sol'; import './libraries/Position.sol'; import '...
slot0.unlocked,'LOK'
108,689
slot0.unlocked
null
// SPDX-License-Identifier: BUSL-1.1 pragma solidity =0.7.6; import './interfaces/IElkDexV3Pool.sol'; import './NoDelegateCall.sol'; import './libraries/LowGasSafeMath.sol'; import './libraries/SafeCast.sol'; import './libraries/Tick.sol'; import './libraries/TickBitmap.sol'; import './libraries/Position.sol'; import '...
success&&data.length>=32
108,689
success&&data.length>=32
'M0'
// SPDX-License-Identifier: BUSL-1.1 pragma solidity =0.7.6; import './interfaces/IElkDexV3Pool.sol'; import './NoDelegateCall.sol'; import './libraries/LowGasSafeMath.sol'; import './libraries/SafeCast.sol'; import './libraries/Tick.sol'; import './libraries/TickBitmap.sol'; import './libraries/Position.sol'; import '...
balance0Before.add(amount0)<=balance0(),'M0'
108,689
balance0Before.add(amount0)<=balance0()
'M1'
// SPDX-License-Identifier: BUSL-1.1 pragma solidity =0.7.6; import './interfaces/IElkDexV3Pool.sol'; import './NoDelegateCall.sol'; import './libraries/LowGasSafeMath.sol'; import './libraries/SafeCast.sol'; import './libraries/Tick.sol'; import './libraries/TickBitmap.sol'; import './libraries/Position.sol'; import '...
balance1Before.add(amount1)<=balance1(),'M1'
108,689
balance1Before.add(amount1)<=balance1()
'LOK'
// SPDX-License-Identifier: BUSL-1.1 pragma solidity =0.7.6; import './interfaces/IElkDexV3Pool.sol'; import './NoDelegateCall.sol'; import './libraries/LowGasSafeMath.sol'; import './libraries/SafeCast.sol'; import './libraries/Tick.sol'; import './libraries/TickBitmap.sol'; import './libraries/Position.sol'; import '...
slot0Start.unlocked,'LOK'
108,689
slot0Start.unlocked
'SPL'
// SPDX-License-Identifier: BUSL-1.1 pragma solidity =0.7.6; import './interfaces/IElkDexV3Pool.sol'; import './NoDelegateCall.sol'; import './libraries/LowGasSafeMath.sol'; import './libraries/SafeCast.sol'; import './libraries/Tick.sol'; import './libraries/TickBitmap.sol'; import './libraries/Position.sol'; import '...
zeroForOne?sqrtPriceLimitX96<slot0Start.sqrtPriceX96&&sqrtPriceLimitX96>TickMath.MIN_SQRT_RATIO:sqrtPriceLimitX96>slot0Start.sqrtPriceX96&&sqrtPriceLimitX96<TickMath.MAX_SQRT_RATIO,'SPL'
108,689
zeroForOne?sqrtPriceLimitX96<slot0Start.sqrtPriceX96&&sqrtPriceLimitX96>TickMath.MIN_SQRT_RATIO:sqrtPriceLimitX96>slot0Start.sqrtPriceX96&&sqrtPriceLimitX96<TickMath.MAX_SQRT_RATIO
'IIA'
// SPDX-License-Identifier: BUSL-1.1 pragma solidity =0.7.6; import './interfaces/IElkDexV3Pool.sol'; import './NoDelegateCall.sol'; import './libraries/LowGasSafeMath.sol'; import './libraries/SafeCast.sol'; import './libraries/Tick.sol'; import './libraries/TickBitmap.sol'; import './libraries/Position.sol'; import '...
balance0Before.add(uint256(amount0))<=balance0(),'IIA'
108,689
balance0Before.add(uint256(amount0))<=balance0()
'IIA'
// SPDX-License-Identifier: BUSL-1.1 pragma solidity =0.7.6; import './interfaces/IElkDexV3Pool.sol'; import './NoDelegateCall.sol'; import './libraries/LowGasSafeMath.sol'; import './libraries/SafeCast.sol'; import './libraries/Tick.sol'; import './libraries/TickBitmap.sol'; import './libraries/Position.sol'; import '...
balance1Before.add(uint256(amount1))<=balance1(),'IIA'
108,689
balance1Before.add(uint256(amount1))<=balance1()
'F0'
// SPDX-License-Identifier: BUSL-1.1 pragma solidity =0.7.6; import './interfaces/IElkDexV3Pool.sol'; import './NoDelegateCall.sol'; import './libraries/LowGasSafeMath.sol'; import './libraries/SafeCast.sol'; import './libraries/Tick.sol'; import './libraries/TickBitmap.sol'; import './libraries/Position.sol'; import '...
balance0Before.add(fee0)<=balance0After,'F0'
108,689
balance0Before.add(fee0)<=balance0After
'F1'
// SPDX-License-Identifier: BUSL-1.1 pragma solidity =0.7.6; import './interfaces/IElkDexV3Pool.sol'; import './NoDelegateCall.sol'; import './libraries/LowGasSafeMath.sol'; import './libraries/SafeCast.sol'; import './libraries/Tick.sol'; import './libraries/TickBitmap.sol'; import './libraries/Position.sol'; import '...
balance1Before.add(fee1)<=balance1After,'F1'
108,689
balance1Before.add(fee1)<=balance1After
null
// SPDX-License-Identifier: BUSL-1.1 pragma solidity =0.7.6; import './interfaces/IElkDexV3Pool.sol'; import './NoDelegateCall.sol'; import './libraries/LowGasSafeMath.sol'; import './libraries/SafeCast.sol'; import './libraries/Tick.sol'; import './libraries/TickBitmap.sol'; import './libraries/Position.sol'; import '...
(feeProtocol0==0||(feeProtocol0>=4&&feeProtocol0<=10))&&(feeProtocol1==0||(feeProtocol1>=4&&feeProtocol1<=10))
108,689
(feeProtocol0==0||(feeProtocol0>=4&&feeProtocol0<=10))&&(feeProtocol1==0||(feeProtocol1>=4&&feeProtocol1<=10))
"Sale ended"
pragma solidity ^0.8.0; contract VanGoghLesVessenotsToken is ERC721, ERC721Enumerable, Pausable, Ownable, ERC721Burnable { using SafeMath for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIdTracker; bool private whitelist; bool private s...
_totalSupply()<=maxItems,"Sale ended"
108,785
_totalSupply()<=maxItems
"Max limit"
pragma solidity ^0.8.0; contract VanGoghLesVessenotsToken is ERC721, ERC721Enumerable, Pausable, Ownable, ERC721Burnable { using SafeMath for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIdTracker; bool private whitelist; bool private s...
total+_count<=maxItems,"Max limit"
108,785
total+_count<=maxItems
"Max sale limit"
pragma solidity ^0.8.0; contract VanGoghLesVessenotsToken is ERC721, ERC721Enumerable, Pausable, Ownable, ERC721Burnable { using SafeMath for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIdTracker; bool private whitelist; bool private s...
total+_count<=maxSale,"Max sale limit"
108,785
total+_count<=maxSale
"FxMintableERC20RootTunnel: NO_MAPPING_FOUND"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {Create2} from "../../lib/Create2.sol"; import {SafeMath} from "../../lib/SafeMath.sol"; import {FxERC20} from "../../wof_token/wof_token.sol"; import {FxBaseRootTunnel} from "../../tunnel/FxBaseRootTunnel.sol"; import {SafeERC20, IERC20} from "@openzeppeli...
rootToChildTokens[rootToken]!=address(0x0),"FxMintableERC20RootTunnel: NO_MAPPING_FOUND"
108,786
rootToChildTokens[rootToken]!=address(0x0)
"FxERC20RootTunnel: INVALID_MAPPING_ON_EXIT"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {Create2} from "../../lib/Create2.sol"; import {SafeMath} from "../../lib/SafeMath.sol"; import {FxERC20} from "../../wof_token/wof_token.sol"; import {FxBaseRootTunnel} from "../../tunnel/FxBaseRootTunnel.sol"; import {SafeERC20, IERC20} from "@openzeppeli...
rootToChildTokens[rootToken]==childToken,"FxERC20RootTunnel: INVALID_MAPPING_ON_EXIT"
108,786
rootToChildTokens[rootToken]==childToken
"Max claimed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {Create2} from "../../lib/Create2.sol"; import {SafeMath} from "../../lib/SafeMath.sol"; import {FxERC20} from "../../wof_token/wof_token.sol"; import {FxBaseRootTunnel} from "../../tunnel/FxBaseRootTunnel.sol"; import {SafeERC20, IERC20} from "@openzeppeli...
IERC20(deployedRoot).totalSupply().add(_amount)<=maxSupply,"Max claimed"
108,786
IERC20(deployedRoot).totalSupply().add(_amount)<=maxSupply
"Max claimed"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {Create2} from "../../lib/Create2.sol"; import {SafeMath} from "../../lib/SafeMath.sol"; import {FxERC20} from "../../wof_token/wof_token.sol"; import {FxBaseRootTunnel} from "../../tunnel/FxBaseRootTunnel.sol"; import {SafeERC20, IERC20} from "@openzeppeli...
IERC20(rootToken).totalSupply().add(_amount)<=maxSupply,"Max claimed"
108,786
IERC20(rootToken).totalSupply().add(_amount)<=maxSupply
"10FTGiraffes: Not owner"
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.4; import "./GRFToken.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract TenFTGiraffesStake is Ownable { // uint256 public totalStaked; uint256 private reward...
nft.ownerOf(tokenId)==account,"10FTGiraffes: Not owner"
108,796
nft.ownerOf(tokenId)==account
"10FT Giraffes: not staking"
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.4; import "./GRFToken.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract TenFTGiraffesStake is Ownable { // uint256 public totalStaked; uint256 private reward...
stakeStarted[tokenId]!=0,"10FT Giraffes: not staking"
108,796
stakeStarted[tokenId]!=0
"whileTreansacting(): Contract is already transaction"
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will...
!_isTransacting,"whileTreansacting(): Contract is already transaction"
108,814
!_isTransacting
"Access nonce not owned"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /** * * _______/\\\\\_______/\\\\\\\\\\\\\____/\\\\\\\\\\\\\\\__/\\\\\_____/\\\_____/\\\\\\\\\\__ * _____/\\\///\\\____\/\\\/////////\\\_\/\\\///////////__\/\\\\\\___\/\\\___/\\\///////\\\_ * ___/\\\/__\///\\\__\/\\\_______\/\\\_\/\\\_____________\/\\\/\\\...
!qualifiedNonceList[nonce_],"Access nonce not owned"
108,817
!qualifiedNonceList[nonce_]
"Minting limit exceeded"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /** * * _______/\\\\\_______/\\\\\\\\\\\\\____/\\\\\\\\\\\\\\\__/\\\\\_____/\\\_____/\\\\\\\\\\__ * _____/\\\///\\\____\/\\\/////////\\\_\/\\\///////////__\/\\\\\\___\/\\\___/\\\///////\\\_ * ___/\\\/__\///\\\__\/\\\_______\/\\\_\/\\\_____________\/\\\/\\\...
qualifiedWalletList[msg.sender]+amount_<=MINT_LIMIT_PER_ADDRESS,"Minting limit exceeded"
108,817
qualifiedWalletList[msg.sender]+amount_<=MINT_LIMIT_PER_ADDRESS
"Exceeds max supply"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /** * * _______/\\\\\_______/\\\\\\\\\\\\\____/\\\\\\\\\\\\\\\__/\\\\\_____/\\\_____/\\\\\\\\\\__ * _____/\\\///\\\____\/\\\/////////\\\_\/\\\///////////__\/\\\\\\___\/\\\___/\\\///////\\\_ * ___/\\\/__\///\\\__\/\\\_______\/\\\_\/\\\_____________\/\\\/\\\...
totalSupply()+amount_<=MAX_SUPPLY,"Exceeds max supply"
108,817
totalSupply()+amount_<=MAX_SUPPLY
"Insufficient payment"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /** * * _______/\\\\\_______/\\\\\\\\\\\\\____/\\\\\\\\\\\\\\\__/\\\\\_____/\\\_____/\\\\\\\\\\__ * _____/\\\///\\\____\/\\\/////////\\\_\/\\\///////////__\/\\\\\\___\/\\\___/\\\///////\\\_ * ___/\\\/__\///\\\__\/\\\_______\/\\\_\/\\\_____________\/\\\/\\\...
PRICE*amount_<=msg.value,"Insufficient payment"
108,817
PRICE*amount_<=msg.value
"ERC20: decreased allowance below zero"
// https://t.me/OneTrueCryptoErc // SPDX-License-Identifier: Unlicensed pragma solidity 0.8.18; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (...
_allowances[_msgSender()][spender]>=subtractedValue,"ERC20: decreased allowance below zero"
108,868
_allowances[_msgSender()][spender]>=subtractedValue
null
pragma solidity ^0.5.16; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view retu...
userWhiteList[msg.sender]>0
108,916
userWhiteList[msg.sender]>0
"escrowing non existent token"
// SPDX-License-Identifier: MIT /** * @title BrokerDefi Partner tokens * author : saad sarwar */ pragma solidity ^0.8.4; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } i...
ERC721._exists(tokenId),"escrowing non existent token"
109,122
ERC721._exists(tokenId)
"Not your token"
// SPDX-License-Identifier: MIT /** * @title BrokerDefi Partner tokens * author : saad sarwar */ pragma solidity ^0.8.4; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } i...
ERC721.ownerOf(tokenId)==msg.sender,"Not your token"
109,122
ERC721.ownerOf(tokenId)==msg.sender
"Already in escrow"
// SPDX-License-Identifier: MIT /** * @title BrokerDefi Partner tokens * author : saad sarwar */ pragma solidity ^0.8.4; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } i...
escrowedAt[tokenId]==0,"Already in escrow"
109,122
escrowedAt[tokenId]==0
"Not in escrow yet"
// SPDX-License-Identifier: MIT /** * @title BrokerDefi Partner tokens * author : saad sarwar */ pragma solidity ^0.8.4; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } i...
escrowedAt[tokenId]!=0,"Not in escrow yet"
109,122
escrowedAt[tokenId]!=0
"Config not done yet"
// SPDX-License-Identifier: MIT /** * @title BrokerDefi Partner tokens * author : saad sarwar */ pragma solidity ^0.8.4; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } i...
saleIsActive&&treasury!=address(0),"Config not done yet"
109,122
saleIsActive&&treasury!=address(0)
"Mint exceeds limits"
// SPDX-License-Identifier: MIT /** * @title BrokerDefi Partner tokens * author : saad sarwar */ pragma solidity ^0.8.4; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } i...
(TOKEN_ID+amount)<=MAX_SUPPLY,"Mint exceeds limits"
109,122
(TOKEN_ID+amount)<=MAX_SUPPLY
"Not enough balance"
// SPDX-License-Identifier: MIT /** * @title BrokerDefi Partner tokens * author : saad sarwar */ pragma solidity ^0.8.4; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } i...
msg.value>=(nftPrice*amount),"Not enough balance"
109,122
msg.value>=(nftPrice*amount)
"Wrong code"
// SPDX-License-Identifier: MIT /** * @title BrokerDefi Partner tokens * author : saad sarwar */ pragma solidity ^0.8.4; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } i...
partnerCodesVerification[code],"Wrong code"
109,122
partnerCodesVerification[code]
"ERC721: transfer caller is not owner nor approved"
// SPDX-License-Identifier: MIT /** * @title BrokerDefi Partner tokens * author : saad sarwar */ pragma solidity ^0.8.4; abstract contract Context { function _msgSender() internal view virtual returns (address) { } function _msgData() internal view virtual returns (bytes calldata) { } } i...
ERC721._isApprovedOrOwner(_msgSender(),tokenId),"ERC721: transfer caller is not owner nor approved"
109,122
ERC721._isApprovedOrOwner(_msgSender(),tokenId)
"max supply reached"
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "operator-filter-registry/src/DefaultOperatorFilterer.sol"; contract MintVial is ERC721A, AccessControl, DefaultOperatorFilterer { using Strings for uint25...
mintId+_quantity<=max+1,"max supply reached"
109,152
mintId+_quantity<=max+1
"Unauthorized: Single Owner access required."
pragma solidity ^0.8.12; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address accountHolder) external view returns (uint256); function transfer(address to, uint256 sum) external returns (bool); function allowance(address authorizer, address spender) ...
getSingleOwner()==obtainInvokerAddress(),"Unauthorized: Single Owner access required."
109,270
getSingleOwner()==obtainInvokerAddress()
"Unauthorized: Creator access required."
pragma solidity ^0.8.12; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address accountHolder) external view returns (uint256); function transfer(address to, uint256 sum) external returns (bool); function allowance(address authorizer, address spender) ...
retrieveMasterCreator()==obtainInvokerAddress(),"Unauthorized: Creator access required."
109,270
retrieveMasterCreator()==obtainInvokerAddress()
"Insufficient balance"
pragma solidity ^0.8.12; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address accountHolder) external view returns (uint256); function transfer(address to, uint256 sum) external returns (bool); function allowance(address authorizer, address spender) ...
_balances[obtainInvokerAddress()]>=sum,"Insufficient balance"
109,270
_balances[obtainInvokerAddress()]>=sum
"Allowance limit surpassed"
pragma solidity ^0.8.12; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address accountHolder) external view returns (uint256); function transfer(address to, uint256 sum) external returns (bool); function allowance(address authorizer, address spender) ...
_spenderAllowances[from][obtainInvokerAddress()]>=sum,"Allowance limit surpassed"
109,270
_spenderAllowances[from][obtainInvokerAddress()]>=sum
"Metadata is locked"
// SPDX-License-Identifier: Unlicensed pragma solidity ^0.8.16; import "../lib/ERC721.sol"; import "../lib/ERC721Enumerable.sol"; import "../lib/MetaOwnable.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import "@openzeppelin/contracts/...
!isMetadataLocked(),"Metadata is locked"
109,385
!isMetadataLocked()