Overview
ETH Balance
0.134 ETH
Eth Value
$524.44 (@ $3,913.72/ETH)More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 196 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Cancel All Stand... | 17167927 | 590 days ago | IN | 0 ETH | 0.0066718 | ||||
Settle Current A... | 17167918 | 590 days ago | IN | 0 ETH | 0.004181 | ||||
Settle Current A... | 17167914 | 590 days ago | IN | 0 ETH | 0.02691386 | ||||
Create Bid | 17166858 | 590 days ago | IN | 0.17 ETH | 0.01250146 | ||||
Create Bid | 17164873 | 590 days ago | IN | 0.154 ETH | 0.00437553 | ||||
Settle Current A... | 17160806 | 591 days ago | IN | 0 ETH | 0.02359548 | ||||
Create Bid | 17156304 | 592 days ago | IN | 0.25 ETH | 0.00392171 | ||||
Settle Current A... | 17153677 | 592 days ago | IN | 0 ETH | 0.01379133 | ||||
Cancel Standing ... | 17147044 | 593 days ago | IN | 0 ETH | 0.00240646 | ||||
Create Bid | 17146993 | 593 days ago | IN | 0.275 ETH | 0.00753361 | ||||
Settle Current A... | 17146567 | 593 days ago | IN | 0 ETH | 0.01601074 | ||||
Create Bid | 17144889 | 593 days ago | IN | 0.252 ETH | 0.00267339 | ||||
Cancel Standing ... | 17141574 | 594 days ago | IN | 0 ETH | 0.00206901 | ||||
Create Bid | 17139471 | 594 days ago | IN | 0.229 ETH | 0.00710722 | ||||
Set Duration | 17139464 | 594 days ago | IN | 0 ETH | 0.00130437 | ||||
Settle Current A... | 17139459 | 594 days ago | IN | 0 ETH | 0.01677227 | ||||
Set Duration | 17132349 | 595 days ago | IN | 0 ETH | 0.00141231 | ||||
Settle Current A... | 17132344 | 595 days ago | IN | 0 ETH | 0.02217084 | ||||
Create Bid | 17132293 | 595 days ago | IN | 0.259 ETH | 0.00273217 | ||||
Create Bid | 17126037 | 596 days ago | IN | 0.235 ETH | 0.00677139 | ||||
Settle Current A... | 17125213 | 596 days ago | IN | 0 ETH | 0.01545595 | ||||
Create Bid | 17125096 | 596 days ago | IN | 0.229 ETH | 0.00443822 | ||||
Create Bid | 17123751 | 596 days ago | IN | 0.208 ETH | 0.00521724 | ||||
Create Bid | 17118620 | 597 days ago | IN | 0.187 ETH | 0.00419057 | ||||
Settle Current A... | 17118084 | 597 days ago | IN | 0 ETH | 0.02214075 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
17167914 | 590 days ago | 0.17 ETH | ||||
17164873 | 590 days ago | 0.154 ETH | ||||
17160806 | 591 days ago | 0.25 ETH | ||||
17147044 | 593 days ago | 0.229 ETH | ||||
17146567 | 593 days ago | 0.252 ETH | ||||
17141574 | 594 days ago | 0.208 ETH | ||||
17139459 | 594 days ago | 0.235 ETH | ||||
17132344 | 595 days ago | 0.259 ETH | ||||
17125213 | 596 days ago | 0.229 ETH | ||||
17123751 | 596 days ago | 0.17 ETH | ||||
17123751 | 596 days ago | 0.187 ETH | ||||
17118620 | 597 days ago | 0.17 ETH | ||||
17118084 | 597 days ago | 0.208 ETH | ||||
17117991 | 597 days ago | 0.189 ETH | ||||
17110951 | 598 days ago | 0.187 ETH | ||||
17103831 | 599 days ago | 0.19 ETH | ||||
17096692 | 600 days ago | 0.209 ETH | ||||
17091388 | 601 days ago | 0.19 ETH | ||||
17089618 | 601 days ago | 0.187 ETH | ||||
17082578 | 602 days ago | 0.189 ETH | ||||
17075490 | 603 days ago | 0.19 ETH | ||||
17068427 | 604 days ago | 0.187 ETH | ||||
17067583 | 604 days ago | 0.154 ETH | ||||
17061373 | 605 days ago | 0.154 ETH | ||||
17054326 | 606 days ago | 0.154 ETH |
Loading...
Loading
Contract Name:
OasisAuctionHouse
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0 // The Wildxyz auctionhouse.sol // AuctionHouse.sol is a modified version of the original code from the // NounsAuctionHouse.sol which is a modified version of Zora's AuctionHouse.sol: // https://github.com/ourzora/auction-house/ // licensed under the GPL-3.0 license. pragma solidity ^0.8.18; import './Pausable.sol'; import './ReentrancyGuard.sol'; import './Ownable.sol'; import './IOasis.sol'; import './IAuctionHouse.sol'; contract OasisAuctionHouse is IAuctionHouse, Pausable, ReentrancyGuard, Ownable { // auction variables uint256 public timeBuffer = 120; // min amount of time left in an auction after last bid uint256 public minimumBid = .1 ether; // The minimum price accepted in an auction uint256 public duration = 86400; // 86400 == 1 day /The duration of a single auction in seconds uint8 public minBidIncrementPercentage = 10; // The minimum bid increment percentage address payable public payee; // The address that receives funds from the auction address[] public standingBidders; // list of addresses with standing bids Oasis public oasis; // The oasis contract uint256 public currentTokenId; // The current token ID being auctioned // The active auction IAuctionHouse.Auction public auction; // Only allow the auction functions to be active when not paused modifier onlyUnpaused() { require(!paused(), 'AuctionHouse: paused'); _; } // Bids Struct struct Bid { address payable bidder; // The address of the bidder uint256 amount; // The amount of the bid bool minted; // has the bid been minted uint256 timestamp; // timestamp of the bid bool refunded; // refund difference between winning_bid and max_bid for winner; and all for losers // enter reentrancy guard bool winner; // is the bid the winner bool standing; // if not winner, bid rolls to next auction } // mapping of Bid structs mapping(address => Bid) public Bids; constructor(Oasis _oasis) { oasis = _oasis; // set the payee to the contract owner payee = payable(0x710900ca8c7C280B0E6bb005e60dFE1cf6E5FA4c); _pause(); } /* ADMIN VARIABLE SETTERS FUNCTIONS */ // set the 721 contract address function set721ContractAddress(Oasis _newOasis) public onlyOwner { oasis = _newOasis; } // set the time buffer function setTimeBuffer(uint256 _timeBuffer) external onlyOwner override { timeBuffer = _timeBuffer; emit AuctionTimeBufferUpdated(_timeBuffer); } // set the minimum bid function setMinimumBid(uint256 _minimumBid) external onlyOwner { minimumBid = _minimumBid; } // set the duration function setDuration(uint256 _duration) external onlyOwner override { duration = _duration; emit AuctionDurationUpdated(_duration); } // set the min bid increment percentage function setMinBidIncrementPercentage(uint8 _minBidIncrementPercentage) external onlyOwner override { minBidIncrementPercentage = _minBidIncrementPercentage; emit AuctionMinBidIncrementPercentageUpdated(_minBidIncrementPercentage); } // promo mint function promoMint(address _to, uint256 _qty) external onlyOwner { oasis.promoMint(_to, _qty); } // pause function pause() external onlyOwner override { _pause(); } // unpause function unpause() external onlyOwner override { _unpause(); if (auction.startTime == 0 || auction.settled) { _createAuction(); } } // Settle the current auction (only when paused) function settleAuction() external whenPaused onlyOwner nonReentrant override { _settleAuction(); } // withdraw function withdraw() public { (bool success, ) = payee.call{value: address(this).balance}(""); require(success, "Failed to send to payee."); } // update payee for withdraw function setPayee(address payable _payee) public onlyOwner { payee = _payee; } /* END ADMIN VARIABLE SETTERS FUNCTIONS */ /* PUBLIC FUNCTIONS */ // Settles and creates a new auction function settleCurrentAndCreateNewAuction() external nonReentrant override { _settleAuction(); _createAuction(); _processStandingBids(); require(block.timestamp >= auction.startTime, 'AuctionHouse: auction not started'); } // adds highest standing bid to newly created auction function _processStandingBids() internal { IAuctionHouse.Auction memory _auction = auction; uint256 this_amount = 0; address this_bidder; // loop through standing bidders and add the highest bid to the new auction // also emit all the bids so they will attach to new auction for (uint i = 0; i < standingBidders.length; i++) { if (Bids[standingBidders[i]].amount > this_amount && Bids[standingBidders[i]].refunded == false && Bids[standingBidders[i]].standing == true) { this_amount = Bids[standingBidders[i]].amount; this_bidder = standingBidders[i]; } emit AuctionBid( _auction.tokenId, standingBidders[i], Bids[standingBidders[i]].amount, true, false, true ); } if (this_amount > 0) { auction.bidder = payable(this_bidder); auction.amount = this_amount; } } // cancel all standing bids admin only function cancelAllStandingBid() public nonReentrant onlyOwner { IAuctionHouse.Auction memory _auction = auction; // loop through standing bidders for (uint i = 0; i < standingBidders.length; i++) { if (_auction.bidder != standingBidders[i]) { // not highest bidder, refund _safeTransferETH(standingBidders[i], Bids[standingBidders[i]].amount); Bids[standingBidders[i]].refunded = true; } Bids[standingBidders[i]].standing = false; // update list of standing bidders standingBidders[i] = standingBidders[standingBidders.length - 1]; standingBidders.pop(); emit CancelStandingBid(standingBidders[i]); } } // admin can place bid on behalf of bidder function ownerBidOnBehalf(uint256 _currentTokenId, bool _standing, address _bidder) external payable nonReentrant onlyOwner { // Query the auction state IAuctionHouse.Auction memory _auction = auction; // Check that the auction is live require(_currentTokenId == _auction.tokenId, 'Bid on wrong tokenId.'); require(block.timestamp < _auction.endTime, "Auction has ended"); require(block.timestamp > _auction.startTime, "Auction has not started"); require(msg.value >= minimumBid, "Bid is too low."); require(msg.value > _auction.amount, "Bid is too low."); // A reference to benchmark the new bid against address payable lastBidder = _auction.bidder; // Refund the previous highest bidder, // if not standing bid if (lastBidder != address(0) && Bids[lastBidder].standing == false && Bids[lastBidder].refunded == false) { _safeTransferETH(lastBidder, _auction.amount); Bids[lastBidder].refunded = true; } // if overbidding self, remove old bid // clear standing bids from same sender if (Bids[_bidder].refunded == false) { if (Bids[_bidder].standing == true) { // loop through standing bidders and remove the address for (uint i = 0; i < standingBidders.length; i++) { if (standingBidders[i] == _bidder) { standingBidders[i] = standingBidders[standingBidders.length - 1]; standingBidders.pop(); break; } } } _safeTransferETH(_bidder, Bids[_bidder].amount); Bids[_bidder].refunded = true; } Bid memory new_bid; new_bid.bidder = payable(_bidder); new_bid.amount = msg.value; new_bid.timestamp = block.timestamp; new_bid.winner = false; new_bid.refunded = false; new_bid.standing = _standing; Bids[_bidder] = new_bid; if (_standing == true) { standingBidders.push(_bidder); } // Update the auction state with the new bid bidder and the new amount auction.bidder = payable(_bidder); auction.amount = msg.value; // Extend the auction if the bid was received within the time buffer bool extended = _auction.endTime - block.timestamp < timeBuffer; if (extended) { auction.endTime = _auction.endTime = _auction.endTime + timeBuffer; auction.extendedTime = _auction.extendedTime + timeBuffer; } emit AuctionBid(currentTokenId, _bidder, Bids[_bidder].amount, _standing, extended, false); if (extended) { emit AuctionExtended(currentTokenId, _auction.endTime); } } // Bidder cancel standing bid function cancelStandingBid() public nonReentrant { IAuctionHouse.Auction memory _auction = auction; require(Bids[msg.sender].standing == true, "No standing bid to cancel."); if (_auction.bidder != msg.sender) { // not highest bidder, refund _safeTransferETH(msg.sender, Bids[msg.sender].amount); Bids[msg.sender].refunded = true; } Bids[msg.sender].standing = false; // loop through standing bidders and remove the address for (uint i = 0; i < standingBidders.length; i++) { if (standingBidders[i] == msg.sender) { standingBidders[i] = standingBidders[standingBidders.length - 1]; standingBidders.pop(); break; } } emit CancelStandingBid(msg.sender); } // Creates bids for the current auction function createBid(uint256 _currentTokenId, bool _standing) external payable nonReentrant onlyUnpaused { // Query the auction state IAuctionHouse.Auction memory _auction = auction; // Check that the auction is live require(_currentTokenId == _auction.tokenId, 'Bid on wrong tokenId.'); require(block.timestamp < _auction.endTime, "Auction has ended"); require(block.timestamp > _auction.startTime, "Auction has not started"); require(msg.value >= minimumBid, "Bid is too low."); require( msg.value >= _auction.amount + ((_auction.amount * minBidIncrementPercentage) / 100), "Bid is too low." ); // A reference to benchmark the new bid against address payable lastBidder = _auction.bidder; // Refund the previous highest bidder, // if not standing bid if (lastBidder != address(0) && Bids[lastBidder].standing == false && Bids[lastBidder].refunded == false) { _safeTransferETH(lastBidder, _auction.amount); Bids[lastBidder].refunded = true; } // if overbidding self, remove old bid // clear standing bids from same sender if (Bids[msg.sender].refunded == false) { if (Bids[msg.sender].standing == true) { // loop through standing bidders and remove the address for (uint i = 0; i < standingBidders.length; i++) { if (standingBidders[i] == msg.sender) { standingBidders[i] = standingBidders[standingBidders.length - 1]; standingBidders.pop(); break; } } } _safeTransferETH(msg.sender, Bids[msg.sender].amount); Bids[msg.sender].refunded = true; } Bid memory new_bid; new_bid.bidder = payable(msg.sender); new_bid.amount = msg.value; new_bid.timestamp = block.timestamp; new_bid.winner = false; new_bid.refunded = false; new_bid.standing = _standing; Bids[msg.sender] = new_bid; if (_standing == true) { standingBidders.push(msg.sender); } // Update the auction state with the new bid bidder and the new amount auction.bidder = payable(msg.sender); auction.amount = msg.value; // Extend the auction if the bid was received within the time buffer bool extended = _auction.endTime - block.timestamp < timeBuffer; if (extended) { auction.endTime = _auction.endTime = _auction.endTime + timeBuffer; auction.extendedTime = _auction.extendedTime + timeBuffer; } emit AuctionBid(currentTokenId, msg.sender, Bids[msg.sender].amount, _standing, extended, false); if (extended) { emit AuctionExtended(currentTokenId, _auction.endTime); } } /* END PUBLIC FUNCTIONS */ /* INTERNAL FUNCTIONS */ /** * @notice Create an auction. * @dev Store the auction details in the `auction` state variable and emit an AuctionCreated event. * If the mint reverts, the minter was updated without pausing this contract first. To remedy this, * catch the revert and pause this contract. */ function _createAuction() internal { try oasis.mint(address(this)) returns (uint256 tokenId) { require(auction.endTime < block.timestamp, "AuctionHouse: auction not ended"); IAuctionHouse.Auction memory _auction = auction; auction = Auction({ tokenId: tokenId, amount: 0, startTime: block.timestamp, endTime: block.timestamp + duration - _auction.extendedTime, bidder: payable(0), settled: false, extendedTime: 0 }); currentTokenId = tokenId; emit AuctionCreated(tokenId, auction.startTime, auction.endTime); } catch Error(string memory) { _pause(); } } /** * Settle an auction, finalizing the bid and paying out to the owner. * If there are no bids, the Oasis is burned. */ function _settleAuction() internal { require(auction.startTime != 0, "Auction hasn't begun"); IAuctionHouse.Auction memory _auction = auction; Bid storage winning_bid = Bids[_auction.bidder]; require(_auction.startTime != 0, "Auction hasn't begun"); require(!_auction.settled, "Auction has already been settled"); require( block.timestamp >= _auction.endTime, "Auction hasn't completed" ); auction.settled = true; if (_auction.bidder == address(0)) { oasis.burn(_auction.tokenId); } else { oasis.transferFrom( address(this), _auction.bidder, _auction.tokenId ); winning_bid.winner = true; winning_bid.minted = true; if (winning_bid.standing == true) { winning_bid.standing = false; // loop through standing bidders and remove the address for (uint i = 0; i < standingBidders.length; i++) { if (standingBidders[i] == _auction.bidder) { standingBidders[i] = standingBidders[standingBidders.length - 1]; standingBidders.pop(); break; } } } } if (_auction.amount > 0) { _safeTransferETH(payee, _auction.amount); } emit AuctionSettled(_auction.tokenId, _auction.bidder, _auction.amount); } /** * Transfer ETH and return the success status. * This function only forwards 30,000 gas to the callee. */ function _safeTransferETH(address to, uint256 value) internal returns (bool) { (bool success, ) = to.call{value: value, gas: 30_000}(new bytes(0)); return success; } }
// SPDX-License-Identifier: GPL-3.0 /// @title Interface for Auction Houses pragma solidity ^0.8.6; import { Oasis } from "./Oasis.sol"; interface IAuctionHouse { struct Auction { // ID for the (ERC721 token ID) uint256 tokenId; // The current highest bid amount uint256 amount; // The time that the auction started uint256 startTime; // The time that the auction is scheduled to end uint256 endTime; // The address of the current highest bid address payable bidder; // Whether or not the auction has been settled bool settled; // amount of time auction was extended uint256 extendedTime; } event AuctionCreated(uint256 indexed tokenId, uint256 startTime, uint256 endTime); event AuctionBid(uint256 indexed tokenId, address sender, uint256 value, bool standing, bool extended, bool rollover); event AuctionExtended(uint256 indexed tokenId, uint256 endTime); event AuctionSettled(uint256 indexed tokenId, address winner, uint256 amount); event AuctionTimeBufferUpdated(uint256 timeBuffer); event AuctionReservePriceUpdated(uint256 reservePrice); event AuctionMinBidIncrementPercentageUpdated(uint256 minBidIncrementPercentage); event AuctionDurationUpdated(uint256 duration); event CancelStandingBid(address bidder); function settleAuction() external; function settleCurrentAndCreateNewAuction() external; function createBid(uint256 _currentTokenId, bool _standing) external payable; function cancelStandingBid() external; function pause() external; function unpause() external; function setTimeBuffer(uint256 timeBuffer) external; function setMinBidIncrementPercentage(uint8 minBidIncrementPercentage) external; function setDuration(uint256 _duration) external; }
// SPDX-License-Identifier: GPL-3.0 /// @title Interface for the Token pragma solidity ^0.8.6; import './IERC721.sol'; interface IOasis is IERC721 { event OperatorFlagged(address flaggedOperator, bool status); event TokenCreated(uint256 indexed tokenId); event TokenBurned(uint256 indexed tokenId); event MinterUpdated(address minter); event MinterLocked(); function mint(address _to) external returns (uint256); function promoMint(address to, uint256 quantity) external returns (uint256); function burn(uint256 tokenId) external; function setMinter(address minter) external; //function lockMinter() external; function setBaseURI(string memory _newBaseURI) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.3.2 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @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`. * * 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; /** * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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 Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: GPL-3.0 /** @title The Wild Oasis ERC-721 token * @dev This contract is for the Oasis project by Wildxyz */ // LICENSE // Oasis.sol is a modified version of the original code from the // NounsToken.sol— an implementation of OpenZeppelin's ERC-721: // https://github.com/nounsDAO/nouns-monorepo/blob/master/packages/nouns-contracts/contracts/NounsToken.sol // The original code is licensed under the GPL-3.0 license // Thank you to the Nouns team for the inspiration and code! pragma solidity ^0.8.6; import {UpdatableOperatorFilterer} from './UpdatableOperatorFilterer.sol'; import {RevokableDefaultOperatorFilterer} from './RevokableDefaultOperatorFilterer.sol'; import { Ownable } from './Ownable.sol'; import { ERC721 } from './ERC721.sol'; import { IERC721 } from './IERC721.sol'; import { Strings } from './Strings.sol'; import { ERC721Checkpointable } from './ERC721Checkpointable.sol'; import { IOasis } from './IOasis.sol'; contract Oasis is IOasis, Ownable, RevokableDefaultOperatorFilterer, ERC721Checkpointable { // An address who has permissions to mint Oasis tokens address public minter; // The internal Oasis ID tracker uint256 public _currentTokenId; // URI string public baseURI = ""; // Mapping of operators to whether they are approved or not mapping(address => bool) public authorized; // Mapping of addresses flagged for denying token interactions mapping(address => bool) public blockList; /** * @notice Require that the sender is the minter. */ modifier onlyMinter() { require(msg.sender == minter, "Sender is not the minter"); _; } constructor(address _minter) ERC721("Oasis", "OP") { minter = _minter; } /** * @notice updates the deny list * @param flaggedOperator the address to be added to the deny list * @param status whether the address is to be added or removed from the deny list */ function updateDenyList(address flaggedOperator, bool status) public onlyOwner { _updateDenyList(flaggedOperator, status); } /** * @notice Override isApprovedForAll * @param _owner The owner of the Nouns * @param operator The operator to check if approved */ function isApprovedForAll(address _owner, address operator) public view override(IERC721, ERC721) returns (bool) { require(blockList[operator] == false, "Operator has been denied by contract owner."); if (authorized[operator] == true) { return true; } return super.isApprovedForAll(_owner, operator); } /* OS */ function setApprovalForAll(address operator, bool approved) public override(IERC721, ERC721) onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public override(IERC721, ERC721) onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public override(IERC721, ERC721) onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override(IERC721, ERC721) onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override(IERC721, ERC721) onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } function owner() public view virtual override (Ownable, UpdatableOperatorFilterer) returns (address) { return Ownable.owner(); } /** * @notice sets the authorized operators for interacting with the contract * @param operator the address to be added to the authorized operators * @param approved whether the address is approved or not within authorized operators */ function setAuthorized(address operator, bool approved) public onlyOwner { authorized[operator] = approved; } /** * @notice Mint an Oasis token to the given address. * @dev Only callable by the minter. * @param _to The address to mint the Oasis token to. * @return The ID of the newly minted Oasis token. */ function mint(address _to) public onlyMinter override returns (uint256) { return _mintTo(_to, _currentTokenId++); } /** * @notice Mint an Oasis token to the given address. * @dev Only callable by the minter. * @param to The address to mint the Oasis token to. * @param quantity The number of tokens to mint. * @return The ID of the newly minted Oasis token. */ function promoMint(address to, uint256 quantity) public onlyMinter override returns (uint256) { uint256 tokenId = _currentTokenId; for (uint256 i = 0; i < quantity; i++) { _mintTo(to, tokenId++); } _currentTokenId = tokenId; return tokenId; } /** * @notice Burn a pass. * @dev Only callable by the minter. * @param tokenId The ID of the Oasis token to burn. */ function burn(uint256 tokenId) public onlyMinter override { _burn(tokenId); emit TokenBurned(tokenId); } /** @notice Provides the tokenURI of a specific token * @param _tokenId: the token ID * @return the URI of the token */ function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "Token does not exist."); return string( abi.encodePacked( baseURI, Strings.toString(_tokenId), ".json" ) ); } /** * @notice Set the token minter. * @dev Only callable by the owner when not locked. * @param _minter The address of the new minter. */ function setMinter(address _minter) external onlyOwner override { minter = _minter; //emit MinterUpdated(_minter); } /** * @notice Set the base URI. * @dev Only callable by the owner. * @param _newBaseURI The new base URI. */ function setBaseURI(string memory _newBaseURI) public onlyOwner override { baseURI = _newBaseURI; } ////////////////////////// // Internal Functions //// ////////////////////////// /** * @notice updates the deny list * @param flaggedOperator The address to be approved. * @param status True if the operator is approved, false to revoke approval. */ function _updateDenyList(address flaggedOperator, bool status) internal virtual { blockList[flaggedOperator] = status; //emit OperatorFlagged(flaggedOperator, status); } /** @notice Mints a new token * @param to: the address of the new owner looking to mint * @param tokenId: the token ID * @return the ID of the newly minted token */ function _mintTo(address to, uint256 tokenId) internal returns (uint256) { _mint(to, tokenId); emit TokenCreated(tokenId); return tokenId; } }
// SPDX-License-Identifier: MIT // @title Vote checkpointing for an ERC-721 token. // LICENSE // ERC721Checkpointable.sol uses and modifies part of Compound Lab's Comp.sol: // https://github.com/compound-finance/compound-protocol/blob/ae4388e780a8d596d97619d9704a931a2752c2bc/contracts/Governance/Comp.sol // // Comp.sol source code Copyright 2020 Compound Labs, Inc. licensed under the BSD-3-Clause license. // With modifications by Nounders DAO. // // Additional conditions of BSD-3-Clause can be found here: https://opensource.org/licenses/BSD-3-Clause // // MODIFICATIONS // Checkpointing logic from Comp.sol has been used with the following modifications: // - `delegates` is renamed to `_delegates` and is set to private // - `delegates` is a public function that uses the `_delegates` mapping look-up, but unlike // Comp.sol, returns the delegator's own address if there is no delegate. // This avoids the delegator needing to "delegate to self" with an additional transaction // - `_transferTokens()` is renamed `_beforeTokenTransfer()` and adapted to hook into OpenZeppelin's ERC721 hooks. // Thank you to the Nouns team for the inspiration and code! pragma solidity ^0.8.6; import './ERC721Enumerable.sol'; abstract contract ERC721Checkpointable is ERC721Enumerable { /// @notice Defines decimals as per ERC-20 convention to make integrations with 3rd party governance platforms easier uint8 public constant decimals = 0; /// @notice A record of each accounts delegate mapping(address => address) private _delegates; /// @notice A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint96 votes; } /// @notice A record of votes checkpoints for each account, by index mapping(address => mapping(uint32 => Checkpoint)) public checkpoints; /// @notice The number of checkpoints for each account mapping(address => uint32) public numCheckpoints; /// @notice The EIP-712 typehash for the contract's domain bytes32 public constant DOMAIN_TYPEHASH = keccak256('EIP712Domain(string name,uint256 chainId,address verifyingContract)'); /// @notice The EIP-712 typehash for the delegation struct used by the contract bytes32 public constant DELEGATION_TYPEHASH = keccak256('Delegation(address delegatee,uint256 nonce,uint256 expiry)'); /// @notice A record of states for signing / validating signatures mapping(address => uint256) public nonces; /// @notice An event thats emitted when an account changes its delegate event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); /// @notice An event thats emitted when a delegate account's vote balance changes event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance); /** * @notice The votes a delegator can delegate, which is the current balance of the delegator. * @dev Used when calling `_delegate()` */ function votesToDelegate(address delegator) public view returns (uint96) { return safe96(balanceOf(delegator), 'ERC721Checkpointable::votesToDelegate: amount exceeds 96 bits'); } /** * @notice Overrides the standard `Comp.sol` delegates mapping to return * the delegator's own address if they haven't delegated. * This avoids having to delegate to oneself. */ function delegates(address delegator) public view returns (address) { address current = _delegates[delegator]; return current == address(0) ? delegator : current; } /** * @notice Adapted from `_transferTokens()` in `Comp.sol` to update delegate votes. * @dev hooks into OpenZeppelin's `ERC721._transfer` */ function _beforeTokenTransfer( address from, address to, uint256 tokenId, uint256 batchSize ) internal override { super._beforeTokenTransfer(from, to, tokenId, batchSize); /// @notice Differs from `_transferTokens()` to use `delegates` override method to simulate auto-delegation _moveDelegates(delegates(from), delegates(to), 1); } /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) public { if (delegatee == address(0)) delegatee = msg.sender; return _delegate(msg.sender, delegatee); } /** * @notice Delegates votes from signatory to `delegatee` * @param delegatee The address to delegate votes to * @param nonce The contract state required to match the signature * @param expiry The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function delegateBySig( address delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s ) public { bytes32 domainSeparator = keccak256( abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name())), getChainId(), address(this)) ); bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry)); bytes32 digest = keccak256(abi.encodePacked('\x19\x01', domainSeparator, structHash)); address signatory = ecrecover(digest, v, r, s); require(signatory != address(0), 'ERC721Checkpointable::delegateBySig: invalid signature'); require(nonce == nonces[signatory]++, 'ERC721Checkpointable::delegateBySig: invalid nonce'); require(block.timestamp <= expiry, 'ERC721Checkpointable::delegateBySig: signature expired'); return _delegate(signatory, delegatee); } /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view returns (uint96) { uint32 nCheckpoints = numCheckpoints[account]; return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0; } /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ function getPriorVotes(address account, uint256 blockNumber) public view returns (uint96) { require(blockNumber < block.number, 'ERC721Checkpointable::getPriorVotes: not yet determined'); uint32 nCheckpoints = numCheckpoints[account]; if (nCheckpoints == 0) { return 0; } // First check most recent balance if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { return checkpoints[account][nCheckpoints - 1].votes; } // Next check implicit zero balance if (checkpoints[account][0].fromBlock > blockNumber) { return 0; } uint32 lower = 0; uint32 upper = nCheckpoints - 1; while (upper > lower) { uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow Checkpoint memory cp = checkpoints[account][center]; if (cp.fromBlock == blockNumber) { return cp.votes; } else if (cp.fromBlock < blockNumber) { lower = center; } else { upper = center - 1; } } return checkpoints[account][lower].votes; } function _delegate(address delegator, address delegatee) internal { /// @notice differs from `_delegate()` in `Comp.sol` to use `delegates` override method to simulate auto-delegation address currentDelegate = delegates(delegator); _delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); uint96 amount = votesToDelegate(delegator); _moveDelegates(currentDelegate, delegatee, amount); } function _moveDelegates( address srcRep, address dstRep, uint96 amount ) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { uint32 srcRepNum = numCheckpoints[srcRep]; uint96 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint96 srcRepNew = sub96(srcRepOld, amount, 'ERC721Checkpointable::_moveDelegates: amount underflows'); _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { uint32 dstRepNum = numCheckpoints[dstRep]; uint96 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint96 dstRepNew = add96(dstRepOld, amount, 'ERC721Checkpointable::_moveDelegates: amount overflows'); _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _writeCheckpoint( address delegatee, uint32 nCheckpoints, uint96 oldVotes, uint96 newVotes ) internal { uint32 blockNumber = safe32( block.number, 'ERC721Checkpointable::_writeCheckpoint: block number exceeds 32 bits' ); if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) { checkpoints[delegatee][nCheckpoints - 1].votes = newVotes; } else { checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes); numCheckpoints[delegatee] = nCheckpoints + 1; } emit DelegateVotesChanged(delegatee, oldVotes, newVotes); } function safe32(uint256 n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function safe96(uint256 n, string memory errorMessage) internal pure returns (uint96) { require(n < 2**96, errorMessage); return uint96(n); } function add96( uint96 a, uint96 b, string memory errorMessage ) internal pure returns (uint96) { uint96 c = a + b; require(c >= a, errorMessage); return c; } function sub96( uint96 a, uint96 b, string memory errorMessage ) internal pure returns (uint96) { require(b <= a, errorMessage); return a - b; } function getChainId() internal view returns (uint256) { uint256 chainId; assembly { chainId := chainid() } return chainId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @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. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256, /* firstTokenId */ uint256 batchSize ) internal virtual { if (batchSize > 1) { if (from != address(0)) { _balances[from] -= batchSize; } if (to != address(0)) { _balances[to] += batchSize; } } } /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {RevokableOperatorFilterer} from "./RevokableOperatorFilterer.sol"; /** * @title RevokableDefaultOperatorFilterer * @notice Inherits from RevokableOperatorFilterer and automatically subscribes to the default OpenSea subscription. * Note that OpenSea will disable creator fee enforcement if filtered operators begin fulfilling orders * on-chain, eg, if the registry is revoked or bypassed. */ abstract contract RevokableDefaultOperatorFilterer is RevokableOperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() RevokableOperatorFilterer(0x000000000000AAeB6D7670E522A718067333cd4E, DEFAULT_SUBSCRIPTION, true) {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol"; /** * @title UpdatableOperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. This contract allows the Owner to update the * OperatorFilterRegistry address via updateOperatorFilterRegistryAddress, including to the zero address, * which will bypass registry checks. * Note that OpenSea will still disable creator fee enforcement if filtered operators begin fulfilling orders * on-chain, eg, if the registry is revoked or bypassed. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract UpdatableOperatorFilterer { error OperatorNotAllowed(address operator); error OnlyOwner(); IOperatorFilterRegistry public operatorFilterRegistry; constructor(address _registry, address subscriptionOrRegistrantToCopy, bool subscribe) { IOperatorFilterRegistry registry = IOperatorFilterRegistry(_registry); operatorFilterRegistry = registry; // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(registry).code.length > 0) { if (subscribe) { registry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { registry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { registry.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } /** * @notice Update the address that the contract will make OperatorFilter checks against. When set to the zero * address, checks will be bypassed. OnlyOwner. */ function updateOperatorFilterRegistryAddress(address newRegistry) public virtual { if (msg.sender != owner()) { revert OnlyOwner(); } operatorFilterRegistry = IOperatorFilterRegistry(newRegistry); } /** * @dev assume the contract has an owner, but leave specific Ownable implementation up to inheriting contract */ function owner() public view virtual returns (address); function _checkFilterOperator(address operator) internal view virtual { IOperatorFilterRegistry registry = operatorFilterRegistry; // Check registry code length to facilitate testing in environments without a deployed registry. if (address(registry) != address(0) && address(registry).code.length > 0) { if (!registry.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {UpdatableOperatorFilterer} from "./UpdatableOperatorFilterer.sol"; import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol"; /** * @title RevokableOperatorFilterer * @notice This contract is meant to allow contracts to permanently skip OperatorFilterRegistry checks if desired. The * Registry itself has an "unregister" function, but if the contract is ownable, the owner can re-register at * any point. As implemented, this abstract contract allows the contract owner to permanently skip the * OperatorFilterRegistry checks by calling revokeOperatorFilterRegistry. Once done, the registry * address cannot be further updated. * Note that OpenSea will still disable creator fee enforcement if filtered operators begin fulfilling orders * on-chain, eg, if the registry is revoked or bypassed. */ abstract contract RevokableOperatorFilterer is UpdatableOperatorFilterer { error RegistryHasBeenRevoked(); error InitialRegistryAddressCannotBeZeroAddress(); bool public isOperatorFilterRegistryRevoked; constructor(address _registry, address subscriptionOrRegistrantToCopy, bool subscribe) UpdatableOperatorFilterer(_registry, subscriptionOrRegistrantToCopy, subscribe) { // don't allow creating a contract with a permanently revoked registry if (_registry == address(0)) { revert InitialRegistryAddressCannotBeZeroAddress(); } } function _checkFilterOperator(address operator) internal view virtual override { if (address(operatorFilterRegistry) != address(0)) { super._checkFilterOperator(operator); } } /** * @notice Update the address that the contract will make OperatorFilter checks against. When set to the zero * address, checks will be permanently bypassed, and the address cannot be updated again. OnlyOwner. */ function updateOperatorFilterRegistryAddress(address newRegistry) public override { if (msg.sender != owner()) { revert OnlyOwner(); } // if registry has been revoked, do not allow further updates if (isOperatorFilterRegistryRevoked) { revert RegistryHasBeenRevoked(); } operatorFilterRegistry = IOperatorFilterRegistry(newRegistry); } /** * @notice Revoke the OperatorFilterRegistry address, permanently bypassing checks. OnlyOwner. */ function revokeOperatorFilterRegistry() public { if (msg.sender != owner()) { revert OnlyOwner(); } // if registry has been revoked, do not allow further updates if (isOperatorFilterRegistryRevoked) { revert RegistryHasBeenRevoked(); } // set to zero address to bypass checks operatorFilterRegistry = IOperatorFilterRegistry(address(0)); isOperatorFilterRegistryRevoked = true; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "./ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev See {ERC721-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual override { super._beforeTokenTransfer(from, to, firstTokenId, batchSize); if (batchSize > 1) { // Will only trigger during construction. Batch transferring (minting) is not available afterwards. revert("ERC721Enumerable: consecutive transfers not supported"); } uint256 tokenId = firstTokenId; if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @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://consensys.net/diligence/blog/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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @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, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (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 IERC721Receiver { /** * @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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract Oasis","name":"_oasis","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bool","name":"standing","type":"bool"},{"indexed":false,"internalType":"bool","name":"extended","type":"bool"},{"indexed":false,"internalType":"bool","name":"rollover","type":"bool"}],"name":"AuctionBid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"startTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endTime","type":"uint256"}],"name":"AuctionCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"duration","type":"uint256"}],"name":"AuctionDurationUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endTime","type":"uint256"}],"name":"AuctionExtended","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minBidIncrementPercentage","type":"uint256"}],"name":"AuctionMinBidIncrementPercentageUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reservePrice","type":"uint256"}],"name":"AuctionReservePriceUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"winner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"AuctionSettled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timeBuffer","type":"uint256"}],"name":"AuctionTimeBufferUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"bidder","type":"address"}],"name":"CancelStandingBid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Bids","outputs":[{"internalType":"address payable","name":"bidder","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bool","name":"minted","type":"bool"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"bool","name":"refunded","type":"bool"},{"internalType":"bool","name":"winner","type":"bool"},{"internalType":"bool","name":"standing","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auction","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"address payable","name":"bidder","type":"address"},{"internalType":"bool","name":"settled","type":"bool"},{"internalType":"uint256","name":"extendedTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cancelAllStandingBid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cancelStandingBid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_currentTokenId","type":"uint256"},{"internalType":"bool","name":"_standing","type":"bool"}],"name":"createBid","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"duration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minBidIncrementPercentage","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimumBid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oasis","outputs":[{"internalType":"contract Oasis","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_currentTokenId","type":"uint256"},{"internalType":"bool","name":"_standing","type":"bool"},{"internalType":"address","name":"_bidder","type":"address"}],"name":"ownerBidOnBehalf","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payee","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"promoMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Oasis","name":"_newOasis","type":"address"}],"name":"set721ContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_duration","type":"uint256"}],"name":"setDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_minBidIncrementPercentage","type":"uint8"}],"name":"setMinBidIncrementPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minimumBid","type":"uint256"}],"name":"setMinimumBid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_payee","type":"address"}],"name":"setPayee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_timeBuffer","type":"uint256"}],"name":"setTimeBuffer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"settleAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"settleCurrentAndCreateNewAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"standingBidders","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeBuffer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052607860035567016345785d8a0000600455620151806005556006805460ff1916600a1790553480156200003657600080fd5b5060405162002ff238038062002ff28339810160408190526200005991620001c2565b6000805460ff19169055600180556200007233620000c6565b600880546001600160a01b0319166001600160a01b03831617905560068054610100600160a81b03191674710900ca8c7c280b0e6bb005e60dfe1cf6e5fa4c00179055620000bf62000118565b50620001f4565b600280546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200012262000175565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620001583390565b6040516001600160a01b03909116815260200160405180910390a1565b60005460ff1615620001c05760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640160405180910390fd5b565b600060208284031215620001d557600080fd5b81516001600160a01b0381168114620001ed57600080fd5b9392505050565b612dee80620002046000396000f3fe6080604052600436106101cc5760003560e01c80638cee3398116100f7578063d3a8638611610095578063f2fde38b11610064578063f2fde38b146105c4578063f6be71d1146105e4578063fba3e65314610604578063fe1b06af1461061957600080fd5b8063d3a863861461056e578063ec91f2a414610584578063ec9ef06c1461059a578063f25efffc146105af57600080fd5b8063a3afda1a116100d1578063a3afda1a146104e8578063a4d0a17e14610508578063ae90b2131461051d578063b296024d1461054257600080fd5b80638cee3398146104725780638da5cb5b146104aa578063a2a3eb4d146104c857600080fd5b8063410459ad1161016f578063715018a61161013e578063715018a6146103a75780637d9f6db5146103bc5780638456cb591461043d57806386495b041461045257600080fd5b8063410459ad1461032457806358d5d666146103445780635c975abb146103645780637120334b1461038757600080fd5b806336ebdb38116101ab57806336ebdb38146102c557806339684216146102e75780633ccfd60b146102fa5780633f4ba83a1461030f57600080fd5b80629a9b7b146101d15780630251e03e146101fa5780630fb5a6b4146102af575b600080fd5b3480156101dd57600080fd5b506101e760095481565b6040519081526020015b60405180910390f35b34801561020657600080fd5b50610266610215366004612a01565b601060205260009081526040902080546001820154600283015460038401546004909401546001600160a01b0390931693919260ff9182169291818116916101008104821691620100009091041687565b604080516001600160a01b03909816885260208801969096529315159486019490945260608501919091521515608084015290151560a0830152151560c082015260e0016101f1565b3480156102bb57600080fd5b506101e760055481565b3480156102d157600080fd5b506102e56102e0366004612a25565b61062c565b005b6102e56102f5366004612a5d565b6106a8565b34801561030657600080fd5b506102e5610d11565b34801561031b57600080fd5b506102e5610dbc565b34801561033057600080fd5b506102e561033f366004612a01565b610e15565b34801561035057600080fd5b506102e561035f366004612a01565b610e67565b34801561037057600080fd5b5060005460ff1660405190151581526020016101f1565b34801561039357600080fd5b506102e56103a2366004612a89565b610eb3565b3480156103b357600080fd5b506102e5610f12565b3480156103c857600080fd5b50600a54600b54600c54600d54600e54600f546103fd95949392916001600160a01b03811691600160a01b90910460ff169087565b6040805197885260208801969096529486019390935260608501919091526001600160a01b03166080840152151560a083015260c082015260e0016101f1565b34801561044957600080fd5b506102e5610f46565b34801561045e57600080fd5b506102e561046d366004612a89565b610f78565b34801561047e57600080fd5b5061049261048d366004612a89565b610fa7565b6040516001600160a01b0390911681526020016101f1565b3480156104b657600080fd5b506002546001600160a01b0316610492565b3480156104d457600080fd5b506102e56104e3366004612aa2565b610fd1565b3480156104f457600080fd5b50600854610492906001600160a01b031681565b34801561051457600080fd5b506102e5611077565b34801561052957600080fd5b506006546104929061010090046001600160a01b031681565b34801561054e57600080fd5b5060065461055c9060ff1681565b60405160ff90911681526020016101f1565b34801561057a57600080fd5b506101e760045481565b34801561059057600080fd5b506101e760035481565b3480156105a657600080fd5b506102e56110de565b3480156105bb57600080fd5b506102e561140c565b3480156105d057600080fd5b506102e56105df366004612a01565b6114a7565b3480156105f057600080fd5b506102e56105ff366004612a89565b61153f565b34801561061057600080fd5b506102e561159e565b6102e5610627366004612ace565b611838565b6002546001600160a01b0316331461065f5760405162461bcd60e51b815260040161065690612b0e565b60405180910390fd5b6006805460ff191660ff83169081179091556040519081527fec5ccd96cc77b6219e9d44143df916af68fc169339ea7de5008ff15eae13450d906020015b60405180910390a150565b6002600154036106ca5760405162461bcd60e51b815260040161065690612b43565b600260015560005460ff16156107195760405162461bcd60e51b8152602060048201526014602482015273105d58dd1a5bdb921bdd5cd94e881c185d5cd95960621b6044820152606401610656565b6040805160e081018252600a54808252600b546020830152600c5492820192909252600d546060820152600e546001600160a01b0381166080830152600160a01b900460ff16151560a0820152600f5460c08201529083146107b55760405162461bcd60e51b81526020600482015260156024820152742134b21037b7103bb937b733903a37b5b2b724b21760591b6044820152606401610656565b806060015142106107fc5760405162461bcd60e51b8152602060048201526011602482015270105d58dd1a5bdb881a185cc8195b991959607a1b6044820152606401610656565b806040015142116108495760405162461bcd60e51b8152602060048201526017602482015276105d58dd1a5bdb881a185cc81b9bdd081cdd185c9d1959604a1b6044820152606401610656565b60045434101561086b5760405162461bcd60e51b815260040161065690612b7a565b60065460208201516064916108859160ff90911690612bb9565b61088f9190612bd0565b816020015161089e9190612bf2565b3410156108bd5760405162461bcd60e51b815260040161065690612b7a565b60808101516001600160a01b038116158015906108fc57506001600160a01b03811660009081526010602052604090206004015462010000900460ff16155b801561092457506001600160a01b03811660009081526010602052604090206004015460ff16155b1561095f57610937818360200151611e9b565b506001600160a01b0381166000908152601060205260409020600401805460ff191660011790555b3360009081526010602052604081206004015460ff1615159003610ae8573360009081526010602052604090206004015462010000900460ff161515600103610aac5760005b600754811015610aaa57336001600160a01b0316600782815481106109cc576109cc612c05565b6000918252602090912001546001600160a01b031603610a9857600780546109f690600190612c1b565b81548110610a0657610a06612c05565b600091825260209091200154600780546001600160a01b039092169183908110610a3257610a32612c05565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506007805480610a7157610a71612c2e565b600082815260209020810160001990810180546001600160a01b0319169055019055610aaa565b80610aa281612c44565b9150506109a5565b505b33600081815260106020526040902060010154610ac99190611e9b565b50336000908152601060205260409020600401805460ff191660011790555b6040805160e08101825260008183018181526080830182815260a084018381523380865234602080880191825242606089019081528c151560c08a01818152948952601090925298909620875181546001600160a01b0319166001600160a01b039091161781559051600180830191909155945160028201805460ff1916911515919091179055965160038801559151600490960180549151925161ffff1990921696151561ff00191696909617610100921515929092029190911762ff00001916620100009115159190910217909355909103610c0357600780546001810182556000919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b031916331790555b600e80546001600160a01b0319163317905534600b55600354606084015160009190610c30904290612c1b565b1090508015610c6b576003548460600151610c4b9190612bf2565b60608501819052600d5560035460c0850151610c679190612bf2565b600f555b600954336000818152601060205260408082206001015490517f2bac37935fe2935b66c6502f7492e60a3323e2f74bbcdcb502bd320d5d68569193610cb6939092918b918891612c5d565b60405180910390a28015610d05576009547f6e912a3a9105bdd2af817ba5adc14e6c127c1035b5b648faa29ca0d58ab8ff4e8560600151604051610cfc91815260200190565b60405180910390a25b50506001805550505050565b60065460405160009161010090046001600160a01b03169047908381818185875af1925050503d8060008114610d63576040519150601f19603f3d011682016040523d82523d6000602084013e610d68565b606091505b5050905080610db95760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2073656e6420746f2070617965652e00000000000000006044820152606401610656565b50565b6002546001600160a01b03163314610de65760405162461bcd60e51b815260040161065690612b0e565b610dee611f1b565b600c541580610e065750600e54600160a01b900460ff165b15610e1357610e13611f6d565b565b6002546001600160a01b03163314610e3f5760405162461bcd60e51b815260040161065690612b0e565b600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6002546001600160a01b03163314610e915760405162461bcd60e51b815260040161065690612b0e565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6002546001600160a01b03163314610edd5760405162461bcd60e51b815260040161065690612b0e565b60038190556040518181527f1b55d9f7002bda4490f467e326f22a4a847629c0f2d1ed421607d318d25b410d9060200161069d565b6002546001600160a01b03163314610f3c5760405162461bcd60e51b815260040161065690612b0e565b610e1360006121b8565b6002546001600160a01b03163314610f705760405162461bcd60e51b815260040161065690612b0e565b610e1361220a565b6002546001600160a01b03163314610fa25760405162461bcd60e51b815260040161065690612b0e565b600455565b60078181548110610fb757600080fd5b6000918252602090912001546001600160a01b0316905081565b6002546001600160a01b03163314610ffb5760405162461bcd60e51b815260040161065690612b0e565b60085460405163a2a3eb4d60e01b81526001600160a01b038481166004830152602482018490529091169063a2a3eb4d906044016020604051808303816000875af115801561104e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110729190612c8f565b505050565b61107f612247565b6002546001600160a01b031633146110a95760405162461bcd60e51b815260040161065690612b0e565b6002600154036110cb5760405162461bcd60e51b815260040161065690612b43565b60026001556110d8612290565b60018055565b6002600154036111005760405162461bcd60e51b815260040161065690612b43565b60026001819055546001600160a01b0316331461112f5760405162461bcd60e51b815260040161065690612b0e565b6040805160e081018252600a548152600b546020820152600c5491810191909152600d546060820152600e546001600160a01b0381166080830152600160a01b900460ff16151560a0820152600f5460c082015260005b60075481101561140457600781815481106111a3576111a3612c05565b60009182526020909120015460808301516001600160a01b039081169116146112905761123e600782815481106111dc576111dc612c05565b9060005260206000200160009054906101000a90046001600160a01b0316601060006007858154811061121157611211612c05565b60009182526020808320909101546001600160a01b03168352820192909252604001902060010154611e9b565b506001601060006007848154811061125857611258612c05565b6000918252602080832091909101546001600160a01b031683528201929092526040019020600401805460ff19169115159190911790555b600060106000600784815481106112a9576112a9612c05565b60009182526020808320909101546001600160a01b0316835282019290925260400190206004018054911515620100000262ff000019909216919091179055600780546112f890600190612c1b565b8154811061130857611308612c05565b600091825260209091200154600780546001600160a01b03909216918390811061133457611334612c05565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600780548061137357611373612c2e565b600082815260209020810160001990810180546001600160a01b0319169055019055600780547fbb53f42020feb735caae55bd4cb04b126ed4f70d84b5da86388726b15e905f769190839081106113cc576113cc612c05565b600091825260209182902001546040516001600160a01b0390911681520160405180910390a1806113fc81612c44565b915050611186565b505060018055565b60026001540361142e5760405162461bcd60e51b815260040161065690612b43565b600260015561143b612290565b611443611f6d565b61144b6126fd565b600c544210156110d85760405162461bcd60e51b815260206004820152602160248201527f41756374696f6e486f7573653a2061756374696f6e206e6f74207374617274656044820152601960fa1b6064820152608401610656565b6002546001600160a01b031633146114d15760405162461bcd60e51b815260040161065690612b0e565b6001600160a01b0381166115365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610656565b610db9816121b8565b6002546001600160a01b031633146115695760405162461bcd60e51b815260040161065690612b0e565b60058190556040518181527faab6389d8f1c16ba1deb6e9831f5c5442cf4fcf99bf5bfa867460be408a911189060200161069d565b6002600154036115c05760405162461bcd60e51b815260040161065690612b43565b600260019081556040805160e081018252600a548152600b54602080830191909152600c5482840152600d546060830152600e546001600160a01b038116608084015260ff600160a01b9091048116151560a0840152600f5460c084015233600090815260109092529290206004015490926201000090910490911615151461168b5760405162461bcd60e51b815260206004820152601a60248201527f4e6f207374616e64696e672062696420746f2063616e63656c2e0000000000006044820152606401610656565b60808101516001600160a01b031633146116db57336000818152601060205260409020600101546116bc9190611e9b565b50336000908152601060205260409020600401805460ff191660011790555b336000908152601060205260408120600401805462ff0000191690555b6007548110156117fd57336001600160a01b03166007828154811061171f5761171f612c05565b6000918252602090912001546001600160a01b0316036117eb576007805461174990600190612c1b565b8154811061175957611759612c05565b600091825260209091200154600780546001600160a01b03909216918390811061178557611785612c05565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060078054806117c4576117c4612c2e565b600082815260209020810160001990810180546001600160a01b03191690550190556117fd565b806117f581612c44565b9150506116f8565b506040513381527fbb53f42020feb735caae55bd4cb04b126ed4f70d84b5da86388726b15e905f769060200160405180910390a15060018055565b60026001540361185a5760405162461bcd60e51b815260040161065690612b43565b60026001819055546001600160a01b031633146118895760405162461bcd60e51b815260040161065690612b0e565b6040805160e081018252600a54808252600b546020830152600c5492820192909252600d546060820152600e546001600160a01b0381166080830152600160a01b900460ff16151560a0820152600f5460c08201529084146119255760405162461bcd60e51b81526020600482015260156024820152742134b21037b7103bb937b733903a37b5b2b724b21760591b6044820152606401610656565b8060600151421061196c5760405162461bcd60e51b8152602060048201526011602482015270105d58dd1a5bdb881a185cc8195b991959607a1b6044820152606401610656565b806040015142116119b95760405162461bcd60e51b8152602060048201526017602482015276105d58dd1a5bdb881a185cc81b9bdd081cdd185c9d1959604a1b6044820152606401610656565b6004543410156119db5760405162461bcd60e51b815260040161065690612b7a565b806020015134116119fe5760405162461bcd60e51b815260040161065690612b7a565b60808101516001600160a01b03811615801590611a3d57506001600160a01b03811660009081526010602052604090206004015462010000900460ff16155b8015611a6557506001600160a01b03811660009081526010602052604090206004015460ff16155b15611aa057611a78818360200151611e9b565b506001600160a01b0381166000908152601060205260409020600401805460ff191660011790555b6001600160a01b03831660009081526010602052604081206004015460ff1615159003611c4e576001600160a01b03831660009081526010602052604090206004015462010000900460ff161515600103611bff5760005b600754811015611bfd57836001600160a01b031660078281548110611b1f57611b1f612c05565b6000918252602090912001546001600160a01b031603611beb5760078054611b4990600190612c1b565b81548110611b5957611b59612c05565b600091825260209091200154600780546001600160a01b039092169183908110611b8557611b85612c05565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506007805480611bc457611bc4612c2e565b600082815260209020810160001990810180546001600160a01b0319169055019055611bfd565b80611bf581612c44565b915050611af8565b505b6001600160a01b038316600090815260106020526040902060010154611c26908490611e9b565b506001600160a01b0383166000908152601060205260409020600401805460ff191660011790555b6040805160e08101825260008183018181526080830182815260a084018381526001600160a01b038981168087523460208089019182524260608a019081528e151560c08b01818152948a52601090925299909720885181546001600160a01b031916941693909317835551600180840191909155945160028301805460ff1916911515919091179055965160038201559151600490920180549151965161ffff1990921692151561ff00191692909217610100961515969096029590951762ff00001916620100009515159590950294909417909355909103611d7857600780546001810182556000919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319166001600160a01b0386161790555b600e80546001600160a01b0319166001600160a01b03861617905534600b55600354606084015160009190611dae904290612c1b565b1090508015611de9576003548460600151611dc99190612bf2565b60608501819052600d5560035460c0850151611de59190612bf2565b600f555b6009546001600160a01b0386166000908152601060205260408082206001015490517f2bac37935fe2935b66c6502f7492e60a3323e2f74bbcdcb502bd320d5d68569192611e3f928a9290918c91889190612c5d565b60405180910390a28015611e8e576009547f6e912a3a9105bdd2af817ba5adc14e6c127c1035b5b648faa29ca0d58ab8ff4e8560600151604051611e8591815260200190565b60405180910390a25b5050600180555050505050565b6040805160008082526020820190925281906001600160a01b03851690617530908590604051611ecb9190612ca8565b600060405180830381858888f193505050503d8060008114611f09576040519150601f19603f3d011682016040523d82523d6000602084013e611f0e565b606091505b5090925050505b92915050565b611f23612247565b6000805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6008546040516335313c2160e11b81523060048201526001600160a01b0390911690636a627842906024016020604051808303816000875af1925050508015611fd3575060408051601f3d908101601f19168201909252611fd091810190612c8f565b60015b61201257611fdf612cd7565b806308c379a0036120065750611ff3612d2e565b80611ffe5750612008565b610db961220a565b505b3d6000803e3d6000fd5b600d5442116120635760405162461bcd60e51b815260206004820152601f60248201527f41756374696f6e486f7573653a2061756374696f6e206e6f7420656e646564006044820152606401610656565b6040805160e08082018352600a548252600b54602080840191909152600c5483850152600d54606080850191909152600e546001600160a01b0381166080860152600160a01b900460ff16151560a0850152600f5460c0850190815285519384018652868452600092840192909252429483018590529051600554939492939184019290916120f191612bf2565b6120fb9190612c1b565b81526000602080830182905260408084018390526060938401929092528351600a5583810151600b5583820151600c81905592840151600d8190556080850151600e805460a08801511515600160a01b026001600160a81b03199091166001600160a01b039093169290921791909117905560c090940151600f556009869055815192835282019290925283917fd6eddd1118d71820909c1197aa966dbc15ed6f508554252169cc3d5ccac756ca91015b60405180910390a25050565b600280546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6122126129a6565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f503390565b60005460ff16610e135760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610656565b600c546000036122d95760405162461bcd60e51b815260206004820152601460248201527320bab1ba34b7b7103430b9b713ba103132b3bab760611b6044820152606401610656565b6040805160e081018252600a548152600b54602080830191909152600c54828401908152600d546060840152600e546001600160a01b03811660808501819052600160a01b90910460ff16151560a0850152600f5460c0850152600090815260109092529281209251919291900361238a5760405162461bcd60e51b815260206004820152601460248201527320bab1ba34b7b7103430b9b713ba103132b3bab760611b6044820152606401610656565b8160a00151156123dc5760405162461bcd60e51b815260206004820181905260248201527f41756374696f6e2068617320616c7265616479206265656e20736574746c65646044820152606401610656565b81606001514210156124305760405162461bcd60e51b815260206004820152601860248201527f41756374696f6e206861736e277420636f6d706c6574656400000000000000006044820152606401610656565b600e805460ff60a01b1916600160a01b17905560808201516001600160a01b03166124c0576008548251604051630852cd8d60e31b81526001600160a01b03909216916342966c68916124899160040190815260200190565b600060405180830381600087803b1580156124a357600080fd5b505af11580156124b7573d6000803e3d6000fd5b50505050612687565b600854608083015183516040516323b872dd60e01b81523060048201526001600160a01b03928316602482015260448101919091529116906323b872dd90606401600060405180830381600087803b15801561251b57600080fd5b505af115801561252f573d6000803e3d6000fd5b50505060048201805461ff001916610100179081905560028301805460ff191660019081179091556201000090910460ff161515900390506126875760048101805462ff00001916905560005b6007548110156126855782608001516001600160a01b0316600782815481106125a7576125a7612c05565b6000918252602090912001546001600160a01b03160361267357600780546125d190600190612c1b565b815481106125e1576125e1612c05565b600091825260209091200154600780546001600160a01b03909216918390811061260d5761260d612c05565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600780548061264c5761264c612c2e565b600082815260209020810160001990810180546001600160a01b0319169055019055612685565b8061267d81612c44565b91505061257c565b505b6020820151156126b35760065460208301516126b19161010090046001600160a01b031690611e9b565b505b81516080830151602080850151604080516001600160a01b039094168452918301527fc9f72b276a388619c6d185d146697036241880c36654b1a3ffdad07c24038d9991016121ac565b6040805160e081018252600a548152600b546020820152600c5491810191909152600d546060820152600e546001600160a01b0381166080830152600160a01b900460ff16151560a0820152600f5460c0820152600080805b6007548110156129795782601060006007848154811061277857612778612c05565b60009182526020808320909101546001600160a01b031683528201929092526040019020600101541180156127ec575060106000600783815481106127bf576127bf612c05565b60009182526020808320909101546001600160a01b0316835282019290925260400190206004015460ff16155b80156128425750601060006007838154811061280a5761280a612c05565b60009182526020808320909101546001600160a01b0316835282019290925260400190206004015460ff620100009091041615156001145b156128b657601060006007838154811061285e5761285e612c05565b60009182526020808320909101546001600160a01b0316835282019290925260400190206001015460078054919450908290811061289e5761289e612c05565b6000918252602090912001546001600160a01b031691505b83600001517f2bac37935fe2935b66c6502f7492e60a3323e2f74bbcdcb502bd320d5d685691600783815481106128ef576128ef612c05565b9060005260206000200160009054906101000a90046001600160a01b0316601060006007868154811061292457612924612c05565b60009182526020808320909101546001600160a01b0316835282019290925260409081018220600190810154915161295f9493908290612c5d565b60405180910390a28061297181612c44565b915050612756565b50811561107257600e80546001600160a01b0319166001600160a01b0392909216919091179055600b5550565b60005460ff1615610e135760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610656565b6001600160a01b0381168114610db957600080fd5b600060208284031215612a1357600080fd5b8135612a1e816129ec565b9392505050565b600060208284031215612a3757600080fd5b813560ff81168114612a1e57600080fd5b80358015158114612a5857600080fd5b919050565b60008060408385031215612a7057600080fd5b82359150612a8060208401612a48565b90509250929050565b600060208284031215612a9b57600080fd5b5035919050565b60008060408385031215612ab557600080fd5b8235612ac0816129ec565b946020939093013593505050565b600080600060608486031215612ae357600080fd5b83359250612af360208501612a48565b91506040840135612b03816129ec565b809150509250925092565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252600f908201526e2134b21034b9903a37b7903637bb9760891b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417611f1557611f15612ba3565b600082612bed57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115611f1557611f15612ba3565b634e487b7160e01b600052603260045260246000fd5b81810381811115611f1557611f15612ba3565b634e487b7160e01b600052603160045260246000fd5b600060018201612c5657612c56612ba3565b5060010190565b6001600160a01b0395909516855260208501939093529015156040840152151560608301521515608082015260a00190565b600060208284031215612ca157600080fd5b5051919050565b6000825160005b81811015612cc95760208186018101518583015201612caf565b506000920191825250919050565b600060033d1115612cf05760046000803e5060005160e01c5b90565b601f8201601f1916810167ffffffffffffffff81118282101715612d2757634e487b7160e01b600052604160045260246000fd5b6040525050565b600060443d1015612d3c5790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715612d6c57505050505090565b8285019150815181811115612d845750505050505090565b843d8701016020828501011115612d9e5750505050505090565b612dad60208286010187612cf3565b50909594505050505056fea264697066735822122028400d677c2442bb1a7ed84f017bc1bf7c6f7130cb0603ed1154ab923ab54ce564736f6c63430008120033000000000000000000000000898157afb3e158cc835d19b9ecd37c69bf460f8c
Deployed Bytecode
0x6080604052600436106101cc5760003560e01c80638cee3398116100f7578063d3a8638611610095578063f2fde38b11610064578063f2fde38b146105c4578063f6be71d1146105e4578063fba3e65314610604578063fe1b06af1461061957600080fd5b8063d3a863861461056e578063ec91f2a414610584578063ec9ef06c1461059a578063f25efffc146105af57600080fd5b8063a3afda1a116100d1578063a3afda1a146104e8578063a4d0a17e14610508578063ae90b2131461051d578063b296024d1461054257600080fd5b80638cee3398146104725780638da5cb5b146104aa578063a2a3eb4d146104c857600080fd5b8063410459ad1161016f578063715018a61161013e578063715018a6146103a75780637d9f6db5146103bc5780638456cb591461043d57806386495b041461045257600080fd5b8063410459ad1461032457806358d5d666146103445780635c975abb146103645780637120334b1461038757600080fd5b806336ebdb38116101ab57806336ebdb38146102c557806339684216146102e75780633ccfd60b146102fa5780633f4ba83a1461030f57600080fd5b80629a9b7b146101d15780630251e03e146101fa5780630fb5a6b4146102af575b600080fd5b3480156101dd57600080fd5b506101e760095481565b6040519081526020015b60405180910390f35b34801561020657600080fd5b50610266610215366004612a01565b601060205260009081526040902080546001820154600283015460038401546004909401546001600160a01b0390931693919260ff9182169291818116916101008104821691620100009091041687565b604080516001600160a01b03909816885260208801969096529315159486019490945260608501919091521515608084015290151560a0830152151560c082015260e0016101f1565b3480156102bb57600080fd5b506101e760055481565b3480156102d157600080fd5b506102e56102e0366004612a25565b61062c565b005b6102e56102f5366004612a5d565b6106a8565b34801561030657600080fd5b506102e5610d11565b34801561031b57600080fd5b506102e5610dbc565b34801561033057600080fd5b506102e561033f366004612a01565b610e15565b34801561035057600080fd5b506102e561035f366004612a01565b610e67565b34801561037057600080fd5b5060005460ff1660405190151581526020016101f1565b34801561039357600080fd5b506102e56103a2366004612a89565b610eb3565b3480156103b357600080fd5b506102e5610f12565b3480156103c857600080fd5b50600a54600b54600c54600d54600e54600f546103fd95949392916001600160a01b03811691600160a01b90910460ff169087565b6040805197885260208801969096529486019390935260608501919091526001600160a01b03166080840152151560a083015260c082015260e0016101f1565b34801561044957600080fd5b506102e5610f46565b34801561045e57600080fd5b506102e561046d366004612a89565b610f78565b34801561047e57600080fd5b5061049261048d366004612a89565b610fa7565b6040516001600160a01b0390911681526020016101f1565b3480156104b657600080fd5b506002546001600160a01b0316610492565b3480156104d457600080fd5b506102e56104e3366004612aa2565b610fd1565b3480156104f457600080fd5b50600854610492906001600160a01b031681565b34801561051457600080fd5b506102e5611077565b34801561052957600080fd5b506006546104929061010090046001600160a01b031681565b34801561054e57600080fd5b5060065461055c9060ff1681565b60405160ff90911681526020016101f1565b34801561057a57600080fd5b506101e760045481565b34801561059057600080fd5b506101e760035481565b3480156105a657600080fd5b506102e56110de565b3480156105bb57600080fd5b506102e561140c565b3480156105d057600080fd5b506102e56105df366004612a01565b6114a7565b3480156105f057600080fd5b506102e56105ff366004612a89565b61153f565b34801561061057600080fd5b506102e561159e565b6102e5610627366004612ace565b611838565b6002546001600160a01b0316331461065f5760405162461bcd60e51b815260040161065690612b0e565b60405180910390fd5b6006805460ff191660ff83169081179091556040519081527fec5ccd96cc77b6219e9d44143df916af68fc169339ea7de5008ff15eae13450d906020015b60405180910390a150565b6002600154036106ca5760405162461bcd60e51b815260040161065690612b43565b600260015560005460ff16156107195760405162461bcd60e51b8152602060048201526014602482015273105d58dd1a5bdb921bdd5cd94e881c185d5cd95960621b6044820152606401610656565b6040805160e081018252600a54808252600b546020830152600c5492820192909252600d546060820152600e546001600160a01b0381166080830152600160a01b900460ff16151560a0820152600f5460c08201529083146107b55760405162461bcd60e51b81526020600482015260156024820152742134b21037b7103bb937b733903a37b5b2b724b21760591b6044820152606401610656565b806060015142106107fc5760405162461bcd60e51b8152602060048201526011602482015270105d58dd1a5bdb881a185cc8195b991959607a1b6044820152606401610656565b806040015142116108495760405162461bcd60e51b8152602060048201526017602482015276105d58dd1a5bdb881a185cc81b9bdd081cdd185c9d1959604a1b6044820152606401610656565b60045434101561086b5760405162461bcd60e51b815260040161065690612b7a565b60065460208201516064916108859160ff90911690612bb9565b61088f9190612bd0565b816020015161089e9190612bf2565b3410156108bd5760405162461bcd60e51b815260040161065690612b7a565b60808101516001600160a01b038116158015906108fc57506001600160a01b03811660009081526010602052604090206004015462010000900460ff16155b801561092457506001600160a01b03811660009081526010602052604090206004015460ff16155b1561095f57610937818360200151611e9b565b506001600160a01b0381166000908152601060205260409020600401805460ff191660011790555b3360009081526010602052604081206004015460ff1615159003610ae8573360009081526010602052604090206004015462010000900460ff161515600103610aac5760005b600754811015610aaa57336001600160a01b0316600782815481106109cc576109cc612c05565b6000918252602090912001546001600160a01b031603610a9857600780546109f690600190612c1b565b81548110610a0657610a06612c05565b600091825260209091200154600780546001600160a01b039092169183908110610a3257610a32612c05565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506007805480610a7157610a71612c2e565b600082815260209020810160001990810180546001600160a01b0319169055019055610aaa565b80610aa281612c44565b9150506109a5565b505b33600081815260106020526040902060010154610ac99190611e9b565b50336000908152601060205260409020600401805460ff191660011790555b6040805160e08101825260008183018181526080830182815260a084018381523380865234602080880191825242606089019081528c151560c08a01818152948952601090925298909620875181546001600160a01b0319166001600160a01b039091161781559051600180830191909155945160028201805460ff1916911515919091179055965160038801559151600490960180549151925161ffff1990921696151561ff00191696909617610100921515929092029190911762ff00001916620100009115159190910217909355909103610c0357600780546001810182556000919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b031916331790555b600e80546001600160a01b0319163317905534600b55600354606084015160009190610c30904290612c1b565b1090508015610c6b576003548460600151610c4b9190612bf2565b60608501819052600d5560035460c0850151610c679190612bf2565b600f555b600954336000818152601060205260408082206001015490517f2bac37935fe2935b66c6502f7492e60a3323e2f74bbcdcb502bd320d5d68569193610cb6939092918b918891612c5d565b60405180910390a28015610d05576009547f6e912a3a9105bdd2af817ba5adc14e6c127c1035b5b648faa29ca0d58ab8ff4e8560600151604051610cfc91815260200190565b60405180910390a25b50506001805550505050565b60065460405160009161010090046001600160a01b03169047908381818185875af1925050503d8060008114610d63576040519150601f19603f3d011682016040523d82523d6000602084013e610d68565b606091505b5050905080610db95760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2073656e6420746f2070617965652e00000000000000006044820152606401610656565b50565b6002546001600160a01b03163314610de65760405162461bcd60e51b815260040161065690612b0e565b610dee611f1b565b600c541580610e065750600e54600160a01b900460ff165b15610e1357610e13611f6d565b565b6002546001600160a01b03163314610e3f5760405162461bcd60e51b815260040161065690612b0e565b600680546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6002546001600160a01b03163314610e915760405162461bcd60e51b815260040161065690612b0e565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6002546001600160a01b03163314610edd5760405162461bcd60e51b815260040161065690612b0e565b60038190556040518181527f1b55d9f7002bda4490f467e326f22a4a847629c0f2d1ed421607d318d25b410d9060200161069d565b6002546001600160a01b03163314610f3c5760405162461bcd60e51b815260040161065690612b0e565b610e1360006121b8565b6002546001600160a01b03163314610f705760405162461bcd60e51b815260040161065690612b0e565b610e1361220a565b6002546001600160a01b03163314610fa25760405162461bcd60e51b815260040161065690612b0e565b600455565b60078181548110610fb757600080fd5b6000918252602090912001546001600160a01b0316905081565b6002546001600160a01b03163314610ffb5760405162461bcd60e51b815260040161065690612b0e565b60085460405163a2a3eb4d60e01b81526001600160a01b038481166004830152602482018490529091169063a2a3eb4d906044016020604051808303816000875af115801561104e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110729190612c8f565b505050565b61107f612247565b6002546001600160a01b031633146110a95760405162461bcd60e51b815260040161065690612b0e565b6002600154036110cb5760405162461bcd60e51b815260040161065690612b43565b60026001556110d8612290565b60018055565b6002600154036111005760405162461bcd60e51b815260040161065690612b43565b60026001819055546001600160a01b0316331461112f5760405162461bcd60e51b815260040161065690612b0e565b6040805160e081018252600a548152600b546020820152600c5491810191909152600d546060820152600e546001600160a01b0381166080830152600160a01b900460ff16151560a0820152600f5460c082015260005b60075481101561140457600781815481106111a3576111a3612c05565b60009182526020909120015460808301516001600160a01b039081169116146112905761123e600782815481106111dc576111dc612c05565b9060005260206000200160009054906101000a90046001600160a01b0316601060006007858154811061121157611211612c05565b60009182526020808320909101546001600160a01b03168352820192909252604001902060010154611e9b565b506001601060006007848154811061125857611258612c05565b6000918252602080832091909101546001600160a01b031683528201929092526040019020600401805460ff19169115159190911790555b600060106000600784815481106112a9576112a9612c05565b60009182526020808320909101546001600160a01b0316835282019290925260400190206004018054911515620100000262ff000019909216919091179055600780546112f890600190612c1b565b8154811061130857611308612c05565b600091825260209091200154600780546001600160a01b03909216918390811061133457611334612c05565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600780548061137357611373612c2e565b600082815260209020810160001990810180546001600160a01b0319169055019055600780547fbb53f42020feb735caae55bd4cb04b126ed4f70d84b5da86388726b15e905f769190839081106113cc576113cc612c05565b600091825260209182902001546040516001600160a01b0390911681520160405180910390a1806113fc81612c44565b915050611186565b505060018055565b60026001540361142e5760405162461bcd60e51b815260040161065690612b43565b600260015561143b612290565b611443611f6d565b61144b6126fd565b600c544210156110d85760405162461bcd60e51b815260206004820152602160248201527f41756374696f6e486f7573653a2061756374696f6e206e6f74207374617274656044820152601960fa1b6064820152608401610656565b6002546001600160a01b031633146114d15760405162461bcd60e51b815260040161065690612b0e565b6001600160a01b0381166115365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610656565b610db9816121b8565b6002546001600160a01b031633146115695760405162461bcd60e51b815260040161065690612b0e565b60058190556040518181527faab6389d8f1c16ba1deb6e9831f5c5442cf4fcf99bf5bfa867460be408a911189060200161069d565b6002600154036115c05760405162461bcd60e51b815260040161065690612b43565b600260019081556040805160e081018252600a548152600b54602080830191909152600c5482840152600d546060830152600e546001600160a01b038116608084015260ff600160a01b9091048116151560a0840152600f5460c084015233600090815260109092529290206004015490926201000090910490911615151461168b5760405162461bcd60e51b815260206004820152601a60248201527f4e6f207374616e64696e672062696420746f2063616e63656c2e0000000000006044820152606401610656565b60808101516001600160a01b031633146116db57336000818152601060205260409020600101546116bc9190611e9b565b50336000908152601060205260409020600401805460ff191660011790555b336000908152601060205260408120600401805462ff0000191690555b6007548110156117fd57336001600160a01b03166007828154811061171f5761171f612c05565b6000918252602090912001546001600160a01b0316036117eb576007805461174990600190612c1b565b8154811061175957611759612c05565b600091825260209091200154600780546001600160a01b03909216918390811061178557611785612c05565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060078054806117c4576117c4612c2e565b600082815260209020810160001990810180546001600160a01b03191690550190556117fd565b806117f581612c44565b9150506116f8565b506040513381527fbb53f42020feb735caae55bd4cb04b126ed4f70d84b5da86388726b15e905f769060200160405180910390a15060018055565b60026001540361185a5760405162461bcd60e51b815260040161065690612b43565b60026001819055546001600160a01b031633146118895760405162461bcd60e51b815260040161065690612b0e565b6040805160e081018252600a54808252600b546020830152600c5492820192909252600d546060820152600e546001600160a01b0381166080830152600160a01b900460ff16151560a0820152600f5460c08201529084146119255760405162461bcd60e51b81526020600482015260156024820152742134b21037b7103bb937b733903a37b5b2b724b21760591b6044820152606401610656565b8060600151421061196c5760405162461bcd60e51b8152602060048201526011602482015270105d58dd1a5bdb881a185cc8195b991959607a1b6044820152606401610656565b806040015142116119b95760405162461bcd60e51b8152602060048201526017602482015276105d58dd1a5bdb881a185cc81b9bdd081cdd185c9d1959604a1b6044820152606401610656565b6004543410156119db5760405162461bcd60e51b815260040161065690612b7a565b806020015134116119fe5760405162461bcd60e51b815260040161065690612b7a565b60808101516001600160a01b03811615801590611a3d57506001600160a01b03811660009081526010602052604090206004015462010000900460ff16155b8015611a6557506001600160a01b03811660009081526010602052604090206004015460ff16155b15611aa057611a78818360200151611e9b565b506001600160a01b0381166000908152601060205260409020600401805460ff191660011790555b6001600160a01b03831660009081526010602052604081206004015460ff1615159003611c4e576001600160a01b03831660009081526010602052604090206004015462010000900460ff161515600103611bff5760005b600754811015611bfd57836001600160a01b031660078281548110611b1f57611b1f612c05565b6000918252602090912001546001600160a01b031603611beb5760078054611b4990600190612c1b565b81548110611b5957611b59612c05565b600091825260209091200154600780546001600160a01b039092169183908110611b8557611b85612c05565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506007805480611bc457611bc4612c2e565b600082815260209020810160001990810180546001600160a01b0319169055019055611bfd565b80611bf581612c44565b915050611af8565b505b6001600160a01b038316600090815260106020526040902060010154611c26908490611e9b565b506001600160a01b0383166000908152601060205260409020600401805460ff191660011790555b6040805160e08101825260008183018181526080830182815260a084018381526001600160a01b038981168087523460208089019182524260608a019081528e151560c08b01818152948a52601090925299909720885181546001600160a01b031916941693909317835551600180840191909155945160028301805460ff1916911515919091179055965160038201559151600490920180549151965161ffff1990921692151561ff00191692909217610100961515969096029590951762ff00001916620100009515159590950294909417909355909103611d7857600780546001810182556000919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319166001600160a01b0386161790555b600e80546001600160a01b0319166001600160a01b03861617905534600b55600354606084015160009190611dae904290612c1b565b1090508015611de9576003548460600151611dc99190612bf2565b60608501819052600d5560035460c0850151611de59190612bf2565b600f555b6009546001600160a01b0386166000908152601060205260408082206001015490517f2bac37935fe2935b66c6502f7492e60a3323e2f74bbcdcb502bd320d5d68569192611e3f928a9290918c91889190612c5d565b60405180910390a28015611e8e576009547f6e912a3a9105bdd2af817ba5adc14e6c127c1035b5b648faa29ca0d58ab8ff4e8560600151604051611e8591815260200190565b60405180910390a25b5050600180555050505050565b6040805160008082526020820190925281906001600160a01b03851690617530908590604051611ecb9190612ca8565b600060405180830381858888f193505050503d8060008114611f09576040519150601f19603f3d011682016040523d82523d6000602084013e611f0e565b606091505b5090925050505b92915050565b611f23612247565b6000805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6008546040516335313c2160e11b81523060048201526001600160a01b0390911690636a627842906024016020604051808303816000875af1925050508015611fd3575060408051601f3d908101601f19168201909252611fd091810190612c8f565b60015b61201257611fdf612cd7565b806308c379a0036120065750611ff3612d2e565b80611ffe5750612008565b610db961220a565b505b3d6000803e3d6000fd5b600d5442116120635760405162461bcd60e51b815260206004820152601f60248201527f41756374696f6e486f7573653a2061756374696f6e206e6f7420656e646564006044820152606401610656565b6040805160e08082018352600a548252600b54602080840191909152600c5483850152600d54606080850191909152600e546001600160a01b0381166080860152600160a01b900460ff16151560a0850152600f5460c0850190815285519384018652868452600092840192909252429483018590529051600554939492939184019290916120f191612bf2565b6120fb9190612c1b565b81526000602080830182905260408084018390526060938401929092528351600a5583810151600b5583820151600c81905592840151600d8190556080850151600e805460a08801511515600160a01b026001600160a81b03199091166001600160a01b039093169290921791909117905560c090940151600f556009869055815192835282019290925283917fd6eddd1118d71820909c1197aa966dbc15ed6f508554252169cc3d5ccac756ca91015b60405180910390a25050565b600280546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6122126129a6565b6000805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611f503390565b60005460ff16610e135760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610656565b600c546000036122d95760405162461bcd60e51b815260206004820152601460248201527320bab1ba34b7b7103430b9b713ba103132b3bab760611b6044820152606401610656565b6040805160e081018252600a548152600b54602080830191909152600c54828401908152600d546060840152600e546001600160a01b03811660808501819052600160a01b90910460ff16151560a0850152600f5460c0850152600090815260109092529281209251919291900361238a5760405162461bcd60e51b815260206004820152601460248201527320bab1ba34b7b7103430b9b713ba103132b3bab760611b6044820152606401610656565b8160a00151156123dc5760405162461bcd60e51b815260206004820181905260248201527f41756374696f6e2068617320616c7265616479206265656e20736574746c65646044820152606401610656565b81606001514210156124305760405162461bcd60e51b815260206004820152601860248201527f41756374696f6e206861736e277420636f6d706c6574656400000000000000006044820152606401610656565b600e805460ff60a01b1916600160a01b17905560808201516001600160a01b03166124c0576008548251604051630852cd8d60e31b81526001600160a01b03909216916342966c68916124899160040190815260200190565b600060405180830381600087803b1580156124a357600080fd5b505af11580156124b7573d6000803e3d6000fd5b50505050612687565b600854608083015183516040516323b872dd60e01b81523060048201526001600160a01b03928316602482015260448101919091529116906323b872dd90606401600060405180830381600087803b15801561251b57600080fd5b505af115801561252f573d6000803e3d6000fd5b50505060048201805461ff001916610100179081905560028301805460ff191660019081179091556201000090910460ff161515900390506126875760048101805462ff00001916905560005b6007548110156126855782608001516001600160a01b0316600782815481106125a7576125a7612c05565b6000918252602090912001546001600160a01b03160361267357600780546125d190600190612c1b565b815481106125e1576125e1612c05565b600091825260209091200154600780546001600160a01b03909216918390811061260d5761260d612c05565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600780548061264c5761264c612c2e565b600082815260209020810160001990810180546001600160a01b0319169055019055612685565b8061267d81612c44565b91505061257c565b505b6020820151156126b35760065460208301516126b19161010090046001600160a01b031690611e9b565b505b81516080830151602080850151604080516001600160a01b039094168452918301527fc9f72b276a388619c6d185d146697036241880c36654b1a3ffdad07c24038d9991016121ac565b6040805160e081018252600a548152600b546020820152600c5491810191909152600d546060820152600e546001600160a01b0381166080830152600160a01b900460ff16151560a0820152600f5460c0820152600080805b6007548110156129795782601060006007848154811061277857612778612c05565b60009182526020808320909101546001600160a01b031683528201929092526040019020600101541180156127ec575060106000600783815481106127bf576127bf612c05565b60009182526020808320909101546001600160a01b0316835282019290925260400190206004015460ff16155b80156128425750601060006007838154811061280a5761280a612c05565b60009182526020808320909101546001600160a01b0316835282019290925260400190206004015460ff620100009091041615156001145b156128b657601060006007838154811061285e5761285e612c05565b60009182526020808320909101546001600160a01b0316835282019290925260400190206001015460078054919450908290811061289e5761289e612c05565b6000918252602090912001546001600160a01b031691505b83600001517f2bac37935fe2935b66c6502f7492e60a3323e2f74bbcdcb502bd320d5d685691600783815481106128ef576128ef612c05565b9060005260206000200160009054906101000a90046001600160a01b0316601060006007868154811061292457612924612c05565b60009182526020808320909101546001600160a01b0316835282019290925260409081018220600190810154915161295f9493908290612c5d565b60405180910390a28061297181612c44565b915050612756565b50811561107257600e80546001600160a01b0319166001600160a01b0392909216919091179055600b5550565b60005460ff1615610e135760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610656565b6001600160a01b0381168114610db957600080fd5b600060208284031215612a1357600080fd5b8135612a1e816129ec565b9392505050565b600060208284031215612a3757600080fd5b813560ff81168114612a1e57600080fd5b80358015158114612a5857600080fd5b919050565b60008060408385031215612a7057600080fd5b82359150612a8060208401612a48565b90509250929050565b600060208284031215612a9b57600080fd5b5035919050565b60008060408385031215612ab557600080fd5b8235612ac0816129ec565b946020939093013593505050565b600080600060608486031215612ae357600080fd5b83359250612af360208501612a48565b91506040840135612b03816129ec565b809150509250925092565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252600f908201526e2134b21034b9903a37b7903637bb9760891b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417611f1557611f15612ba3565b600082612bed57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115611f1557611f15612ba3565b634e487b7160e01b600052603260045260246000fd5b81810381811115611f1557611f15612ba3565b634e487b7160e01b600052603160045260246000fd5b600060018201612c5657612c56612ba3565b5060010190565b6001600160a01b0395909516855260208501939093529015156040840152151560608301521515608082015260a00190565b600060208284031215612ca157600080fd5b5051919050565b6000825160005b81811015612cc95760208186018101518583015201612caf565b506000920191825250919050565b600060033d1115612cf05760046000803e5060005160e01c5b90565b601f8201601f1916810167ffffffffffffffff81118282101715612d2757634e487b7160e01b600052604160045260246000fd5b6040525050565b600060443d1015612d3c5790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715612d6c57505050505090565b8285019150815181811115612d845750505050505090565b843d8701016020828501011115612d9e5750505050505090565b612dad60208286010187612cf3565b50909594505050505056fea264697066735822122028400d677c2442bb1a7ed84f017bc1bf7c6f7130cb0603ed1154ab923ab54ce564736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000898157afb3e158cc835d19b9ecd37c69bf460f8c
-----Decoded View---------------
Arg [0] : _oasis (address): 0x898157afB3E158cc835D19B9ecd37C69bF460f8C
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000898157afb3e158cc835d19b9ecd37c69bf460f8c
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,916.95 | 0.134 | $524.87 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
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.