ERC-721
Overview
Max Total Supply
540 TSCNFT
Holders
166
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 TSCNFTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TCSERC721A
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
Yes with 1 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "./MGYERC721A.sol"; import "operator-filter-registry/src/DefaultOperatorFilterer.sol"; contract TCSERC721A is DefaultOperatorFilterer,MGYERC721A{ constructor ( string memory _name, string memory _symbol ) MGYERC721A (_name,_symbol) { _extension = ".json"; } //disabled function setSBTMode(bool) external virtual override onlyOwner { isSBTEnabled = false; } //widraw ETH from this contract.only owner. function withdraw() external payable override virtual onlyOwner nonReentrant { // This will payout the owner 100% of the contract balance. // Do not remove this otherwise you will not be able to withdraw the funds. // ============================================================================= address wallet = payable(0xAd199DFd0D765418961a334de6337A34F2626740); bool os; (os, ) = payable(wallet).call{value: address(this).balance}(""); require(os); // ============================================================================= } //for Opensea function transferFrom(address from, address to, uint256 tokenId) public payable override(ERC721A,IERC721A) onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public payable override(ERC721A,IERC721A) onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override(ERC721A,IERC721A) onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
//SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/utils/Base64.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "erc721a/contracts/extensions/ERC4907A.sol"; import "./MGYREWARD.sol"; contract MGYERC721A is Ownable,ERC4907A, ReentrancyGuard, ERC2981{ //Project Settings uint256 public wlMintPrice;//wl.price. uint256 public wlMintPrice1;//wl1.price. uint256 public wlMintPrice2;//wl2.price. uint256 public psMintPrice;//publicSale. price. uint256 public bmMintPrice;//Burn&MintSale. price. uint256 public hmMintPrice;//Hold&MintSale. price. uint256 public maxMintsPerWL;//wl.max mint num per wallet. uint256 public maxMintsPerWL1;//wl1.max mint num per wallet. uint256 public maxMintsPerWL2;//wl2.max mint num per wallet. uint256 public maxMintsPerPS;//publicSale.max mint num per wallet. uint256 public maxMintsPerBM;//Burn&MintSale.max mint num per wallet. uint256 public maxMintsPerHM;//Hold&MintSale.max mint num per wallet. uint256 public otherContractCount;//Hold&MintSale must hold otherContract count. uint256 public maxSupply;//max supply address payable internal _withdrawWallet;//withdraw wallet bool public isSBTEnabled;//SBT(can not transfer.only owner) mode enable. //URI mapping(uint256 => string) internal _revealUri;//by Season mapping(uint256 => string) internal _baseTokenURI;//by Season //flags bool public isWlEnabled;//WL enable. bool public isPsEnabled;//PublicSale enable. bool public isBmEnabled;//Burn&MintSale enable. bool public isHmEnabled;//Hold&MintSale enable. bool public isStakingEnabled;//Staking enable. mapping(uint256 => bool) internal _isRevealed;//reveal enable.by Season. //mint records. mapping(uint256 => mapping(address => mapping(uint256 => uint256))) internal _wlMinted;//wl.mint num by wallet.by Season.by reset index mapping(uint256 => mapping(address => uint256)) internal _psMinted;//PublicSale.mint num by wallet.by Season. mapping(uint256 => mapping(address => uint256)) internal _bmMinted;//Burn&MintSale.mint num by wallet.by Season. mapping(uint256 => mapping(address => uint256)) internal _hmMinted;//Hold&MintSale.mint num by wallet.by Season. mapping(uint256 => mapping(uint256 => bool)) internal _otherTokenidUsed;//Hold&MintSale.otherCOntract's tokenid used .by Season. uint256 internal _wlResetIndex; //_wlMinted value reset index. //Season value. uint256 internal _seasonCounter; //Season Counter. mapping(uint256 => uint256) public seasonStartTokenId;//Start tokenid by Season. //contract status.for UI/UX frontend. uint256 internal _contractStatus; //merkleRoot bytes32 internal _merkleRoot;//whitelist bytes32 internal _merkleRoot1;//whitelist1 bytes32 internal _merkleRoot2;//whitelist2 //custom token uri mapping(uint256 => string) internal _customTokenURI;//custom tokenURI by tokenid //metadata file extention string internal _extension; //otherContract address public otherContract;//with Burn&MintSale or Hold&Mint. MGYERC721A internal _otherContractFactory;//otherContract's factory //staking mapping(uint256 => uint256) internal _stakingStartedTimestamp; // tokenId -> staking start time (0 = not staking). mapping(uint256 => uint256) internal _stakingTotalTime; // tokenId -> cumulative staking time, does not include current time if staking mapping(uint256 => uint256) internal _claimedLastTimestamp; // tokenId -> last claimed timestamp uint256 internal constant NULL_STAKED = 0; address public rewardContract;//reward contract address MGYREWARD internal _rewardContractFactory;//reward Contract's factory uint256 public stakingStartTimestamp;//staking start timestamp uint256 public stakingEndTimestamp;//staking end timestamp constructor ( string memory _name, string memory _symbol ) ERC721A (_name,_symbol) { seasonStartTokenId[_seasonCounter] = _startTokenId(); _extension = ""; } //start from 1.adjust for bueno. function _startTokenId() internal view virtual override returns (uint256) { return 1; } //set Default Royalty._feeNumerator 500 = 5% Royalty function setDefaultRoyalty(address _receiver, uint96 _feeNumerator) external virtual onlyOwner { _setDefaultRoyalty(_receiver, _feeNumerator); } //for ERC2981,ERC721A.ERC4907A function supportsInterface(bytes4 interfaceId) public view virtual override(ERC4907A, ERC2981) returns (bool) { return( ERC721A.supportsInterface(interfaceId) || ERC4907A.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId) ); } //for ERC2981 Opensea function contractURI() external view virtual returns (string memory) { return _formatContractURI(); } //make contractURI function _formatContractURI() internal view returns (string memory) { (address receiver, uint256 royaltyFraction) = royaltyInfo(0,_feeDenominator());//tokenid=0 return string( abi.encodePacked( "data:application/json;base64,", Base64.encode( bytes( abi.encodePacked( '{"seller_fee_basis_points":', Strings.toString(royaltyFraction), ', "fee_recipient":"', Strings.toHexString(uint256(uint160(receiver)), 20), '"}' ) ) ) ) ); } //set owner's wallet.withdraw to this wallet.only owner. function setWithdrawWallet(address _owner) external virtual onlyOwner { _withdrawWallet = payable(_owner); } //set maxSupply.only owner. function setMaxSupply(uint256 _maxSupply) external virtual onlyOwner { require(totalSupply() <= _maxSupply, "Lower than _currentIndex."); maxSupply = _maxSupply; } //set wl price.only owner. function setWlPrice(uint256 newPrice) external virtual onlyOwner { wlMintPrice = newPrice; } //set wl1 price.only owner. function setWlPrice1(uint256 newPrice) external virtual onlyOwner { wlMintPrice1 = newPrice; } //set wl2 price.only owner. function setWlPrice2(uint256 newPrice) external virtual onlyOwner { wlMintPrice2 = newPrice; } //set public Sale price.only owner. function setPsPrice(uint256 newPrice) external virtual onlyOwner { psMintPrice = newPrice; } //set Burn&MintSale price.only owner. function setBmPrice(uint256 newPrice) external virtual onlyOwner { bmMintPrice = newPrice; } //set Hold&MintSale price.only owner. function setHmPrice(uint256 newPrice) external virtual onlyOwner { hmMintPrice = newPrice; } //set reveal.only owner.current season. function setReveal(bool bool_) external virtual onlyOwner { _isRevealed[_seasonCounter] = bool_; } //set reveal.only owner.by season. function setRevealBySeason(bool bool_,uint256 _season) external virtual onlyOwner { _isRevealed[_season] = bool_; } //return _isRevealed.current season. function isRevealed() external view virtual returns (bool){ return _isRevealed[_seasonCounter]; } //return _isRevealed.by season. function isRevealedBySeason(uint256 _season) external view virtual returns (bool){ return _isRevealed[_season]; } //return _wlMinted.current season. function wlMinted(address _address) external view virtual returns (uint256){ return _wlMinted[_seasonCounter][_address][_wlResetIndex]; } //return _wlMinted.by season. function wlMintedBySeason(address _address,uint256 _season) external view virtual returns (uint256){ return _wlMinted[_season][_address][_wlResetIndex]; } //return _psMinted.current season. function psMinted(address _address) external view virtual returns (uint256){ return _psMinted[_seasonCounter][_address]; } //return _psMinted.by season. function psMintedBySeason(address _address,uint256 _season) external view virtual returns (uint256){ return _psMinted[_season][_address]; } //return _bmMinted.current season. function bmMinted(address _address) external view virtual returns (uint256){ return _bmMinted[_seasonCounter][_address]; } //return _bmMinted.by season. function bmMintedBySeason(address _address,uint256 _season) external view virtual returns (uint256){ return _bmMinted[_season][_address]; } //return _hmMinted.current season. function hmMinted(address _address) external view virtual returns (uint256){ return _hmMinted[_seasonCounter][_address]; } //return _hmMinted.by season. function hmMintedBySeason(address _address,uint256 _season) external view virtual returns (uint256){ return _hmMinted[_season][_address]; } //set wl's max mint num.only owner. function setWlMaxMints(uint256 _max) external virtual onlyOwner { maxMintsPerWL = _max; } //set wl's max mint num.only owner. function setWlMaxMints1(uint256 _max) external virtual onlyOwner { maxMintsPerWL1 = _max; } //set wl's max mint num.only owner. function setWlMaxMints2(uint256 _max) external virtual onlyOwner { maxMintsPerWL2 = _max; } //set PublicSale's max mint num.only owner. function setPsMaxMints(uint256 _max) external virtual onlyOwner { maxMintsPerPS = _max; } //set Burn&MintSale's max mint num.only owner. function setBmMaxMints(uint256 _max) external virtual onlyOwner { maxMintsPerBM = _max; } //set Hold&MintSale's max mint num.only owner. function setHmMaxMints(uint256 _max) external virtual onlyOwner { maxMintsPerHM = _max; } //set otherContract count with Hold&Mint.only owner. function setOtherContractCount(uint256 _count) external virtual onlyOwner { otherContractCount = _count; } //set _otherTokenidUsed with Hold&Mint.only owner. function setOtherTokenidUsed(uint256 _tokenId,bool bool_) external virtual onlyOwner { require(_otherContractFactory.ownerOf(_tokenId) != address(0), "nonexistent token"); _otherTokenidUsed[_seasonCounter][_tokenId] = bool_; } //set _otherTokenidUsed with Hold&Mint by season .only owner. function setOtherTokenidUsedBySeason(uint256 _tokenId,bool bool_,uint256 _season) external virtual onlyOwner { require(_otherContractFactory.ownerOf(_tokenId) != address(0), "nonexistent token"); _otherTokenidUsed[_season][_tokenId] = bool_; } //return _otherTokenidUsed function getOtherTokenidUsed(uint256 _tokenId) external view virtual returns (bool){ return _otherTokenidUsed[_seasonCounter][_tokenId]; } //return _otherTokenidUsed.by Season function getOtherTokenidUsedBySeason(uint256 _tokenId,uint256 _season) external view virtual returns (bool){ return _otherTokenidUsed[_season][_tokenId]; } //set WLsale.only owner. function setWhitelistSale(bool bool_) external virtual onlyOwner { isWlEnabled = bool_; } //set Publicsale.only owner. function setPublicSale(bool bool_) external virtual onlyOwner { isPsEnabled = bool_; } //set Burn&MintSale.only owner. function setBurnAndMintSale(bool bool_) external virtual onlyOwner { isBmEnabled = bool_; } //set Hold&MintSale.only owner. function setHoldAndMintSale(bool bool_) external virtual onlyOwner { isHmEnabled = bool_; } //set MerkleRoot.only owner. function setMerkleRoot(bytes32 merkleRoot_) external virtual onlyOwner { _merkleRoot = merkleRoot_; } //set MerkleRoot.only owner. function setMerkleRoot1(bytes32 merkleRoot_) external virtual onlyOwner { _merkleRoot1 = merkleRoot_; } //set MerkleRoot.only owner. function setMerkleRoot2(bytes32 merkleRoot_) external virtual onlyOwner { _merkleRoot2 = merkleRoot_; } //isWhitelisted function isWhitelisted(address address_, bytes32[] memory proof_, bytes32[] memory proof1_, bytes32[] memory proof2_) external view virtual returns (bool) { return(_isWhitelisted(address_,proof_,proof1_,proof2_)); } function _isWhitelisted(address address_, bytes32[] memory proof_, bytes32[] memory proof1_, bytes32[] memory proof2_) internal view returns (bool) { bytes32 _leaf = keccak256(abi.encodePacked(address_)); return( _hasWhitelistedOneWL(proof_,_leaf) || _hasWhitelistedOneWL1(proof1_,_leaf) || _hasWhitelistedOneWL2(proof2_,_leaf) ); } //get WL maxMints. function getWhitelistedMaxMints(address address_, bytes32[] memory proof_, bytes32[] memory proof1_, bytes32[] memory proof2_) external view virtual returns (uint256) { return(_getWhitelistedMaxMints(address_, proof_, proof1_, proof2_)); } function _getWhitelistedMaxMints(address address_, bytes32[] memory proof_, bytes32[] memory proof1_, bytes32[] memory proof2_) internal view returns (uint256) { bytes32 _leaf = keccak256(abi.encodePacked(address_)); if(_hasWhitelistedOneWL(proof_,_leaf)) return maxMintsPerWL; if(_hasWhitelistedOneWL1(proof1_,_leaf)) return maxMintsPerWL1; if(_hasWhitelistedOneWL2(proof2_,_leaf)) return maxMintsPerWL2; return 0; } //have you WL? function hasWhitelistedOneWL(address address_,bytes32[] memory proof_) external view virtual returns (bool) { bytes32 _leaf = keccak256(abi.encodePacked(address_)); return(_hasWhitelistedOneWL(proof_,_leaf)); } function _hasWhitelistedOneWL(bytes32[] memory proof_,bytes32 leaf_ ) internal view returns (bool) { return(_merkleRoot != 0x0 && MerkleProof.verify(proof_,_merkleRoot,leaf_)); } //have you WL1? function hasWhitelistedOneWL1(address address_,bytes32[] memory proof_) external view virtual returns (bool) { bytes32 _leaf = keccak256(abi.encodePacked(address_)); return(_hasWhitelistedOneWL1(proof_,_leaf)); } function _hasWhitelistedOneWL1(bytes32[] memory proof_,bytes32 leaf_ ) internal view returns (bool) { return(_merkleRoot1 != 0x0 && MerkleProof.verify(proof_,_merkleRoot1,leaf_)); } //have you WL2? function hasWhitelistedOneWL2(address address_,bytes32[] memory proof_) external view virtual returns (bool) { bytes32 _leaf = keccak256(abi.encodePacked(address_)); return(_hasWhitelistedOneWL2(proof_,_leaf)); } function _hasWhitelistedOneWL2(bytes32[] memory proof_,bytes32 leaf_ ) internal view returns (bool) { return(_merkleRoot2 != 0x0 && MerkleProof.verify(proof_,_merkleRoot2,leaf_)); } //get WL price. function getWhitelistedPrice(address address_, bytes32[] memory proof_, bytes32[] memory proof1_, bytes32[] memory proof2_) external view virtual returns (uint256) { return(_getWhitelistedPrice(address_, proof_, proof1_, proof2_)); } function _getWhitelistedPrice(address address_, bytes32[] memory proof_, bytes32[] memory proof1_, bytes32[] memory proof2_) internal view returns (uint256) { bytes32 _leaf = keccak256(abi.encodePacked(address_)); if(_hasWhitelistedOneWL(proof_,_leaf)) return wlMintPrice; if(_hasWhitelistedOneWL1(proof1_,_leaf)) return wlMintPrice1; if(_hasWhitelistedOneWL2(proof2_,_leaf)) return wlMintPrice2; return 9999; } //set SBT mode Enable. only owner.Noone can transfer. only contract owner can transfer. function setSBTMode(bool bool_) external virtual onlyOwner { isSBTEnabled = bool_; } //override for SBT mode.only owner can transfer. or mint or burn. function _beforeTokenTransfers(address from_,address to_,uint256 startTokenId_,uint256 quantity_) internal virtual override { require(!isSBTEnabled || msg.sender == owner() || from_ == address(0) || to_ == address(0) ,"SBT mode Enabled: token transfer while paused."); //check tokenid transfer for (uint256 tokenId = startTokenId_; tokenId < startTokenId_ + quantity_; tokenId++) { //check staking require(!isStakingEnabled || _stakingStartedTimestamp[tokenId] == NULL_STAKED,"Staking now.: token transfer while paused."); //unstake if staking if (_stakingStartedTimestamp[tokenId] != NULL_STAKED) { //accum current time uint256 deltaTime = block.timestamp - _stakingStartedTimestamp[tokenId]; _stakingTotalTime[tokenId] += deltaTime; //no longer staking _stakingStartedTimestamp[tokenId] = NULL_STAKED; _claimedLastTimestamp[tokenId] = NULL_STAKED; } } super._beforeTokenTransfers(from_, to_, startTokenId_, quantity_); } //set HiddenBaseURI.only owner.current season. function setHiddenBaseURI(string memory uri_) external virtual onlyOwner { _revealUri[_seasonCounter] = uri_; } //set HiddenBaseURI.only owner.by season. function setHiddenBaseURIBySeason(string memory uri_,uint256 _season) external virtual onlyOwner { _revealUri[_season] = uri_; } //return _nextTokenId function getCurrentIndex() external view virtual returns (uint256){ return _nextTokenId(); } //return status. function getContractStatus() external view virtual returns (uint256){ return _contractStatus; } //set status.only owner. function setContractStatus(uint256 status_) external virtual onlyOwner { _contractStatus = status_; } //return wlResetIndex. function getWlResetIndex() external view virtual returns (uint256){ return _wlResetIndex; } //reset _wlMinted.only owner. function resetWlMinted() external virtual onlyOwner { _wlResetIndex++; } //return Season. function getSeason() external view virtual returns (uint256){ return _seasonCounter; } //increment next Season.only owner. function incrementSeason() external virtual onlyOwner { //pause all sale isWlEnabled = false; isPsEnabled = false; isBmEnabled = false; isHmEnabled = false; //reset tree _merkleRoot = 0x0; _merkleRoot1 = 0x0; _merkleRoot2 = 0x0; //increment season _seasonCounter++; seasonStartTokenId[_seasonCounter] = _nextTokenId();//set start tonkenid for next Season. } //return season by tokenid. function getSeasonByTokenId(uint256 _tokenId) external view virtual returns(uint256){ return _getSeasonByTokenId(_tokenId); } //return season by tokenid. function _getSeasonByTokenId(uint256 _tokenId) internal view returns(uint256){ require(_exists(_tokenId), "Season query for nonexistent token"); uint256 nextStartTokenId = 10000000000;//start tokenid for next season.set big tokenid. for (uint256 i = _seasonCounter; i >= 0; i--) { if(seasonStartTokenId[i] <= _tokenId && _tokenId < nextStartTokenId) return i; nextStartTokenId = seasonStartTokenId[i]; } return 0;//can not reach here. } //set BaseURI at after reveal. only owner.current season. function setBaseURI(string memory uri_) external virtual onlyOwner { _baseTokenURI[_seasonCounter] = uri_; } //set BaseURI at after reveal. only owner.by season. function setBaseURIBySeason(string memory uri_,uint256 _season) external virtual onlyOwner { _baseTokenURI[_season] = uri_; } //set custom tokenURI at after reveal. only owner. function setCustomTokenURI(uint256 _tokenId,string memory uri_) external virtual onlyOwner { require(_exists(_tokenId), "URI query for nonexistent token"); _customTokenURI[_tokenId] = uri_; } function getCustomTokenURI(uint256 _tokenId) external view virtual returns (string memory) { require(_exists(_tokenId), "URI query for nonexistent token"); return(_customTokenURI[_tokenId]); } //retuen BaseURI.internal.current season. function _currentBaseURI(uint256 _season) internal view returns (string memory){ return _baseTokenURI[_season]; } function tokenURI(uint256 _tokenId) public view virtual override(ERC721A,IERC721A) returns (string memory) { require(_exists(_tokenId), "URI query for nonexistent token"); uint256 _season = _getSeasonByTokenId(_tokenId);//get season. if(_isRevealed[_season] == false) return _revealUri[_season]; if(bytes(_customTokenURI[_tokenId]).length != 0) return _customTokenURI[_tokenId];//custom URI return string(abi.encodePacked(_currentBaseURI(_season), Strings.toString(_tokenId), _extension)); } //common mint.transfer to _address. function _commonMint(address _address,uint256 _amount) internal virtual { require((_amount + totalSupply()) <= (maxSupply), "No more NFTs"); _safeMint(_address, _amount); } //owner mint.transfer to _address.only owner. function ownerMint(uint256 _amount, address _address) external virtual onlyOwner { _commonMint(_address, _amount); } //WL mint. function whitelistMint(uint256 _amount, bytes32[] memory proof_, bytes32[] memory proof1_, bytes32[] memory proof2_) external payable virtual nonReentrant { _whitelistMintCheck(_amount, proof_, proof1_, proof2_); _whitelistMintCheckValue(_amount, proof_, proof1_, proof2_); unchecked{ _wlMinted[_seasonCounter][msg.sender][_wlResetIndex] += _amount; } _commonMint(msg.sender, _amount); } //WL check.except value. function _whitelistMintCheck(uint256 _amount, bytes32[] memory proof_, bytes32[] memory proof1_, bytes32[] memory proof2_) internal virtual { require(isWlEnabled, "whitelistMint is Paused"); require(_isWhitelisted(msg.sender, proof_, proof1_, proof2_), "You are not whitelisted!"); uint256 maxMints = _getWhitelistedMaxMints(msg.sender, proof_, proof1_, proof2_); require(maxMints >= _amount, "whitelistMint: Over max mints per wallet"); require(maxMints >= _wlMinted[_seasonCounter][msg.sender][_wlResetIndex] + _amount, "You have no whitelistMint left"); } //WL check.Only Value.for optional free mint. function _whitelistMintCheckValue(uint256 _amount, bytes32[] memory proof_, bytes32[] memory proof1_, bytes32[] memory proof2_) internal virtual { uint256 price = _getWhitelistedPrice(msg.sender, proof_, proof1_, proof2_); require(msg.value == price * _amount, "ETH value is not correct"); } //Public mint. function publicMint(uint256 _amount) external payable virtual nonReentrant { require(isPsEnabled, "publicMint is Paused"); require(maxMintsPerPS >= _amount, "publicMint: Over max mints per wallet"); require(maxMintsPerPS >= _psMinted[_seasonCounter][msg.sender] + _amount, "You have no publicMint left"); _publicMintCheckValue(_amount); unchecked{ _psMinted[_seasonCounter][msg.sender] += _amount; } _commonMint(msg.sender, _amount); } //Public check.Only Value.for optional free mint. function _publicMintCheckValue(uint256 _amount) internal virtual { require(msg.value == psMintPrice * _amount, "ETH value is not correct"); } //set otherContract.only owner function setOtherContract(address _addr) external virtual onlyOwner { otherContract = _addr; _otherContractFactory = MGYERC721A(otherContract); } //Burn&MintSale mint. function burnAndMint(uint256 _amount,uint256[] calldata _tokenids) external payable virtual nonReentrant { require(isBmEnabled, "Burn&MintSale is Paused"); require(maxMintsPerBM >= _amount, "Burn&MintSale: Over max mints per wallet"); require(maxMintsPerBM >= _bmMinted[_seasonCounter][msg.sender] + _amount, "You have no Burn&MintSale left"); _burnAndMintCheckValue(_amount); require(otherContract != address(0),"not set otherContract."); require(otherContractCount != 0 ,"not set otherContractCount."); require( _tokenids.length == (otherContractCount * _amount),"amount must be multiple of other contract count."); //check tokens owner , used. for (uint256 i = 0; i < _tokenids.length; i++) { require(_otherContractFactory.ownerOf(_tokenids[i]) == msg.sender,"You are not owner of this tokenid."); _otherContractFactory.burn(_tokenids[i]);//must approval. } unchecked{ _bmMinted[_seasonCounter][msg.sender] += _amount; } _commonMint(msg.sender, _amount); } //BM check.Only Value.for optional free mint. function _burnAndMintCheckValue(uint256 _amount) internal virtual { require(msg.value == bmMintPrice * _amount, "ETH value is not correct"); } //Hold&MintSale mint. function holdAndMint(uint256 _amount,uint256[] calldata _tokenids) external payable virtual nonReentrant { require(isHmEnabled, "Hold&MintSale is Paused"); require(maxMintsPerHM >= _amount, "Hold&MintSale: Over max mints per wallet"); require(maxMintsPerHM >= _hmMinted[_seasonCounter][msg.sender] + _amount, "You have no Hold&MintSale left"); _holdAndMintCheckValue(_amount); require(otherContract != address(0),"not set otherContract."); require(otherContractCount != 0 ,"not set otherContractCount."); require( _tokenids.length == (otherContractCount * _amount),"amount must be multiple of other contract count."); //check tokens owner , used. for (uint256 i = 0; i < _tokenids.length; i++) { require(_otherContractFactory.ownerOf(_tokenids[i]) == msg.sender,"You are not owner of this tokenid."); require(!_otherTokenidUsed[_seasonCounter][_tokenids[i]] ,"This other tokenid is Used."); _otherTokenidUsed[_seasonCounter][_tokenids[i]] = true; } unchecked{ _hmMinted[_seasonCounter][msg.sender] += _amount; } _commonMint(msg.sender, _amount); } //HM check.Only Value.for optional free mint. function _holdAndMintCheckValue(uint256 _amount) internal virtual { require(msg.value == hmMintPrice * _amount, "ETH value is not correct"); } //burn function burn(uint256 tokenId) external virtual { _burn(tokenId, true); } //widraw ETH from this contract.only owner. function withdraw() external payable virtual onlyOwner nonReentrant{ // This will payout the owner 100% of the contract balance. // Do not remove this otherwise you will not be able to withdraw the funds. // ============================================================================= bool os; if(_withdrawWallet != address(0)){//if _withdrawWallet has. (os, ) = payable(_withdrawWallet).call{value: address(this).balance}(""); }else{ (os, ) = payable(owner()).call{value: address(this).balance}(""); } require(os); // ============================================================================= } //return wallet owned tokenids.it used high gas and running time. function walletOfOwner(address owner) external view virtual returns (uint256[] memory) { //copy from tokensOfOwner in ERC721AQueryable.sol unchecked { uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; i++) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } //set Staking enable.only owner. function setStakingEnable(bool bool_) external virtual onlyOwner { isStakingEnabled = bool_; if(bool_){ stakingStartTimestamp = block.timestamp; stakingEndTimestamp = NULL_STAKED; }else{ stakingEndTimestamp = block.timestamp; } } //get staking information. function _getStakingInfo(uint256 _tokenId) internal view virtual returns (uint256 startTimestamp, uint256 currentStakingTime, uint256 totalStakingTime, bool isStaking,uint256 claimedLastTimestamp ){ require(_exists(_tokenId), "nonexistent token"); currentStakingTime = 0; startTimestamp = _stakingStartedTimestamp[_tokenId]; if (startTimestamp != NULL_STAKED) { // is staking currentStakingTime = block.timestamp - startTimestamp; } totalStakingTime = currentStakingTime + _stakingTotalTime[_tokenId]; isStaking = startTimestamp != NULL_STAKED; claimedLastTimestamp = _claimedLastTimestamp[_tokenId]; } //get staking information. function getStakingInfo(uint256 _tokenId) external view virtual returns (uint256 startTimestamp, uint256 currentStakingTime, uint256 totalStakingTime, bool isStaking,uint256 claimedLastTimestamp ){ (startTimestamp, currentStakingTime, totalStakingTime, isStaking, claimedLastTimestamp) = _getStakingInfo(_tokenId); } //toggle staking status function _toggleStaking(uint256 _tokenId) internal virtual { require(ownerOf(_tokenId) == msg.sender,"You are not owner of this tokenid."); require(_exists(_tokenId), "nonexistent token"); uint256 startTimestamp = _stakingStartedTimestamp[_tokenId]; if (startTimestamp == NULL_STAKED) { //start staking require(isStakingEnabled, "Staking closed"); _stakingStartedTimestamp[_tokenId] = block.timestamp; } else { //start unstaking _stakingTotalTime[_tokenId] += block.timestamp - startTimestamp; _stakingStartedTimestamp[_tokenId] = NULL_STAKED; _claimedLastTimestamp[_tokenId] = NULL_STAKED; } } //toggle staking status function toggleStaking(uint256[] calldata _tokenIds) external virtual { uint256 num = _tokenIds.length; for (uint256 i = 0; i < num; i++) { uint256 tokenId = _tokenIds[i]; _toggleStaking(tokenId); } } //set rewardContract.only owner function setRewardContract(address _addr) external virtual onlyOwner { rewardContract = _addr; _rewardContractFactory = MGYREWARD(rewardContract); } //claim reward function _claimReward(uint256 _tokenId) internal virtual { require(ownerOf(_tokenId) == msg.sender,"You are not owner of this tokenid."); require(_exists(_tokenId), "nonexistent token"); //get staking infomation (uint256 startTimestamp, uint256 currentStakingTime, uint256 totalStakingTime, bool isStaking,uint256 claimedLastTimestamp ) = _getStakingInfo(_tokenId); uint256 _lastTimestamp = block.timestamp; _claimedLastTimestamp[_tokenId] = _lastTimestamp; //execute before claimReward().Warning for slither. //call reword. other contract _rewardContractFactory.claimReward(stakingStartTimestamp, stakingEndTimestamp, _tokenId, startTimestamp, currentStakingTime, totalStakingTime, isStaking, claimedLastTimestamp, _lastTimestamp); } //claim reward function claimReward(uint256[] calldata _tokenIds) external virtual nonReentrant{ require(isStakingEnabled, "Staking closed");//only staking period uint256 num = _tokenIds.length; for (uint256 i = 0; i < num; i++) { uint256 tokenId = _tokenIds[i]; _claimReward(tokenId); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {OperatorFilterer} from "./OperatorFilterer.sol"; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} }
//SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "./MGYERC721A.sol"; contract MGYREWARD is Ownable,ReentrancyGuard{ address public callContract;//callable MGYERC721A address MGYERC721A internal _callContractFactory;//callable Contract's factory //set callContract.only owner function setCallContract(address _callAddr) external virtual onlyOwner{ callContract = _callAddr; _callContractFactory = MGYERC721A(callContract); } //execute reward function _claimReward(uint256 _stakingStartTimestamp, uint256 _stakingEndTimestamp, uint256 _tokenId,uint256 _startTimestamp, uint256 _currentStakingTime, uint256 _totalStakingTime, bool _isStaking, uint256 _claimedLastTimestamp, uint256 _currentClaimedLastTimestamp) internal virtual{ //do reword something todo } //execute reward function claimReward(uint256 _stakingStartTimestamp, uint256 _stakingEndTimestamp, uint256 _tokenId,uint256 _startTimestamp, uint256 _currentStakingTime, uint256 _totalStakingTime, bool _isStaking, uint256 _claimedLastTimestamp, uint256 _currentClaimedLastTimestamp) external virtual nonReentrant{ require(callContract != address(0),"not set callContract."); require(msg.sender == callContract,"only callContract can call this function."); _claimReward(_stakingStartTimestamp, _stakingEndTimestamp, _tokenId, _startTimestamp, _currentStakingTime, _totalStakingTime, _isStaking, _claimedLastTimestamp, _currentClaimedLastTimestamp); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol) pragma solidity ^0.8.0; /** * @dev Provides a set of functions to operate with Base64 strings. * * _Available since v4.5._ */ library Base64 { /** * @dev Base64 Encoding/Decoding Table */ string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /** * @dev Converts a `bytes` to its Bytes64 `string` representation. */ function encode(bytes memory data) internal pure returns (string memory) { /** * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol */ if (data.length == 0) return ""; // Loads the table into memory string memory table = _TABLE; // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter // and split into 4 numbers of 6 bits. // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up // - `data.length + 2` -> Round up // - `/ 3` -> Number of 3-bytes chunks // - `4 *` -> 4 characters for each chunk string memory result = new string(4 * ((data.length + 2) / 3)); /// @solidity memory-safe-assembly assembly { // Prepare the lookup table (skip the first "length" byte) let tablePtr := add(table, 1) // Prepare result pointer, jump over length let resultPtr := add(result, 32) // Run over the input, 3 bytes at a time for { let dataPtr := data let endPtr := add(data, mload(data)) } lt(dataPtr, endPtr) { } { // Advance 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // To write each character, shift the 3 bytes (18 bits) chunk // 4 times in blocks of 6 bits for each character (18, 12, 6, 0) // and apply logical AND with 0x3F which is the number of // the previous character in the ASCII table prior to the Base64 Table // The result is then added to the table to get the character to write, // and finally write it in the result pointer but with a left shift // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F)))) resultPtr := add(resultPtr, 1) // Advance } // When data `bytes` is not exactly 3 bytes long // it is padded with `=` characters at the end switch mod(mload(data), 3) case 1 { mstore8(sub(resultPtr, 1), 0x3d) mstore8(sub(resultPtr, 2), 0x3d) } case 2 { mstore8(sub(resultPtr, 1), 0x3d) } } return result; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC4907A.sol'; import '../ERC721A.sol'; /** * @title ERC4907A * * @dev [ERC4907](https://eips.ethereum.org/EIPS/eip-4907) compliant * extension of ERC721A, which allows owners and authorized addresses * to add a time-limited role with restricted permissions to ERC721 tokens. */ abstract contract ERC4907A is ERC721A, IERC4907A { // The bit position of `expires` in packed user info. uint256 private constant _BITPOS_EXPIRES = 160; // Mapping from token ID to user info. // // Bits Layout: // - [0..159] `user` // - [160..223] `expires` mapping(uint256 => uint256) private _packedUserInfo; /** * @dev Sets the `user` and `expires` for `tokenId`. * The zero address indicates there is no user. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function setUser( uint256 tokenId, address user, uint64 expires ) public virtual override { // Require the caller to be either the token owner or an approved operator. address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) if (getApproved(tokenId) != _msgSenderERC721A()) revert SetUserCallerNotOwnerNorApproved(); _packedUserInfo[tokenId] = (uint256(expires) << _BITPOS_EXPIRES) | uint256(uint160(user)); emit UpdateUser(tokenId, user, expires); } /** * @dev Returns the user address for `tokenId`. * The zero address indicates that there is no user or if the user is expired. */ function userOf(uint256 tokenId) public view virtual override returns (address) { uint256 packed = _packedUserInfo[tokenId]; assembly { // Branchless `packed *= (block.timestamp <= expires ? 1 : 0)`. // If the `block.timestamp == expires`, the `lt` clause will be true // if there is a non-zero user address in the lower 160 bits of `packed`. packed := mul( packed, // `block.timestamp <= expires ? 1 : 0`. lt(shl(_BITPOS_EXPIRES, timestamp()), packed) ) } return address(uint160(packed)); } /** * @dev Returns the user's expires of `tokenId`. */ function userExpires(uint256 tokenId) public view virtual override returns (uint256) { return _packedUserInfo[tokenId] >> _BITPOS_EXPIRES; } /** * @dev Override of {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, IERC721A) returns (bool) { // The interface ID for ERC4907 is `0xad092b5c`, // as defined in [ERC4907](https://eips.ethereum.org/EIPS/eip-4907). return super.supportsInterface(interfaceId) || interfaceId == 0xad092b5c; } /** * @dev Returns the user address for `tokenId`, ignoring the expiry status. */ function _explicitUserOf(uint256 tokenId) internal view virtual returns (address) { return address(uint160(_packedUserInfo[tokenId])); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; import "../../interfaces/IERC2981.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import '../IERC721A.sol'; /** * @dev Interface of ERC4907A. */ interface IERC4907A is IERC721A { /** * The caller must own the token or be an approved operator. */ error SetUserCallerNotOwnerNorApproved(); /** * @dev Emitted when the `user` of an NFT or the `expires` of the `user` is changed. * The zero address for user indicates that there is no user address. */ event UpdateUser(uint256 indexed tokenId, address indexed user, uint64 expires); /** * @dev Sets the `user` and `expires` for `tokenId`. * The zero address indicates there is no user. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function setUser( uint256 tokenId, address user, uint64 expires ) external; /** * @dev Returns the user address for `tokenId`. * The zero address indicates that there is no user or if the user is expired. */ function userOf(uint256 tokenId) external view returns (address); /** * @dev Returns the user's expires of `tokenId`. */ function userExpires(uint256 tokenId) external view returns (uint256); }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol"; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); }
{ "optimizer": { "enabled": true, "runs": 1 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SetUserCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint64","name":"expires","type":"uint64"}],"name":"UpdateUser","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bmMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"bmMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_season","type":"uint256"}],"name":"bmMintedBySeason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256[]","name":"_tokenids","type":"uint256[]"}],"name":"burnAndMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"claimReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractStatus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getCustomTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getOtherTokenidUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_season","type":"uint256"}],"name":"getOtherTokenidUsedBySeason","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSeason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getSeasonByTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getStakingInfo","outputs":[{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"currentStakingTime","type":"uint256"},{"internalType":"uint256","name":"totalStakingTime","type":"uint256"},{"internalType":"bool","name":"isStaking","type":"bool"},{"internalType":"uint256","name":"claimedLastTimestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"},{"internalType":"bytes32[]","name":"proof1_","type":"bytes32[]"},{"internalType":"bytes32[]","name":"proof2_","type":"bytes32[]"}],"name":"getWhitelistedMaxMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"},{"internalType":"bytes32[]","name":"proof1_","type":"bytes32[]"},{"internalType":"bytes32[]","name":"proof2_","type":"bytes32[]"}],"name":"getWhitelistedPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWlResetIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"hasWhitelistedOneWL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"hasWhitelistedOneWL1","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"}],"name":"hasWhitelistedOneWL2","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hmMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"hmMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_season","type":"uint256"}],"name":"hmMintedBySeason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256[]","name":"_tokenids","type":"uint256[]"}],"name":"holdAndMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"incrementSeason","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBmEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isHmEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_season","type":"uint256"}],"name":"isRevealedBySeason","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSBTEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isStakingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"},{"internalType":"bytes32[]","name":"proof1_","type":"bytes32[]"},{"internalType":"bytes32[]","name":"proof2_","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWlEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerBM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerHM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerWL1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerWL2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"otherContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"otherContractCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"psMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"psMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_season","type":"uint256"}],"name":"psMintedBySeason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetWlMinted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"seasonStartTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"},{"internalType":"uint256","name":"_season","type":"uint256"}],"name":"setBaseURIBySeason","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setBmMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setBmPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setBurnAndMintSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"status_","type":"uint256"}],"name":"setContractStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"uri_","type":"string"}],"name":"setCustomTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setHiddenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"},{"internalType":"uint256","name":"_season","type":"uint256"}],"name":"setHiddenBaseURIBySeason","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setHmMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setHmPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setHoldAndMintSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setOtherContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setOtherContractCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setOtherTokenidUsed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bool","name":"bool_","type":"bool"},{"internalType":"uint256","name":"_season","type":"uint256"}],"name":"setOtherTokenidUsedBySeason","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setPsMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPsPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"},{"internalType":"uint256","name":"_season","type":"uint256"}],"name":"setRevealBySeason","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setRewardContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"","type":"bool"}],"name":"setSBTMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setStakingEnable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"user","type":"address"},{"internalType":"uint64","name":"expires","type":"uint64"}],"name":"setUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"}],"name":"setWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"setWithdrawWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setWlMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setWlMaxMints1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setWlMaxMints2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setWlPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setWlPrice1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setWlPrice2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingEndTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingStartTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"toggleStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"userExpires","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"userOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof_","type":"bytes32[]"},{"internalType":"bytes32[]","name":"proof1_","type":"bytes32[]"},{"internalType":"bytes32[]","name":"proof2_","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlMintPrice1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlMintPrice2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"wlMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_season","type":"uint256"}],"name":"wlMintedBySeason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162005ac738038062005ac78339810160408190526200003491620003ff565b81818181733cc6cdda760b79bafa08df41ecfa224f810dceb660016daaeb6d7670e522a718067333cd4e3b1562000181578015620000db57604051633e9f1edf60e11b81526daaeb6d7670e522a718067333cd4e90637d3e3dbe90620000a1903090869060040162000469565b600060405180830381600087803b158015620000bc57600080fd5b505af1158015620000d1573d6000803e3d6000fd5b5050505062000181565b6001600160a01b03821615620001205760405163a0af290360e01b81526daaeb6d7670e522a718067333cd4e9063a0af290390620000a1903090869060040162000469565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200016757600080fd5b505af11580156200017c573d6000803e3d6000fd5b505050505b506200018f9050336200023c565b8151620001a49060039060208501906200028c565b508051620001ba9060049060208401906200028c565b506001808155600a5550620001cf9050600190565b6026546000908152602760209081526040808320939093558251908101928390528190526200020191602d916200028c565b505060408051808201909152600580825264173539b7b760d91b6020909201918252620002339250602d91906200028c565b505050620004bf565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200029a9062000483565b90600052602060002090601f016020900481019282620002be576000855562000309565b82601f10620002d957805160ff191683800117855562000309565b8280016001018555821562000309579182015b8281111562000309578251825591602001919060010190620002ec565b50620003179291506200031b565b5090565b5b808211156200031757600081556001016200031c565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200035a57600080fd5b81516001600160401b038082111562000377576200037762000332565b604051601f8301601f19908116603f01168101908282118183101715620003a257620003a262000332565b81604052838152602092508683858801011115620003bf57600080fd5b600091505b83821015620003e35785820183015181830184015290820190620003c4565b83821115620003f55760008385830101525b9695505050505050565b600080604083850312156200041357600080fd5b82516001600160401b03808211156200042b57600080fd5b620004398683870162000348565b935060208501519150808211156200045057600080fd5b506200045f8582860162000348565b9150509250929050565b6001600160a01b0392831681529116602082015260400190565b600181811c908216806200049857607f821691505b602082108103620004b957634e487b7160e01b600052602260045260246000fd5b50919050565b6155f880620004cf6000396000f3fe6080604052600436106105515760003560e01c80630163561b1461055657806301ffc9a71461057f57806304634d8d146105af578063062cb301146105d157806306fdde031461061357806307aaef3814610635578063081812fc14610655578063095ea7b3146106825780630c2254e3146106955780630d9005ae146106b55780630f9eef09146106ca57806314295774146106eb578063155fc3af1461070b57806318160ddd1461072b5780631a09cfe2146107405780631b82cf151461075657806320ac68501461076957806323b872dd146107895780632908e7101461079c5780632a3f300c146107d65780632a55205a146107f65780632c4e9fc6146108355780632cf7f9c81461084b5780632db115441461086b57806330d616f41461087e57806331e2d9591461089e57806335a28f3e146108b357806335febafa146108d35780633615a4ef146108e95780633ccfd60b146108ff5780633d9f0ae51461090757806341f434341461092757806342454db91461094957806342842e0e1461095f57806342966c6814610972578063438b63001461099257806351508f0a146109bf57806353c12e9f146109df57806354214f69146109ff57806354c9d27314610a2657806355f804b314610a3b578063591500cd14610a5b57806359b89ca714610a9d5780635aca1bb614610aca5780635fd57c1b14610aea578063605cc41814610b0a5780636214341b14610b2a5780636352211e14610b4a5780636361bc5114610b6a578063659542b014610bac57806367da203214610bcc57806367fbb9ef14610bed5780636bb67a6b14610c0d5780636e2fcff314610c235780636ea69d6214610c395780636ef4f9b514610c595780636f5fae8014610c795780636f8b44b014610c9957806370a0823114610cb9578063715018a614610cd9578063719eaef814610cee5780637402a85d14610d0e578063753f454214610d2457806376a42bf214610d3a57806378a9238014610d5a5780637974135714610da657806379a5952614610dbc5780637cb6475914610ddc5780637ebe707614610dfc578063813779ef14610e1c57806383bedeb514610e3c57806383f0e6a314610e6c578063851fc4b614610e8c5780638a5645fd14610eac5780638da5cb5b14610ee95780638dd07d0f14610efe5780638e5888c214610f1e5780638fc88c4814610f3457806390a667be14610f645780639373f43214610f84578063942958f414610fa4578063945b8c7014610fe857806395d89b41146110085780639970cc291461101d5780639a0f3100146110335780639c9a943014611053578063a22cb4651461106d578063a8b9e6461461108d578063a91a86f9146110a2578063b1d3864d146110e6578063b88d4fde14611130578063bb7a83d014611143578063bbc31d2f14611159578063bd45f0f514611179578063bd57e5e914611199578063bd9ebe8b146111b9578063c032846b146111d9578063c1a5e080146111ee578063c2f1f14a1461120e578063c6ccf54214611242578063c87b56dd14611258578063c94c7ff414611278578063ca7ce3ec14611298578063ce7e3f5a146112b8578063d21486ce146112d8578063d52c57e0146112f8578063d5abeb0114611318578063d78be71c1461132e578063e030565e1461134e578063e29a93701461136e578063e8a3d4851461138f578063e8fa494e146113a4578063e9186bce146113b9578063e985e9c5146113d8578063e98d36e114611421578063e9bf827e14611441578063e9c4aa6a14611454578063eb27ccb91461149e578063ec5566b3146114be578063f2fde38b146114de578063f78e1bdb146114fe578063fc5abdb314611542575b600080fd5b34801561056257600080fd5b5061056c60155481565b6040519081526020015b60405180910390f35b34801561058b57600080fd5b5061059f61059a366004614880565b611555565b6040519015158152602001610576565b3480156105bb57600080fd5b506105cf6105ca3660046148b2565b611584565b005b3480156105dd57600080fd5b5061056c6105ec3660046148f7565b60009081526021602090815260408083206001600160a01b03949094168352929052205490565b34801561061f57600080fd5b5061062861159a565b604051610576919061497b565b34801561064157600080fd5b506105cf61065036600461498e565b61162c565b34801561066157600080fd5b5061067561067036600461498e565b611639565b60405161057691906149a7565b6105cf6106903660046148f7565b61167d565b3480156106a157600080fd5b506105cf6106b0366004614a78565b61171d565b3480156106c157600080fd5b5061056c611749565b3480156106d657600080fd5b50601b5461059f90600160a01b900460ff1681565b3480156106f757600080fd5b506105cf61070636600461498e565b611759565b34801561071757600080fd5b506105cf610726366004614aca565b611766565b34801561073757600080fd5b5061056c611837565b34801561074c57600080fd5b5061056c60165481565b6105cf610764366004614b81565b611845565b34801561077557600080fd5b506105cf610784366004614c12565b6118c6565b6105cf610797366004614c46565b6118f0565b3480156107a857600080fd5b5061059f6107b7366004614c76565b6000908152602460209081526040808320938352929052205460ff1690565b3480156107e257600080fd5b506105cf6107f1366004614c98565b61191b565b34801561080257600080fd5b50610816610811366004614c76565b611945565b604080516001600160a01b039093168352602083019190915201610576565b34801561084157600080fd5b5061056c600d5481565b34801561085757600080fd5b5061059f610866366004614cb5565b6119f3565b6105cf61087936600461498e565b611a31565b34801561088a57600080fd5b506105cf610899366004614c98565b611bbb565b3480156108aa57600080fd5b5060255461056c565b3480156108bf57600080fd5b506105cf6108ce366004614d04565b611bf9565b3480156108df57600080fd5b5061056c60175481565b3480156108f557600080fd5b5061056c60185481565b6105cf611c2d565b34801561091357600080fd5b506105cf61092236600461498e565b611cd2565b34801561093357600080fd5b506106756daaeb6d7670e522a718067333cd4e81565b34801561095557600080fd5b5061056c60105481565b6105cf61096d366004614c46565b611cdf565b34801561097e57600080fd5b506105cf61098d36600461498e565b611d04565b34801561099e57600080fd5b506109b26109ad366004614d04565b611d0f565b6040516105769190614d21565b3480156109cb57600080fd5b506105cf6109da366004614d04565b611df5565b3480156109eb57600080fd5b506105cf6109fa366004614d59565b611e29565b348015610a0b57600080fd5b506026546000908152601f602052604090205460ff1661059f565b348015610a3257600080fd5b5060265461056c565b348015610a4757600080fd5b506105cf610a56366004614c12565b611e50565b348015610a6757600080fd5b5061056c610a763660046148f7565b60009081526023602090815260408083206001600160a01b03949094168352929052205490565b348015610aa957600080fd5b5061056c610ab836600461498e565b60276020526000908152604090205481565b348015610ad657600080fd5b506105cf610ae5366004614c98565b611e7a565b348015610af657600080fd5b506105cf610b0536600461498e565b611e9c565b348015610b1657600080fd5b506105cf610b2536600461498e565b611ea9565b348015610b3657600080fd5b5061056c610b45366004614d77565b611eb6565b348015610b5657600080fd5b50610675610b6536600461498e565b611ecd565b348015610b7657600080fd5b5061056c610b853660046148f7565b60009081526022602090815260408083206001600160a01b03949094168352929052205490565b348015610bb857600080fd5b506105cf610bc7366004614c98565b611ed8565b348015610bd857600080fd5b50601e5461059f906301000000900460ff1681565b348015610bf957600080fd5b506105cf610c0836600461498e565b611efe565b348015610c1957600080fd5b5061056c60115481565b348015610c2f57600080fd5b5061056c60195481565b348015610c4557600080fd5b50603354610675906001600160a01b031681565b348015610c6557600080fd5b506105cf610c74366004614df8565b611f0b565b348015610c8557600080fd5b506105cf610c94366004614c98565b611f50565b348015610ca557600080fd5b506105cf610cb436600461498e565b611f74565b348015610cc557600080fd5b5061056c610cd4366004614d04565b611fd4565b348015610ce557600080fd5b506105cf612022565b348015610cfa57600080fd5b506105cf610d0936600461498e565b612036565b348015610d1a57600080fd5b5061056c60355481565b348015610d3057600080fd5b5061056c60145481565b348015610d4657600080fd5b506105cf610d55366004614e39565b612043565b348015610d6657600080fd5b5061056c610d75366004614d04565b6026546000908152602080805260408083206001600160a01b03909416835292815282822060255483529052205490565b348015610db257600080fd5b5061056c600f5481565b348015610dc857600080fd5b506105cf610dd736600461498e565b61210e565b348015610de857600080fd5b506105cf610df736600461498e565b61211b565b348015610e0857600080fd5b506105cf610e1736600461498e565b612128565b348015610e2857600080fd5b506105cf610e3736600461498e565b612135565b348015610e4857600080fd5b5061059f610e5736600461498e565b6000908152601f602052604090205460ff1690565b348015610e7857600080fd5b506105cf610e8736600461498e565b612142565b348015610e9857600080fd5b506105cf610ea7366004614e5e565b61214f565b348015610eb857600080fd5b5061059f610ec736600461498e565b6026546000908152602460209081526040808320938352929052205460ff1690565b348015610ef557600080fd5b5061067561219b565b348015610f0a57600080fd5b506105cf610f1936600461498e565b6121aa565b348015610f2a57600080fd5b5061056c60125481565b348015610f4057600080fd5b5061056c610f4f36600461498e565b60009081526009602052604090205460a01c90565b348015610f7057600080fd5b506105cf610f7f366004614a78565b6121b7565b348015610f9057600080fd5b506105cf610f9f366004614d04565b6121de565b348015610fb057600080fd5b5061056c610fbf366004614d04565b60265460009081526021602090815260408083206001600160a01b039094168352929052205490565b348015610ff457600080fd5b5061059f611003366004614d77565b612208565b34801561101457600080fd5b50610628612216565b34801561102957600080fd5b5061056c60135481565b34801561103f57600080fd5b506105cf61104e366004614c98565b612225565b34801561105f57600080fd5b50601e5461059f9060ff1681565b34801561107957600080fd5b506105cf611088366004614e9a565b61223d565b34801561109957600080fd5b506105cf6122a9565b3480156110ae57600080fd5b5061056c6110bd366004614d04565b60265460009081526022602090815260408083206001600160a01b039094168352929052205490565b3480156110f257600080fd5b5061056c6111013660046148f7565b6000908152602080805260408083206001600160a01b0394909416835292815282822060255483529052205490565b6105cf61113e366004614ec8565b6122c8565b34801561114f57600080fd5b5061056c600e5481565b34801561116557600080fd5b5061056c611174366004614d77565b6122f5565b34801561118557600080fd5b5061062861119436600461498e565b612303565b3480156111a557600080fd5b5061056c6111b436600461498e565b6123c8565b3480156111c557600080fd5b506105cf6111d436600461498e565b6123d3565b3480156111e557600080fd5b5060285461056c565b3480156111fa57600080fd5b5061059f611209366004614cb5565b6123e0565b34801561121a57600080fd5b5061067561122936600461498e565b6000908152600960205260409020544260a01b81110290565b34801561124e57600080fd5b5061056c60365481565b34801561126457600080fd5b5061062861127336600461498e565b612416565b34801561128457600080fd5b506105cf611293366004614df8565b61257c565b3480156112a457600080fd5b506105cf6112b3366004614c98565b612611565b3480156112c457600080fd5b506105cf6112d336600461498e565b61262c565b3480156112e457600080fd5b50601e5461059f9062010000900460ff1681565b34801561130457600080fd5b506105cf611313366004614f3b565b612639565b34801561132457600080fd5b5061056c601a5481565b34801561133a57600080fd5b506105cf61134936600461498e565b61264b565b34801561135a57600080fd5b506105cf611369366004614f60565b612658565b34801561137a57600080fd5b50601e5461059f90600160201b900460ff1681565b34801561139b57600080fd5b50610628612727565b3480156113b057600080fd5b506105cf612731565b3480156113c557600080fd5b50601e5461059f90610100900460ff1681565b3480156113e457600080fd5b5061059f6113f3366004614fae565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561142d57600080fd5b50602e54610675906001600160a01b031681565b6105cf61144f366004614fdc565b612781565b34801561146057600080fd5b5061147461146f36600461498e565b612b3b565b6040805195865260208601949094529284019190915215156060830152608082015260a001610576565b3480156114aa57600080fd5b5061059f6114b9366004614cb5565b612b5e565b3480156114ca57600080fd5b506105cf6114d936600461498e565b612b94565b3480156114ea57600080fd5b506105cf6114f9366004614d04565b612ba1565b34801561150a57600080fd5b5061056c611519366004614d04565b60265460009081526023602090815260408083206001600160a01b039094168352929052205490565b6105cf611550366004614fdc565b612c17565b600061156082612f62565b8061156f575061156f82612fb0565b8061157e575061157e82612fd8565b92915050565b61158c61300d565b611596828261306c565b5050565b6060600380546115a990615027565b80601f01602080910402602001604051908101604052809291908181526020018280546115d590615027565b80156116225780601f106115f757610100808354040283529160200191611622565b820191906000526020600020905b81548152906001019060200180831161160557829003601f168201915b5050505050905090565b61163461300d565b601955565b600061164482613165565b611661576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061168882611ecd565b9050336001600160a01b038216146116c1576116a481336113f3565b6116c1576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61172561300d565b6000818152601d602090815260409091208351611744928501906147aa565b505050565b600061175460015490565b905090565b61176161300d565b602b55565b61176e61300d565b602f546040516331a9108f60e11b8152600481018590526000916001600160a01b031690636352211e90602401602060405180830381865afa1580156117b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117dc9190615061565b6001600160a01b03160361180b5760405162461bcd60e51b81526004016118029061507e565b60405180910390fd5b600090815260246020908152604080832094835293905291909120805460ff1916911515919091179055565b600254600154036000190190565b6002600a54036118675760405162461bcd60e51b8152600401611802906150a9565b6002600a556118788484848461319a565b61188484848484613329565b6026546000908152602080805260408083203380855290835281842060255485529092529091208054860190556118bb9085613361565b50506001600a555050565b6118ce61300d565b6026546000908152601c602090815260409091208251611596928401906147aa565b826001600160a01b038116331461190a5761190a336133bd565b61191584848461346d565b50505050565b61192361300d565b6026546000908152601f60205260409020805460ff1916911515919091179055565b6000828152600c602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916119ba575060408051808201909152600b546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906119d9906001600160601b0316876150f6565b6119e3919061512b565b91519350909150505b9250929050565b60008083604051602001611a07919061513f565b604051602081830303815290604052805190602001209050611a29838261360a565b949350505050565b6002600a5403611a535760405162461bcd60e51b8152600401611802906150a9565b6002600a55601e54610100900460ff16611aa65760405162461bcd60e51b81526020600482015260146024820152731c1d589b1a58d35a5b9d081a5cc814185d5cd95960621b6044820152606401611802565b806016541015611b065760405162461bcd60e51b815260206004820152602560248201527f7075626c69634d696e743a204f766572206d6178206d696e7473207065722077604482015264185b1b195d60da1b6064820152608401611802565b6026546000908152602160209081526040808320338452909152902054611b2e908290615157565b6016541015611b7d5760405162461bcd60e51b815260206004820152601b60248201527a165bdd481a185d99481b9bc81c1d589b1a58d35a5b9d081b19599d602a1b6044820152606401611802565b611b868161362d565b6026546000908152602160209081526040808320338085529252909120805483019055611bb39082613361565b506001600a55565b611bc361300d565b601e805482158015600160201b0260ff60201b1990921691909117909155611bf15742603555600060365550565b426036555b50565b611c0161300d565b602e80546001600160a01b039092166001600160a01b03199283168117909155602f8054909216179055565b611c3561300d565b6002600a5403611c575760405162461bcd60e51b8152600401611802906150a9565b6002600a5560405173ad199dfd0d765418961a334de6337a34f262674090600090829047908381818185875af1925050503d8060008114611cb4576040519150601f19603f3d011682016040523d82523d6000602084013e611cb9565b606091505b50508091505080611cc957600080fd5b50506001600a55565b611cda61300d565b601755565b826001600160a01b0381163314611cf957611cf9336133bd565b611915848484613659565b611bf6816001613674565b60606000806000611d1f85611fd4565b90506000816001600160401b03811115611d3b57611d3b6149bb565b604051908082528060200260200182016040528015611d64578160200160208202803683370190505b509050611d6f61482e565b60015b838614611de957611d82816137b5565b91508160400151611de15781516001600160a01b031615611da257815194505b876001600160a01b0316856001600160a01b031603611de15780838780600101985081518110611dd457611dd461516f565b6020026020010181815250505b600101611d72565b50909695505050505050565b611dfd61300d565b603380546001600160a01b039092166001600160a01b0319928316811790915560348054909216179055565b611e3161300d565b6000908152601f60205260409020805460ff1916911515919091179055565b611e5861300d565b6026546000908152601d602090815260409091208251611596928401906147aa565b611e8261300d565b601e80549115156101000261ff0019909216919091179055565b611ea461300d565b601255565b611eb161300d565b601455565b6000611ec4858585856137d5565b95945050505050565b600061157e82613859565b611ee061300d565b601e805491151563010000000263ff00000019909216919091179055565b611f0661300d565b600f55565b8060005b81811015611915576000848483818110611f2b57611f2b61516f565b905060200201359050611f3d816138c8565b5080611f4881615185565b915050611f0f565b611f5861300d565b601e8054911515620100000262ff000019909216919091179055565b611f7c61300d565b80611f85611837565b1115611fcf5760405162461bcd60e51b81526020600482015260196024820152782637bbb2b9103a3430b7102fb1bab93932b73a24b73232bc1760391b6044820152606401611802565b601a55565b60006001600160a01b038216611ffd576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b61202a61300d565b61203460006139ba565b565b61203e61300d565b601355565b61204b61300d565b602f546040516331a9108f60e11b8152600481018490526000916001600160a01b031690636352211e90602401602060405180830381865afa158015612095573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120b99190615061565b6001600160a01b0316036120df5760405162461bcd60e51b81526004016118029061507e565b602654600090815260246020908152604080832094835293905291909120805460ff1916911515919091179055565b61211661300d565b600e55565b61212361300d565b602955565b61213061300d565b601155565b61213d61300d565b601655565b61214a61300d565b601855565b61215761300d565b61216082613165565b61217c5760405162461bcd60e51b81526004016118029061519e565b6000828152602c602090815260409091208251611744928401906147aa565b6000546001600160a01b031690565b6121b261300d565b600d55565b6121bf61300d565b6000818152601c602090815260409091208351611744928501906147aa565b6121e661300d565b601b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000611ec485858585613a0a565b6060600480546115a990615027565b61222d61300d565b50601b805460ff60a01b19169055565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6122b161300d565b602580549060006122c183615185565b9190505550565b836001600160a01b03811633146122e2576122e2336133bd565b6122ee85858585613a6a565b5050505050565b6000611ec485858585613aae565b606061230e82613165565b61232a5760405162461bcd60e51b81526004016118029061519e565b6000828152602c60205260409020805461234390615027565b80601f016020809104026020016040519081016040528092919081815260200182805461236f90615027565b80156123bc5780601f10612391576101008083540402835291602001916123bc565b820191906000526020600020905b81548152906001019060200180831161239f57829003601f168201915b50505050509050919050565b600061157e82613b31565b6123db61300d565b602a55565b600080836040516020016123f4919061513f565b604051602081830303815290604052805190602001209050611a298382613bea565b606061242182613165565b61243d5760405162461bcd60e51b81526004016118029061519e565b600061244883613b31565b6000818152601f602052604081205491925060ff90911615159003612506576000818152601c60205260409020805461248090615027565b80601f01602080910402602001604051908101604052809291908181526020018280546124ac90615027565b80156124f95780601f106124ce576101008083540402835291602001916124f9565b820191906000526020600020905b8154815290600101906020018083116124dc57829003601f168201915b5050505050915050919050565b6000838152602c60205260409020805461251f90615027565b15905061253f576000838152602c60205260409020805461248090615027565b61254881613c06565b61255184613c23565b602d604051602001612565939291906151d5565b604051602081830303815290604052915050919050565b6002600a540361259e5760405162461bcd60e51b8152600401611802906150a9565b6002600a55601e54600160201b900460ff166125cc5760405162461bcd60e51b815260040161180290615298565b8060005b818110156118bb5760008484838181106125ec576125ec61516f565b9050602002013590506125fe81613d23565b508061260981615185565b9150506125d0565b61261961300d565b601e805460ff1916911515919091179055565b61263461300d565b601555565b61264161300d565b6115968183613361565b61265361300d565b601055565b600061266384611ecd565b9050336001600160a01b038216146126b45761267f81336113f3565b6126b4573361268d85611639565b6001600160a01b0316146126b4576040516309e3bb1d60e31b815260040160405180910390fd5b6000848152600960209081526040918290206001600160a01b03861660a086901b600160a01b600160e01b0316811790915591516001600160401b038516815286917f4e06b4e7000e659094299b3533b47b6aa8ad048e95e872d23d1f4ee55af89cfe910160405180910390a350505050565b6060611754613e55565b61273961300d565b601e805463ffffffff1916905560006029819055602a819055602b819055602680549161276583615185565b9091555050600154602654600090815260276020526040902055565b6002600a54036127a35760405162461bcd60e51b8152600401611802906150a9565b6002600a55601e546301000000900460ff166127fb5760405162461bcd60e51b8152602060048201526017602482015276121bdb1909935a5b9d14d85b19481a5cc814185d5cd959604a1b6044820152606401611802565b82601854101561285e5760405162461bcd60e51b815260206004820152602860248201527f486f6c64264d696e7453616c653a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b6064820152608401611802565b6026546000908152602360209081526040808320338452909152902054612886908490615157565b60185410156128d75760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f20486f6c64264d696e7453616c65206c65667400006044820152606401611802565b6128e083613ed5565b602e546001600160a01b03166129085760405162461bcd60e51b8152600401611802906152c0565b60195460000361292a5760405162461bcd60e51b8152600401611802906152f0565b8260195461293891906150f6565b81146129565760405162461bcd60e51b815260040161180290615325565b60005b81811015612b0357602f5433906001600160a01b0316636352211e8585858181106129865761298661516f565b905060200201356040518263ffffffff1660e01b81526004016129ab91815260200190565b602060405180830381865afa1580156129c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129ec9190615061565b6001600160a01b031614612a125760405162461bcd60e51b815260040161180290615375565b602654600090815260246020526040812090848484818110612a3657612a3661516f565b602090810292909201358352508101919091526040016000205460ff1615612a9e5760405162461bcd60e51b815260206004820152601b60248201527a2a3434b99037ba3432b9103a37b5b2b734b21034b9902ab9b2b21760291b6044820152606401611802565b6026546000908152602460205260408120600191858585818110612ac457612ac461516f565b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055508080612afb90615185565b915050612959565b506026546000908152602360209081526040808320338085529252909120805485019055612b319084613361565b50506001600a5550565b6000806000806000612b4c86613ee3565b939a9299509097509550909350915050565b60008083604051602001612b72919061513f565b604051602081830303815290604052805190602001209050611a298382613f70565b612b9c61300d565b602855565b612ba961300d565b6001600160a01b038116612c0e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611802565b611bf6816139ba565b6002600a5403612c395760405162461bcd60e51b8152600401611802906150a9565b6002600a55601e5462010000900460ff16612c905760405162461bcd60e51b8152602060048201526017602482015276109d5c9b89935a5b9d14d85b19481a5cc814185d5cd959604a1b6044820152606401611802565b826017541015612cf35760405162461bcd60e51b815260206004820152602860248201527f4275726e264d696e7453616c653a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b6064820152608401611802565b6026546000908152602260209081526040808320338452909152902054612d1b908490615157565b6017541015612d6c5760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f204275726e264d696e7453616c65206c65667400006044820152606401611802565b612d7583613f8c565b602e546001600160a01b0316612d9d5760405162461bcd60e51b8152600401611802906152c0565b601954600003612dbf5760405162461bcd60e51b8152600401611802906152f0565b82601954612dcd91906150f6565b8114612deb5760405162461bcd60e51b815260040161180290615325565b60005b81811015612f3457602f5433906001600160a01b0316636352211e858585818110612e1b57612e1b61516f565b905060200201356040518263ffffffff1660e01b8152600401612e4091815260200190565b602060405180830381865afa158015612e5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e819190615061565b6001600160a01b031614612ea75760405162461bcd60e51b815260040161180290615375565b602f546001600160a01b03166342966c68848484818110612eca57612eca61516f565b905060200201356040518263ffffffff1660e01b8152600401612eef91815260200190565b600060405180830381600087803b158015612f0957600080fd5b505af1158015612f1d573d6000803e3d6000fd5b505050508080612f2c90615185565b915050612dee565b506026546000908152602260209081526040808320338085529252909120805485019055612b319084613361565b60006301ffc9a760e01b6001600160e01b031983161480612f9357506380ac58cd60e01b6001600160e01b03198316145b8061157e5750506001600160e01b031916635b5e139f60e01b1490565b6000612fbb82612f62565b8061157e5750506001600160e01b031916632b424ad760e21b1490565b60006001600160e01b0319821663152a902d60e11b148061157e57506301ffc9a760e01b6001600160e01b031983161461157e565b3361301661219b565b6001600160a01b0316146120345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611802565b6127106001600160601b03821611156130da5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401611802565b6001600160a01b03821661312c5760405162461bcd60e51b815260206004820152601960248201527822a921991c9c189d1034b73b30b634b2103932b1b2b4bb32b960391b6044820152606401611802565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600b55565b600081600111158015613179575060015482105b801561157e575050600090815260056020526040902054600160e01b161590565b601e5460ff166131e65760405162461bcd60e51b81526020600482015260176024820152761dda1a5d195b1a5cdd135a5b9d081a5cc814185d5cd959604a1b6044820152606401611802565b6131f233848484613a0a565b6132395760405162461bcd60e51b8152602060048201526018602482015277596f7520617265206e6f742077686974656c69737465642160401b6044820152606401611802565b600061324733858585613aae565b9050848110156132aa5760405162461bcd60e51b815260206004820152602860248201527f77686974656c6973744d696e743a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b6064820152608401611802565b602654600090815260208080526040808320338452825280832060255484529091529020546132da908690615157565b8110156122ee5760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c65667400006044820152606401611802565b6000613337338585856137d5565b905061334385826150f6565b34146122ee5760405162461bcd60e51b8152600401611802906153b7565b601a5461336c611837565b6133769083615157565b11156133b35760405162461bcd60e51b815260206004820152600c60248201526b4e6f206d6f7265204e46547360a01b6044820152606401611802565b6115968282613f9a565b6daaeb6d7670e522a718067333cd4e3b15611bf657604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561342a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061344e91906153e9565b611bf65780604051633b79c77360e21b815260040161180291906149a7565b600061347882613859565b9050836001600160a01b0316816001600160a01b0316146134ab5760405162a1148160e81b815260040160405180910390fd5b600082815260076020526040902080546134d78187335b6001600160a01b039081169116811491141790565b613502576134e586336113f3565b61350257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661352957604051633a954ecd60e21b815260040160405180910390fd5b6135368686866001613fb4565b801561354157600082555b6001600160a01b0386811660009081526006602052604080822080546000190190559187168152208054600101905561357e85600160e11b614190565b600085815260056020526040812091909155600160e11b841690036135d3576001840160008181526005602052604081205490036135d15760015481146135d15760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03166000805160206155a383398151915260405160405180910390a4505050505050565b602b5460009015801590613626575061362683602b54846141a5565b9392505050565b8060105461363b91906150f6565b3414611bf65760405162461bcd60e51b8152600401611802906153b7565b611744838383604051806020016040528060008152506122c8565b600061367f83613859565b90508060008061369d86600090815260076020526040902080549091565b9150915084156136dd576136b28184336134c2565b6136dd576136c083336113f3565b6136dd57604051632ce44b5f60e11b815260040160405180910390fd5b6136eb836000886001613fb4565b80156136f657600082555b6001600160a01b038316600090815260066020526040902080546001600160801b0301905561372983600360e01b614190565b600087815260056020526040812091909155600160e11b8516900361377e5760018601600081815260056020526040812054900361377c57600154811461377c5760008181526005602052604090208590555b505b60405186906000906001600160a01b038616906000805160206155a3833981519152908390a4505060028054600101905550505050565b6137bd61482e565b60008281526005602052604090205461157e906141bb565b600080856040516020016137e9919061513f565b60405160208183030381529060405280519060200120905061380b8582613f70565b1561381a575050600d54611a29565b6138248482613bea565b15613833575050600e54611a29565b61383d838261360a565b1561384c575050600f54611a29565b5061270f95945050505050565b600081806001116138af576001548110156138af5760008181526005602052604081205490600160e01b821690036138ad575b8060000361362657506000190160008181526005602052604090205461388c565b505b604051636f96cda160e11b815260040160405180910390fd5b336138d282611ecd565b6001600160a01b0316146138f85760405162461bcd60e51b815260040161180290615375565b61390181613165565b61391d5760405162461bcd60e51b81526004016118029061507e565b6000818152603060205260409020548061396e57601e54600160201b900460ff1661395a5760405162461bcd60e51b815260040161180290615298565b506000908152603060205260409020429055565b6139788142615406565b60008381526031602052604081208054909190613996908490615157565b90915550505060009081526030602090815260408083208390556032909152812055565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008085604051602001613a1e919061513f565b604051602081830303815290604052805190602001209050613a408582613f70565b80613a505750613a508482613bea565b80613a605750613a60838261360a565b9695505050505050565b613a758484846118f0565b6001600160a01b0383163b1561191557613a91848484846141fe565b611915576040516368d2bf6b60e11b815260040160405180910390fd5b60008085604051602001613ac2919061513f565b604051602081830303815290604052805190602001209050613ae48582613f70565b15613af3575050601354611a29565b613afd8482613bea565b15613b0c575050601454611a29565b613b16838261360a565b15613b25575050601554611a29565b50600095945050505050565b6000613b3c82613165565b613b935760405162461bcd60e51b815260206004820152602260248201527f536561736f6e20717565727920666f72206e6f6e6578697374656e7420746f6b60448201526132b760f11b6064820152608401611802565b6026546402540be400905b6000818152602760205260409020548410801590613bbb57508184105b15613bc7579392505050565b600081815260276020526040902054915080613be28161541d565b915050613b9e565b602a5460009015801590613626575061362683602a54846141a5565b6000818152601d6020526040902080546060919061234390615027565b606081600003613c4a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613c745780613c5e81615185565b9150613c6d9050600a8361512b565b9150613c4e565b6000816001600160401b03811115613c8e57613c8e6149bb565b6040519080825280601f01601f191660200182016040528015613cb8576020820181803683370190505b5090505b8415611a2957613ccd600183615406565b9150613cda600a86615434565b613ce5906030615157565b60f81b818381518110613cfa57613cfa61516f565b60200101906001600160f81b031916908160001a905350613d1c600a8661512b565b9450613cbc565b33613d2d82611ecd565b6001600160a01b031614613d535760405162461bcd60e51b815260040161180290615375565b613d5c81613165565b613d785760405162461bcd60e51b81526004016118029061507e565b6000806000806000613d8986613ee3565b60008b815260326020526040908190204290819055603454603554603654935163d20ac3ef60e01b815260048101919091526024810193909352604483018e9052606483018890526084830187905260a4830186905284151560c484015260e483018490526101048301829052969b50949950929750909550935090916001600160a01b03169063d20ac3ef9061012401600060405180830381600087803b158015613e3457600080fd5b505af1158015613e48573d6000803e3d6000fd5b5050505050505050505050565b6060600080613e6681612710611945565b91509150613eaf613e7682613c23565b613e8a846001600160a01b031660146142e6565b604051602001613e9b929190615448565b604051602081830303815290604052614481565b604051602001613ebf91906154cd565b6040516020818303038152906040529250505090565b8060125461363b91906150f6565b6000806000806000613ef486613165565b613f105760405162461bcd60e51b81526004016118029061507e565b600086815260306020526040812054955093508415613f3657613f338542615406565b93505b600086815260316020526040902054613f4f9085615157565b60009687526032602052604090962054949693959487151594909350915050565b60295460009015801590613626575061362683602954846141a5565b8060115461363b91906150f6565b6115968282604051806020016040528060008152506145d3565b601b54600160a01b900460ff161580613fe55750613fd061219b565b6001600160a01b0316336001600160a01b0316145b80613ff757506001600160a01b038416155b8061400957506001600160a01b038316155b61406c5760405162461bcd60e51b815260206004820152602e60248201527f534254206d6f646520456e61626c65643a20746f6b656e207472616e7366657260448201526d103bb434b632903830bab9b2b21760911b6064820152608401611802565b815b6140788284615157565b81101561418a57601e54600160201b900460ff1615806140a45750600081815260306020526040902054155b6141035760405162461bcd60e51b815260206004820152602a60248201527f5374616b696e67206e6f772e3a20746f6b656e207472616e73666572207768696044820152693632903830bab9b2b21760b11b6064820152608401611802565b60008181526030602052604090205415614178576000818152603060205260408120546141309042615406565b9050806031600084815260200190815260200160002060008282546141559190615157565b909155505050600081815260306020908152604080832083905560329091528120555b8061418281615185565b91505061406e565b50611915565b4260a01b176001600160a01b03919091161790565b6000826141b28584614639565b14949350505050565b6141c361482e565b6001600160a01b03821681526001600160401b0360a083901c166020820152600160e01b82161515604082015260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290614233903390899088908890600401615512565b6020604051808303816000875af192505050801561426e575060408051601f3d908101601f1916820190925261426b91810190615545565b60015b6142cc573d80801561429c576040519150601f19603f3d011682016040523d82523d6000602084013e6142a1565b606091505b5080516000036142c4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a29565b606060006142f58360026150f6565b614300906002615157565b6001600160401b03811115614317576143176149bb565b6040519080825280601f01601f191660200182016040528015614341576020820181803683370190505b509050600360fc1b8160008151811061435c5761435c61516f565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061438b5761438b61516f565b60200101906001600160f81b031916908160001a90535060006143af8460026150f6565b6143ba906001615157565b90505b6001811115614432576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106143ee576143ee61516f565b1a60f81b8282815181106144045761440461516f565b60200101906001600160f81b031916908160001a90535060049490941c9361442b8161541d565b90506143bd565b5083156136265760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401611802565b606081516000036144a057505060408051602081019091526000815290565b600060405180606001604052806040815260200161556360409139905060006003845160026144cf9190615157565b6144d9919061512b565b6144e49060046150f6565b6001600160401b038111156144fb576144fb6149bb565b6040519080825280601f01601f191660200182016040528015614525576020820181803683370190505b509050600182016020820185865187015b80821015614591576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250614536565b50506003865106600181146145ad57600281146145c0576145c8565b603d6001830353603d60028303536145c8565b603d60018303535b509195945050505050565b6145dd8383614686565b6001600160a01b0383163b15611744576001548281035b61460760008683806001019450866141fe565b614624576040516368d2bf6b60e11b815260040160405180910390fd5b8181106145f45781600154146122ee57600080fd5b600081815b845181101561467e5761466a8286838151811061465d5761465d61516f565b602002602001015161477b565b91508061467681615185565b91505061463e565b509392505050565b60015460008290036146ab5760405163b562e8dd60e01b815260040160405180910390fd5b6146b86000848385613fb4565b6001600160a01b038316600090815260066020526040902080546001600160401b0184020190556146ef836001841460e11b614190565b6000828152600560205260408120919091556001600160a01b0384169083830190839083906000805160206155a38339815191528180a4600183015b81811461475157808360006000805160206155a3833981519152600080a460010161472b565b508160000361477257604051622e076360e81b815260040160405180910390fd5b60015550505050565b6000818310614797576000828152602084905260409020613626565b6000838152602083905260409020613626565b8280546147b690615027565b90600052602060002090601f0160209004810192826147d8576000855561481e565b82601f106147f157805160ff191683800117855561481e565b8280016001018555821561481e579182015b8281111561481e578251825591602001919060010190614803565b5061482a929150614855565b5090565b60408051608081018252600080825260208201819052918101829052606081019190915290565b5b8082111561482a5760008155600101614856565b6001600160e01b031981168114611bf657600080fd5b60006020828403121561489257600080fd5b81356136268161486a565b6001600160a01b0381168114611bf657600080fd5b600080604083850312156148c557600080fd5b82356148d08161489d565b915060208301356001600160601b03811681146148ec57600080fd5b809150509250929050565b6000806040838503121561490a57600080fd5b82356149158161489d565b946020939093013593505050565b60005b8381101561493e578181015183820152602001614926565b838111156119155750506000910152565b60008151808452614967816020860160208601614923565b601f01601f19169290920160200192915050565b602081526000613626602083018461494f565b6000602082840312156149a057600080fd5b5035919050565b6001600160a01b0391909116815260200190565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156149f9576149f96149bb565b604052919050565b60006001600160401b03831115614a1a57614a1a6149bb565b614a2d601f8401601f19166020016149d1565b9050828152838383011115614a4157600080fd5b828260208301376000602084830101529392505050565b600082601f830112614a6957600080fd5b61362683833560208501614a01565b60008060408385031215614a8b57600080fd5b82356001600160401b03811115614aa157600080fd5b614aad85828601614a58565b95602094909401359450505050565b8015158114611bf657600080fd5b600080600060608486031215614adf57600080fd5b833592506020840135614af181614abc565b929592945050506040919091013590565b600082601f830112614b1357600080fd5b813560206001600160401b03821115614b2e57614b2e6149bb565b8160051b614b3d8282016149d1565b9283528481018201928281019087851115614b5757600080fd5b83870192505b84831015614b7657823582529183019190830190614b5d565b979650505050505050565b60008060008060808587031215614b9757600080fd5b8435935060208501356001600160401b0380821115614bb557600080fd5b614bc188838901614b02565b94506040870135915080821115614bd757600080fd5b614be388838901614b02565b93506060870135915080821115614bf957600080fd5b50614c0687828801614b02565b91505092959194509250565b600060208284031215614c2457600080fd5b81356001600160401b03811115614c3a57600080fd5b611a2984828501614a58565b600080600060608486031215614c5b57600080fd5b8335614c668161489d565b92506020840135614af18161489d565b60008060408385031215614c8957600080fd5b50508035926020909101359150565b600060208284031215614caa57600080fd5b813561362681614abc565b60008060408385031215614cc857600080fd5b8235614cd38161489d565b915060208301356001600160401b03811115614cee57600080fd5b614cfa85828601614b02565b9150509250929050565b600060208284031215614d1657600080fd5b81356136268161489d565b6020808252825182820181905260009190848201906040850190845b81811015611de957835183529284019291840191600101614d3d565b60008060408385031215614d6c57600080fd5b823561491581614abc565b60008060008060808587031215614d8d57600080fd5b8435614d988161489d565b935060208501356001600160401b0380821115614bb557600080fd5b60008083601f840112614dc657600080fd5b5081356001600160401b03811115614ddd57600080fd5b6020830191508360208260051b85010111156119ec57600080fd5b60008060208385031215614e0b57600080fd5b82356001600160401b03811115614e2157600080fd5b614e2d85828601614db4565b90969095509350505050565b60008060408385031215614e4c57600080fd5b8235915060208301356148ec81614abc565b60008060408385031215614e7157600080fd5b8235915060208301356001600160401b03811115614e8e57600080fd5b614cfa85828601614a58565b60008060408385031215614ead57600080fd5b8235614eb88161489d565b915060208301356148ec81614abc565b60008060008060808587031215614ede57600080fd5b8435614ee98161489d565b93506020850135614ef98161489d565b92506040850135915060608501356001600160401b03811115614f1b57600080fd5b8501601f81018713614f2c57600080fd5b614c0687823560208401614a01565b60008060408385031215614f4e57600080fd5b8235915060208301356148ec8161489d565b600080600060608486031215614f7557600080fd5b833592506020840135614f878161489d565b915060408401356001600160401b0381168114614fa357600080fd5b809150509250925092565b60008060408385031215614fc157600080fd5b8235614fcc8161489d565b915060208301356148ec8161489d565b600080600060408486031215614ff157600080fd5b8335925060208401356001600160401b0381111561500e57600080fd5b61501a86828701614db4565b9497909650939450505050565b600181811c9082168061503b57607f821691505b60208210810361505b57634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561507357600080fd5b81516136268161489d565b6020808252601190820152703737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615615110576151106150e0565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261513a5761513a615115565b500490565b60609190911b6001600160601b031916815260140190565b6000821982111561516a5761516a6150e0565b500190565b634e487b7160e01b600052603260045260246000fd5b600060018201615197576151976150e0565b5060010190565b6020808252601f908201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00604082015260600190565b6000845160206151e88285838a01614923565b8551918401916151fb8184848a01614923565b8554920191600090600181811c908083168061521857607f831692505b858310810361523557634e487b7160e01b85526022600452602485fd5b808015615249576001811461525a57615287565b60ff19851688528388019550615287565b60008b81526020902060005b8581101561527f5781548a820152908401908801615266565b505083880195505b50939b9a5050505050505050505050565b6020808252600e908201526d14dd185ada5b99c818db1bdcd95960921b604082015260600190565b6020808252601690820152753737ba1039b2ba1037ba3432b921b7b73a3930b1ba1760511b604082015260600190565b6020808252601b908201527a3737ba1039b2ba1037ba3432b921b7b73a3930b1ba21b7bab73a1760291b604082015260600190565b60208082526030908201527f616d6f756e74206d757374206265206d756c7469706c65206f66206f7468657260408201526f1031b7b73a3930b1ba1031b7bab73a1760811b606082015260800190565b60208082526022908201527f596f7520617265206e6f74206f776e6572206f66207468697320746f6b656e69604082015261321760f11b606082015260800190565b602080825260189082015277115512081d985b1d59481a5cc81b9bdd0818dbdc9c9958dd60421b604082015260600190565b6000602082840312156153fb57600080fd5b815161362681614abc565b600082821015615418576154186150e0565b500390565b60008161542c5761542c6150e0565b506000190190565b60008261544357615443615115565b500690565b7a3d9139b2b63632b92fb332b2afb130b9b4b9afb837b4b73a39911d60291b8152825160009061547f81601b850160208801614923565b721610113332b2afb932b1b4b834b2b73a111d1160691b601b9184019182015283516154b281602e840160208801614923565b61227d60f01b602e9290910191820152603001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161550581601d850160208701614923565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a609083018461494f565b60006020828403121561555757600080fd5b81516136268161486a56fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212202aeee2a190f45749c259965fc3efa2142a9e7e70645d9ca8f6f86126045afb4964736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000a5441434f5320434c55420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065453434e46540000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106105515760003560e01c80630163561b1461055657806301ffc9a71461057f57806304634d8d146105af578063062cb301146105d157806306fdde031461061357806307aaef3814610635578063081812fc14610655578063095ea7b3146106825780630c2254e3146106955780630d9005ae146106b55780630f9eef09146106ca57806314295774146106eb578063155fc3af1461070b57806318160ddd1461072b5780631a09cfe2146107405780631b82cf151461075657806320ac68501461076957806323b872dd146107895780632908e7101461079c5780632a3f300c146107d65780632a55205a146107f65780632c4e9fc6146108355780632cf7f9c81461084b5780632db115441461086b57806330d616f41461087e57806331e2d9591461089e57806335a28f3e146108b357806335febafa146108d35780633615a4ef146108e95780633ccfd60b146108ff5780633d9f0ae51461090757806341f434341461092757806342454db91461094957806342842e0e1461095f57806342966c6814610972578063438b63001461099257806351508f0a146109bf57806353c12e9f146109df57806354214f69146109ff57806354c9d27314610a2657806355f804b314610a3b578063591500cd14610a5b57806359b89ca714610a9d5780635aca1bb614610aca5780635fd57c1b14610aea578063605cc41814610b0a5780636214341b14610b2a5780636352211e14610b4a5780636361bc5114610b6a578063659542b014610bac57806367da203214610bcc57806367fbb9ef14610bed5780636bb67a6b14610c0d5780636e2fcff314610c235780636ea69d6214610c395780636ef4f9b514610c595780636f5fae8014610c795780636f8b44b014610c9957806370a0823114610cb9578063715018a614610cd9578063719eaef814610cee5780637402a85d14610d0e578063753f454214610d2457806376a42bf214610d3a57806378a9238014610d5a5780637974135714610da657806379a5952614610dbc5780637cb6475914610ddc5780637ebe707614610dfc578063813779ef14610e1c57806383bedeb514610e3c57806383f0e6a314610e6c578063851fc4b614610e8c5780638a5645fd14610eac5780638da5cb5b14610ee95780638dd07d0f14610efe5780638e5888c214610f1e5780638fc88c4814610f3457806390a667be14610f645780639373f43214610f84578063942958f414610fa4578063945b8c7014610fe857806395d89b41146110085780639970cc291461101d5780639a0f3100146110335780639c9a943014611053578063a22cb4651461106d578063a8b9e6461461108d578063a91a86f9146110a2578063b1d3864d146110e6578063b88d4fde14611130578063bb7a83d014611143578063bbc31d2f14611159578063bd45f0f514611179578063bd57e5e914611199578063bd9ebe8b146111b9578063c032846b146111d9578063c1a5e080146111ee578063c2f1f14a1461120e578063c6ccf54214611242578063c87b56dd14611258578063c94c7ff414611278578063ca7ce3ec14611298578063ce7e3f5a146112b8578063d21486ce146112d8578063d52c57e0146112f8578063d5abeb0114611318578063d78be71c1461132e578063e030565e1461134e578063e29a93701461136e578063e8a3d4851461138f578063e8fa494e146113a4578063e9186bce146113b9578063e985e9c5146113d8578063e98d36e114611421578063e9bf827e14611441578063e9c4aa6a14611454578063eb27ccb91461149e578063ec5566b3146114be578063f2fde38b146114de578063f78e1bdb146114fe578063fc5abdb314611542575b600080fd5b34801561056257600080fd5b5061056c60155481565b6040519081526020015b60405180910390f35b34801561058b57600080fd5b5061059f61059a366004614880565b611555565b6040519015158152602001610576565b3480156105bb57600080fd5b506105cf6105ca3660046148b2565b611584565b005b3480156105dd57600080fd5b5061056c6105ec3660046148f7565b60009081526021602090815260408083206001600160a01b03949094168352929052205490565b34801561061f57600080fd5b5061062861159a565b604051610576919061497b565b34801561064157600080fd5b506105cf61065036600461498e565b61162c565b34801561066157600080fd5b5061067561067036600461498e565b611639565b60405161057691906149a7565b6105cf6106903660046148f7565b61167d565b3480156106a157600080fd5b506105cf6106b0366004614a78565b61171d565b3480156106c157600080fd5b5061056c611749565b3480156106d657600080fd5b50601b5461059f90600160a01b900460ff1681565b3480156106f757600080fd5b506105cf61070636600461498e565b611759565b34801561071757600080fd5b506105cf610726366004614aca565b611766565b34801561073757600080fd5b5061056c611837565b34801561074c57600080fd5b5061056c60165481565b6105cf610764366004614b81565b611845565b34801561077557600080fd5b506105cf610784366004614c12565b6118c6565b6105cf610797366004614c46565b6118f0565b3480156107a857600080fd5b5061059f6107b7366004614c76565b6000908152602460209081526040808320938352929052205460ff1690565b3480156107e257600080fd5b506105cf6107f1366004614c98565b61191b565b34801561080257600080fd5b50610816610811366004614c76565b611945565b604080516001600160a01b039093168352602083019190915201610576565b34801561084157600080fd5b5061056c600d5481565b34801561085757600080fd5b5061059f610866366004614cb5565b6119f3565b6105cf61087936600461498e565b611a31565b34801561088a57600080fd5b506105cf610899366004614c98565b611bbb565b3480156108aa57600080fd5b5060255461056c565b3480156108bf57600080fd5b506105cf6108ce366004614d04565b611bf9565b3480156108df57600080fd5b5061056c60175481565b3480156108f557600080fd5b5061056c60185481565b6105cf611c2d565b34801561091357600080fd5b506105cf61092236600461498e565b611cd2565b34801561093357600080fd5b506106756daaeb6d7670e522a718067333cd4e81565b34801561095557600080fd5b5061056c60105481565b6105cf61096d366004614c46565b611cdf565b34801561097e57600080fd5b506105cf61098d36600461498e565b611d04565b34801561099e57600080fd5b506109b26109ad366004614d04565b611d0f565b6040516105769190614d21565b3480156109cb57600080fd5b506105cf6109da366004614d04565b611df5565b3480156109eb57600080fd5b506105cf6109fa366004614d59565b611e29565b348015610a0b57600080fd5b506026546000908152601f602052604090205460ff1661059f565b348015610a3257600080fd5b5060265461056c565b348015610a4757600080fd5b506105cf610a56366004614c12565b611e50565b348015610a6757600080fd5b5061056c610a763660046148f7565b60009081526023602090815260408083206001600160a01b03949094168352929052205490565b348015610aa957600080fd5b5061056c610ab836600461498e565b60276020526000908152604090205481565b348015610ad657600080fd5b506105cf610ae5366004614c98565b611e7a565b348015610af657600080fd5b506105cf610b0536600461498e565b611e9c565b348015610b1657600080fd5b506105cf610b2536600461498e565b611ea9565b348015610b3657600080fd5b5061056c610b45366004614d77565b611eb6565b348015610b5657600080fd5b50610675610b6536600461498e565b611ecd565b348015610b7657600080fd5b5061056c610b853660046148f7565b60009081526022602090815260408083206001600160a01b03949094168352929052205490565b348015610bb857600080fd5b506105cf610bc7366004614c98565b611ed8565b348015610bd857600080fd5b50601e5461059f906301000000900460ff1681565b348015610bf957600080fd5b506105cf610c0836600461498e565b611efe565b348015610c1957600080fd5b5061056c60115481565b348015610c2f57600080fd5b5061056c60195481565b348015610c4557600080fd5b50603354610675906001600160a01b031681565b348015610c6557600080fd5b506105cf610c74366004614df8565b611f0b565b348015610c8557600080fd5b506105cf610c94366004614c98565b611f50565b348015610ca557600080fd5b506105cf610cb436600461498e565b611f74565b348015610cc557600080fd5b5061056c610cd4366004614d04565b611fd4565b348015610ce557600080fd5b506105cf612022565b348015610cfa57600080fd5b506105cf610d0936600461498e565b612036565b348015610d1a57600080fd5b5061056c60355481565b348015610d3057600080fd5b5061056c60145481565b348015610d4657600080fd5b506105cf610d55366004614e39565b612043565b348015610d6657600080fd5b5061056c610d75366004614d04565b6026546000908152602080805260408083206001600160a01b03909416835292815282822060255483529052205490565b348015610db257600080fd5b5061056c600f5481565b348015610dc857600080fd5b506105cf610dd736600461498e565b61210e565b348015610de857600080fd5b506105cf610df736600461498e565b61211b565b348015610e0857600080fd5b506105cf610e1736600461498e565b612128565b348015610e2857600080fd5b506105cf610e3736600461498e565b612135565b348015610e4857600080fd5b5061059f610e5736600461498e565b6000908152601f602052604090205460ff1690565b348015610e7857600080fd5b506105cf610e8736600461498e565b612142565b348015610e9857600080fd5b506105cf610ea7366004614e5e565b61214f565b348015610eb857600080fd5b5061059f610ec736600461498e565b6026546000908152602460209081526040808320938352929052205460ff1690565b348015610ef557600080fd5b5061067561219b565b348015610f0a57600080fd5b506105cf610f1936600461498e565b6121aa565b348015610f2a57600080fd5b5061056c60125481565b348015610f4057600080fd5b5061056c610f4f36600461498e565b60009081526009602052604090205460a01c90565b348015610f7057600080fd5b506105cf610f7f366004614a78565b6121b7565b348015610f9057600080fd5b506105cf610f9f366004614d04565b6121de565b348015610fb057600080fd5b5061056c610fbf366004614d04565b60265460009081526021602090815260408083206001600160a01b039094168352929052205490565b348015610ff457600080fd5b5061059f611003366004614d77565b612208565b34801561101457600080fd5b50610628612216565b34801561102957600080fd5b5061056c60135481565b34801561103f57600080fd5b506105cf61104e366004614c98565b612225565b34801561105f57600080fd5b50601e5461059f9060ff1681565b34801561107957600080fd5b506105cf611088366004614e9a565b61223d565b34801561109957600080fd5b506105cf6122a9565b3480156110ae57600080fd5b5061056c6110bd366004614d04565b60265460009081526022602090815260408083206001600160a01b039094168352929052205490565b3480156110f257600080fd5b5061056c6111013660046148f7565b6000908152602080805260408083206001600160a01b0394909416835292815282822060255483529052205490565b6105cf61113e366004614ec8565b6122c8565b34801561114f57600080fd5b5061056c600e5481565b34801561116557600080fd5b5061056c611174366004614d77565b6122f5565b34801561118557600080fd5b5061062861119436600461498e565b612303565b3480156111a557600080fd5b5061056c6111b436600461498e565b6123c8565b3480156111c557600080fd5b506105cf6111d436600461498e565b6123d3565b3480156111e557600080fd5b5060285461056c565b3480156111fa57600080fd5b5061059f611209366004614cb5565b6123e0565b34801561121a57600080fd5b5061067561122936600461498e565b6000908152600960205260409020544260a01b81110290565b34801561124e57600080fd5b5061056c60365481565b34801561126457600080fd5b5061062861127336600461498e565b612416565b34801561128457600080fd5b506105cf611293366004614df8565b61257c565b3480156112a457600080fd5b506105cf6112b3366004614c98565b612611565b3480156112c457600080fd5b506105cf6112d336600461498e565b61262c565b3480156112e457600080fd5b50601e5461059f9062010000900460ff1681565b34801561130457600080fd5b506105cf611313366004614f3b565b612639565b34801561132457600080fd5b5061056c601a5481565b34801561133a57600080fd5b506105cf61134936600461498e565b61264b565b34801561135a57600080fd5b506105cf611369366004614f60565b612658565b34801561137a57600080fd5b50601e5461059f90600160201b900460ff1681565b34801561139b57600080fd5b50610628612727565b3480156113b057600080fd5b506105cf612731565b3480156113c557600080fd5b50601e5461059f90610100900460ff1681565b3480156113e457600080fd5b5061059f6113f3366004614fae565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561142d57600080fd5b50602e54610675906001600160a01b031681565b6105cf61144f366004614fdc565b612781565b34801561146057600080fd5b5061147461146f36600461498e565b612b3b565b6040805195865260208601949094529284019190915215156060830152608082015260a001610576565b3480156114aa57600080fd5b5061059f6114b9366004614cb5565b612b5e565b3480156114ca57600080fd5b506105cf6114d936600461498e565b612b94565b3480156114ea57600080fd5b506105cf6114f9366004614d04565b612ba1565b34801561150a57600080fd5b5061056c611519366004614d04565b60265460009081526023602090815260408083206001600160a01b039094168352929052205490565b6105cf611550366004614fdc565b612c17565b600061156082612f62565b8061156f575061156f82612fb0565b8061157e575061157e82612fd8565b92915050565b61158c61300d565b611596828261306c565b5050565b6060600380546115a990615027565b80601f01602080910402602001604051908101604052809291908181526020018280546115d590615027565b80156116225780601f106115f757610100808354040283529160200191611622565b820191906000526020600020905b81548152906001019060200180831161160557829003601f168201915b5050505050905090565b61163461300d565b601955565b600061164482613165565b611661576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061168882611ecd565b9050336001600160a01b038216146116c1576116a481336113f3565b6116c1576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61172561300d565b6000818152601d602090815260409091208351611744928501906147aa565b505050565b600061175460015490565b905090565b61176161300d565b602b55565b61176e61300d565b602f546040516331a9108f60e11b8152600481018590526000916001600160a01b031690636352211e90602401602060405180830381865afa1580156117b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117dc9190615061565b6001600160a01b03160361180b5760405162461bcd60e51b81526004016118029061507e565b60405180910390fd5b600090815260246020908152604080832094835293905291909120805460ff1916911515919091179055565b600254600154036000190190565b6002600a54036118675760405162461bcd60e51b8152600401611802906150a9565b6002600a556118788484848461319a565b61188484848484613329565b6026546000908152602080805260408083203380855290835281842060255485529092529091208054860190556118bb9085613361565b50506001600a555050565b6118ce61300d565b6026546000908152601c602090815260409091208251611596928401906147aa565b826001600160a01b038116331461190a5761190a336133bd565b61191584848461346d565b50505050565b61192361300d565b6026546000908152601f60205260409020805460ff1916911515919091179055565b6000828152600c602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b03169282019290925282916119ba575060408051808201909152600b546001600160a01b0381168252600160a01b90046001600160601b031660208201525b6020810151600090612710906119d9906001600160601b0316876150f6565b6119e3919061512b565b91519350909150505b9250929050565b60008083604051602001611a07919061513f565b604051602081830303815290604052805190602001209050611a29838261360a565b949350505050565b6002600a5403611a535760405162461bcd60e51b8152600401611802906150a9565b6002600a55601e54610100900460ff16611aa65760405162461bcd60e51b81526020600482015260146024820152731c1d589b1a58d35a5b9d081a5cc814185d5cd95960621b6044820152606401611802565b806016541015611b065760405162461bcd60e51b815260206004820152602560248201527f7075626c69634d696e743a204f766572206d6178206d696e7473207065722077604482015264185b1b195d60da1b6064820152608401611802565b6026546000908152602160209081526040808320338452909152902054611b2e908290615157565b6016541015611b7d5760405162461bcd60e51b815260206004820152601b60248201527a165bdd481a185d99481b9bc81c1d589b1a58d35a5b9d081b19599d602a1b6044820152606401611802565b611b868161362d565b6026546000908152602160209081526040808320338085529252909120805483019055611bb39082613361565b506001600a55565b611bc361300d565b601e805482158015600160201b0260ff60201b1990921691909117909155611bf15742603555600060365550565b426036555b50565b611c0161300d565b602e80546001600160a01b039092166001600160a01b03199283168117909155602f8054909216179055565b611c3561300d565b6002600a5403611c575760405162461bcd60e51b8152600401611802906150a9565b6002600a5560405173ad199dfd0d765418961a334de6337a34f262674090600090829047908381818185875af1925050503d8060008114611cb4576040519150601f19603f3d011682016040523d82523d6000602084013e611cb9565b606091505b50508091505080611cc957600080fd5b50506001600a55565b611cda61300d565b601755565b826001600160a01b0381163314611cf957611cf9336133bd565b611915848484613659565b611bf6816001613674565b60606000806000611d1f85611fd4565b90506000816001600160401b03811115611d3b57611d3b6149bb565b604051908082528060200260200182016040528015611d64578160200160208202803683370190505b509050611d6f61482e565b60015b838614611de957611d82816137b5565b91508160400151611de15781516001600160a01b031615611da257815194505b876001600160a01b0316856001600160a01b031603611de15780838780600101985081518110611dd457611dd461516f565b6020026020010181815250505b600101611d72565b50909695505050505050565b611dfd61300d565b603380546001600160a01b039092166001600160a01b0319928316811790915560348054909216179055565b611e3161300d565b6000908152601f60205260409020805460ff1916911515919091179055565b611e5861300d565b6026546000908152601d602090815260409091208251611596928401906147aa565b611e8261300d565b601e80549115156101000261ff0019909216919091179055565b611ea461300d565b601255565b611eb161300d565b601455565b6000611ec4858585856137d5565b95945050505050565b600061157e82613859565b611ee061300d565b601e805491151563010000000263ff00000019909216919091179055565b611f0661300d565b600f55565b8060005b81811015611915576000848483818110611f2b57611f2b61516f565b905060200201359050611f3d816138c8565b5080611f4881615185565b915050611f0f565b611f5861300d565b601e8054911515620100000262ff000019909216919091179055565b611f7c61300d565b80611f85611837565b1115611fcf5760405162461bcd60e51b81526020600482015260196024820152782637bbb2b9103a3430b7102fb1bab93932b73a24b73232bc1760391b6044820152606401611802565b601a55565b60006001600160a01b038216611ffd576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b61202a61300d565b61203460006139ba565b565b61203e61300d565b601355565b61204b61300d565b602f546040516331a9108f60e11b8152600481018490526000916001600160a01b031690636352211e90602401602060405180830381865afa158015612095573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120b99190615061565b6001600160a01b0316036120df5760405162461bcd60e51b81526004016118029061507e565b602654600090815260246020908152604080832094835293905291909120805460ff1916911515919091179055565b61211661300d565b600e55565b61212361300d565b602955565b61213061300d565b601155565b61213d61300d565b601655565b61214a61300d565b601855565b61215761300d565b61216082613165565b61217c5760405162461bcd60e51b81526004016118029061519e565b6000828152602c602090815260409091208251611744928401906147aa565b6000546001600160a01b031690565b6121b261300d565b600d55565b6121bf61300d565b6000818152601c602090815260409091208351611744928501906147aa565b6121e661300d565b601b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000611ec485858585613a0a565b6060600480546115a990615027565b61222d61300d565b50601b805460ff60a01b19169055565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6122b161300d565b602580549060006122c183615185565b9190505550565b836001600160a01b03811633146122e2576122e2336133bd565b6122ee85858585613a6a565b5050505050565b6000611ec485858585613aae565b606061230e82613165565b61232a5760405162461bcd60e51b81526004016118029061519e565b6000828152602c60205260409020805461234390615027565b80601f016020809104026020016040519081016040528092919081815260200182805461236f90615027565b80156123bc5780601f10612391576101008083540402835291602001916123bc565b820191906000526020600020905b81548152906001019060200180831161239f57829003601f168201915b50505050509050919050565b600061157e82613b31565b6123db61300d565b602a55565b600080836040516020016123f4919061513f565b604051602081830303815290604052805190602001209050611a298382613bea565b606061242182613165565b61243d5760405162461bcd60e51b81526004016118029061519e565b600061244883613b31565b6000818152601f602052604081205491925060ff90911615159003612506576000818152601c60205260409020805461248090615027565b80601f01602080910402602001604051908101604052809291908181526020018280546124ac90615027565b80156124f95780601f106124ce576101008083540402835291602001916124f9565b820191906000526020600020905b8154815290600101906020018083116124dc57829003601f168201915b5050505050915050919050565b6000838152602c60205260409020805461251f90615027565b15905061253f576000838152602c60205260409020805461248090615027565b61254881613c06565b61255184613c23565b602d604051602001612565939291906151d5565b604051602081830303815290604052915050919050565b6002600a540361259e5760405162461bcd60e51b8152600401611802906150a9565b6002600a55601e54600160201b900460ff166125cc5760405162461bcd60e51b815260040161180290615298565b8060005b818110156118bb5760008484838181106125ec576125ec61516f565b9050602002013590506125fe81613d23565b508061260981615185565b9150506125d0565b61261961300d565b601e805460ff1916911515919091179055565b61263461300d565b601555565b61264161300d565b6115968183613361565b61265361300d565b601055565b600061266384611ecd565b9050336001600160a01b038216146126b45761267f81336113f3565b6126b4573361268d85611639565b6001600160a01b0316146126b4576040516309e3bb1d60e31b815260040160405180910390fd5b6000848152600960209081526040918290206001600160a01b03861660a086901b600160a01b600160e01b0316811790915591516001600160401b038516815286917f4e06b4e7000e659094299b3533b47b6aa8ad048e95e872d23d1f4ee55af89cfe910160405180910390a350505050565b6060611754613e55565b61273961300d565b601e805463ffffffff1916905560006029819055602a819055602b819055602680549161276583615185565b9091555050600154602654600090815260276020526040902055565b6002600a54036127a35760405162461bcd60e51b8152600401611802906150a9565b6002600a55601e546301000000900460ff166127fb5760405162461bcd60e51b8152602060048201526017602482015276121bdb1909935a5b9d14d85b19481a5cc814185d5cd959604a1b6044820152606401611802565b82601854101561285e5760405162461bcd60e51b815260206004820152602860248201527f486f6c64264d696e7453616c653a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b6064820152608401611802565b6026546000908152602360209081526040808320338452909152902054612886908490615157565b60185410156128d75760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f20486f6c64264d696e7453616c65206c65667400006044820152606401611802565b6128e083613ed5565b602e546001600160a01b03166129085760405162461bcd60e51b8152600401611802906152c0565b60195460000361292a5760405162461bcd60e51b8152600401611802906152f0565b8260195461293891906150f6565b81146129565760405162461bcd60e51b815260040161180290615325565b60005b81811015612b0357602f5433906001600160a01b0316636352211e8585858181106129865761298661516f565b905060200201356040518263ffffffff1660e01b81526004016129ab91815260200190565b602060405180830381865afa1580156129c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129ec9190615061565b6001600160a01b031614612a125760405162461bcd60e51b815260040161180290615375565b602654600090815260246020526040812090848484818110612a3657612a3661516f565b602090810292909201358352508101919091526040016000205460ff1615612a9e5760405162461bcd60e51b815260206004820152601b60248201527a2a3434b99037ba3432b9103a37b5b2b734b21034b9902ab9b2b21760291b6044820152606401611802565b6026546000908152602460205260408120600191858585818110612ac457612ac461516f565b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055508080612afb90615185565b915050612959565b506026546000908152602360209081526040808320338085529252909120805485019055612b319084613361565b50506001600a5550565b6000806000806000612b4c86613ee3565b939a9299509097509550909350915050565b60008083604051602001612b72919061513f565b604051602081830303815290604052805190602001209050611a298382613f70565b612b9c61300d565b602855565b612ba961300d565b6001600160a01b038116612c0e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401611802565b611bf6816139ba565b6002600a5403612c395760405162461bcd60e51b8152600401611802906150a9565b6002600a55601e5462010000900460ff16612c905760405162461bcd60e51b8152602060048201526017602482015276109d5c9b89935a5b9d14d85b19481a5cc814185d5cd959604a1b6044820152606401611802565b826017541015612cf35760405162461bcd60e51b815260206004820152602860248201527f4275726e264d696e7453616c653a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b6064820152608401611802565b6026546000908152602260209081526040808320338452909152902054612d1b908490615157565b6017541015612d6c5760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f204275726e264d696e7453616c65206c65667400006044820152606401611802565b612d7583613f8c565b602e546001600160a01b0316612d9d5760405162461bcd60e51b8152600401611802906152c0565b601954600003612dbf5760405162461bcd60e51b8152600401611802906152f0565b82601954612dcd91906150f6565b8114612deb5760405162461bcd60e51b815260040161180290615325565b60005b81811015612f3457602f5433906001600160a01b0316636352211e858585818110612e1b57612e1b61516f565b905060200201356040518263ffffffff1660e01b8152600401612e4091815260200190565b602060405180830381865afa158015612e5d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e819190615061565b6001600160a01b031614612ea75760405162461bcd60e51b815260040161180290615375565b602f546001600160a01b03166342966c68848484818110612eca57612eca61516f565b905060200201356040518263ffffffff1660e01b8152600401612eef91815260200190565b600060405180830381600087803b158015612f0957600080fd5b505af1158015612f1d573d6000803e3d6000fd5b505050508080612f2c90615185565b915050612dee565b506026546000908152602260209081526040808320338085529252909120805485019055612b319084613361565b60006301ffc9a760e01b6001600160e01b031983161480612f9357506380ac58cd60e01b6001600160e01b03198316145b8061157e5750506001600160e01b031916635b5e139f60e01b1490565b6000612fbb82612f62565b8061157e5750506001600160e01b031916632b424ad760e21b1490565b60006001600160e01b0319821663152a902d60e11b148061157e57506301ffc9a760e01b6001600160e01b031983161461157e565b3361301661219b565b6001600160a01b0316146120345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401611802565b6127106001600160601b03821611156130da5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401611802565b6001600160a01b03821661312c5760405162461bcd60e51b815260206004820152601960248201527822a921991c9c189d1034b73b30b634b2103932b1b2b4bb32b960391b6044820152606401611802565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600b55565b600081600111158015613179575060015482105b801561157e575050600090815260056020526040902054600160e01b161590565b601e5460ff166131e65760405162461bcd60e51b81526020600482015260176024820152761dda1a5d195b1a5cdd135a5b9d081a5cc814185d5cd959604a1b6044820152606401611802565b6131f233848484613a0a565b6132395760405162461bcd60e51b8152602060048201526018602482015277596f7520617265206e6f742077686974656c69737465642160401b6044820152606401611802565b600061324733858585613aae565b9050848110156132aa5760405162461bcd60e51b815260206004820152602860248201527f77686974656c6973744d696e743a204f766572206d6178206d696e74732070656044820152671c881dd85b1b195d60c21b6064820152608401611802565b602654600090815260208080526040808320338452825280832060255484529091529020546132da908690615157565b8110156122ee5760405162461bcd60e51b815260206004820152601e60248201527f596f752068617665206e6f2077686974656c6973744d696e74206c65667400006044820152606401611802565b6000613337338585856137d5565b905061334385826150f6565b34146122ee5760405162461bcd60e51b8152600401611802906153b7565b601a5461336c611837565b6133769083615157565b11156133b35760405162461bcd60e51b815260206004820152600c60248201526b4e6f206d6f7265204e46547360a01b6044820152606401611802565b6115968282613f9a565b6daaeb6d7670e522a718067333cd4e3b15611bf657604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561342a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061344e91906153e9565b611bf65780604051633b79c77360e21b815260040161180291906149a7565b600061347882613859565b9050836001600160a01b0316816001600160a01b0316146134ab5760405162a1148160e81b815260040160405180910390fd5b600082815260076020526040902080546134d78187335b6001600160a01b039081169116811491141790565b613502576134e586336113f3565b61350257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661352957604051633a954ecd60e21b815260040160405180910390fd5b6135368686866001613fb4565b801561354157600082555b6001600160a01b0386811660009081526006602052604080822080546000190190559187168152208054600101905561357e85600160e11b614190565b600085815260056020526040812091909155600160e11b841690036135d3576001840160008181526005602052604081205490036135d15760015481146135d15760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03166000805160206155a383398151915260405160405180910390a4505050505050565b602b5460009015801590613626575061362683602b54846141a5565b9392505050565b8060105461363b91906150f6565b3414611bf65760405162461bcd60e51b8152600401611802906153b7565b611744838383604051806020016040528060008152506122c8565b600061367f83613859565b90508060008061369d86600090815260076020526040902080549091565b9150915084156136dd576136b28184336134c2565b6136dd576136c083336113f3565b6136dd57604051632ce44b5f60e11b815260040160405180910390fd5b6136eb836000886001613fb4565b80156136f657600082555b6001600160a01b038316600090815260066020526040902080546001600160801b0301905561372983600360e01b614190565b600087815260056020526040812091909155600160e11b8516900361377e5760018601600081815260056020526040812054900361377c57600154811461377c5760008181526005602052604090208590555b505b60405186906000906001600160a01b038616906000805160206155a3833981519152908390a4505060028054600101905550505050565b6137bd61482e565b60008281526005602052604090205461157e906141bb565b600080856040516020016137e9919061513f565b60405160208183030381529060405280519060200120905061380b8582613f70565b1561381a575050600d54611a29565b6138248482613bea565b15613833575050600e54611a29565b61383d838261360a565b1561384c575050600f54611a29565b5061270f95945050505050565b600081806001116138af576001548110156138af5760008181526005602052604081205490600160e01b821690036138ad575b8060000361362657506000190160008181526005602052604090205461388c565b505b604051636f96cda160e11b815260040160405180910390fd5b336138d282611ecd565b6001600160a01b0316146138f85760405162461bcd60e51b815260040161180290615375565b61390181613165565b61391d5760405162461bcd60e51b81526004016118029061507e565b6000818152603060205260409020548061396e57601e54600160201b900460ff1661395a5760405162461bcd60e51b815260040161180290615298565b506000908152603060205260409020429055565b6139788142615406565b60008381526031602052604081208054909190613996908490615157565b90915550505060009081526030602090815260408083208390556032909152812055565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008085604051602001613a1e919061513f565b604051602081830303815290604052805190602001209050613a408582613f70565b80613a505750613a508482613bea565b80613a605750613a60838261360a565b9695505050505050565b613a758484846118f0565b6001600160a01b0383163b1561191557613a91848484846141fe565b611915576040516368d2bf6b60e11b815260040160405180910390fd5b60008085604051602001613ac2919061513f565b604051602081830303815290604052805190602001209050613ae48582613f70565b15613af3575050601354611a29565b613afd8482613bea565b15613b0c575050601454611a29565b613b16838261360a565b15613b25575050601554611a29565b50600095945050505050565b6000613b3c82613165565b613b935760405162461bcd60e51b815260206004820152602260248201527f536561736f6e20717565727920666f72206e6f6e6578697374656e7420746f6b60448201526132b760f11b6064820152608401611802565b6026546402540be400905b6000818152602760205260409020548410801590613bbb57508184105b15613bc7579392505050565b600081815260276020526040902054915080613be28161541d565b915050613b9e565b602a5460009015801590613626575061362683602a54846141a5565b6000818152601d6020526040902080546060919061234390615027565b606081600003613c4a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613c745780613c5e81615185565b9150613c6d9050600a8361512b565b9150613c4e565b6000816001600160401b03811115613c8e57613c8e6149bb565b6040519080825280601f01601f191660200182016040528015613cb8576020820181803683370190505b5090505b8415611a2957613ccd600183615406565b9150613cda600a86615434565b613ce5906030615157565b60f81b818381518110613cfa57613cfa61516f565b60200101906001600160f81b031916908160001a905350613d1c600a8661512b565b9450613cbc565b33613d2d82611ecd565b6001600160a01b031614613d535760405162461bcd60e51b815260040161180290615375565b613d5c81613165565b613d785760405162461bcd60e51b81526004016118029061507e565b6000806000806000613d8986613ee3565b60008b815260326020526040908190204290819055603454603554603654935163d20ac3ef60e01b815260048101919091526024810193909352604483018e9052606483018890526084830187905260a4830186905284151560c484015260e483018490526101048301829052969b50949950929750909550935090916001600160a01b03169063d20ac3ef9061012401600060405180830381600087803b158015613e3457600080fd5b505af1158015613e48573d6000803e3d6000fd5b5050505050505050505050565b6060600080613e6681612710611945565b91509150613eaf613e7682613c23565b613e8a846001600160a01b031660146142e6565b604051602001613e9b929190615448565b604051602081830303815290604052614481565b604051602001613ebf91906154cd565b6040516020818303038152906040529250505090565b8060125461363b91906150f6565b6000806000806000613ef486613165565b613f105760405162461bcd60e51b81526004016118029061507e565b600086815260306020526040812054955093508415613f3657613f338542615406565b93505b600086815260316020526040902054613f4f9085615157565b60009687526032602052604090962054949693959487151594909350915050565b60295460009015801590613626575061362683602954846141a5565b8060115461363b91906150f6565b6115968282604051806020016040528060008152506145d3565b601b54600160a01b900460ff161580613fe55750613fd061219b565b6001600160a01b0316336001600160a01b0316145b80613ff757506001600160a01b038416155b8061400957506001600160a01b038316155b61406c5760405162461bcd60e51b815260206004820152602e60248201527f534254206d6f646520456e61626c65643a20746f6b656e207472616e7366657260448201526d103bb434b632903830bab9b2b21760911b6064820152608401611802565b815b6140788284615157565b81101561418a57601e54600160201b900460ff1615806140a45750600081815260306020526040902054155b6141035760405162461bcd60e51b815260206004820152602a60248201527f5374616b696e67206e6f772e3a20746f6b656e207472616e73666572207768696044820152693632903830bab9b2b21760b11b6064820152608401611802565b60008181526030602052604090205415614178576000818152603060205260408120546141309042615406565b9050806031600084815260200190815260200160002060008282546141559190615157565b909155505050600081815260306020908152604080832083905560329091528120555b8061418281615185565b91505061406e565b50611915565b4260a01b176001600160a01b03919091161790565b6000826141b28584614639565b14949350505050565b6141c361482e565b6001600160a01b03821681526001600160401b0360a083901c166020820152600160e01b82161515604082015260e89190911c606082015290565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290614233903390899088908890600401615512565b6020604051808303816000875af192505050801561426e575060408051601f3d908101601f1916820190925261426b91810190615545565b60015b6142cc573d80801561429c576040519150601f19603f3d011682016040523d82523d6000602084013e6142a1565b606091505b5080516000036142c4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a29565b606060006142f58360026150f6565b614300906002615157565b6001600160401b03811115614317576143176149bb565b6040519080825280601f01601f191660200182016040528015614341576020820181803683370190505b509050600360fc1b8160008151811061435c5761435c61516f565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061438b5761438b61516f565b60200101906001600160f81b031916908160001a90535060006143af8460026150f6565b6143ba906001615157565b90505b6001811115614432576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106143ee576143ee61516f565b1a60f81b8282815181106144045761440461516f565b60200101906001600160f81b031916908160001a90535060049490941c9361442b8161541d565b90506143bd565b5083156136265760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401611802565b606081516000036144a057505060408051602081019091526000815290565b600060405180606001604052806040815260200161556360409139905060006003845160026144cf9190615157565b6144d9919061512b565b6144e49060046150f6565b6001600160401b038111156144fb576144fb6149bb565b6040519080825280601f01601f191660200182016040528015614525576020820181803683370190505b509050600182016020820185865187015b80821015614591576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250614536565b50506003865106600181146145ad57600281146145c0576145c8565b603d6001830353603d60028303536145c8565b603d60018303535b509195945050505050565b6145dd8383614686565b6001600160a01b0383163b15611744576001548281035b61460760008683806001019450866141fe565b614624576040516368d2bf6b60e11b815260040160405180910390fd5b8181106145f45781600154146122ee57600080fd5b600081815b845181101561467e5761466a8286838151811061465d5761465d61516f565b602002602001015161477b565b91508061467681615185565b91505061463e565b509392505050565b60015460008290036146ab5760405163b562e8dd60e01b815260040160405180910390fd5b6146b86000848385613fb4565b6001600160a01b038316600090815260066020526040902080546001600160401b0184020190556146ef836001841460e11b614190565b6000828152600560205260408120919091556001600160a01b0384169083830190839083906000805160206155a38339815191528180a4600183015b81811461475157808360006000805160206155a3833981519152600080a460010161472b565b508160000361477257604051622e076360e81b815260040160405180910390fd5b60015550505050565b6000818310614797576000828152602084905260409020613626565b6000838152602083905260409020613626565b8280546147b690615027565b90600052602060002090601f0160209004810192826147d8576000855561481e565b82601f106147f157805160ff191683800117855561481e565b8280016001018555821561481e579182015b8281111561481e578251825591602001919060010190614803565b5061482a929150614855565b5090565b60408051608081018252600080825260208201819052918101829052606081019190915290565b5b8082111561482a5760008155600101614856565b6001600160e01b031981168114611bf657600080fd5b60006020828403121561489257600080fd5b81356136268161486a565b6001600160a01b0381168114611bf657600080fd5b600080604083850312156148c557600080fd5b82356148d08161489d565b915060208301356001600160601b03811681146148ec57600080fd5b809150509250929050565b6000806040838503121561490a57600080fd5b82356149158161489d565b946020939093013593505050565b60005b8381101561493e578181015183820152602001614926565b838111156119155750506000910152565b60008151808452614967816020860160208601614923565b601f01601f19169290920160200192915050565b602081526000613626602083018461494f565b6000602082840312156149a057600080fd5b5035919050565b6001600160a01b0391909116815260200190565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156149f9576149f96149bb565b604052919050565b60006001600160401b03831115614a1a57614a1a6149bb565b614a2d601f8401601f19166020016149d1565b9050828152838383011115614a4157600080fd5b828260208301376000602084830101529392505050565b600082601f830112614a6957600080fd5b61362683833560208501614a01565b60008060408385031215614a8b57600080fd5b82356001600160401b03811115614aa157600080fd5b614aad85828601614a58565b95602094909401359450505050565b8015158114611bf657600080fd5b600080600060608486031215614adf57600080fd5b833592506020840135614af181614abc565b929592945050506040919091013590565b600082601f830112614b1357600080fd5b813560206001600160401b03821115614b2e57614b2e6149bb565b8160051b614b3d8282016149d1565b9283528481018201928281019087851115614b5757600080fd5b83870192505b84831015614b7657823582529183019190830190614b5d565b979650505050505050565b60008060008060808587031215614b9757600080fd5b8435935060208501356001600160401b0380821115614bb557600080fd5b614bc188838901614b02565b94506040870135915080821115614bd757600080fd5b614be388838901614b02565b93506060870135915080821115614bf957600080fd5b50614c0687828801614b02565b91505092959194509250565b600060208284031215614c2457600080fd5b81356001600160401b03811115614c3a57600080fd5b611a2984828501614a58565b600080600060608486031215614c5b57600080fd5b8335614c668161489d565b92506020840135614af18161489d565b60008060408385031215614c8957600080fd5b50508035926020909101359150565b600060208284031215614caa57600080fd5b813561362681614abc565b60008060408385031215614cc857600080fd5b8235614cd38161489d565b915060208301356001600160401b03811115614cee57600080fd5b614cfa85828601614b02565b9150509250929050565b600060208284031215614d1657600080fd5b81356136268161489d565b6020808252825182820181905260009190848201906040850190845b81811015611de957835183529284019291840191600101614d3d565b60008060408385031215614d6c57600080fd5b823561491581614abc565b60008060008060808587031215614d8d57600080fd5b8435614d988161489d565b935060208501356001600160401b0380821115614bb557600080fd5b60008083601f840112614dc657600080fd5b5081356001600160401b03811115614ddd57600080fd5b6020830191508360208260051b85010111156119ec57600080fd5b60008060208385031215614e0b57600080fd5b82356001600160401b03811115614e2157600080fd5b614e2d85828601614db4565b90969095509350505050565b60008060408385031215614e4c57600080fd5b8235915060208301356148ec81614abc565b60008060408385031215614e7157600080fd5b8235915060208301356001600160401b03811115614e8e57600080fd5b614cfa85828601614a58565b60008060408385031215614ead57600080fd5b8235614eb88161489d565b915060208301356148ec81614abc565b60008060008060808587031215614ede57600080fd5b8435614ee98161489d565b93506020850135614ef98161489d565b92506040850135915060608501356001600160401b03811115614f1b57600080fd5b8501601f81018713614f2c57600080fd5b614c0687823560208401614a01565b60008060408385031215614f4e57600080fd5b8235915060208301356148ec8161489d565b600080600060608486031215614f7557600080fd5b833592506020840135614f878161489d565b915060408401356001600160401b0381168114614fa357600080fd5b809150509250925092565b60008060408385031215614fc157600080fd5b8235614fcc8161489d565b915060208301356148ec8161489d565b600080600060408486031215614ff157600080fd5b8335925060208401356001600160401b0381111561500e57600080fd5b61501a86828701614db4565b9497909650939450505050565b600181811c9082168061503b57607f821691505b60208210810361505b57634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561507357600080fd5b81516136268161489d565b6020808252601190820152703737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615615110576151106150e0565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261513a5761513a615115565b500490565b60609190911b6001600160601b031916815260140190565b6000821982111561516a5761516a6150e0565b500190565b634e487b7160e01b600052603260045260246000fd5b600060018201615197576151976150e0565b5060010190565b6020808252601f908201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00604082015260600190565b6000845160206151e88285838a01614923565b8551918401916151fb8184848a01614923565b8554920191600090600181811c908083168061521857607f831692505b858310810361523557634e487b7160e01b85526022600452602485fd5b808015615249576001811461525a57615287565b60ff19851688528388019550615287565b60008b81526020902060005b8581101561527f5781548a820152908401908801615266565b505083880195505b50939b9a5050505050505050505050565b6020808252600e908201526d14dd185ada5b99c818db1bdcd95960921b604082015260600190565b6020808252601690820152753737ba1039b2ba1037ba3432b921b7b73a3930b1ba1760511b604082015260600190565b6020808252601b908201527a3737ba1039b2ba1037ba3432b921b7b73a3930b1ba21b7bab73a1760291b604082015260600190565b60208082526030908201527f616d6f756e74206d757374206265206d756c7469706c65206f66206f7468657260408201526f1031b7b73a3930b1ba1031b7bab73a1760811b606082015260800190565b60208082526022908201527f596f7520617265206e6f74206f776e6572206f66207468697320746f6b656e69604082015261321760f11b606082015260800190565b602080825260189082015277115512081d985b1d59481a5cc81b9bdd0818dbdc9c9958dd60421b604082015260600190565b6000602082840312156153fb57600080fd5b815161362681614abc565b600082821015615418576154186150e0565b500390565b60008161542c5761542c6150e0565b506000190190565b60008261544357615443615115565b500690565b7a3d9139b2b63632b92fb332b2afb130b9b4b9afb837b4b73a39911d60291b8152825160009061547f81601b850160208801614923565b721610113332b2afb932b1b4b834b2b73a111d1160691b601b9184019182015283516154b281602e840160208801614923565b61227d60f01b602e9290910191820152603001949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161550581601d850160208701614923565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a609083018461494f565b60006020828403121561555757600080fd5b81516136268161486a56fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212202aeee2a190f45749c259965fc3efa2142a9e7e70645d9ca8f6f86126045afb4964736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000a5441434f5320434c55420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000065453434e46540000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): TACOS CLUB
Arg [1] : _symbol (string): TSCNFT
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [3] : 5441434f5320434c554200000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 5453434e46540000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.