Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
Marketplace
Compiler Version
v0.8.12+commit.f00d7308
Optimization Enabled:
Yes with 800 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.11; // ========== External imports ========== import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC1155/IERC1155Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/IERC721Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC1155/IERC1155ReceiverUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/IERC721ReceiverUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/introspection/IERC165Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/interfaces/IERC2981Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/AccessControlEnumerableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol"; // ========== Internal imports ========== import { IMarketplace } from "../interfaces/marketplace/IMarketplace.sol"; import { ITWFee } from "../interfaces/ITWFee.sol"; import "../openzeppelin-presets/metatx/ERC2771ContextUpgradeable.sol"; import "../lib/CurrencyTransferLib.sol"; import "../lib/FeeType.sol"; contract Marketplace is Initializable, IMarketplace, ReentrancyGuardUpgradeable, ERC2771ContextUpgradeable, MulticallUpgradeable, AccessControlEnumerableUpgradeable, IERC721ReceiverUpgradeable, IERC1155ReceiverUpgradeable { /*/////////////////////////////////////////////////////////////// State variables //////////////////////////////////////////////////////////////*/ bytes32 private constant MODULE_TYPE = bytes32("Marketplace"); uint256 private constant VERSION = 2; /// @dev Only lister role holders can create listings, when listings are restricted by lister address. bytes32 private constant LISTER_ROLE = keccak256("LISTER_ROLE"); /// @dev Only assets from NFT contracts with asset role can be listed, when listings are restricted by asset address. bytes32 private constant ASSET_ROLE = keccak256("ASSET_ROLE"); /// @dev The address of the native token wrapper contract. address private immutable nativeTokenWrapper; /// @dev The thirdweb contract with fee related information. ITWFee public immutable thirdwebFee; /// @dev Total number of listings ever created in the marketplace. uint256 public totalListings; /// @dev Contract level metadata. string public contractURI; /// @dev The address that receives all platform fees from all sales. address private platformFeeRecipient; /// @dev The max bps of the contract. So, 10_000 == 100 % uint64 public constant MAX_BPS = 10_000; /// @dev The % of primary sales collected as platform fees. uint64 private platformFeeBps; /// @dev /** * @dev The amount of time added to an auction's 'endTime', if a bid is made within `timeBuffer` * seconds of the existing `endTime`. Default: 15 minutes. */ uint64 public timeBuffer; /// @dev The minimum % increase required from the previous winning bid. Default: 5%. uint64 public bidBufferBps; /*/////////////////////////////////////////////////////////////// Mappings //////////////////////////////////////////////////////////////*/ /// @dev Mapping from uid of listing => listing info. mapping(uint256 => Listing) public listings; /// @dev Mapping from uid of a direct listing => offeror address => offer made to the direct listing by the respective offeror. mapping(uint256 => mapping(address => Offer)) public offers; /// @dev Mapping from uid of an auction listing => current winning bid in an auction. mapping(uint256 => Offer) public winningBid; /*/////////////////////////////////////////////////////////////// Modifiers //////////////////////////////////////////////////////////////*/ /// @dev Checks whether caller is a listing creator. modifier onlyListingCreator(uint256 _listingId) { require(listings[_listingId].tokenOwner == _msgSender(), "!OWNER"); _; } /// @dev Checks whether a listing exists. modifier onlyExistingListing(uint256 _listingId) { require(listings[_listingId].assetContract != address(0), "DNE"); _; } /*/////////////////////////////////////////////////////////////// Constructor + initializer logic //////////////////////////////////////////////////////////////*/ constructor(address _nativeTokenWrapper, address _thirdwebFee) initializer { thirdwebFee = ITWFee(_thirdwebFee); nativeTokenWrapper = _nativeTokenWrapper; } /// @dev Initiliazes the contract, like a constructor. function initialize( address _defaultAdmin, string memory _contractURI, address[] memory _trustedForwarders, address _platformFeeRecipient, uint256 _platformFeeBps ) external initializer { // Initialize inherited contracts, most base-like -> most derived. __ReentrancyGuard_init(); __ERC2771Context_init(_trustedForwarders); // Initialize this contract's state. timeBuffer = 15 minutes; bidBufferBps = 500; contractURI = _contractURI; platformFeeBps = uint64(_platformFeeBps); platformFeeRecipient = _platformFeeRecipient; _setupRole(DEFAULT_ADMIN_ROLE, _defaultAdmin); _setupRole(LISTER_ROLE, address(0)); _setupRole(ASSET_ROLE, address(0)); } /*/////////////////////////////////////////////////////////////// Generic contract logic //////////////////////////////////////////////////////////////*/ /// @dev Lets the contract receives native tokens from `nativeTokenWrapper` withdraw. receive() external payable {} /// @dev Returns the type of the contract. function contractType() external pure returns (bytes32) { return MODULE_TYPE; } /// @dev Returns the version of the contract. function contractVersion() external pure returns (uint8) { return uint8(VERSION); } /*/////////////////////////////////////////////////////////////// ERC 165 / 721 / 1155 logic //////////////////////////////////////////////////////////////*/ function onERC1155Received( address, address, uint256, uint256, bytes memory ) public virtual override returns (bytes4) { return this.onERC1155Received.selector; } function onERC1155BatchReceived( address, address, uint256[] memory, uint256[] memory, bytes memory ) public virtual override returns (bytes4) { return this.onERC1155BatchReceived.selector; } function onERC721Received( address, address, uint256, bytes calldata ) external pure override returns (bytes4) { return this.onERC721Received.selector; } function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControlEnumerableUpgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC1155ReceiverUpgradeable).interfaceId || interfaceId == type(IERC721ReceiverUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /*/////////////////////////////////////////////////////////////// Listing (create-update-delete) logic //////////////////////////////////////////////////////////////*/ /// @dev Lets a token owner list tokens for sale: Direct Listing or Auction. function createListing(ListingParameters memory _params) external override { // Get values to populate `Listing`. uint256 listingId = totalListings; totalListings += 1; address tokenOwner = _msgSender(); TokenType tokenTypeOfListing = getTokenType(_params.assetContract); uint256 tokenAmountToList = getSafeQuantity(tokenTypeOfListing, _params.quantityToList); require(tokenAmountToList > 0, "QUANTITY"); require(hasRole(LISTER_ROLE, address(0)) || hasRole(LISTER_ROLE, _msgSender()), "!LISTER"); require(hasRole(ASSET_ROLE, address(0)) || hasRole(ASSET_ROLE, _params.assetContract), "!ASSET"); uint256 startTime = _params.startTime; if (startTime < block.timestamp) { // do not allow listing to start in the past (1 hour buffer) require(block.timestamp - startTime < 1 hours, "ST"); startTime = block.timestamp; } validateOwnershipAndApproval( tokenOwner, _params.assetContract, _params.tokenId, tokenAmountToList, tokenTypeOfListing ); Listing memory newListing = Listing({ listingId: listingId, tokenOwner: tokenOwner, assetContract: _params.assetContract, tokenId: _params.tokenId, startTime: startTime, endTime: startTime + _params.secondsUntilEndTime, quantity: tokenAmountToList, currency: _params.currencyToAccept, reservePricePerToken: _params.reservePricePerToken, buyoutPricePerToken: _params.buyoutPricePerToken, tokenType: tokenTypeOfListing, listingType: _params.listingType }); listings[listingId] = newListing; // Tokens listed for sale in an auction are escrowed in Marketplace. if (newListing.listingType == ListingType.Auction) { require(newListing.buyoutPricePerToken >= newListing.reservePricePerToken, "RESERVE"); transferListingTokens(tokenOwner, address(this), tokenAmountToList, newListing); } emit ListingAdded(listingId, _params.assetContract, tokenOwner, newListing); } /// @dev Lets a listing's creator edit the listing's parameters. function updateListing( uint256 _listingId, uint256 _quantityToList, uint256 _reservePricePerToken, uint256 _buyoutPricePerToken, address _currencyToAccept, uint256 _startTime, uint256 _secondsUntilEndTime ) external override onlyListingCreator(_listingId) { Listing memory targetListing = listings[_listingId]; uint256 safeNewQuantity = getSafeQuantity(targetListing.tokenType, _quantityToList); bool isAuction = targetListing.listingType == ListingType.Auction; require(safeNewQuantity != 0, "QUANTITY"); // Can only edit auction listing before it starts. if (isAuction) { require(block.timestamp < targetListing.startTime, "STARTED"); require(_buyoutPricePerToken >= _reservePricePerToken, "RESERVE"); } if (_startTime < block.timestamp) { // do not allow listing to start in the past (1 hour buffer) require(block.timestamp - _startTime < 1 hours, "ST"); _startTime = block.timestamp; } uint256 newStartTime = _startTime == 0 ? targetListing.startTime : _startTime; listings[_listingId] = Listing({ listingId: _listingId, tokenOwner: _msgSender(), assetContract: targetListing.assetContract, tokenId: targetListing.tokenId, startTime: newStartTime, endTime: _secondsUntilEndTime == 0 ? targetListing.endTime : newStartTime + _secondsUntilEndTime, quantity: safeNewQuantity, currency: _currencyToAccept, reservePricePerToken: _reservePricePerToken, buyoutPricePerToken: _buyoutPricePerToken, tokenType: targetListing.tokenType, listingType: targetListing.listingType }); // Must validate ownership and approval of the new quantity of tokens for diret listing. if (targetListing.quantity != safeNewQuantity) { // Transfer all escrowed tokens back to the lister, to be reflected in the lister's // balance for the upcoming ownership and approval check. if (isAuction) { transferListingTokens(address(this), targetListing.tokenOwner, targetListing.quantity, targetListing); } validateOwnershipAndApproval( targetListing.tokenOwner, targetListing.assetContract, targetListing.tokenId, safeNewQuantity, targetListing.tokenType ); // Escrow the new quantity of tokens to list in the auction. if (isAuction) { transferListingTokens(targetListing.tokenOwner, address(this), safeNewQuantity, targetListing); } } emit ListingUpdated(_listingId, targetListing.tokenOwner); } /// @dev Lets a direct listing creator cancel their listing. function cancelDirectListing(uint256 _listingId) external onlyListingCreator(_listingId) { Listing memory targetListing = listings[_listingId]; require(targetListing.listingType == ListingType.Direct, "!DIRECT"); delete listings[_listingId]; emit ListingRemoved(_listingId, targetListing.tokenOwner); } /*/////////////////////////////////////////////////////////////// Direct lisitngs sales logic //////////////////////////////////////////////////////////////*/ /// @dev Lets an account buy a given quantity of tokens from a listing. function buy( uint256 _listingId, address _buyFor, uint256 _quantityToBuy, address _currency, uint256 _totalPrice ) external payable override nonReentrant onlyExistingListing(_listingId) { Listing memory targetListing = listings[_listingId]; address payer = _msgSender(); // Check whether the settled total price and currency to use are correct. require( _currency == targetListing.currency && _totalPrice == (targetListing.buyoutPricePerToken * _quantityToBuy), "!PRICE" ); executeSale( targetListing, payer, _buyFor, targetListing.currency, targetListing.buyoutPricePerToken * _quantityToBuy, _quantityToBuy ); } /// @dev Lets a listing's creator accept an offer for their direct listing. function acceptOffer( uint256 _listingId, address _offeror, address _currency, uint256 _pricePerToken ) external override nonReentrant onlyListingCreator(_listingId) onlyExistingListing(_listingId) { Offer memory targetOffer = offers[_listingId][_offeror]; Listing memory targetListing = listings[_listingId]; require(_currency == targetOffer.currency && _pricePerToken == targetOffer.pricePerToken, "!PRICE"); require(targetOffer.expirationTimestamp > block.timestamp, "EXPIRED"); delete offers[_listingId][_offeror]; executeSale( targetListing, _offeror, _offeror, targetOffer.currency, targetOffer.pricePerToken * targetOffer.quantityWanted, targetOffer.quantityWanted ); } /// @dev Performs a direct listing sale. function executeSale( Listing memory _targetListing, address _payer, address _receiver, address _currency, uint256 _currencyAmountToTransfer, uint256 _listingTokenAmountToTransfer ) internal { validateDirectListingSale( _targetListing, _payer, _listingTokenAmountToTransfer, _currency, _currencyAmountToTransfer ); _targetListing.quantity -= _listingTokenAmountToTransfer; listings[_targetListing.listingId] = _targetListing; payout(_payer, _targetListing.tokenOwner, _currency, _currencyAmountToTransfer, _targetListing); transferListingTokens(_targetListing.tokenOwner, _receiver, _listingTokenAmountToTransfer, _targetListing); emit NewSale( _targetListing.listingId, _targetListing.assetContract, _targetListing.tokenOwner, _receiver, _listingTokenAmountToTransfer, _currencyAmountToTransfer ); } /*/////////////////////////////////////////////////////////////// Offer/bid logic //////////////////////////////////////////////////////////////*/ /// @dev Lets an account (1) make an offer to a direct listing, or (2) make a bid in an auction. function offer( uint256 _listingId, uint256 _quantityWanted, address _currency, uint256 _pricePerToken, uint256 _expirationTimestamp ) external payable override nonReentrant onlyExistingListing(_listingId) { Listing memory targetListing = listings[_listingId]; require( targetListing.endTime > block.timestamp && targetListing.startTime < block.timestamp, "inactive listing." ); // Both - (1) offers to direct listings, and (2) bids to auctions - share the same structure. Offer memory newOffer = Offer({ listingId: _listingId, offeror: _msgSender(), quantityWanted: _quantityWanted, currency: _currency, pricePerToken: _pricePerToken, expirationTimestamp: _expirationTimestamp }); if (targetListing.listingType == ListingType.Auction) { // A bid to an auction must be made in the auction's desired currency. require(newOffer.currency == targetListing.currency, "must use approved currency to bid"); // A bid must be made for all auction items. newOffer.quantityWanted = getSafeQuantity(targetListing.tokenType, targetListing.quantity); handleBid(targetListing, newOffer); } else if (targetListing.listingType == ListingType.Direct) { // Prevent potentially lost/locked native token. require(msg.value == 0, "no value needed"); // Offers to direct listings cannot be made directly in native tokens. newOffer.currency = _currency == CurrencyTransferLib.NATIVE_TOKEN ? nativeTokenWrapper : _currency; newOffer.quantityWanted = getSafeQuantity(targetListing.tokenType, _quantityWanted); handleOffer(targetListing, newOffer); } } /// @dev Processes a new offer to a direct listing. function handleOffer(Listing memory _targetListing, Offer memory _newOffer) internal { require( _newOffer.quantityWanted <= _targetListing.quantity && _targetListing.quantity > 0, "insufficient tokens in listing." ); validateERC20BalAndAllowance( _newOffer.offeror, _newOffer.currency, _newOffer.pricePerToken * _newOffer.quantityWanted ); offers[_targetListing.listingId][_newOffer.offeror] = _newOffer; emit NewOffer( _targetListing.listingId, _newOffer.offeror, _targetListing.listingType, _newOffer.quantityWanted, _newOffer.pricePerToken * _newOffer.quantityWanted, _newOffer.currency ); } /// @dev Processes an incoming bid in an auction. function handleBid(Listing memory _targetListing, Offer memory _incomingBid) internal { Offer memory currentWinningBid = winningBid[_targetListing.listingId]; uint256 currentOfferAmount = currentWinningBid.pricePerToken * currentWinningBid.quantityWanted; uint256 incomingOfferAmount = _incomingBid.pricePerToken * _incomingBid.quantityWanted; address _nativeTokenWrapper = nativeTokenWrapper; // Close auction and execute sale if there's a buyout price and incoming offer amount is buyout price. if ( _targetListing.buyoutPricePerToken > 0 && incomingOfferAmount >= _targetListing.buyoutPricePerToken * _targetListing.quantity ) { _closeAuctionForBidder(_targetListing, _incomingBid); } else { /** * If there's an exisitng winning bid, incoming bid amount must be bid buffer % greater. * Else, bid amount must be at least as great as reserve price */ require( isNewWinningBid( _targetListing.reservePricePerToken * _targetListing.quantity, currentOfferAmount, incomingOfferAmount ), "not winning bid." ); // Update the winning bid and listing's end time before external contract calls. winningBid[_targetListing.listingId] = _incomingBid; if (_targetListing.endTime - block.timestamp <= timeBuffer) { _targetListing.endTime += timeBuffer; listings[_targetListing.listingId] = _targetListing; } } // Payout previous highest bid. if (currentWinningBid.offeror != address(0) && currentOfferAmount > 0) { CurrencyTransferLib.transferCurrencyWithWrapper( _targetListing.currency, address(this), currentWinningBid.offeror, currentOfferAmount, _nativeTokenWrapper ); } // Collect incoming bid CurrencyTransferLib.transferCurrencyWithWrapper( _targetListing.currency, _incomingBid.offeror, address(this), incomingOfferAmount, _nativeTokenWrapper ); emit NewOffer( _targetListing.listingId, _incomingBid.offeror, _targetListing.listingType, _incomingBid.quantityWanted, _incomingBid.pricePerToken * _incomingBid.quantityWanted, _incomingBid.currency ); } /// @dev Checks whether an incoming bid is the new current highest bid. function isNewWinningBid( uint256 _reserveAmount, uint256 _currentWinningBidAmount, uint256 _incomingBidAmount ) internal view returns (bool isValidNewBid) { if (_currentWinningBidAmount == 0) { isValidNewBid = _incomingBidAmount >= _reserveAmount; } else { isValidNewBid = (_incomingBidAmount > _currentWinningBidAmount && ((_incomingBidAmount - _currentWinningBidAmount) * MAX_BPS) / _currentWinningBidAmount >= bidBufferBps); } } /*/////////////////////////////////////////////////////////////// Auction lisitngs sales logic //////////////////////////////////////////////////////////////*/ /// @dev Lets an account close an auction for either the (1) winning bidder, or (2) auction creator. function closeAuction(uint256 _listingId, address _closeFor) external override nonReentrant onlyExistingListing(_listingId) { Listing memory targetListing = listings[_listingId]; require(targetListing.listingType == ListingType.Auction, "not an auction."); Offer memory targetBid = winningBid[_listingId]; // Cancel auction if (1) auction hasn't started, or (2) auction doesn't have any bids. bool toCancel = targetListing.startTime > block.timestamp || targetBid.offeror == address(0); if (toCancel) { // cancel auction listing owner check _cancelAuction(targetListing); } else { require(targetListing.endTime < block.timestamp, "cannot close auction before it has ended."); // No `else if` to let auction close in 1 tx when targetListing.tokenOwner == targetBid.offeror. if (_closeFor == targetListing.tokenOwner) { _closeAuctionForAuctionCreator(targetListing, targetBid); } if (_closeFor == targetBid.offeror) { _closeAuctionForBidder(targetListing, targetBid); } } } /// @dev Cancels an auction. function _cancelAuction(Listing memory _targetListing) internal { require(listings[_targetListing.listingId].tokenOwner == _msgSender(), "caller is not the listing creator."); delete listings[_targetListing.listingId]; transferListingTokens(address(this), _targetListing.tokenOwner, _targetListing.quantity, _targetListing); emit AuctionClosed(_targetListing.listingId, _msgSender(), true, _targetListing.tokenOwner, address(0)); } /// @dev Closes an auction for an auction creator; distributes winning bid amount to auction creator. function _closeAuctionForAuctionCreator(Listing memory _targetListing, Offer memory _winningBid) internal { uint256 payoutAmount = _winningBid.pricePerToken * _targetListing.quantity; _targetListing.quantity = 0; _targetListing.endTime = block.timestamp; listings[_targetListing.listingId] = _targetListing; _winningBid.pricePerToken = 0; winningBid[_targetListing.listingId] = _winningBid; payout(address(this), _targetListing.tokenOwner, _targetListing.currency, payoutAmount, _targetListing); emit AuctionClosed( _targetListing.listingId, _msgSender(), false, _targetListing.tokenOwner, _winningBid.offeror ); } /// @dev Closes an auction for the winning bidder; distributes auction items to the winning bidder. function _closeAuctionForBidder(Listing memory _targetListing, Offer memory _winningBid) internal { uint256 quantityToSend = _winningBid.quantityWanted; _targetListing.endTime = block.timestamp; _winningBid.quantityWanted = 0; winningBid[_targetListing.listingId] = _winningBid; listings[_targetListing.listingId] = _targetListing; transferListingTokens(address(this), _winningBid.offeror, quantityToSend, _targetListing); emit AuctionClosed( _targetListing.listingId, _msgSender(), false, _targetListing.tokenOwner, _winningBid.offeror ); } /*/////////////////////////////////////////////////////////////// Shared (direct+auction listings) internal functions //////////////////////////////////////////////////////////////*/ /// @dev Transfers tokens listed for sale in a direct or auction listing. function transferListingTokens( address _from, address _to, uint256 _quantity, Listing memory _listing ) internal { if (_listing.tokenType == TokenType.ERC1155) { IERC1155Upgradeable(_listing.assetContract).safeTransferFrom(_from, _to, _listing.tokenId, _quantity, ""); } else if (_listing.tokenType == TokenType.ERC721) { IERC721Upgradeable(_listing.assetContract).safeTransferFrom(_from, _to, _listing.tokenId, ""); } } /// @dev Pays out stakeholders in a sale. function payout( address _payer, address _payee, address _currencyToUse, uint256 _totalPayoutAmount, Listing memory _listing ) internal { uint256 platformFeeCut = (_totalPayoutAmount * platformFeeBps) / MAX_BPS; (address twFeeRecipient, uint256 twFeeBps) = thirdwebFee.getFeeInfo(address(this), FeeType.MARKET_SALE); uint256 twFeeCut = (_totalPayoutAmount * twFeeBps) / MAX_BPS; uint256 royaltyCut; address royaltyRecipient; // Distribute royalties. See Sushiswap's https://github.com/sushiswap/shoyu/blob/master/contracts/base/BaseExchange.sol#L296 try IERC2981Upgradeable(_listing.assetContract).royaltyInfo(_listing.tokenId, _totalPayoutAmount) returns ( address royaltyFeeRecipient, uint256 royaltyFeeAmount ) { if (royaltyFeeRecipient != address(0) && royaltyFeeAmount > 0) { require(royaltyFeeAmount + platformFeeCut + twFeeCut <= _totalPayoutAmount, "fees exceed the price"); royaltyRecipient = royaltyFeeRecipient; royaltyCut = royaltyFeeAmount; } } catch {} // Distribute price to token owner address _nativeTokenWrapper = nativeTokenWrapper; CurrencyTransferLib.transferCurrencyWithWrapper( _currencyToUse, _payer, platformFeeRecipient, platformFeeCut, _nativeTokenWrapper ); CurrencyTransferLib.transferCurrencyWithWrapper( _currencyToUse, _payer, royaltyRecipient, royaltyCut, _nativeTokenWrapper ); CurrencyTransferLib.transferCurrencyWithWrapper( _currencyToUse, _payer, twFeeRecipient, twFeeCut, _nativeTokenWrapper ); CurrencyTransferLib.transferCurrencyWithWrapper( _currencyToUse, _payer, _payee, _totalPayoutAmount - (platformFeeCut + royaltyCut + twFeeCut), _nativeTokenWrapper ); } /// @dev Validates that `_addrToCheck` owns and has approved markeplace to transfer the appropriate amount of currency function validateERC20BalAndAllowance( address _addrToCheck, address _currency, uint256 _currencyAmountToCheckAgainst ) internal view { require( IERC20Upgradeable(_currency).balanceOf(_addrToCheck) >= _currencyAmountToCheckAgainst && IERC20Upgradeable(_currency).allowance(_addrToCheck, address(this)) >= _currencyAmountToCheckAgainst, "!BAL20" ); } /// @dev Validates that `_tokenOwner` owns and has approved Market to transfer NFTs. function validateOwnershipAndApproval( address _tokenOwner, address _assetContract, uint256 _tokenId, uint256 _quantity, TokenType _tokenType ) internal view { address market = address(this); bool isValid; if (_tokenType == TokenType.ERC1155) { isValid = IERC1155Upgradeable(_assetContract).balanceOf(_tokenOwner, _tokenId) >= _quantity && IERC1155Upgradeable(_assetContract).isApprovedForAll(_tokenOwner, market); } else if (_tokenType == TokenType.ERC721) { isValid = IERC721Upgradeable(_assetContract).ownerOf(_tokenId) == _tokenOwner && (IERC721Upgradeable(_assetContract).getApproved(_tokenId) == market || IERC721Upgradeable(_assetContract).isApprovedForAll(_tokenOwner, market)); } require(isValid, "!BALNFT"); } /// @dev Validates conditions of a direct listing sale. function validateDirectListingSale( Listing memory _listing, address _payer, uint256 _quantityToBuy, address _currency, uint256 settledTotalPrice ) internal { require(_listing.listingType == ListingType.Direct, "cannot buy from listing."); // Check whether a valid quantity of listed tokens is being bought. require( _listing.quantity > 0 && _quantityToBuy > 0 && _quantityToBuy <= _listing.quantity, "invalid amount of tokens." ); // Check if sale is made within the listing window. require(block.timestamp < _listing.endTime && block.timestamp > _listing.startTime, "not within sale window."); // Check: buyer owns and has approved sufficient currency for sale. if (_currency == CurrencyTransferLib.NATIVE_TOKEN) { require(msg.value == settledTotalPrice, "msg.value != price"); } else { validateERC20BalAndAllowance(_payer, _currency, settledTotalPrice); } // Check whether token owner owns and has approved `quantityToBuy` amount of listing tokens from the listing. validateOwnershipAndApproval( _listing.tokenOwner, _listing.assetContract, _listing.tokenId, _quantityToBuy, _listing.tokenType ); } /*/////////////////////////////////////////////////////////////// Getter functions //////////////////////////////////////////////////////////////*/ /// @dev Enforces quantity == 1 if tokenType is TokenType.ERC721. function getSafeQuantity(TokenType _tokenType, uint256 _quantityToCheck) internal pure returns (uint256 safeQuantity) { if (_quantityToCheck == 0) { safeQuantity = 0; } else { safeQuantity = _tokenType == TokenType.ERC721 ? 1 : _quantityToCheck; } } /// @dev Returns the interface supported by a contract. function getTokenType(address _assetContract) internal view returns (TokenType tokenType) { if (IERC165Upgradeable(_assetContract).supportsInterface(type(IERC1155Upgradeable).interfaceId)) { tokenType = TokenType.ERC1155; } else if (IERC165Upgradeable(_assetContract).supportsInterface(type(IERC721Upgradeable).interfaceId)) { tokenType = TokenType.ERC721; } else { revert("token must be ERC1155 or ERC721."); } } /// @dev Returns the platform fee recipient and bps. function getPlatformFeeInfo() external view returns (address, uint16) { return (platformFeeRecipient, uint16(platformFeeBps)); } /*/////////////////////////////////////////////////////////////// Setter functions //////////////////////////////////////////////////////////////*/ /// @dev Lets a contract admin update platform fee recipient and bps. function setPlatformFeeInfo(address _platformFeeRecipient, uint256 _platformFeeBps) external onlyRole(DEFAULT_ADMIN_ROLE) { require(_platformFeeBps <= MAX_BPS, "bps <= 10000."); platformFeeBps = uint64(_platformFeeBps); platformFeeRecipient = _platformFeeRecipient; emit PlatformFeeInfoUpdated(_platformFeeRecipient, _platformFeeBps); } /// @dev Lets a contract admin set auction buffers. function setAuctionBuffers(uint256 _timeBuffer, uint256 _bidBufferBps) external onlyRole(DEFAULT_ADMIN_ROLE) { require(_bidBufferBps < MAX_BPS, "invalid BPS."); timeBuffer = uint64(_timeBuffer); bidBufferBps = uint64(_bidBufferBps); emit AuctionBuffersUpdated(_timeBuffer, _bidBufferBps); } /// @dev Lets a contract admin set the URI for the contract-level metadata. function setContractURI(string calldata _uri) external onlyRole(DEFAULT_ADMIN_ROLE) { contractURI = _uri; } /*/////////////////////////////////////////////////////////////// Miscellaneous //////////////////////////////////////////////////////////////*/ function _msgSender() internal view virtual override(ContextUpgradeable, ERC2771ContextUpgradeable) returns (address sender) { return ERC2771ContextUpgradeable._msgSender(); } function _msgData() internal view virtual override(ContextUpgradeable, ERC2771ContextUpgradeable) returns (bytes calldata) { return ERC2771ContextUpgradeable._msgData(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20Upgradeable { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155Upgradeable is IERC165Upgradeable { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721Upgradeable is IERC165Upgradeable { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155ReceiverUpgradeable is IERC165Upgradeable { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721ReceiverUpgradeable { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // 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 IERC165Upgradeable { /** * @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 // OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "./IERC165Upgradeable.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 IERC2981Upgradeable is IERC165Upgradeable { /** * @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 payed 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 (last updated v4.5.0) (access/AccessControlEnumerable.sol) pragma solidity ^0.8.0; import "./IAccessControlEnumerableUpgradeable.sol"; import "./AccessControlUpgradeable.sol"; import "../utils/structs/EnumerableSetUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerableUpgradeable is Initializable, IAccessControlEnumerableUpgradeable, AccessControlUpgradeable { function __AccessControlEnumerable_init() internal onlyInitializing { } function __AccessControlEnumerable_init_unchained() internal onlyInitializing { } using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet; mapping(bytes32 => EnumerableSetUpgradeable.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerableUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view virtual override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view virtual override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {_grantRole} to track enumerable memberships */ function _grantRole(bytes32 role, address account) internal virtual override { super._grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {_revokeRole} to track enumerable memberships */ function _revokeRole(bytes32 role, address account) internal virtual override { super._revokeRole(role, account); _roleMembers[role].remove(account); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @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 ReentrancyGuardUpgradeable is Initializable { // 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; function __ReentrancyGuard_init() internal onlyInitializing { __ReentrancyGuard_init_unchained(); } function __ReentrancyGuard_init_unchained() internal onlyInitializing { _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; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Multicall.sol) pragma solidity ^0.8.0; import "./AddressUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Provides a function to batch together multiple calls in a single external call. * * _Available since v4.1._ */ abstract contract MulticallUpgradeable is Initializable { function __Multicall_init() internal onlyInitializing { } function __Multicall_init_unchained() internal onlyInitializing { } /** * @dev Receives and executes a batch of function calls on this contract. */ function multicall(bytes[] calldata data) external virtual returns (bytes[] memory results) { results = new bytes[](data.length); for (uint256 i = 0; i < data.length; i++) { results[i] = _functionDelegateCall(address(this), data[i]); } return results; } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function _functionDelegateCall(address target, bytes memory data) private returns (bytes memory) { require(AddressUpgradeable.isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return AddressUpgradeable.verifyCallResult(success, returndata, "Address: low-level delegate call failed"); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.11; import "../IThirdwebContract.sol"; import "../../feature/interface/IPlatformFee.sol"; interface IMarketplace is IThirdwebContract, IPlatformFee { /// @notice Type of the tokens that can be listed for sale. enum TokenType { ERC1155, ERC721 } /** * @notice The two types of listings. * `Direct`: NFTs listed for sale at a fixed price. * `Auction`: NFTs listed for sale in an auction. */ enum ListingType { Direct, Auction } /** * @notice The information related to either (1) an offer on a direct listing, or (2) a bid in an auction. * * @dev The type of the listing at ID `lisingId` determins how the `Offer` is interpreted. * If the listing is of type `Direct`, the `Offer` is interpreted as an offer to a direct listing. * If the listing is of type `Auction`, the `Offer` is interpreted as a bid in an auction. * * @param listingId The uid of the listing the offer is made to. * @param offeror The account making the offer. * @param quantityWanted The quantity of tokens from the listing wanted by the offeror. * This is the entire listing quantity if the listing is an auction. * @param currency The currency in which the offer is made. * @param pricePerToken The price per token offered to the lister. * @param expirationTimestamp The timestamp after which a seller cannot accept this offer. */ struct Offer { uint256 listingId; address offeror; uint256 quantityWanted; address currency; uint256 pricePerToken; uint256 expirationTimestamp; } /** * @dev For use in `createListing` as a parameter type. * * @param assetContract The contract address of the NFT to list for sale. * @param tokenId The tokenId on `assetContract` of the NFT to list for sale. * @param startTime The unix timestamp after which the listing is active. For direct listings: * 'active' means NFTs can be bought from the listing. For auctions, * 'active' means bids can be made in the auction. * * @param secondsUntilEndTime No. of seconds after `startTime`, after which the listing is inactive. * For direct listings: 'inactive' means NFTs cannot be bought from the listing. * For auctions: 'inactive' means bids can no longer be made in the auction. * * @param quantityToList The quantity of NFT of ID `tokenId` on the given `assetContract` to list. For * ERC 721 tokens to list for sale, the contract strictly defaults this to `1`, * Regardless of the value of `quantityToList` passed. * * @param currencyToAccept For direct listings: the currency in which a buyer must pay the listing's fixed price * to buy the NFT(s). For auctions: the currency in which the bidders must make bids. * * @param reservePricePerToken For direct listings: this value is ignored. For auctions: the minimum bid amount of * the auction is `reservePricePerToken * quantityToList` * * @param buyoutPricePerToken For direct listings: interpreted as 'price per token' listed. For auctions: if * `buyoutPricePerToken` is greater than 0, and a bidder's bid is at least as great as * `buyoutPricePerToken * quantityToList`, the bidder wins the auction, and the auction * is closed. * * @param listingType The type of listing to create - a direct listing or an auction. **/ struct ListingParameters { address assetContract; uint256 tokenId; uint256 startTime; uint256 secondsUntilEndTime; uint256 quantityToList; address currencyToAccept; uint256 reservePricePerToken; uint256 buyoutPricePerToken; ListingType listingType; } /** * @notice The information related to a listing; either (1) a direct listing, or (2) an auction listing. * * @dev For direct listings: * (1) `reservePricePerToken` is ignored. * (2) `buyoutPricePerToken` is simply interpreted as 'price per token'. * * @param listingId The uid for the listing. * * @param tokenOwner The owner of the tokens listed for sale. * * @param assetContract The contract address of the NFT to list for sale. * @param tokenId The tokenId on `assetContract` of the NFT to list for sale. * @param startTime The unix timestamp after which the listing is active. For direct listings: * 'active' means NFTs can be bought from the listing. For auctions, * 'active' means bids can be made in the auction. * * @param endTime The timestamp after which the listing is inactive. * For direct listings: 'inactive' means NFTs cannot be bought from the listing. * For auctions: 'inactive' means bids can no longer be made in the auction. * * @param quantity The quantity of NFT of ID `tokenId` on the given `assetContract` listed. For * ERC 721 tokens to list for sale, the contract strictly defaults this to `1`, * Regardless of the value of `quantityToList` passed. * * @param currency For direct listings: the currency in which a buyer must pay the listing's fixed price * to buy the NFT(s). For auctions: the currency in which the bidders must make bids. * * @param reservePricePerToken For direct listings: this value is ignored. For auctions: the minimum bid amount of * the auction is `reservePricePerToken * quantityToList` * * @param buyoutPricePerToken For direct listings: interpreted as 'price per token' listed. For auctions: if * `buyoutPricePerToken` is greater than 0, and a bidder's bid is at least as great as * `buyoutPricePerToken * quantityToList`, the bidder wins the auction, and the auction * is closed. * * @param tokenType The type of the token(s) listed for for sale -- ERC721 or ERC1155 * * @param listingType The type of listing to create - a direct listing or an auction. **/ struct Listing { uint256 listingId; address tokenOwner; address assetContract; uint256 tokenId; uint256 startTime; uint256 endTime; uint256 quantity; address currency; uint256 reservePricePerToken; uint256 buyoutPricePerToken; TokenType tokenType; ListingType listingType; } /// @dev Emitted when a new listing is created. event ListingAdded( uint256 indexed listingId, address indexed assetContract, address indexed lister, Listing listing ); /// @dev Emitted when the parameters of a listing are updated. event ListingUpdated(uint256 indexed listingId, address indexed listingCreator); /// @dev Emitted when a listing is cancelled. event ListingRemoved(uint256 indexed listingId, address indexed listingCreator); /** * @dev Emitted when a buyer buys from a direct listing, or a lister accepts some * buyer's offer to their direct listing. */ event NewSale( uint256 indexed listingId, address indexed assetContract, address indexed lister, address buyer, uint256 quantityBought, uint256 totalPricePaid ); /// @dev Emitted when (1) a new offer is made to a direct listing, or (2) when a new bid is made in an auction. event NewOffer( uint256 indexed listingId, address indexed offeror, ListingType indexed listingType, uint256 quantityWanted, uint256 totalOfferAmount, address currency ); /// @dev Emitted when an auction is closed. event AuctionClosed( uint256 indexed listingId, address indexed closer, bool indexed cancelled, address auctionCreator, address winningBidder ); /// @dev Emitted when auction buffers are updated. event AuctionBuffersUpdated(uint256 timeBuffer, uint256 bidBufferBps); /** * @notice Lets a token owner list tokens (ERC 721 or ERC 1155) for sale in a direct listing, or an auction. * * @dev NFTs to list for sale in an auction are escrowed in Marketplace. For direct listings, the contract * only checks whether the listing's creator owns and has approved Marketplace to transfer the NFTs to list. * * @param _params The parameters that govern the listing to be created. */ function createListing(ListingParameters memory _params) external; /** * @notice Lets a listing's creator edit the listing's parameters. A direct listing can be edited whenever. * An auction listing cannot be edited after the auction has started. * * @param _listingId The uid of the lisitng to edit. * * @param _quantityToList The amount of NFTs to list for sale in the listing. For direct lisitngs, the contract * only checks whether the listing creator owns and has approved Marketplace to transfer * `_quantityToList` amount of NFTs to list for sale. For auction listings, the contract * ensures that exactly `_quantityToList` amount of NFTs to list are escrowed. * * @param _reservePricePerToken For direct listings: this value is ignored. For auctions: the minimum bid amount of * the auction is `reservePricePerToken * quantityToList` * * @param _buyoutPricePerToken For direct listings: interpreted as 'price per token' listed. For auctions: if * `buyoutPricePerToken` is greater than 0, and a bidder's bid is at least as great as * `buyoutPricePerToken * quantityToList`, the bidder wins the auction, and the auction * is closed. * * @param _currencyToAccept For direct listings: the currency in which a buyer must pay the listing's fixed price * to buy the NFT(s). For auctions: the currency in which the bidders must make bids. * * @param _startTime The unix timestamp after which listing is active. For direct listings: * 'active' means NFTs can be bought from the listing. For auctions, * 'active' means bids can be made in the auction. * * @param _secondsUntilEndTime No. of seconds after the provided `_startTime`, after which the listing is inactive. * For direct listings: 'inactive' means NFTs cannot be bought from the listing. * For auctions: 'inactive' means bids can no longer be made in the auction. */ function updateListing( uint256 _listingId, uint256 _quantityToList, uint256 _reservePricePerToken, uint256 _buyoutPricePerToken, address _currencyToAccept, uint256 _startTime, uint256 _secondsUntilEndTime ) external; /** * @notice Lets a direct listing creator cancel their listing. * * @param _listingId The unique Id of the lisitng to cancel. */ function cancelDirectListing(uint256 _listingId) external; /** * @notice Lets someone buy a given quantity of tokens from a direct listing by paying the fixed price. * * @param _listingId The uid of the direct lisitng to buy from. * @param _buyFor The receiver of the NFT being bought. * @param _quantity The amount of NFTs to buy from the direct listing. * @param _currency The currency to pay the price in. * @param _totalPrice The total price to pay for the tokens being bought. * * @dev A sale will fail to execute if either: * (1) buyer does not own or has not approved Marketplace to transfer the appropriate * amount of currency (or hasn't sent the appropriate amount of native tokens) * * (2) the lister does not own or has removed Markeplace's * approval to transfer the tokens listed for sale. */ function buy( uint256 _listingId, address _buyFor, uint256 _quantity, address _currency, uint256 _totalPrice ) external payable; /** * @notice Lets someone make an offer to a direct listing, or bid in an auction. * * @dev Each (address, listing ID) pair maps to a single unique offer. So e.g. if a buyer makes * makes two offers to the same direct listing, the last offer is counted as the buyer's * offer to that listing. * * @param _listingId The unique ID of the lisitng to make an offer/bid to. * * @param _quantityWanted For auction listings: the 'quantity wanted' is the total amount of NFTs * being auctioned, regardless of the value of `_quantityWanted` passed. * For direct listings: `_quantityWanted` is the quantity of NFTs from the * listing, for which the offer is being made. * * @param _currency For auction listings: the 'currency of the bid' is the currency accepted * by the auction, regardless of the value of `_currency` passed. For direct * listings: this is the currency in which the offer is made. * * @param _pricePerToken For direct listings: offered price per token. For auction listings: the bid * amount per token. The total offer/bid amount is `_quantityWanted * _pricePerToken`. * * @param _expirationTimestamp For aution listings: inapplicable. For direct listings: The timestamp after which * the seller can no longer accept the offer. */ function offer( uint256 _listingId, uint256 _quantityWanted, address _currency, uint256 _pricePerToken, uint256 _expirationTimestamp ) external payable; /** * @notice Lets a listing's creator accept an offer to their direct listing. * @param _listingId The unique ID of the listing for which to accept the offer. * @param _offeror The address of the buyer whose offer is to be accepted. * @param _currency The currency of the offer that is to be accepted. * @param _totalPrice The total price of the offer that is to be accepted. */ function acceptOffer( uint256 _listingId, address _offeror, address _currency, uint256 _totalPrice ) external; /** * @notice Lets any account close an auction on behalf of either the (1) auction's creator, or (2) winning bidder. * For (1): The auction creator is sent the the winning bid amount. * For (2): The winning bidder is sent the auctioned NFTs. * * @param _listingId The uid of the listing (the auction to close). * @param _closeFor For whom the auction is being closed - the auction creator or winning bidder. */ function closeAuction(uint256 _listingId, address _closeFor) external; }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.11; interface ITWFee { function getFeeInfo(address _proxy, uint256 _type) external view returns (address recipient, uint256 bps); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (metatx/ERC2771Context.sol) pragma solidity ^0.8.11; import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; /** * @dev Context variant with ERC2771 support. */ abstract contract ERC2771ContextUpgradeable is Initializable, ContextUpgradeable { mapping(address => bool) private _trustedForwarder; function __ERC2771Context_init(address[] memory trustedForwarder) internal onlyInitializing { __Context_init_unchained(); __ERC2771Context_init_unchained(trustedForwarder); } function __ERC2771Context_init_unchained(address[] memory trustedForwarder) internal onlyInitializing { for (uint256 i = 0; i < trustedForwarder.length; i++) { _trustedForwarder[trustedForwarder[i]] = true; } } function isTrustedForwarder(address forwarder) public view virtual returns (bool) { return _trustedForwarder[forwarder]; } function _msgSender() internal view virtual override returns (address sender) { if (isTrustedForwarder(msg.sender)) { // The assembly code is more direct than the Solidity version using `abi.decode`. assembly { sender := shr(96, calldataload(sub(calldatasize(), 20))) } } else { return super._msgSender(); } } function _msgData() internal view virtual override returns (bytes calldata) { if (isTrustedForwarder(msg.sender)) { return msg.data[:msg.data.length - 20]; } else { return super._msgData(); } } uint256[49] private __gap; }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.11; // Helper interfaces import { IWETH } from "../interfaces/IWETH.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol"; library CurrencyTransferLib { using SafeERC20Upgradeable for IERC20Upgradeable; /// @dev The address interpreted as native token of the chain. address public constant NATIVE_TOKEN = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; /// @dev Transfers a given amount of currency. function transferCurrency( address _currency, address _from, address _to, uint256 _amount ) internal { if (_amount == 0) { return; } if (_currency == NATIVE_TOKEN) { safeTransferNativeToken(_to, _amount); } else { safeTransferERC20(_currency, _from, _to, _amount); } } /// @dev Transfers a given amount of currency. (With native token wrapping) function transferCurrencyWithWrapper( address _currency, address _from, address _to, uint256 _amount, address _nativeTokenWrapper ) internal { if (_amount == 0) { return; } if (_currency == NATIVE_TOKEN) { if (_from == address(this)) { // withdraw from weth then transfer withdrawn native token to recipient IWETH(_nativeTokenWrapper).withdraw(_amount); safeTransferNativeTokenWithWrapper(_to, _amount, _nativeTokenWrapper); } else if (_to == address(this)) { // store native currency in weth require(_amount == msg.value, "msg.value != amount"); IWETH(_nativeTokenWrapper).deposit{ value: _amount }(); } else { safeTransferNativeTokenWithWrapper(_to, _amount, _nativeTokenWrapper); } } else { safeTransferERC20(_currency, _from, _to, _amount); } } /// @dev Transfer `amount` of ERC20 token from `from` to `to`. function safeTransferERC20( address _currency, address _from, address _to, uint256 _amount ) internal { if (_from == _to) { return; } if (_from == address(this)) { IERC20Upgradeable(_currency).safeTransfer(_to, _amount); } else { IERC20Upgradeable(_currency).safeTransferFrom(_from, _to, _amount); } } /// @dev Transfers `amount` of native token to `to`. function safeTransferNativeToken(address to, uint256 value) internal { // solhint-disable avoid-low-level-calls // slither-disable-next-line low-level-calls (bool success, ) = to.call{ value: value }(""); require(success, "native token transfer failed"); } /// @dev Transfers `amount` of native token to `to`. (With native token wrapping) function safeTransferNativeTokenWithWrapper( address to, uint256 value, address _nativeTokenWrapper ) internal { // solhint-disable avoid-low-level-calls // slither-disable-next-line low-level-calls (bool success, ) = to.call{ value: value }(""); if (!success) { IWETH(_nativeTokenWrapper).deposit{ value: value }(); IERC20Upgradeable(_nativeTokenWrapper).safeTransfer(to, value); } } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.11; library FeeType { uint256 internal constant PRIMARY_SALE = 0; uint256 internal constant MARKET_SALE = 1; uint256 internal constant SPLIT = 2; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165Upgradeable.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol) pragma solidity ^0.8.0; import "./IAccessControlUpgradeable.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerableUpgradeable is IAccessControlUpgradeable { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControlUpgradeable.sol"; import "../utils/ContextUpgradeable.sol"; import "../utils/StringsUpgradeable.sol"; import "../utils/introspection/ERC165Upgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControlUpgradeable is Initializable, ContextUpgradeable, IAccessControlUpgradeable, ERC165Upgradeable { function __AccessControl_init() internal onlyInitializing { } function __AccessControl_init_unchained() internal onlyInitializing { } struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", StringsUpgradeable.toHexString(uint160(account), 20), " is missing role ", StringsUpgradeable.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/structs/EnumerableSet.sol) pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSetUpgradeable { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.0; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() initializer {} * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { // If the contract is initializing we ignore whether _initialized is set in order to support multiple // inheritance patterns, but we only do this in the context of a constructor, because in other contexts the // contract may have been reentered. require(_initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} modifier, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } function _isConstructor() private view returns (bool) { return !AddressUpgradeable.isContract(address(this)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControlUpgradeable { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.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 ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal onlyInitializing { } function __ERC165_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.11; interface IThirdwebContract { /// @dev Returns the module type of the contract. function contractType() external pure returns (bytes32); /// @dev Returns the version of the contract. function contractVersion() external pure returns (uint8); /// @dev Returns the metadata URI of the contract. function contractURI() external view returns (string memory); /** * @dev Sets contract URI for the storefront-level metadata of the contract. * Only module admin can call this function. */ function setContractURI(string calldata _uri) external; }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; interface IPlatformFee { /// @dev Returns the platform fee bps and recipient. function getPlatformFeeInfo() external view returns (address, uint16); /// @dev Lets a module admin update the fees on primary sales. function setPlatformFeeInfo(address _platformFeeRecipient, uint256 _platformFeeBps) external; /// @dev Emitted when fee on primary sales is updated. event PlatformFeeInfoUpdated(address platformFeeRecipient, uint256 platformFeeBps); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.11; interface IWETH { function deposit() external payable; function withdraw(uint256 amount) external; function transfer(address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20Upgradeable.sol"; import "../../../utils/AddressUpgradeable.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20Upgradeable { using AddressUpgradeable for address; function safeTransfer( IERC20Upgradeable token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20Upgradeable token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20Upgradeable token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20Upgradeable token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20Upgradeable token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20Upgradeable token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
{ "metadata": { "bytecodeHash": "none" }, "optimizer": { "enabled": true, "runs": 800 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_nativeTokenWrapper","type":"address"},{"internalType":"address","name":"_thirdwebFee","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timeBuffer","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bidBufferBps","type":"uint256"}],"name":"AuctionBuffersUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"listingId","type":"uint256"},{"indexed":true,"internalType":"address","name":"closer","type":"address"},{"indexed":true,"internalType":"bool","name":"cancelled","type":"bool"},{"indexed":false,"internalType":"address","name":"auctionCreator","type":"address"},{"indexed":false,"internalType":"address","name":"winningBidder","type":"address"}],"name":"AuctionClosed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"listingId","type":"uint256"},{"indexed":true,"internalType":"address","name":"assetContract","type":"address"},{"indexed":true,"internalType":"address","name":"lister","type":"address"},{"components":[{"internalType":"uint256","name":"listingId","type":"uint256"},{"internalType":"address","name":"tokenOwner","type":"address"},{"internalType":"address","name":"assetContract","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"uint256","name":"reservePricePerToken","type":"uint256"},{"internalType":"uint256","name":"buyoutPricePerToken","type":"uint256"},{"internalType":"enum IMarketplace.TokenType","name":"tokenType","type":"uint8"},{"internalType":"enum IMarketplace.ListingType","name":"listingType","type":"uint8"}],"indexed":false,"internalType":"struct IMarketplace.Listing","name":"listing","type":"tuple"}],"name":"ListingAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"listingId","type":"uint256"},{"indexed":true,"internalType":"address","name":"listingCreator","type":"address"}],"name":"ListingRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"listingId","type":"uint256"},{"indexed":true,"internalType":"address","name":"listingCreator","type":"address"}],"name":"ListingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"listingId","type":"uint256"},{"indexed":true,"internalType":"address","name":"offeror","type":"address"},{"indexed":true,"internalType":"enum IMarketplace.ListingType","name":"listingType","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"quantityWanted","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalOfferAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"currency","type":"address"}],"name":"NewOffer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"listingId","type":"uint256"},{"indexed":true,"internalType":"address","name":"assetContract","type":"address"},{"indexed":true,"internalType":"address","name":"lister","type":"address"},{"indexed":false,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"quantityBought","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalPricePaid","type":"uint256"}],"name":"NewSale","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"platformFeeRecipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"platformFeeBps","type":"uint256"}],"name":"PlatformFeeInfoUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BPS","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_listingId","type":"uint256"},{"internalType":"address","name":"_offeror","type":"address"},{"internalType":"address","name":"_currency","type":"address"},{"internalType":"uint256","name":"_pricePerToken","type":"uint256"}],"name":"acceptOffer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bidBufferBps","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_listingId","type":"uint256"},{"internalType":"address","name":"_buyFor","type":"address"},{"internalType":"uint256","name":"_quantityToBuy","type":"uint256"},{"internalType":"address","name":"_currency","type":"address"},{"internalType":"uint256","name":"_totalPrice","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_listingId","type":"uint256"}],"name":"cancelDirectListing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_listingId","type":"uint256"},{"internalType":"address","name":"_closeFor","type":"address"}],"name":"closeAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractType","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractVersion","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"assetContract","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"secondsUntilEndTime","type":"uint256"},{"internalType":"uint256","name":"quantityToList","type":"uint256"},{"internalType":"address","name":"currencyToAccept","type":"address"},{"internalType":"uint256","name":"reservePricePerToken","type":"uint256"},{"internalType":"uint256","name":"buyoutPricePerToken","type":"uint256"},{"internalType":"enum IMarketplace.ListingType","name":"listingType","type":"uint8"}],"internalType":"struct IMarketplace.ListingParameters","name":"_params","type":"tuple"}],"name":"createListing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getPlatformFeeInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_defaultAdmin","type":"address"},{"internalType":"string","name":"_contractURI","type":"string"},{"internalType":"address[]","name":"_trustedForwarders","type":"address[]"},{"internalType":"address","name":"_platformFeeRecipient","type":"address"},{"internalType":"uint256","name":"_platformFeeBps","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"forwarder","type":"address"}],"name":"isTrustedForwarder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"listings","outputs":[{"internalType":"uint256","name":"listingId","type":"uint256"},{"internalType":"address","name":"tokenOwner","type":"address"},{"internalType":"address","name":"assetContract","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"uint256","name":"reservePricePerToken","type":"uint256"},{"internalType":"uint256","name":"buyoutPricePerToken","type":"uint256"},{"internalType":"enum IMarketplace.TokenType","name":"tokenType","type":"uint8"},{"internalType":"enum IMarketplace.ListingType","name":"listingType","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_listingId","type":"uint256"},{"internalType":"uint256","name":"_quantityWanted","type":"uint256"},{"internalType":"address","name":"_currency","type":"address"},{"internalType":"uint256","name":"_pricePerToken","type":"uint256"},{"internalType":"uint256","name":"_expirationTimestamp","type":"uint256"}],"name":"offer","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"offers","outputs":[{"internalType":"uint256","name":"listingId","type":"uint256"},{"internalType":"address","name":"offeror","type":"address"},{"internalType":"uint256","name":"quantityWanted","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"uint256","name":"expirationTimestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_timeBuffer","type":"uint256"},{"internalType":"uint256","name":"_bidBufferBps","type":"uint256"}],"name":"setAuctionBuffers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_platformFeeRecipient","type":"address"},{"internalType":"uint256","name":"_platformFeeBps","type":"uint256"}],"name":"setPlatformFeeInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"thirdwebFee","outputs":[{"internalType":"contract ITWFee","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeBuffer","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalListings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_listingId","type":"uint256"},{"internalType":"uint256","name":"_quantityToList","type":"uint256"},{"internalType":"uint256","name":"_reservePricePerToken","type":"uint256"},{"internalType":"uint256","name":"_buyoutPricePerToken","type":"uint256"},{"internalType":"address","name":"_currencyToAccept","type":"address"},{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_secondsUntilEndTime","type":"uint256"}],"name":"updateListing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"winningBid","outputs":[{"internalType":"uint256","name":"listingId","type":"uint256"},{"internalType":"address","name":"offeror","type":"address"},{"internalType":"uint256","name":"quantityWanted","type":"uint256"},{"internalType":"address","name":"currency","type":"address"},{"internalType":"uint256","name":"pricePerToken","type":"uint256"},{"internalType":"uint256","name":"expirationTimestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040523480156200001157600080fd5b506040516200619f3803806200619f83398101604081905262000034916200015f565b600054610100900460ff16620000515760005460ff16156200005b565b6200005b62000115565b620000c35760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b606482015260840160405180910390fd5b600054610100900460ff16158015620000e6576000805461ffff19166101011790555b6001600160a01b0380831660a052831660805280156200010c576000805461ff00191690555b50505062000197565b60006200012d306200013360201b62002ac41760201c565b15905090565b6001600160a01b03163b151590565b80516001600160a01b03811681146200015a57600080fd5b919050565b600080604083850312156200017357600080fd5b6200017e8362000142565b91506200018e6020840162000142565b90509250929050565b60805160a051615fcd620001d26000396000818161069e01526146ee0152600081816114160152818161322a015261488c0152615fcd6000f3fe60806040526004361061026e5760003560e01c8063a217fddf11610153578063d45573f6116100cb578063ea0e02411161007f578063ec91f2a411610064578063ec91f2a4146108ff578063f23a6e6114610921578063fd967f471461094d57600080fd5b8063ea0e024114610877578063ebdfbce51461089757600080fd5b8063d547741f116100b0578063d547741f1461078e578063de74e57b146107ae578063e8a3d4851461085557600080fd5b8063d45573f6146106c0578063d4ac9b8c146106f857600080fd5b8063c4b5b15f11610122578063ca15c87311610107578063ca15c87314610639578063cb2ef6f714610659578063cf8267b11461068c57600080fd5b8063c4b5b15f14610602578063c78b616c1461062257600080fd5b8063a217fddf14610574578063ac9650d814610589578063b13c0e63146105b6578063bc197c81146105d657600080fd5b80635fef45e7116101e65780638c8a84e2116101b557806391d148541161019a57806391d14854146104f2578063938e3d7b14610538578063a0a8e4601461055857600080fd5b80638c8a84e21461049a5780639010d07c146104ba57600080fd5b80635fef45e7146104345780636bab66ae146104475780637506c84a146104675780637687ab021461048757600080fd5b8063296f4e161161023d57806336568abe1161022257806336568abe146103945780634e03f28d146103b4578063572b6c05146103fb57600080fd5b8063296f4e16146103545780632f2ff15d1461037457600080fd5b806301ffc9a71461027a578063150b7a02146102af5780631e7ac488146102f4578063248a9ca31461031657600080fd5b3661027557005b600080fd5b34801561028657600080fd5b5061029a6102953660046152e5565b610963565b60405190151581526020015b60405180910390f35b3480156102bb57600080fd5b506102db6102ca366004615378565b630a85bd0160e11b95945050505050565b6040516001600160e01b031990911681526020016102a6565b34801561030057600080fd5b5061031461030f3660046153eb565b6109a9565b005b34801561032257600080fd5b50610346610331366004615417565b600090815260fb602052604090206001015490565b6040519081526020016102a6565b34801561036057600080fd5b5061031461036f3660046154b0565b610a8d565b34801561038057600080fd5b5061031461038f36600461553c565b610fac565b3480156103a057600080fd5b506103146103af36600461553c565b610fd9565b3480156103c057600080fd5b50610162546103e29068010000000000000000900467ffffffffffffffff1681565b60405167ffffffffffffffff90911681526020016102a6565b34801561040757600080fd5b5061029a61041636600461556c565b6001600160a01b031660009081526065602052604090205460ff1690565b610314610442366004615589565b611075565b34801561045357600080fd5b5061031461046236600461553c565b611471565b34801561047357600080fd5b50610314610482366004615417565b6117ef565b6103146104953660046155d2565b611a65565b3480156104a657600080fd5b506103146104b53660046156a0565b611ca3565b3480156104c657600080fd5b506104da6104d5366004615798565b611e55565b6040516001600160a01b0390911681526020016102a6565b3480156104fe57600080fd5b5061029a61050d36600461553c565b600091825260fb602090815260408084206001600160a01b0393909316845291905290205460ff1690565b34801561054457600080fd5b506103146105533660046157ba565b611e75565b34801561056457600080fd5b50604051600281526020016102a6565b34801561058057600080fd5b50610346600081565b34801561059557600080fd5b506105a96105a43660046157fc565b611e96565b6040516102a691906158c9565b3480156105c257600080fd5b506103146105d136600461592b565b611f8b565b3480156105e257600080fd5b506102db6105f13660046159f9565b63bc197c8160e01b95945050505050565b34801561060e57600080fd5b5061031461061d366004615aa7565b6123ff565b34801561062e57600080fd5b5061034661015f5481565b34801561064557600080fd5b50610346610654366004615417565b612923565b34801561066557600080fd5b507f4d61726b6574706c616365000000000000000000000000000000000000000000610346565b34801561069857600080fd5b506104da7f000000000000000000000000000000000000000000000000000000000000000081565b3480156106cc57600080fd5b5061016154604080516001600160a01b0383168152600160a01b90920461ffff166020830152016102a6565b34801561070457600080fd5b50610755610713366004615417565b6101656020526000908152604090208054600182015460028301546003840154600485015460059095015493946001600160a01b039384169492939091169186565b604080519687526001600160a01b03958616602088015286019390935292166060840152608083019190915260a082015260c0016102a6565b34801561079a57600080fd5b506103146107a936600461553c565b61293b565b3480156107ba57600080fd5b5061083d6107c9366004615417565b61016360205260009081526040902080546001820154600283015460038401546004850154600586015460068701546007880154600889015460098a0154600a909a015498996001600160a01b03988916999789169896979596949593949092169290919060ff808216916101009004168c565b6040516102a69c9b9a99989796959493929190615b47565b34801561086157600080fd5b5061086a612963565b6040516102a69190615bcb565b34801561088357600080fd5b50610314610892366004615798565b6129f2565b3480156108a357600080fd5b506107556108b236600461553c565b61016460209081526000928352604080842090915290825290208054600182015460028301546003840154600485015460059095015493946001600160a01b039384169492939091169186565b34801561090b57600080fd5b50610162546103e29067ffffffffffffffff1681565b34801561092d57600080fd5b506102db61093c366004615bde565b63f23a6e6160e01b95945050505050565b34801561095957600080fd5b506103e261271081565b60006001600160e01b03198216630271189760e51b148061099457506001600160e01b03198216630a85bd0160e11b145b806109a357506109a382612ad3565b92915050565b60006109bc816109b7612af8565b612b07565b612710821115610a135760405162461bcd60e51b815260206004820152600d60248201527f627073203c3d2031303030302e0000000000000000000000000000000000000060448201526064015b60405180910390fd5b61016180546001600160e01b031916600160a01b67ffffffffffffffff8516026001600160a01b031916176001600160a01b03851690811790915560408051918252602082018490527fe2497bd806ec41a6e0dd992c29a72efc0ef8fec9092d1978fd4a1e00b2f1830491015b60405180910390a1505050565b61015f8054906001906000610aa28385615c5d565b9091555060009050610ab2612af8565b90506000610ac38460000151612b87565b90506000610ad5828660800151612ccf565b905060008111610b125760405162461bcd60e51b81526020600482015260086024820152675155414e5449545960c01b6044820152606401610a0a565b600080527f0bf587d4e74e99cde8c6e4c054a5635772877ff68dbace54cfa272aabdba99186020527f2e5a8a6546a6579ddcdee1c230e851e90e02911b1edbb4e6bce29e62ce9ef8cf5460ff1680610b915750610b917ff94103142c1baabe9ac2b5d1487bf783de9e69cfeea9a72f5c9c94afd7877b8c61050d612af8565b610bdd5760405162461bcd60e51b815260206004820152600760248201527f214c4953544552000000000000000000000000000000000000000000000000006044820152606401610a0a565b600080527feecdd96d2384df3dcc3b798a06e1b5425b0048600906bcf4c21166279a6e5cdb6020527f4be4ab7155dfb840c7e9b0c93044a57446f8382ea3b9bde86d10b5704d906e775460ff1680610c6d575084516001600160a01b031660009081527feecdd96d2384df3dcc3b798a06e1b5425b0048600906bcf4c21166279a6e5cdb602052604090205460ff165b610cb95760405162461bcd60e51b815260206004820152600660248201527f21415353455400000000000000000000000000000000000000000000000000006044820152606401610a0a565b604085015142811015610d0857610e10610cd38242615c75565b10610d055760405162461bcd60e51b815260206004820152600260248201526114d560f21b6044820152606401610a0a565b50425b610d1d84876000015188602001518587612d06565b6000604051806101800160405280878152602001866001600160a01b0316815260200188600001516001600160a01b0316815260200188602001518152602001838152602001886060015184610d739190615c5d565b81526020018481526020018860a001516001600160a01b031681526020018860c0015181526020018860e001518152602001856001811115610db757610db7615b06565b81526020018861010001516001811115610dd357610dd3615b06565b9052600087815261016360209081526040918290208351815590830151600180830180546001600160a01b03199081166001600160a01b0394851617909155938501516002840180548616918416919091179055606085015160038401556080850151600484015560a0850151600584015560c0850151600684015560e085015160078401805490951692169190911790925561010083015160088201556101208301516009820155610140830151600a82018054949550859492939192909160ff19909116908381811115610eab57610eab615b06565b0217905550610160820151600a8201805461ff001916610100836001811115610ed657610ed6615b06565b021790555060019150610ee69050565b8161016001516001811115610efd57610efd615b06565b1415610f53578061010001518161012001511015610f475760405162461bcd60e51b81526020600482015260076024820152665245534552564560c81b6044820152606401610a0a565b610f5385308584612ff8565b846001600160a01b031687600001516001600160a01b0316877f0c5bc74ccdf848b38eb526a154b85085e1d61addf1d100cba2074e039c0b634084604051610f9b9190615c8c565b60405180910390a450505050505050565b600082815260fb6020526040902060010154610fca816109b7612af8565b610fd4838361314e565b505050565b610fe1612af8565b6001600160a01b0316816001600160a01b0316146110675760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608401610a0a565b6110718282613171565b5050565b600260015414156110c85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a0a565b60026001819055600086815261016360205260409020015485906001600160a01b031661111d5760405162461bcd60e51b8152602060048201526003602482015262444e4560e81b6044820152606401610a0a565b600086815261016360209081526040808320815161018081018352815481526001808301546001600160a01b039081169583019590955260028301548516938201939093526003820154606082015260048201546080820152600582015460a0820152600682015460c0820152600782015490931660e084015260088101546101008401526009810154610120840152600a810154909161014084019160ff16908111156111cd576111cd615b06565b60018111156111de576111de615b06565b8152602001600a820160019054906101000a900460ff16600181111561120657611206615b06565b600181111561121757611217615b06565b815250509050428160a001511180156112335750428160800151105b61127f5760405162461bcd60e51b815260206004820152601160248201527f696e616374697665206c697374696e672e0000000000000000000000000000006044820152606401610a0a565b60006040518060c0016040528089815260200161129a612af8565b6001600160a01b039081168252602082018a905288166040820152606081018790526080018590529050600182610160015160018111156112dd576112dd615b06565b141561137d578160e001516001600160a01b031681606001516001600160a01b0316146113565760405162461bcd60e51b815260206004820152602160248201527f6d7573742075736520617070726f7665642063757272656e637920746f2062696044820152601960fa1b6064820152608401610a0a565b6113698261014001518360c00151612ccf565b60408201526113788282613194565b611463565b6000826101600151600181111561139657611396615b06565b14156114635734156113ea5760405162461bcd60e51b815260206004820152600f60248201527f6e6f2076616c7565206e656564656400000000000000000000000000000000006044820152606401610a0a565b6001600160a01b03861673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee146114145785611436565b7f00000000000000000000000000000000000000000000000000000000000000005b6001600160a01b031660608201526101408201516114549088612ccf565b60408201526114638282613591565b505060018055505050505050565b600260015414156114c45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a0a565b60026001819055600083815261016360205260409020015482906001600160a01b03166115195760405162461bcd60e51b8152602060048201526003602482015262444e4560e81b6044820152606401610a0a565b600083815261016360209081526040808320815161018081018352815481526001808301546001600160a01b039081169583019590955260028301548516938201939093526003820154606082015260048201546080820152600582015460a0820152600682015460c0820152600782015490931660e084015260088101546101008401526009810154610120840152600a810154909161014084019160ff16908111156115c9576115c9615b06565b60018111156115da576115da615b06565b8152602001600a820160019054906101000a900460ff16600181111561160257611602615b06565b600181111561161357611613615b06565b90525090506001816101600151600181111561163157611631615b06565b1461167e5760405162461bcd60e51b815260206004820152600f60248201527f6e6f7420616e2061756374696f6e2e00000000000000000000000000000000006044820152606401610a0a565b600084815261016560209081526040808320815160c0810183528154815260018201546001600160a01b039081169482019490945260028201549281019290925260038101549092166060820152600482015460808083019190915260059092015460a082015290830151909190421080611704575060208201516001600160a01b0316155b9050801561171a5761171583613731565b6117e3565b428360a00151106117935760405162461bcd60e51b815260206004820152602960248201527f63616e6e6f7420636c6f73652061756374696f6e206265666f7265206974206860448201527f617320656e6465642e00000000000000000000000000000000000000000000006064820152608401610a0a565b82602001516001600160a01b0316856001600160a01b031614156117bb576117bb838361389d565b81602001516001600160a01b0316856001600160a01b031614156117e3576117e38383613ac2565b50506001805550505050565b806117f8612af8565b600082815261016360205260409020600101546001600160a01b0390811691161461184e5760405162461bcd60e51b815260206004820152600660248201526510a7aba722a960d11b6044820152606401610a0a565b600082815261016360209081526040808320815161018081018352815481526001808301546001600160a01b039081169583019590955260028301548516938201939093526003820154606082015260048201546080820152600582015460a0820152600682015460c0820152600782015490931660e084015260088101546101008401526009810154610120840152600a810154909161014084019160ff16908111156118fe576118fe615b06565b600181111561190f5761190f615b06565b8152602001600a820160019054906101000a900460ff16600181111561193757611937615b06565b600181111561194857611948615b06565b90525090506000816101600151600181111561196657611966615b06565b146119b35760405162461bcd60e51b815260206004820152600760248201527f21444952454354000000000000000000000000000000000000000000000000006044820152606401610a0a565b6000838152610163602090815260408083208381556001810180546001600160a01b0319908116909155600282018054821690556003820185905560048201859055600582018590556006820185905560078201805490911690556008810184905560098101849055600a01805461ffff191690559083015190516001600160a01b039091169185917f58b0852506006c4be6c7ae72afcd195d9e64d7f5d8947905e914b778e47b7cf39190a3505050565b60026001541415611ab85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a0a565b60026001819055600086815261016360205260409020015485906001600160a01b0316611b0d5760405162461bcd60e51b8152602060048201526003602482015262444e4560e81b6044820152606401610a0a565b600086815261016360209081526040808320815161018081018352815481526001808301546001600160a01b039081169583019590955260028301548516938201939093526003820154606082015260048201546080820152600582015460a0820152600682015460c0820152600782015490931660e084015260088101546101008401526009810154610120840152600a810154909161014084019160ff1690811115611bbd57611bbd615b06565b6001811115611bce57611bce615b06565b8152602001600a820160019054906101000a900460ff166001811115611bf657611bf6615b06565b6001811115611c0757611c07615b06565b90525090506000611c16612af8565b90508160e001516001600160a01b0316856001600160a01b0316148015611c4c575085826101200151611c499190615d55565b84145b611c815760405162461bcd60e51b815260206004820152600660248201526521505249434560d01b6044820152606401610a0a565b6114638282898560e001518a876101200151611c9d9190615d55565b8b613c43565b600054610100900460ff16611cbe5760005460ff1615611cc2565b303b155b611d345760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610a0a565b600054610100900460ff16158015611d56576000805461ffff19166101011790555b611d5e613de2565b611d6784613e57565b61016280546fffffffffffffffffffffffffffffffff19166901f400000000000003841790558451611da1906101609060208801906151d8565b5061016180546001600160e01b031916600160a01b67ffffffffffffffff8516026001600160a01b031916176001600160a01b038516179055611de5600087613ed6565b611e107ff94103142c1baabe9ac2b5d1487bf783de9e69cfeea9a72f5c9c94afd7877b8c6000613ed6565b611e3b7f86d5cf0a6bdc8d859ba3bdc97043337c82a0e609035f378e419298b6a3e00ae66000613ed6565b8015611e4d576000805461ff00191690555b505050505050565b600082815261012d60205260408120611e6e9083613ee0565b9392505050565b6000611e83816109b7612af8565b611e90610160848461525c565b50505050565b60608167ffffffffffffffff811115611eb157611eb1615430565b604051908082528060200260200182016040528015611ee457816020015b6060815260200190600190039081611ecf5790505b50905060005b82811015611f8457611f5430858584818110611f0857611f08615d74565b9050602002810190611f1a9190615d8a565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250613eec92505050565b828281518110611f6657611f66615d74565b60200260200101819052508080611f7c90615dd1565b915050611eea565b5092915050565b60026001541415611fde5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a0a565b600260015583611fec612af8565b600082815261016360205260409020600101546001600160a01b039081169116146120425760405162461bcd60e51b815260206004820152600660248201526510a7aba722a960d11b6044820152606401610a0a565b6000858152610163602052604090206002015485906001600160a01b03166120925760405162461bcd60e51b8152602060048201526003602482015262444e4560e81b6044820152606401610a0a565b600061016460008881526020019081526020016000206000876001600160a01b03166001600160a01b031681526020019081526020016000206040518060c0016040529081600082015481526020016001820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b03168152602001600282015481526020016003820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b031681526020016004820154815260200160058201548152505090506000610163600089815260200190815260200160002060405180610180016040529081600082015481526020016001820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b031681526020016002820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b03168152602001600382015481526020016004820154815260200160058201548152602001600682015481526020016007820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b031681526020016008820154815260200160098201548152602001600a820160009054906101000a900460ff16600181111561227757612277615b06565b600181111561228857612288615b06565b8152602001600a820160019054906101000a900460ff1660018111156122b0576122b0615b06565b60018111156122c1576122c1615b06565b81525050905081606001516001600160a01b0316866001600160a01b03161480156122ef5750816080015185145b6123245760405162461bcd60e51b815260206004820152600660248201526521505249434560d01b6044820152606401610a0a565b428260a00151116123775760405162461bcd60e51b815260206004820152600760248201527f45585049524544000000000000000000000000000000000000000000000000006044820152606401610a0a565b6000888152610164602090815260408083206001600160a01b038b1684529091528082208281556001810180546001600160a01b0319908116909155600282018490556003820180549091169055600481018390556005019190915560608301519083015160808401516114639284928b928392916123f591615d55565b8760400151613c43565b86612408612af8565b600082815261016360205260409020600101546001600160a01b0390811691161461245e5760405162461bcd60e51b815260206004820152600660248201526510a7aba722a960d11b6044820152606401610a0a565b600088815261016360209081526040808320815161018081018352815481526001808301546001600160a01b039081169583019590955260028301548516938201939093526003820154606082015260048201546080820152600582015460a0820152600682015460c0820152600782015490931660e084015260088101546101008401526009810154610120840152600a810154909161014084019160ff169081111561250e5761250e615b06565b600181111561251f5761251f615b06565b8152602001600a820160019054906101000a900460ff16600181111561254757612547615b06565b600181111561255857612558615b06565b815250509050600061256f8261014001518a612ccf565b905060006001836101600151600181111561258c5761258c615b06565b149050816125c75760405162461bcd60e51b81526020600482015260086024820152675155414e5449545960c01b6044820152606401610a0a565b801561265a57826080015142106126205760405162461bcd60e51b815260206004820152600760248201527f53544152544544000000000000000000000000000000000000000000000000006044820152606401610a0a565b8888101561265a5760405162461bcd60e51b81526020600482015260076024820152665245534552564560c81b6044820152606401610a0a565b428610156126a557610e1061266f8742615c75565b106126a15760405162461bcd60e51b815260206004820152600260248201526114d560f21b6044820152606401610a0a565b4295505b600086156126b357866126b9565b83608001515b90506040518061018001604052808d81526020016126d5612af8565b6001600160a01b0316815260200185604001516001600160a01b03168152602001856060015181526020018281526020018760001461271d576127188884615c5d565b612723565b8560a001515b8152602001848152602001896001600160a01b031681526020018b81526020018a8152602001856101400151600181111561276057612760615b06565b8152602001856101600151600181111561277c5761277c615b06565b905260008d815261016360209081526040918290208351815590830151600180830180546001600160a01b03199081166001600160a01b0394851617909155938501516002840180548616918416919091179055606085015160038401556080850151600484015560a0850151600584015560c0850151600684015560e085015160078401805490951692169190911790925561010083015160088201556101208301516009820155610140830151600a8201805492939192909160ff1990911690838181111561284f5761284f615b06565b0217905550610160820151600a8201805461ff00191661010083600181111561287a5761287a615b06565b0217905550505060c084015183146128da5781156128a6576128a63085602001518660c0015187612ff8565b6128c484602001518560400151866060015186886101400151612d06565b81156128da576128da8460200151308587612ff8565b83602001516001600160a01b03168c7fbbea26162edf2bc6a0255bf144ec4dd044302a301ef7d32daa835a2ddacfdef060405160405180910390a3505050505050505050505050565b600081815261012d602052604081206109a390613ff7565b600082815260fb6020526040902060010154612959816109b7612af8565b610fd48383613171565b610160805461297190615dec565b80601f016020809104026020016040519081016040528092919081815260200182805461299d90615dec565b80156129ea5780601f106129bf576101008083540402835291602001916129ea565b820191906000526020600020905b8154815290600101906020018083116129cd57829003601f168201915b505050505081565b6000612a00816109b7612af8565b6127108210612a515760405162461bcd60e51b815260206004820152600c60248201527f696e76616c6964204250532e00000000000000000000000000000000000000006044820152606401610a0a565b610162805467ffffffffffffffff84811668010000000000000000026fffffffffffffffffffffffffffffffff19909216908616171790556040517f441ed6470e96704c3f8c9e70c209107078aab3f17311385e886081b91aa7508890610a809085908590918252602082015260400190565b6001600160a01b03163b151590565b60006001600160e01b03198216635a05180f60e01b14806109a357506109a382614001565b6000612b02614036565b905090565b600082815260fb602090815260408083206001600160a01b038516845290915290205460ff1661107157612b45816001600160a01b03166014614060565b612b50836020614060565b604051602001612b61929190615e27565b60408051601f198184030181529082905262461bcd60e51b8252610a0a91600401615bcb565b6040516301ffc9a760e01b8152636cdb3d1360e11b60048201526000906001600160a01b038316906301ffc9a790602401602060405180830381865afa158015612bd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bf99190615ea8565b15612c0657506000919050565b6040516301ffc9a760e01b81526380ac58cd60e01b60048201526001600160a01b038316906301ffc9a790602401602060405180830381865afa158015612c51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c759190615ea8565b15612c8257506001919050565b60405162461bcd60e51b815260206004820181905260248201527f746f6b656e206d7573742062652045524331313535206f72204552433732312e6044820152606401610a0a565b919050565b600081612cde575060006109a3565b6001836001811115612cf257612cf2615b06565b14612cfd5781611e6e565b50600192915050565b30600080836001811115612d1c57612d1c615b06565b1415612e1657604051627eeac760e11b81526001600160a01b0388811660048301526024820187905285919088169062fdd58e90604401602060405180830381865afa158015612d70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d949190615eca565b10158015612e0f575060405163e985e9c560e01b81526001600160a01b038881166004830152838116602483015287169063e985e9c590604401602060405180830381865afa158015612deb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e0f9190615ea8565b9050612fa2565b6001836001811115612e2a57612e2a615b06565b1415612fa2576040516331a9108f60e11b8152600481018690526001600160a01b038089169190881690636352211e90602401602060405180830381865afa158015612e7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e9e9190615ee3565b6001600160a01b0316148015612f9f575060405163020604bf60e21b8152600481018690526001600160a01b03808416919088169063081812fc90602401602060405180830381865afa158015612ef9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f1d9190615ee3565b6001600160a01b03161480612f9f575060405163e985e9c560e01b81526001600160a01b038881166004830152838116602483015287169063e985e9c590604401602060405180830381865afa158015612f7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f9f9190615ea8565b90505b80612fef5760405162461bcd60e51b815260206004820152600760248201527f2142414c4e4654000000000000000000000000000000000000000000000000006044820152606401610a0a565b50505050505050565b6000816101400151600181111561301157613011615b06565b14156130a65760408082015160608301519151637921219560e11b81526001600160a01b038781166004830152868116602483015260448201939093526064810185905260a06084820152600060a482015291169063f242432a9060c401600060405180830381600087803b15801561308957600080fd5b505af115801561309d573d6000803e3d6000fd5b50505050611e90565b600181610140015160018111156130bf576130bf615b06565b1415611e905760408082015160608301519151635c46a7ef60e11b81526001600160a01b03878116600483015286811660248301526044820193909352608060648201526000608482015291169063b88d4fde9060a401600060405180830381600087803b15801561313057600080fd5b505af1158015613144573d6000803e3d6000fd5b5050505050505050565b6131588282614209565b600082815261012d60205260409020610fd490826142ac565b61317b82826142c1565b600082815261012d60205260409020610fd49082614362565b8151600090815261016560209081526040808320815160c0810183528154815260018201546001600160a01b039081169482019490945260028201549281018390526003820154909316606084015260048101546080840181905260059091015460a08401529192916132079190615d55565b905060008360400151846080015161321f9190615d55565b6101208601519091507f0000000000000000000000000000000000000000000000000000000000000000901580159061326c57508560c001518661012001516132689190615d55565b8210155b156132805761327b8686613ac2565b6134ab565b61329f8660c001518761010001516132989190615d55565b8484614377565b6132eb5760405162461bcd60e51b815260206004820152601060248201527f6e6f742077696e6e696e67206269642e000000000000000000000000000000006044820152606401610a0a565b85516000908152610165602090815260409182902087518155908701516001820180546001600160a01b03199081166001600160a01b039384161790915592880151600283015560608801516003830180549094169116179091556080860151600482015560a080870151600590920191909155610162549087015167ffffffffffffffff9091169061337f904290615c75565b116134ab576101625460a08701805167ffffffffffffffff909216916133a6908390615c5d565b9052508551600090815261016360209081526040918290208851815590880151600180830180546001600160a01b03199081166001600160a01b0394851617909155938a0151600284018054861691841691909117905560608a0151600384015560808a0151600484015560a08a0151600584015560c08a0151600684015560e08a015160078401805490951692169190911790925561010088015160088201556101208801516009820155610140880151600a820180548a9460ff1990911690838181111561347857613478615b06565b0217905550610160820151600a8201805461ff0019166101008360018111156134a3576134a3615b06565b021790555050505b60208401516001600160a01b0316158015906134c75750600083115b156134e1576134e18660e0015130866020015186856143d9565b6134f68660e0015186602001513085856143d9565b856101600151600181111561350d5761350d615b06565b85602001516001600160a01b031687600001517f8a412352601a288b3de40254a9de2ab14a497aa3638a7e558480680a56e2705d886040015189604001518a6080015161355a9190615d55565b6060808c01516040805194855260208501939093526001600160a01b031691830191909152015b60405180910390a4505050505050565b8160c001518160400151111580156135ad575060008260c00151115b6135f95760405162461bcd60e51b815260206004820152601f60248201527f696e73756666696369656e7420746f6b656e7320696e206c697374696e672e006044820152606401610a0a565b61361f816020015182606001518360400151846080015161361a9190615d55565b61455a565b815160009081526101646020908152604080832082850180516001600160a01b0390811686529190935292819020845181559151600180840180549286166001600160a01b03199384161790559185015160028401556060850151600384018054919095169116179092556080830151600482015560a0830151600590910155610160830151908111156136b5576136b5615b06565b81602001516001600160a01b031683600001517f8a412352601a288b3de40254a9de2ab14a497aa3638a7e558480680a56e2705d8460400151856040015186608001516137029190615d55565b6060878101516040805194855260208501939093526001600160a01b0316838301529051918290030190a45050565b613739612af8565b8151600090815261016360205260409020600101546001600160a01b039081169116146137b35760405162461bcd60e51b815260206004820152602260248201527f63616c6c6572206973206e6f7420746865206c697374696e672063726561746f604482015261391760f11b6064820152608401610a0a565b805160009081526101636020908152604082208281556001810180546001600160a01b031990811690915560028201805482169055600382018490556004820184905560058201849055600682018490556007820180549091169055600881018390556009810192909255600a909101805461ffff1916905581015160c082015161384091309184612ff8565b600161384a612af8565b8251602080850151604080516001600160a01b0392831681526000938101939093529316927f572cdc5ca5e918473319d0f4737494e4709ac879a7d0bcd11ce1bef24b24e81d910160405180910390a450565b60008260c0015182608001516138b39190615d55565b600060c085018181524260a087019081528651835261016360209081526040938490208851815590880151600180830180546001600160a01b039384166001600160a01b031991821617909155958a015160028401805491841691881691909117905560608a0151600384015560808a01516004840155925160058301559251600682015560e08801516007820180549190941694169390931790915561010086015160088301556101208601516009830155610140860151600a8301805494955087949192909160ff191690838181111561399157613991615b06565b0217905550610160820151600a8201805461ff0019166101008360018111156139bc576139bc615b06565b02179055505060006080840181815285518252610165602090815260409283902086518155818701516001820180546001600160a01b03199081166001600160a01b039384161790915594880151600283015560608801516003830180549096169116179093559051600483015560a085015160059092019190915584015160e0850151613a4f92503091908487614692565b6000613a59612af8565b6001600160a01b031684600001517f572cdc5ca5e918473319d0f4737494e4709ac879a7d0bcd11ce1bef24b24e81d86602001518660200151604051613ab59291906001600160a01b0392831681529116602082015260400190565b60405180910390a4505050565b604081810180514260a086810191825260008085528751815261016560209081528682208851815581890151600180830180546001600160a01b03199081166001600160a01b039485161790915598516002808501919091556060808d0151600380870180548e16928716929092179091556080808f0151600480890191909155998f01516005978801558f5189526101638852978d90208f518155968f015187850180548e169187169190911790559b8e015191860180548c16928516929092179091558c015199840199909955928a01519382019390935592519183019190915560c0870151600683015560e087015160078301805490951691161790925561010085015160088301556101208501516009830155610140850151600a83018054929487949360ff1916908381811115613c0057613c00615b06565b0217905550610160820151600a8201805461ff001916610100836001811115613c2b57613c2b615b06565b0217905550905050613a4f3083602001518386612ff8565b613c508686838686614917565b808660c001818151613c629190615c75565b9052508551600090815261016360209081526040918290208851815590880151600180830180546001600160a01b03199081166001600160a01b0394851617909155938a0151600284018054861691841691909117905560608a0151600384015560808a0151600484015560a08a0151600584015560c08a0151600684015560e08a015160078401805490951692169190911790925561010088015160088201556101208801516009820155610140880151600a820180548a9460ff19909116908381811115613d3457613d34615b06565b0217905550610160820151600a8201805461ff001916610100836001811115613d5f57613d5f615b06565b0217905550905050613d7885876020015185858a614692565b613d888660200151858389612ff8565b602080870151604080890151895182516001600160a01b038a81168252958101879052928301879052928416931691907f306e6cde5eb293794d557a3a6c844de939e6206b05e6910451c512852bf654a590606001613581565b600054610100900460ff16613e4d5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610a0a565b613e55614af1565b565b600054610100900460ff16613ec25760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610a0a565b613eca614b62565b613ed381614bcd565b50565b611071828261314e565b6000611e6e8383614ca0565b60606001600160a01b0383163b613f6b5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e747261637400000000000000000000000000000000000000000000000000006064820152608401610a0a565b600080846001600160a01b031684604051613f869190615f00565b600060405180830381855af49150503d8060008114613fc1576040519150601f19603f3d011682016040523d82523d6000602084013e613fc6565b606091505b5091509150613fee8282604051806060016040528060278152602001615f9a60279139614cca565b95945050505050565b60006109a3825490565b60006001600160e01b03198216637965db0b60e01b14806109a357506301ffc9a760e01b6001600160e01b03198316146109a3565b3360009081526065602052604081205460ff161561405b575060131936013560601c90565b503390565b6060600061406f836002615d55565b61407a906002615c5d565b67ffffffffffffffff81111561409257614092615430565b6040519080825280601f01601f1916602001820160405280156140bc576020820181803683370190505b509050600360fc1b816000815181106140d7576140d7615d74565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061410657614106615d74565b60200101906001600160f81b031916908160001a905350600061412a846002615d55565b614135906001615c5d565b90505b60018111156141ba577f303132333435363738396162636465660000000000000000000000000000000085600f166010811061417657614176615d74565b1a60f81b82828151811061418c5761418c615d74565b60200101906001600160f81b031916908160001a90535060049490941c936141b381615f1c565b9050614138565b508315611e6e5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610a0a565b600082815260fb602090815260408083206001600160a01b038516845290915290205460ff1661107157600082815260fb602090815260408083206001600160a01b03851684529091529020805460ff19166001179055614268612af8565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000611e6e836001600160a01b038416614d03565b600082815260fb602090815260408083206001600160a01b038516845290915290205460ff161561107157600082815260fb602090815260408083206001600160a01b03851684529091529020805460ff1916905561431e612af8565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6000611e6e836001600160a01b038416614d52565b600082614388575082811015611e6e565b82821180156143d157506101625468010000000000000000900467ffffffffffffffff16836127106143ba8286615c75565b6143c49190615d55565b6143ce9190615f33565b10155b949350505050565b816143e357614553565b6001600160a01b03851673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1415614547576001600160a01b03841630141561448357604051632e1a7d4d60e01b8152600481018390526001600160a01b03821690632e1a7d4d90602401600060405180830381600087803b15801561445b57600080fd5b505af115801561446f573d6000803e3d6000fd5b5050505061447e838383614e45565b614553565b6001600160a01b03831630141561453c573482146144e35760405162461bcd60e51b815260206004820152601360248201527f6d73672e76616c756520213d20616d6f756e74000000000000000000000000006044820152606401610a0a565b806001600160a01b031663d0e30db0836040518263ffffffff1660e01b81526004016000604051808303818588803b15801561451e57600080fd5b505af1158015614532573d6000803e3d6000fd5b5050505050614553565b61447e838383614e45565b61455385858585614f0a565b5050505050565b6040516370a0823160e01b81526001600160a01b0384811660048301528291908416906370a0823190602401602060405180830381865afa1580156145a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145c79190615eca565b101580156146465750604051636eb1769f60e11b81526001600160a01b03848116600483015230602483015282919084169063dd62ed3e90604401602060405180830381865afa15801561461f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906146439190615eca565b10155b610fd45760405162461bcd60e51b815260206004820152600660248201527f2142414c323000000000000000000000000000000000000000000000000000006044820152606401610a0a565b61016154600090612710906146b890600160a01b900467ffffffffffffffff1685615d55565b6146c29190615f33565b60405163085b49ad60e41b81523060048201526001602482015290915060009081906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906385b49ad0906044016040805180830381865afa158015614734573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906147589190615f55565b9092509050600061271061476c8388615d55565b6147769190615f33565b905060008086604001516001600160a01b0316632a55205a88606001518a6040518363ffffffff1660e01b81526004016147ba929190918252602082015260400190565b6040805180830381865afa9250505080156147f2575060408051601f3d908101601f191682019092526147ef91810190615f55565b60015b6147fb57614886565b6001600160a01b038216158015906148135750600081115b156148835789856148248a84615c5d565b61482e9190615c5d565b111561487c5760405162461bcd60e51b815260206004820152601560248201527f66656573206578636565642074686520707269636500000000000000000000006044820152606401610a0a565b8192508093505b50505b610161547f0000000000000000000000000000000000000000000000000000000000000000906148c4908b908e906001600160a01b03168a856143d9565b6148d18a8d8486856143d9565b6148de8a8d8887856143d9565b6149098a8d8d876148ef888d615c5d565b6148f99190615c5d565b614903908e615c75565b856143d9565b505050505050505050505050565b6000856101600151600181111561493057614930615b06565b1461497d5760405162461bcd60e51b815260206004820152601860248201527f63616e6e6f74206275792066726f6d206c697374696e672e00000000000000006044820152606401610a0a565b60008560c001511180156149915750600083115b80156149a157508460c001518311155b6149ed5760405162461bcd60e51b815260206004820152601960248201527f696e76616c696420616d6f756e74206f6620746f6b656e732e000000000000006044820152606401610a0a565b8460a0015142108015614a035750846080015142115b614a4f5760405162461bcd60e51b815260206004820152601760248201527f6e6f742077697468696e2073616c652077696e646f772e0000000000000000006044820152606401610a0a565b6001600160a01b03821673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1415614ac857803414614ac35760405162461bcd60e51b815260206004820152601260248201527f6d73672e76616c756520213d20707269636500000000000000000000000000006044820152606401610a0a565b614ad3565b614ad384838361455a565b61455385602001518660400151876060015186896101400151612d06565b600054610100900460ff16614b5c5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610a0a565b60018055565b600054610100900460ff16613e555760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610a0a565b600054610100900460ff16614c385760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610a0a565b60005b815181101561107157600160656000848481518110614c5c57614c5c615d74565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580614c9881615dd1565b915050614c3b565b6000826000018281548110614cb757614cb7615d74565b9060005260206000200154905092915050565b60608315614cd9575081611e6e565b825115614ce95782518084602001fd5b8160405162461bcd60e51b8152600401610a0a9190615bcb565b6000818152600183016020526040812054614d4a575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556109a3565b5060006109a3565b60008181526001830160205260408120548015614e3b576000614d76600183615c75565b8554909150600090614d8a90600190615c75565b9050818114614def576000866000018281548110614daa57614daa615d74565b9060005260206000200154905080876000018481548110614dcd57614dcd615d74565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080614e0057614e00615f83565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506109a3565b60009150506109a3565b6000836001600160a01b03168360405160006040518083038185875af1925050503d8060008114614e92576040519150601f19603f3d011682016040523d82523d6000602084013e614e97565b606091505b5050905080611e9057816001600160a01b031663d0e30db0846040518263ffffffff1660e01b81526004016000604051808303818588803b158015614edb57600080fd5b505af1158015614eef573d6000803e3d6000fd5b50611e90935050506001600160a01b03841690508585614f68565b816001600160a01b0316836001600160a01b03161415614f2957611e90565b6001600160a01b038316301415614f5357614f4e6001600160a01b0385168383614f68565b611e90565b611e906001600160a01b038516848484614fe0565b6040516001600160a01b038316602482015260448101829052610fd490849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b031990931692909217909152615018565b6040516001600160a01b0380851660248301528316604482015260648101829052611e909085906323b872dd60e01b90608401614f94565b600061506d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166150fd9092919063ffffffff16565b805190915015610fd4578080602001905181019061508b9190615ea8565b610fd45760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610a0a565b60606143d18484600085856001600160a01b0385163b61515f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a0a565b600080866001600160a01b0316858760405161517b9190615f00565b60006040518083038185875af1925050503d80600081146151b8576040519150601f19603f3d011682016040523d82523d6000602084013e6151bd565b606091505b50915091506151cd828286614cca565b979650505050505050565b8280546151e490615dec565b90600052602060002090601f016020900481019282615206576000855561524c565b82601f1061521f57805160ff191683800117855561524c565b8280016001018555821561524c579182015b8281111561524c578251825591602001919060010190615231565b506152589291506152d0565b5090565b82805461526890615dec565b90600052602060002090601f01602090048101928261528a576000855561524c565b82601f106152a35782800160ff1982351617855561524c565b8280016001018555821561524c579182015b8281111561524c5782358255916020019190600101906152b5565b5b8082111561525857600081556001016152d1565b6000602082840312156152f757600080fd5b81356001600160e01b031981168114611e6e57600080fd5b6001600160a01b0381168114613ed357600080fd5b8035612cca8161530f565b60008083601f84011261534157600080fd5b50813567ffffffffffffffff81111561535957600080fd5b60208301915083602082850101111561537157600080fd5b9250929050565b60008060008060006080868803121561539057600080fd5b853561539b8161530f565b945060208601356153ab8161530f565b935060408601359250606086013567ffffffffffffffff8111156153ce57600080fd5b6153da8882890161532f565b969995985093965092949392505050565b600080604083850312156153fe57600080fd5b82356154098161530f565b946020939093013593505050565b60006020828403121561542957600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051610120810167ffffffffffffffff8111828210171561546a5761546a615430565b60405290565b604051601f8201601f1916810167ffffffffffffffff8111828210171561549957615499615430565b604052919050565b803560028110612cca57600080fd5b600061012082840312156154c357600080fd5b6154cb615446565b6154d483615324565b81526020830135602082015260408301356040820152606083013560608201526080830135608082015261550a60a08401615324565b60a082015260c083013560c082015260e083013560e08201526101006155318185016154a1565b908201529392505050565b6000806040838503121561554f57600080fd5b8235915060208301356155618161530f565b809150509250929050565b60006020828403121561557e57600080fd5b8135611e6e8161530f565b600080600080600060a086880312156155a157600080fd5b853594506020860135935060408601356155ba8161530f565b94979396509394606081013594506080013592915050565b600080600080600060a086880312156155ea57600080fd5b8535945060208601356155fc8161530f565b93506040860135925060608601356156138161530f565b949793965091946080013592915050565b600067ffffffffffffffff83111561563e5761563e615430565b615651601f8401601f1916602001615470565b905082815283838301111561566557600080fd5b828260208301376000602084830101529392505050565b600067ffffffffffffffff82111561569657615696615430565b5060051b60200190565b600080600080600060a086880312156156b857600080fd5b85356156c38161530f565b945060208681013567ffffffffffffffff808211156156e157600080fd5b818901915089601f8301126156f557600080fd5b6157038a8335858501615624565b9650604089013591508082111561571957600080fd5b508701601f8101891361572b57600080fd5b803561573e6157398261567c565b615470565b81815260059190911b8201830190838101908b83111561575d57600080fd5b928401925b828410156157845783356157758161530f565b82529284019290840190615762565b809750505050505061561360608701615324565b600080604083850312156157ab57600080fd5b50508035926020909101359150565b600080602083850312156157cd57600080fd5b823567ffffffffffffffff8111156157e457600080fd5b6157f08582860161532f565b90969095509350505050565b6000806020838503121561580f57600080fd5b823567ffffffffffffffff8082111561582757600080fd5b818501915085601f83011261583b57600080fd5b81358181111561584a57600080fd5b8660208260051b850101111561585f57600080fd5b60209290920196919550909350505050565b60005b8381101561588c578181015183820152602001615874565b83811115611e905750506000910152565b600081518084526158b5816020860160208601615871565b601f01601f19169290920160200192915050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b8281101561591e57603f1988860301845261590c85835161589d565b945092850192908501906001016158f0565b5092979650505050505050565b6000806000806080858703121561594157600080fd5b8435935060208501356159538161530f565b925060408501356159638161530f565b9396929550929360600135925050565b600082601f83011261598457600080fd5b813560206159946157398361567c565b82815260059290921b840181019181810190868411156159b357600080fd5b8286015b848110156159ce57803583529183019183016159b7565b509695505050505050565b600082601f8301126159ea57600080fd5b611e6e83833560208501615624565b600080600080600060a08688031215615a1157600080fd5b8535615a1c8161530f565b94506020860135615a2c8161530f565b9350604086013567ffffffffffffffff80821115615a4957600080fd5b615a5589838a01615973565b94506060880135915080821115615a6b57600080fd5b615a7789838a01615973565b93506080880135915080821115615a8d57600080fd5b50615a9a888289016159d9565b9150509295509295909350565b600080600080600080600060e0888a031215615ac257600080fd5b873596506020880135955060408801359450606088013593506080880135615ae98161530f565b9699959850939692959460a0840135945060c09093013592915050565b634e487b7160e01b600052602160045260246000fd5b60028110613ed357634e487b7160e01b600052602160045260246000fd5b615b4381615b1c565b9052565b6000610180820190508d82526001600160a01b03808e166020840152808d1660408401528b60608401528a60808401528960a08401528860c084015280881660e0840152508561010083015284610120830152615ba384615b1c565b83610140830152615bb383615b1c565b826101608301529d9c50505050505050505050505050565b602081526000611e6e602083018461589d565b600080600080600060a08688031215615bf657600080fd5b8535615c018161530f565b94506020860135615c118161530f565b93506040860135925060608601359150608086013567ffffffffffffffff811115615c3b57600080fd5b615a9a888289016159d9565b634e487b7160e01b600052601160045260246000fd5b60008219821115615c7057615c70615c47565b500190565b600082821015615c8757615c87615c47565b500390565b81518152602080830151610180830191615cb0908401826001600160a01b03169052565b506040830151615ccb60408401826001600160a01b03169052565b50606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e0830151615d0e60e08401826001600160a01b03169052565b506101008381015190830152610120808401519083015261014080840151615d3882850182615b3a565b505061016080840151615d4d82850182615b3a565b505092915050565b6000816000190483118215151615615d6f57615d6f615c47565b500290565b634e487b7160e01b600052603260045260246000fd5b6000808335601e19843603018112615da157600080fd5b83018035915067ffffffffffffffff821115615dbc57600080fd5b60200191503681900382131561537157600080fd5b6000600019821415615de557615de5615c47565b5060010190565b600181811c90821680615e0057607f821691505b60208210811415615e2157634e487b7160e01b600052602260045260246000fd5b50919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351615e5f816017850160208801615871565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351615e9c816028840160208801615871565b01602801949350505050565b600060208284031215615eba57600080fd5b81518015158114611e6e57600080fd5b600060208284031215615edc57600080fd5b5051919050565b600060208284031215615ef557600080fd5b8151611e6e8161530f565b60008251615f12818460208701615871565b9190910192915050565b600081615f2b57615f2b615c47565b506000190190565b600082615f5057634e487b7160e01b600052601260045260246000fd5b500490565b60008060408385031215615f6857600080fd5b8251615f738161530f565b6020939093015192949293505050565b634e487b7160e01b600052603160045260246000fdfe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a164736f6c634300080c000a000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000008c4b615040ebd2618e8fc3b20cefe9abafdeb0ea
Deployed Bytecode
0x60806040526004361061026e5760003560e01c8063a217fddf11610153578063d45573f6116100cb578063ea0e02411161007f578063ec91f2a411610064578063ec91f2a4146108ff578063f23a6e6114610921578063fd967f471461094d57600080fd5b8063ea0e024114610877578063ebdfbce51461089757600080fd5b8063d547741f116100b0578063d547741f1461078e578063de74e57b146107ae578063e8a3d4851461085557600080fd5b8063d45573f6146106c0578063d4ac9b8c146106f857600080fd5b8063c4b5b15f11610122578063ca15c87311610107578063ca15c87314610639578063cb2ef6f714610659578063cf8267b11461068c57600080fd5b8063c4b5b15f14610602578063c78b616c1461062257600080fd5b8063a217fddf14610574578063ac9650d814610589578063b13c0e63146105b6578063bc197c81146105d657600080fd5b80635fef45e7116101e65780638c8a84e2116101b557806391d148541161019a57806391d14854146104f2578063938e3d7b14610538578063a0a8e4601461055857600080fd5b80638c8a84e21461049a5780639010d07c146104ba57600080fd5b80635fef45e7146104345780636bab66ae146104475780637506c84a146104675780637687ab021461048757600080fd5b8063296f4e161161023d57806336568abe1161022257806336568abe146103945780634e03f28d146103b4578063572b6c05146103fb57600080fd5b8063296f4e16146103545780632f2ff15d1461037457600080fd5b806301ffc9a71461027a578063150b7a02146102af5780631e7ac488146102f4578063248a9ca31461031657600080fd5b3661027557005b600080fd5b34801561028657600080fd5b5061029a6102953660046152e5565b610963565b60405190151581526020015b60405180910390f35b3480156102bb57600080fd5b506102db6102ca366004615378565b630a85bd0160e11b95945050505050565b6040516001600160e01b031990911681526020016102a6565b34801561030057600080fd5b5061031461030f3660046153eb565b6109a9565b005b34801561032257600080fd5b50610346610331366004615417565b600090815260fb602052604090206001015490565b6040519081526020016102a6565b34801561036057600080fd5b5061031461036f3660046154b0565b610a8d565b34801561038057600080fd5b5061031461038f36600461553c565b610fac565b3480156103a057600080fd5b506103146103af36600461553c565b610fd9565b3480156103c057600080fd5b50610162546103e29068010000000000000000900467ffffffffffffffff1681565b60405167ffffffffffffffff90911681526020016102a6565b34801561040757600080fd5b5061029a61041636600461556c565b6001600160a01b031660009081526065602052604090205460ff1690565b610314610442366004615589565b611075565b34801561045357600080fd5b5061031461046236600461553c565b611471565b34801561047357600080fd5b50610314610482366004615417565b6117ef565b6103146104953660046155d2565b611a65565b3480156104a657600080fd5b506103146104b53660046156a0565b611ca3565b3480156104c657600080fd5b506104da6104d5366004615798565b611e55565b6040516001600160a01b0390911681526020016102a6565b3480156104fe57600080fd5b5061029a61050d36600461553c565b600091825260fb602090815260408084206001600160a01b0393909316845291905290205460ff1690565b34801561054457600080fd5b506103146105533660046157ba565b611e75565b34801561056457600080fd5b50604051600281526020016102a6565b34801561058057600080fd5b50610346600081565b34801561059557600080fd5b506105a96105a43660046157fc565b611e96565b6040516102a691906158c9565b3480156105c257600080fd5b506103146105d136600461592b565b611f8b565b3480156105e257600080fd5b506102db6105f13660046159f9565b63bc197c8160e01b95945050505050565b34801561060e57600080fd5b5061031461061d366004615aa7565b6123ff565b34801561062e57600080fd5b5061034661015f5481565b34801561064557600080fd5b50610346610654366004615417565b612923565b34801561066557600080fd5b507f4d61726b6574706c616365000000000000000000000000000000000000000000610346565b34801561069857600080fd5b506104da7f0000000000000000000000008c4b615040ebd2618e8fc3b20cefe9abafdeb0ea81565b3480156106cc57600080fd5b5061016154604080516001600160a01b0383168152600160a01b90920461ffff166020830152016102a6565b34801561070457600080fd5b50610755610713366004615417565b6101656020526000908152604090208054600182015460028301546003840154600485015460059095015493946001600160a01b039384169492939091169186565b604080519687526001600160a01b03958616602088015286019390935292166060840152608083019190915260a082015260c0016102a6565b34801561079a57600080fd5b506103146107a936600461553c565b61293b565b3480156107ba57600080fd5b5061083d6107c9366004615417565b61016360205260009081526040902080546001820154600283015460038401546004850154600586015460068701546007880154600889015460098a0154600a909a015498996001600160a01b03988916999789169896979596949593949092169290919060ff808216916101009004168c565b6040516102a69c9b9a99989796959493929190615b47565b34801561086157600080fd5b5061086a612963565b6040516102a69190615bcb565b34801561088357600080fd5b50610314610892366004615798565b6129f2565b3480156108a357600080fd5b506107556108b236600461553c565b61016460209081526000928352604080842090915290825290208054600182015460028301546003840154600485015460059095015493946001600160a01b039384169492939091169186565b34801561090b57600080fd5b50610162546103e29067ffffffffffffffff1681565b34801561092d57600080fd5b506102db61093c366004615bde565b63f23a6e6160e01b95945050505050565b34801561095957600080fd5b506103e261271081565b60006001600160e01b03198216630271189760e51b148061099457506001600160e01b03198216630a85bd0160e11b145b806109a357506109a382612ad3565b92915050565b60006109bc816109b7612af8565b612b07565b612710821115610a135760405162461bcd60e51b815260206004820152600d60248201527f627073203c3d2031303030302e0000000000000000000000000000000000000060448201526064015b60405180910390fd5b61016180546001600160e01b031916600160a01b67ffffffffffffffff8516026001600160a01b031916176001600160a01b03851690811790915560408051918252602082018490527fe2497bd806ec41a6e0dd992c29a72efc0ef8fec9092d1978fd4a1e00b2f1830491015b60405180910390a1505050565b61015f8054906001906000610aa28385615c5d565b9091555060009050610ab2612af8565b90506000610ac38460000151612b87565b90506000610ad5828660800151612ccf565b905060008111610b125760405162461bcd60e51b81526020600482015260086024820152675155414e5449545960c01b6044820152606401610a0a565b600080527f0bf587d4e74e99cde8c6e4c054a5635772877ff68dbace54cfa272aabdba99186020527f2e5a8a6546a6579ddcdee1c230e851e90e02911b1edbb4e6bce29e62ce9ef8cf5460ff1680610b915750610b917ff94103142c1baabe9ac2b5d1487bf783de9e69cfeea9a72f5c9c94afd7877b8c61050d612af8565b610bdd5760405162461bcd60e51b815260206004820152600760248201527f214c4953544552000000000000000000000000000000000000000000000000006044820152606401610a0a565b600080527feecdd96d2384df3dcc3b798a06e1b5425b0048600906bcf4c21166279a6e5cdb6020527f4be4ab7155dfb840c7e9b0c93044a57446f8382ea3b9bde86d10b5704d906e775460ff1680610c6d575084516001600160a01b031660009081527feecdd96d2384df3dcc3b798a06e1b5425b0048600906bcf4c21166279a6e5cdb602052604090205460ff165b610cb95760405162461bcd60e51b815260206004820152600660248201527f21415353455400000000000000000000000000000000000000000000000000006044820152606401610a0a565b604085015142811015610d0857610e10610cd38242615c75565b10610d055760405162461bcd60e51b815260206004820152600260248201526114d560f21b6044820152606401610a0a565b50425b610d1d84876000015188602001518587612d06565b6000604051806101800160405280878152602001866001600160a01b0316815260200188600001516001600160a01b0316815260200188602001518152602001838152602001886060015184610d739190615c5d565b81526020018481526020018860a001516001600160a01b031681526020018860c0015181526020018860e001518152602001856001811115610db757610db7615b06565b81526020018861010001516001811115610dd357610dd3615b06565b9052600087815261016360209081526040918290208351815590830151600180830180546001600160a01b03199081166001600160a01b0394851617909155938501516002840180548616918416919091179055606085015160038401556080850151600484015560a0850151600584015560c0850151600684015560e085015160078401805490951692169190911790925561010083015160088201556101208301516009820155610140830151600a82018054949550859492939192909160ff19909116908381811115610eab57610eab615b06565b0217905550610160820151600a8201805461ff001916610100836001811115610ed657610ed6615b06565b021790555060019150610ee69050565b8161016001516001811115610efd57610efd615b06565b1415610f53578061010001518161012001511015610f475760405162461bcd60e51b81526020600482015260076024820152665245534552564560c81b6044820152606401610a0a565b610f5385308584612ff8565b846001600160a01b031687600001516001600160a01b0316877f0c5bc74ccdf848b38eb526a154b85085e1d61addf1d100cba2074e039c0b634084604051610f9b9190615c8c565b60405180910390a450505050505050565b600082815260fb6020526040902060010154610fca816109b7612af8565b610fd4838361314e565b505050565b610fe1612af8565b6001600160a01b0316816001600160a01b0316146110675760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608401610a0a565b6110718282613171565b5050565b600260015414156110c85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a0a565b60026001819055600086815261016360205260409020015485906001600160a01b031661111d5760405162461bcd60e51b8152602060048201526003602482015262444e4560e81b6044820152606401610a0a565b600086815261016360209081526040808320815161018081018352815481526001808301546001600160a01b039081169583019590955260028301548516938201939093526003820154606082015260048201546080820152600582015460a0820152600682015460c0820152600782015490931660e084015260088101546101008401526009810154610120840152600a810154909161014084019160ff16908111156111cd576111cd615b06565b60018111156111de576111de615b06565b8152602001600a820160019054906101000a900460ff16600181111561120657611206615b06565b600181111561121757611217615b06565b815250509050428160a001511180156112335750428160800151105b61127f5760405162461bcd60e51b815260206004820152601160248201527f696e616374697665206c697374696e672e0000000000000000000000000000006044820152606401610a0a565b60006040518060c0016040528089815260200161129a612af8565b6001600160a01b039081168252602082018a905288166040820152606081018790526080018590529050600182610160015160018111156112dd576112dd615b06565b141561137d578160e001516001600160a01b031681606001516001600160a01b0316146113565760405162461bcd60e51b815260206004820152602160248201527f6d7573742075736520617070726f7665642063757272656e637920746f2062696044820152601960fa1b6064820152608401610a0a565b6113698261014001518360c00151612ccf565b60408201526113788282613194565b611463565b6000826101600151600181111561139657611396615b06565b14156114635734156113ea5760405162461bcd60e51b815260206004820152600f60248201527f6e6f2076616c7565206e656564656400000000000000000000000000000000006044820152606401610a0a565b6001600160a01b03861673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee146114145785611436565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc25b6001600160a01b031660608201526101408201516114549088612ccf565b60408201526114638282613591565b505060018055505050505050565b600260015414156114c45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a0a565b60026001819055600083815261016360205260409020015482906001600160a01b03166115195760405162461bcd60e51b8152602060048201526003602482015262444e4560e81b6044820152606401610a0a565b600083815261016360209081526040808320815161018081018352815481526001808301546001600160a01b039081169583019590955260028301548516938201939093526003820154606082015260048201546080820152600582015460a0820152600682015460c0820152600782015490931660e084015260088101546101008401526009810154610120840152600a810154909161014084019160ff16908111156115c9576115c9615b06565b60018111156115da576115da615b06565b8152602001600a820160019054906101000a900460ff16600181111561160257611602615b06565b600181111561161357611613615b06565b90525090506001816101600151600181111561163157611631615b06565b1461167e5760405162461bcd60e51b815260206004820152600f60248201527f6e6f7420616e2061756374696f6e2e00000000000000000000000000000000006044820152606401610a0a565b600084815261016560209081526040808320815160c0810183528154815260018201546001600160a01b039081169482019490945260028201549281019290925260038101549092166060820152600482015460808083019190915260059092015460a082015290830151909190421080611704575060208201516001600160a01b0316155b9050801561171a5761171583613731565b6117e3565b428360a00151106117935760405162461bcd60e51b815260206004820152602960248201527f63616e6e6f7420636c6f73652061756374696f6e206265666f7265206974206860448201527f617320656e6465642e00000000000000000000000000000000000000000000006064820152608401610a0a565b82602001516001600160a01b0316856001600160a01b031614156117bb576117bb838361389d565b81602001516001600160a01b0316856001600160a01b031614156117e3576117e38383613ac2565b50506001805550505050565b806117f8612af8565b600082815261016360205260409020600101546001600160a01b0390811691161461184e5760405162461bcd60e51b815260206004820152600660248201526510a7aba722a960d11b6044820152606401610a0a565b600082815261016360209081526040808320815161018081018352815481526001808301546001600160a01b039081169583019590955260028301548516938201939093526003820154606082015260048201546080820152600582015460a0820152600682015460c0820152600782015490931660e084015260088101546101008401526009810154610120840152600a810154909161014084019160ff16908111156118fe576118fe615b06565b600181111561190f5761190f615b06565b8152602001600a820160019054906101000a900460ff16600181111561193757611937615b06565b600181111561194857611948615b06565b90525090506000816101600151600181111561196657611966615b06565b146119b35760405162461bcd60e51b815260206004820152600760248201527f21444952454354000000000000000000000000000000000000000000000000006044820152606401610a0a565b6000838152610163602090815260408083208381556001810180546001600160a01b0319908116909155600282018054821690556003820185905560048201859055600582018590556006820185905560078201805490911690556008810184905560098101849055600a01805461ffff191690559083015190516001600160a01b039091169185917f58b0852506006c4be6c7ae72afcd195d9e64d7f5d8947905e914b778e47b7cf39190a3505050565b60026001541415611ab85760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a0a565b60026001819055600086815261016360205260409020015485906001600160a01b0316611b0d5760405162461bcd60e51b8152602060048201526003602482015262444e4560e81b6044820152606401610a0a565b600086815261016360209081526040808320815161018081018352815481526001808301546001600160a01b039081169583019590955260028301548516938201939093526003820154606082015260048201546080820152600582015460a0820152600682015460c0820152600782015490931660e084015260088101546101008401526009810154610120840152600a810154909161014084019160ff1690811115611bbd57611bbd615b06565b6001811115611bce57611bce615b06565b8152602001600a820160019054906101000a900460ff166001811115611bf657611bf6615b06565b6001811115611c0757611c07615b06565b90525090506000611c16612af8565b90508160e001516001600160a01b0316856001600160a01b0316148015611c4c575085826101200151611c499190615d55565b84145b611c815760405162461bcd60e51b815260206004820152600660248201526521505249434560d01b6044820152606401610a0a565b6114638282898560e001518a876101200151611c9d9190615d55565b8b613c43565b600054610100900460ff16611cbe5760005460ff1615611cc2565b303b155b611d345760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610a0a565b600054610100900460ff16158015611d56576000805461ffff19166101011790555b611d5e613de2565b611d6784613e57565b61016280546fffffffffffffffffffffffffffffffff19166901f400000000000003841790558451611da1906101609060208801906151d8565b5061016180546001600160e01b031916600160a01b67ffffffffffffffff8516026001600160a01b031916176001600160a01b038516179055611de5600087613ed6565b611e107ff94103142c1baabe9ac2b5d1487bf783de9e69cfeea9a72f5c9c94afd7877b8c6000613ed6565b611e3b7f86d5cf0a6bdc8d859ba3bdc97043337c82a0e609035f378e419298b6a3e00ae66000613ed6565b8015611e4d576000805461ff00191690555b505050505050565b600082815261012d60205260408120611e6e9083613ee0565b9392505050565b6000611e83816109b7612af8565b611e90610160848461525c565b50505050565b60608167ffffffffffffffff811115611eb157611eb1615430565b604051908082528060200260200182016040528015611ee457816020015b6060815260200190600190039081611ecf5790505b50905060005b82811015611f8457611f5430858584818110611f0857611f08615d74565b9050602002810190611f1a9190615d8a565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250613eec92505050565b828281518110611f6657611f66615d74565b60200260200101819052508080611f7c90615dd1565b915050611eea565b5092915050565b60026001541415611fde5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a0a565b600260015583611fec612af8565b600082815261016360205260409020600101546001600160a01b039081169116146120425760405162461bcd60e51b815260206004820152600660248201526510a7aba722a960d11b6044820152606401610a0a565b6000858152610163602052604090206002015485906001600160a01b03166120925760405162461bcd60e51b8152602060048201526003602482015262444e4560e81b6044820152606401610a0a565b600061016460008881526020019081526020016000206000876001600160a01b03166001600160a01b031681526020019081526020016000206040518060c0016040529081600082015481526020016001820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b03168152602001600282015481526020016003820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b031681526020016004820154815260200160058201548152505090506000610163600089815260200190815260200160002060405180610180016040529081600082015481526020016001820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b031681526020016002820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b03168152602001600382015481526020016004820154815260200160058201548152602001600682015481526020016007820160009054906101000a90046001600160a01b03166001600160a01b03166001600160a01b031681526020016008820154815260200160098201548152602001600a820160009054906101000a900460ff16600181111561227757612277615b06565b600181111561228857612288615b06565b8152602001600a820160019054906101000a900460ff1660018111156122b0576122b0615b06565b60018111156122c1576122c1615b06565b81525050905081606001516001600160a01b0316866001600160a01b03161480156122ef5750816080015185145b6123245760405162461bcd60e51b815260206004820152600660248201526521505249434560d01b6044820152606401610a0a565b428260a00151116123775760405162461bcd60e51b815260206004820152600760248201527f45585049524544000000000000000000000000000000000000000000000000006044820152606401610a0a565b6000888152610164602090815260408083206001600160a01b038b1684529091528082208281556001810180546001600160a01b0319908116909155600282018490556003820180549091169055600481018390556005019190915560608301519083015160808401516114639284928b928392916123f591615d55565b8760400151613c43565b86612408612af8565b600082815261016360205260409020600101546001600160a01b0390811691161461245e5760405162461bcd60e51b815260206004820152600660248201526510a7aba722a960d11b6044820152606401610a0a565b600088815261016360209081526040808320815161018081018352815481526001808301546001600160a01b039081169583019590955260028301548516938201939093526003820154606082015260048201546080820152600582015460a0820152600682015460c0820152600782015490931660e084015260088101546101008401526009810154610120840152600a810154909161014084019160ff169081111561250e5761250e615b06565b600181111561251f5761251f615b06565b8152602001600a820160019054906101000a900460ff16600181111561254757612547615b06565b600181111561255857612558615b06565b815250509050600061256f8261014001518a612ccf565b905060006001836101600151600181111561258c5761258c615b06565b149050816125c75760405162461bcd60e51b81526020600482015260086024820152675155414e5449545960c01b6044820152606401610a0a565b801561265a57826080015142106126205760405162461bcd60e51b815260206004820152600760248201527f53544152544544000000000000000000000000000000000000000000000000006044820152606401610a0a565b8888101561265a5760405162461bcd60e51b81526020600482015260076024820152665245534552564560c81b6044820152606401610a0a565b428610156126a557610e1061266f8742615c75565b106126a15760405162461bcd60e51b815260206004820152600260248201526114d560f21b6044820152606401610a0a565b4295505b600086156126b357866126b9565b83608001515b90506040518061018001604052808d81526020016126d5612af8565b6001600160a01b0316815260200185604001516001600160a01b03168152602001856060015181526020018281526020018760001461271d576127188884615c5d565b612723565b8560a001515b8152602001848152602001896001600160a01b031681526020018b81526020018a8152602001856101400151600181111561276057612760615b06565b8152602001856101600151600181111561277c5761277c615b06565b905260008d815261016360209081526040918290208351815590830151600180830180546001600160a01b03199081166001600160a01b0394851617909155938501516002840180548616918416919091179055606085015160038401556080850151600484015560a0850151600584015560c0850151600684015560e085015160078401805490951692169190911790925561010083015160088201556101208301516009820155610140830151600a8201805492939192909160ff1990911690838181111561284f5761284f615b06565b0217905550610160820151600a8201805461ff00191661010083600181111561287a5761287a615b06565b0217905550505060c084015183146128da5781156128a6576128a63085602001518660c0015187612ff8565b6128c484602001518560400151866060015186886101400151612d06565b81156128da576128da8460200151308587612ff8565b83602001516001600160a01b03168c7fbbea26162edf2bc6a0255bf144ec4dd044302a301ef7d32daa835a2ddacfdef060405160405180910390a3505050505050505050505050565b600081815261012d602052604081206109a390613ff7565b600082815260fb6020526040902060010154612959816109b7612af8565b610fd48383613171565b610160805461297190615dec565b80601f016020809104026020016040519081016040528092919081815260200182805461299d90615dec565b80156129ea5780601f106129bf576101008083540402835291602001916129ea565b820191906000526020600020905b8154815290600101906020018083116129cd57829003601f168201915b505050505081565b6000612a00816109b7612af8565b6127108210612a515760405162461bcd60e51b815260206004820152600c60248201527f696e76616c6964204250532e00000000000000000000000000000000000000006044820152606401610a0a565b610162805467ffffffffffffffff84811668010000000000000000026fffffffffffffffffffffffffffffffff19909216908616171790556040517f441ed6470e96704c3f8c9e70c209107078aab3f17311385e886081b91aa7508890610a809085908590918252602082015260400190565b6001600160a01b03163b151590565b60006001600160e01b03198216635a05180f60e01b14806109a357506109a382614001565b6000612b02614036565b905090565b600082815260fb602090815260408083206001600160a01b038516845290915290205460ff1661107157612b45816001600160a01b03166014614060565b612b50836020614060565b604051602001612b61929190615e27565b60408051601f198184030181529082905262461bcd60e51b8252610a0a91600401615bcb565b6040516301ffc9a760e01b8152636cdb3d1360e11b60048201526000906001600160a01b038316906301ffc9a790602401602060405180830381865afa158015612bd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bf99190615ea8565b15612c0657506000919050565b6040516301ffc9a760e01b81526380ac58cd60e01b60048201526001600160a01b038316906301ffc9a790602401602060405180830381865afa158015612c51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c759190615ea8565b15612c8257506001919050565b60405162461bcd60e51b815260206004820181905260248201527f746f6b656e206d7573742062652045524331313535206f72204552433732312e6044820152606401610a0a565b919050565b600081612cde575060006109a3565b6001836001811115612cf257612cf2615b06565b14612cfd5781611e6e565b50600192915050565b30600080836001811115612d1c57612d1c615b06565b1415612e1657604051627eeac760e11b81526001600160a01b0388811660048301526024820187905285919088169062fdd58e90604401602060405180830381865afa158015612d70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d949190615eca565b10158015612e0f575060405163e985e9c560e01b81526001600160a01b038881166004830152838116602483015287169063e985e9c590604401602060405180830381865afa158015612deb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e0f9190615ea8565b9050612fa2565b6001836001811115612e2a57612e2a615b06565b1415612fa2576040516331a9108f60e11b8152600481018690526001600160a01b038089169190881690636352211e90602401602060405180830381865afa158015612e7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e9e9190615ee3565b6001600160a01b0316148015612f9f575060405163020604bf60e21b8152600481018690526001600160a01b03808416919088169063081812fc90602401602060405180830381865afa158015612ef9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f1d9190615ee3565b6001600160a01b03161480612f9f575060405163e985e9c560e01b81526001600160a01b038881166004830152838116602483015287169063e985e9c590604401602060405180830381865afa158015612f7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f9f9190615ea8565b90505b80612fef5760405162461bcd60e51b815260206004820152600760248201527f2142414c4e4654000000000000000000000000000000000000000000000000006044820152606401610a0a565b50505050505050565b6000816101400151600181111561301157613011615b06565b14156130a65760408082015160608301519151637921219560e11b81526001600160a01b038781166004830152868116602483015260448201939093526064810185905260a06084820152600060a482015291169063f242432a9060c401600060405180830381600087803b15801561308957600080fd5b505af115801561309d573d6000803e3d6000fd5b50505050611e90565b600181610140015160018111156130bf576130bf615b06565b1415611e905760408082015160608301519151635c46a7ef60e11b81526001600160a01b03878116600483015286811660248301526044820193909352608060648201526000608482015291169063b88d4fde9060a401600060405180830381600087803b15801561313057600080fd5b505af1158015613144573d6000803e3d6000fd5b5050505050505050565b6131588282614209565b600082815261012d60205260409020610fd490826142ac565b61317b82826142c1565b600082815261012d60205260409020610fd49082614362565b8151600090815261016560209081526040808320815160c0810183528154815260018201546001600160a01b039081169482019490945260028201549281018390526003820154909316606084015260048101546080840181905260059091015460a08401529192916132079190615d55565b905060008360400151846080015161321f9190615d55565b6101208601519091507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2901580159061326c57508560c001518661012001516132689190615d55565b8210155b156132805761327b8686613ac2565b6134ab565b61329f8660c001518761010001516132989190615d55565b8484614377565b6132eb5760405162461bcd60e51b815260206004820152601060248201527f6e6f742077696e6e696e67206269642e000000000000000000000000000000006044820152606401610a0a565b85516000908152610165602090815260409182902087518155908701516001820180546001600160a01b03199081166001600160a01b039384161790915592880151600283015560608801516003830180549094169116179091556080860151600482015560a080870151600590920191909155610162549087015167ffffffffffffffff9091169061337f904290615c75565b116134ab576101625460a08701805167ffffffffffffffff909216916133a6908390615c5d565b9052508551600090815261016360209081526040918290208851815590880151600180830180546001600160a01b03199081166001600160a01b0394851617909155938a0151600284018054861691841691909117905560608a0151600384015560808a0151600484015560a08a0151600584015560c08a0151600684015560e08a015160078401805490951692169190911790925561010088015160088201556101208801516009820155610140880151600a820180548a9460ff1990911690838181111561347857613478615b06565b0217905550610160820151600a8201805461ff0019166101008360018111156134a3576134a3615b06565b021790555050505b60208401516001600160a01b0316158015906134c75750600083115b156134e1576134e18660e0015130866020015186856143d9565b6134f68660e0015186602001513085856143d9565b856101600151600181111561350d5761350d615b06565b85602001516001600160a01b031687600001517f8a412352601a288b3de40254a9de2ab14a497aa3638a7e558480680a56e2705d886040015189604001518a6080015161355a9190615d55565b6060808c01516040805194855260208501939093526001600160a01b031691830191909152015b60405180910390a4505050505050565b8160c001518160400151111580156135ad575060008260c00151115b6135f95760405162461bcd60e51b815260206004820152601f60248201527f696e73756666696369656e7420746f6b656e7320696e206c697374696e672e006044820152606401610a0a565b61361f816020015182606001518360400151846080015161361a9190615d55565b61455a565b815160009081526101646020908152604080832082850180516001600160a01b0390811686529190935292819020845181559151600180840180549286166001600160a01b03199384161790559185015160028401556060850151600384018054919095169116179092556080830151600482015560a0830151600590910155610160830151908111156136b5576136b5615b06565b81602001516001600160a01b031683600001517f8a412352601a288b3de40254a9de2ab14a497aa3638a7e558480680a56e2705d8460400151856040015186608001516137029190615d55565b6060878101516040805194855260208501939093526001600160a01b0316838301529051918290030190a45050565b613739612af8565b8151600090815261016360205260409020600101546001600160a01b039081169116146137b35760405162461bcd60e51b815260206004820152602260248201527f63616c6c6572206973206e6f7420746865206c697374696e672063726561746f604482015261391760f11b6064820152608401610a0a565b805160009081526101636020908152604082208281556001810180546001600160a01b031990811690915560028201805482169055600382018490556004820184905560058201849055600682018490556007820180549091169055600881018390556009810192909255600a909101805461ffff1916905581015160c082015161384091309184612ff8565b600161384a612af8565b8251602080850151604080516001600160a01b0392831681526000938101939093529316927f572cdc5ca5e918473319d0f4737494e4709ac879a7d0bcd11ce1bef24b24e81d910160405180910390a450565b60008260c0015182608001516138b39190615d55565b600060c085018181524260a087019081528651835261016360209081526040938490208851815590880151600180830180546001600160a01b039384166001600160a01b031991821617909155958a015160028401805491841691881691909117905560608a0151600384015560808a01516004840155925160058301559251600682015560e08801516007820180549190941694169390931790915561010086015160088301556101208601516009830155610140860151600a8301805494955087949192909160ff191690838181111561399157613991615b06565b0217905550610160820151600a8201805461ff0019166101008360018111156139bc576139bc615b06565b02179055505060006080840181815285518252610165602090815260409283902086518155818701516001820180546001600160a01b03199081166001600160a01b039384161790915594880151600283015560608801516003830180549096169116179093559051600483015560a085015160059092019190915584015160e0850151613a4f92503091908487614692565b6000613a59612af8565b6001600160a01b031684600001517f572cdc5ca5e918473319d0f4737494e4709ac879a7d0bcd11ce1bef24b24e81d86602001518660200151604051613ab59291906001600160a01b0392831681529116602082015260400190565b60405180910390a4505050565b604081810180514260a086810191825260008085528751815261016560209081528682208851815581890151600180830180546001600160a01b03199081166001600160a01b039485161790915598516002808501919091556060808d0151600380870180548e16928716929092179091556080808f0151600480890191909155998f01516005978801558f5189526101638852978d90208f518155968f015187850180548e169187169190911790559b8e015191860180548c16928516929092179091558c015199840199909955928a01519382019390935592519183019190915560c0870151600683015560e087015160078301805490951691161790925561010085015160088301556101208501516009830155610140850151600a83018054929487949360ff1916908381811115613c0057613c00615b06565b0217905550610160820151600a8201805461ff001916610100836001811115613c2b57613c2b615b06565b0217905550905050613a4f3083602001518386612ff8565b613c508686838686614917565b808660c001818151613c629190615c75565b9052508551600090815261016360209081526040918290208851815590880151600180830180546001600160a01b03199081166001600160a01b0394851617909155938a0151600284018054861691841691909117905560608a0151600384015560808a0151600484015560a08a0151600584015560c08a0151600684015560e08a015160078401805490951692169190911790925561010088015160088201556101208801516009820155610140880151600a820180548a9460ff19909116908381811115613d3457613d34615b06565b0217905550610160820151600a8201805461ff001916610100836001811115613d5f57613d5f615b06565b0217905550905050613d7885876020015185858a614692565b613d888660200151858389612ff8565b602080870151604080890151895182516001600160a01b038a81168252958101879052928301879052928416931691907f306e6cde5eb293794d557a3a6c844de939e6206b05e6910451c512852bf654a590606001613581565b600054610100900460ff16613e4d5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610a0a565b613e55614af1565b565b600054610100900460ff16613ec25760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610a0a565b613eca614b62565b613ed381614bcd565b50565b611071828261314e565b6000611e6e8383614ca0565b60606001600160a01b0383163b613f6b5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e747261637400000000000000000000000000000000000000000000000000006064820152608401610a0a565b600080846001600160a01b031684604051613f869190615f00565b600060405180830381855af49150503d8060008114613fc1576040519150601f19603f3d011682016040523d82523d6000602084013e613fc6565b606091505b5091509150613fee8282604051806060016040528060278152602001615f9a60279139614cca565b95945050505050565b60006109a3825490565b60006001600160e01b03198216637965db0b60e01b14806109a357506301ffc9a760e01b6001600160e01b03198316146109a3565b3360009081526065602052604081205460ff161561405b575060131936013560601c90565b503390565b6060600061406f836002615d55565b61407a906002615c5d565b67ffffffffffffffff81111561409257614092615430565b6040519080825280601f01601f1916602001820160405280156140bc576020820181803683370190505b509050600360fc1b816000815181106140d7576140d7615d74565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061410657614106615d74565b60200101906001600160f81b031916908160001a905350600061412a846002615d55565b614135906001615c5d565b90505b60018111156141ba577f303132333435363738396162636465660000000000000000000000000000000085600f166010811061417657614176615d74565b1a60f81b82828151811061418c5761418c615d74565b60200101906001600160f81b031916908160001a90535060049490941c936141b381615f1c565b9050614138565b508315611e6e5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610a0a565b600082815260fb602090815260408083206001600160a01b038516845290915290205460ff1661107157600082815260fb602090815260408083206001600160a01b03851684529091529020805460ff19166001179055614268612af8565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000611e6e836001600160a01b038416614d03565b600082815260fb602090815260408083206001600160a01b038516845290915290205460ff161561107157600082815260fb602090815260408083206001600160a01b03851684529091529020805460ff1916905561431e612af8565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6000611e6e836001600160a01b038416614d52565b600082614388575082811015611e6e565b82821180156143d157506101625468010000000000000000900467ffffffffffffffff16836127106143ba8286615c75565b6143c49190615d55565b6143ce9190615f33565b10155b949350505050565b816143e357614553565b6001600160a01b03851673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1415614547576001600160a01b03841630141561448357604051632e1a7d4d60e01b8152600481018390526001600160a01b03821690632e1a7d4d90602401600060405180830381600087803b15801561445b57600080fd5b505af115801561446f573d6000803e3d6000fd5b5050505061447e838383614e45565b614553565b6001600160a01b03831630141561453c573482146144e35760405162461bcd60e51b815260206004820152601360248201527f6d73672e76616c756520213d20616d6f756e74000000000000000000000000006044820152606401610a0a565b806001600160a01b031663d0e30db0836040518263ffffffff1660e01b81526004016000604051808303818588803b15801561451e57600080fd5b505af1158015614532573d6000803e3d6000fd5b5050505050614553565b61447e838383614e45565b61455385858585614f0a565b5050505050565b6040516370a0823160e01b81526001600160a01b0384811660048301528291908416906370a0823190602401602060405180830381865afa1580156145a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906145c79190615eca565b101580156146465750604051636eb1769f60e11b81526001600160a01b03848116600483015230602483015282919084169063dd62ed3e90604401602060405180830381865afa15801561461f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906146439190615eca565b10155b610fd45760405162461bcd60e51b815260206004820152600660248201527f2142414c323000000000000000000000000000000000000000000000000000006044820152606401610a0a565b61016154600090612710906146b890600160a01b900467ffffffffffffffff1685615d55565b6146c29190615f33565b60405163085b49ad60e41b81523060048201526001602482015290915060009081906001600160a01b037f0000000000000000000000008c4b615040ebd2618e8fc3b20cefe9abafdeb0ea16906385b49ad0906044016040805180830381865afa158015614734573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906147589190615f55565b9092509050600061271061476c8388615d55565b6147769190615f33565b905060008086604001516001600160a01b0316632a55205a88606001518a6040518363ffffffff1660e01b81526004016147ba929190918252602082015260400190565b6040805180830381865afa9250505080156147f2575060408051601f3d908101601f191682019092526147ef91810190615f55565b60015b6147fb57614886565b6001600160a01b038216158015906148135750600081115b156148835789856148248a84615c5d565b61482e9190615c5d565b111561487c5760405162461bcd60e51b815260206004820152601560248201527f66656573206578636565642074686520707269636500000000000000000000006044820152606401610a0a565b8192508093505b50505b610161547f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2906148c4908b908e906001600160a01b03168a856143d9565b6148d18a8d8486856143d9565b6148de8a8d8887856143d9565b6149098a8d8d876148ef888d615c5d565b6148f99190615c5d565b614903908e615c75565b856143d9565b505050505050505050505050565b6000856101600151600181111561493057614930615b06565b1461497d5760405162461bcd60e51b815260206004820152601860248201527f63616e6e6f74206275792066726f6d206c697374696e672e00000000000000006044820152606401610a0a565b60008560c001511180156149915750600083115b80156149a157508460c001518311155b6149ed5760405162461bcd60e51b815260206004820152601960248201527f696e76616c696420616d6f756e74206f6620746f6b656e732e000000000000006044820152606401610a0a565b8460a0015142108015614a035750846080015142115b614a4f5760405162461bcd60e51b815260206004820152601760248201527f6e6f742077697468696e2073616c652077696e646f772e0000000000000000006044820152606401610a0a565b6001600160a01b03821673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1415614ac857803414614ac35760405162461bcd60e51b815260206004820152601260248201527f6d73672e76616c756520213d20707269636500000000000000000000000000006044820152606401610a0a565b614ad3565b614ad384838361455a565b61455385602001518660400151876060015186896101400151612d06565b600054610100900460ff16614b5c5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610a0a565b60018055565b600054610100900460ff16613e555760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610a0a565b600054610100900460ff16614c385760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608401610a0a565b60005b815181101561107157600160656000848481518110614c5c57614c5c615d74565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580614c9881615dd1565b915050614c3b565b6000826000018281548110614cb757614cb7615d74565b9060005260206000200154905092915050565b60608315614cd9575081611e6e565b825115614ce95782518084602001fd5b8160405162461bcd60e51b8152600401610a0a9190615bcb565b6000818152600183016020526040812054614d4a575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556109a3565b5060006109a3565b60008181526001830160205260408120548015614e3b576000614d76600183615c75565b8554909150600090614d8a90600190615c75565b9050818114614def576000866000018281548110614daa57614daa615d74565b9060005260206000200154905080876000018481548110614dcd57614dcd615d74565b6000918252602080832090910192909255918252600188019052604090208390555b8554869080614e0057614e00615f83565b6001900381819060005260206000200160009055905585600101600086815260200190815260200160002060009055600193505050506109a3565b60009150506109a3565b6000836001600160a01b03168360405160006040518083038185875af1925050503d8060008114614e92576040519150601f19603f3d011682016040523d82523d6000602084013e614e97565b606091505b5050905080611e9057816001600160a01b031663d0e30db0846040518263ffffffff1660e01b81526004016000604051808303818588803b158015614edb57600080fd5b505af1158015614eef573d6000803e3d6000fd5b50611e90935050506001600160a01b03841690508585614f68565b816001600160a01b0316836001600160a01b03161415614f2957611e90565b6001600160a01b038316301415614f5357614f4e6001600160a01b0385168383614f68565b611e90565b611e906001600160a01b038516848484614fe0565b6040516001600160a01b038316602482015260448101829052610fd490849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166001600160e01b031990931692909217909152615018565b6040516001600160a01b0380851660248301528316604482015260648101829052611e909085906323b872dd60e01b90608401614f94565b600061506d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166150fd9092919063ffffffff16565b805190915015610fd4578080602001905181019061508b9190615ea8565b610fd45760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610a0a565b60606143d18484600085856001600160a01b0385163b61515f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a0a565b600080866001600160a01b0316858760405161517b9190615f00565b60006040518083038185875af1925050503d80600081146151b8576040519150601f19603f3d011682016040523d82523d6000602084013e6151bd565b606091505b50915091506151cd828286614cca565b979650505050505050565b8280546151e490615dec565b90600052602060002090601f016020900481019282615206576000855561524c565b82601f1061521f57805160ff191683800117855561524c565b8280016001018555821561524c579182015b8281111561524c578251825591602001919060010190615231565b506152589291506152d0565b5090565b82805461526890615dec565b90600052602060002090601f01602090048101928261528a576000855561524c565b82601f106152a35782800160ff1982351617855561524c565b8280016001018555821561524c579182015b8281111561524c5782358255916020019190600101906152b5565b5b8082111561525857600081556001016152d1565b6000602082840312156152f757600080fd5b81356001600160e01b031981168114611e6e57600080fd5b6001600160a01b0381168114613ed357600080fd5b8035612cca8161530f565b60008083601f84011261534157600080fd5b50813567ffffffffffffffff81111561535957600080fd5b60208301915083602082850101111561537157600080fd5b9250929050565b60008060008060006080868803121561539057600080fd5b853561539b8161530f565b945060208601356153ab8161530f565b935060408601359250606086013567ffffffffffffffff8111156153ce57600080fd5b6153da8882890161532f565b969995985093965092949392505050565b600080604083850312156153fe57600080fd5b82356154098161530f565b946020939093013593505050565b60006020828403121561542957600080fd5b5035919050565b634e487b7160e01b600052604160045260246000fd5b604051610120810167ffffffffffffffff8111828210171561546a5761546a615430565b60405290565b604051601f8201601f1916810167ffffffffffffffff8111828210171561549957615499615430565b604052919050565b803560028110612cca57600080fd5b600061012082840312156154c357600080fd5b6154cb615446565b6154d483615324565b81526020830135602082015260408301356040820152606083013560608201526080830135608082015261550a60a08401615324565b60a082015260c083013560c082015260e083013560e08201526101006155318185016154a1565b908201529392505050565b6000806040838503121561554f57600080fd5b8235915060208301356155618161530f565b809150509250929050565b60006020828403121561557e57600080fd5b8135611e6e8161530f565b600080600080600060a086880312156155a157600080fd5b853594506020860135935060408601356155ba8161530f565b94979396509394606081013594506080013592915050565b600080600080600060a086880312156155ea57600080fd5b8535945060208601356155fc8161530f565b93506040860135925060608601356156138161530f565b949793965091946080013592915050565b600067ffffffffffffffff83111561563e5761563e615430565b615651601f8401601f1916602001615470565b905082815283838301111561566557600080fd5b828260208301376000602084830101529392505050565b600067ffffffffffffffff82111561569657615696615430565b5060051b60200190565b600080600080600060a086880312156156b857600080fd5b85356156c38161530f565b945060208681013567ffffffffffffffff808211156156e157600080fd5b818901915089601f8301126156f557600080fd5b6157038a8335858501615624565b9650604089013591508082111561571957600080fd5b508701601f8101891361572b57600080fd5b803561573e6157398261567c565b615470565b81815260059190911b8201830190838101908b83111561575d57600080fd5b928401925b828410156157845783356157758161530f565b82529284019290840190615762565b809750505050505061561360608701615324565b600080604083850312156157ab57600080fd5b50508035926020909101359150565b600080602083850312156157cd57600080fd5b823567ffffffffffffffff8111156157e457600080fd5b6157f08582860161532f565b90969095509350505050565b6000806020838503121561580f57600080fd5b823567ffffffffffffffff8082111561582757600080fd5b818501915085601f83011261583b57600080fd5b81358181111561584a57600080fd5b8660208260051b850101111561585f57600080fd5b60209290920196919550909350505050565b60005b8381101561588c578181015183820152602001615874565b83811115611e905750506000910152565b600081518084526158b5816020860160208601615871565b601f01601f19169290920160200192915050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b8281101561591e57603f1988860301845261590c85835161589d565b945092850192908501906001016158f0565b5092979650505050505050565b6000806000806080858703121561594157600080fd5b8435935060208501356159538161530f565b925060408501356159638161530f565b9396929550929360600135925050565b600082601f83011261598457600080fd5b813560206159946157398361567c565b82815260059290921b840181019181810190868411156159b357600080fd5b8286015b848110156159ce57803583529183019183016159b7565b509695505050505050565b600082601f8301126159ea57600080fd5b611e6e83833560208501615624565b600080600080600060a08688031215615a1157600080fd5b8535615a1c8161530f565b94506020860135615a2c8161530f565b9350604086013567ffffffffffffffff80821115615a4957600080fd5b615a5589838a01615973565b94506060880135915080821115615a6b57600080fd5b615a7789838a01615973565b93506080880135915080821115615a8d57600080fd5b50615a9a888289016159d9565b9150509295509295909350565b600080600080600080600060e0888a031215615ac257600080fd5b873596506020880135955060408801359450606088013593506080880135615ae98161530f565b9699959850939692959460a0840135945060c09093013592915050565b634e487b7160e01b600052602160045260246000fd5b60028110613ed357634e487b7160e01b600052602160045260246000fd5b615b4381615b1c565b9052565b6000610180820190508d82526001600160a01b03808e166020840152808d1660408401528b60608401528a60808401528960a08401528860c084015280881660e0840152508561010083015284610120830152615ba384615b1c565b83610140830152615bb383615b1c565b826101608301529d9c50505050505050505050505050565b602081526000611e6e602083018461589d565b600080600080600060a08688031215615bf657600080fd5b8535615c018161530f565b94506020860135615c118161530f565b93506040860135925060608601359150608086013567ffffffffffffffff811115615c3b57600080fd5b615a9a888289016159d9565b634e487b7160e01b600052601160045260246000fd5b60008219821115615c7057615c70615c47565b500190565b600082821015615c8757615c87615c47565b500390565b81518152602080830151610180830191615cb0908401826001600160a01b03169052565b506040830151615ccb60408401826001600160a01b03169052565b50606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e0830151615d0e60e08401826001600160a01b03169052565b506101008381015190830152610120808401519083015261014080840151615d3882850182615b3a565b505061016080840151615d4d82850182615b3a565b505092915050565b6000816000190483118215151615615d6f57615d6f615c47565b500290565b634e487b7160e01b600052603260045260246000fd5b6000808335601e19843603018112615da157600080fd5b83018035915067ffffffffffffffff821115615dbc57600080fd5b60200191503681900382131561537157600080fd5b6000600019821415615de557615de5615c47565b5060010190565b600181811c90821680615e0057607f821691505b60208210811415615e2157634e487b7160e01b600052602260045260246000fd5b50919050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351615e5f816017850160208801615871565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351615e9c816028840160208801615871565b01602801949350505050565b600060208284031215615eba57600080fd5b81518015158114611e6e57600080fd5b600060208284031215615edc57600080fd5b5051919050565b600060208284031215615ef557600080fd5b8151611e6e8161530f565b60008251615f12818460208701615871565b9190910192915050565b600081615f2b57615f2b615c47565b506000190190565b600082615f5057634e487b7160e01b600052601260045260246000fd5b500490565b60008060408385031215615f6857600080fd5b8251615f738161530f565b6020939093015192949293505050565b634e487b7160e01b600052603160045260246000fdfe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a164736f6c634300080c000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000008c4b615040ebd2618e8fc3b20cefe9abafdeb0ea
-----Decoded View---------------
Arg [0] : _nativeTokenWrapper (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
Arg [1] : _thirdwebFee (address): 0x8C4B615040Ebd2618e8fC3B20ceFe9abAfdEb0ea
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [1] : 0000000000000000000000008c4b615040ebd2618e8fc3b20cefe9abafdeb0ea
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.