Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
PartyBid
Compiler Version
v0.8.5+commit.a4f2e591
Optimization Enabled:
Yes with 999999 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* ___ ___ ___ ___ ___ ___ ___ /\ \ /\ \ /\ \ /\ \ |\__\ /\ \ ___ /\ \ /::\ \ /::\ \ /::\ \ \:\ \ |:| | /::\ \ /\ \ /::\ \ /:/\:\ \ /:/\:\ \ /:/\:\ \ \:\ \ |:| | /:/\:\ \ \:\ \ /:/\:\ \ /::\~\:\ \ /::\~\:\ \ /::\~\:\ \ /::\ \ |:|__|__ /::\~\:\__\ /::\__\ /:/ \:\__\ /:/\:\ \:\__\ /:/\:\ \:\__\ /:/\:\ \:\__\ /:/\:\__\ /::::\__\ /:/\:\ \:|__| __/:/\/__/ /:/__/ \:|__| \/__\:\/:/ / \/__\:\/:/ / \/_|::\/:/ / /:/ \/__/ /:/~~/~ \:\~\:\/:/ / /\/:/ / \:\ \ /:/ / \::/ / \::/ / |:|::/ / /:/ / /:/ / \:\ \::/ / \::/__/ \:\ /:/ / \/__/ /:/ / |:|\/__/ \/__/ \/__/ \:\/:/ / \:\__\ \:\/:/ / /:/ / |:| | \::/__/ \/__/ \::/__/ \/__/ \|__| ~~ ~~ PartyBid v1 Anna Carroll for PartyDAO */ // SPDX-License-Identifier: MIT pragma solidity 0.8.5; // ============ External Imports: Inherited Contracts ============ // NOTE: we inherit from OpenZeppelin upgradeable contracts // because of the proxy structure used for cheaper deploys // (the proxies are NOT actually upgradeable) import { ReentrancyGuardUpgradeable } from "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol"; import { ERC721HolderUpgradeable } from "@openzeppelin/contracts-upgradeable/token/ERC721/utils/ERC721HolderUpgradeable.sol"; // ============ External Imports: External Contracts & Contract Interfaces ============ import { IERC721VaultFactory } from "./external/interfaces/IERC721VaultFactory.sol"; import {ITokenVault} from "./external/interfaces/ITokenVault.sol"; import { IERC721Metadata } from "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import {IWETH} from "./external/interfaces/IWETH.sol"; // ============ Internal Imports ============ import {IMarketWrapper} from "./market-wrapper/IMarketWrapper.sol"; contract PartyBid is ReentrancyGuardUpgradeable, ERC721HolderUpgradeable { // ============ Enums ============ // State Transitions: // (1) AUCTION_ACTIVE on deploy // (2) AUCTION_WON or AUCTION_LOST on finalize() enum PartyStatus {AUCTION_ACTIVE, AUCTION_WON, AUCTION_LOST} // ============ Structs ============ struct Contribution { uint256 amount; uint256 previousTotalContributedToParty; } // ============ Internal Constants ============ // tokens are minted at a rate of 1 ETH : 1000 tokens uint16 internal constant TOKEN_SCALE = 1000; // PartyBid pays a 5% fee to PartyDAO uint8 internal constant FEE_PERCENT = 5; // ============ Immutables ============ address public immutable partyDAOMultisig; address public immutable tokenVaultFactory; address public immutable weth; // ============ Public Not-Mutated Storage ============ // market wrapper contract exposing interface for // market auctioning the NFT address public marketWrapper; // NFT contract address public nftContract; // Fractionalized NFT vault responsible for post-auction value capture address public tokenVault; // ID of auction within market contract uint256 public auctionId; // ID of token within NFT contract uint256 public tokenId; // ERC-20 name and symbol for fractional tokens string public name; string public symbol; // ============ Public Mutable Storage ============ // state of the contract PartyStatus public partyStatus; // total ETH deposited by all contributors uint256 public totalContributedToParty; // the highest bid submitted by PartyBid uint256 public highestBid; // the total spent by PartyBid on the auction; // 0 if the NFT is lost; highest bid + 5% PartyDAO fee if NFT is won uint256 public totalSpent; // contributor => array of Contributions mapping(address => Contribution[]) public contributions; // contributor => total amount contributed mapping(address => uint256) public totalContributed; // contributor => true if contribution has been claimed mapping(address => bool) public claimed; // ============ Events ============ event Contributed( address indexed contributor, uint256 amount, uint256 previousTotalContributedToParty, uint256 totalFromContributor ); event Bid(uint256 amount); event Finalized(PartyStatus result, uint256 totalSpent, uint256 fee, uint256 totalContributed); event Claimed( address indexed contributor, uint256 totalContributed, uint256 excessContribution, uint256 tokenAmount ); // ======== Modifiers ========= modifier onlyPartyDAO() { require( msg.sender == partyDAOMultisig, "PartyBid:: only PartyDAO multisig" ); _; } // ======== Constructor ========= constructor( address _partyDAOMultisig, address _tokenVaultFactory, address _weth ) { partyDAOMultisig = _partyDAOMultisig; tokenVaultFactory = _tokenVaultFactory; weth = _weth; } // ======== Initializer ========= function initialize( address _marketWrapper, address _nftContract, uint256 _tokenId, uint256 _auctionId, string memory _name, string memory _symbol ) external initializer { // initialize ReentrancyGuard and ERC721Holder __ReentrancyGuard_init(); __ERC721Holder_init(); // set storage variables marketWrapper = _marketWrapper; nftContract = _nftContract; tokenId = _tokenId; auctionId = _auctionId; name = _name; symbol = _symbol; // validate token exists require(_getOwner() != address(0), "PartyBid::initialize: NFT getOwner failed"); // validate auction exists require( IMarketWrapper(_marketWrapper).auctionIdMatchesToken( _auctionId, _nftContract, _tokenId ), "PartyBid::initialize: auctionId doesn't match token" ); } // ======== External: Contribute ========= /** * @notice Contribute to the PartyBid's treasury * while the auction is still open * @dev Emits a Contributed event upon success; callable by anyone */ function contribute() external payable nonReentrant { require( partyStatus == PartyStatus.AUCTION_ACTIVE, "PartyBid::contribute: auction not active" ); address _contributor = msg.sender; uint256 _amount = msg.value; require(_amount > 0, "PartyBid::contribute: must contribute more than 0"); // get the current contract balance uint256 _previousTotalContributedToParty = totalContributedToParty; // add contribution to contributor's array of contributions Contribution memory _contribution = Contribution({ amount: _amount, previousTotalContributedToParty: _previousTotalContributedToParty }); contributions[_contributor].push(_contribution); // add to contributor's total contribution totalContributed[_contributor] = totalContributed[_contributor] + _amount; // add to party's total contribution & emit event totalContributedToParty = totalContributedToParty + _amount; emit Contributed( _contributor, _amount, _previousTotalContributedToParty, totalContributed[_contributor] ); } // ======== External: Bid ========= /** * @notice Submit a bid to the Market * @dev Reverts if insufficient funds to place the bid and pay PartyDAO fees, * or if any external auction checks fail (including if PartyBid is current high bidder) * Emits a Bid event upon success. * Callable by any contributor */ function bid() external nonReentrant { require( partyStatus == PartyStatus.AUCTION_ACTIVE, "PartyBid::bid: auction not active" ); require( totalContributed[msg.sender] > 0, "PartyBid::bid: only contributors can bid" ); require( address(this) != IMarketWrapper(marketWrapper).getCurrentHighestBidder( auctionId ), "PartyBid::bid: already highest bidder" ); require( !IMarketWrapper(marketWrapper).isFinalized(auctionId), "PartyBid::bid: auction already finalized" ); // get the minimum next bid for the auction uint256 _bid = IMarketWrapper(marketWrapper).getMinimumBid(auctionId); // ensure there is enough ETH to place the bid including PartyDAO fee require( _bid <= _getMaximumBid(), "PartyBid::bid: insufficient funds to bid" ); // submit bid to Auction contract using delegatecall (bool success, bytes memory returnData) = marketWrapper.delegatecall( abi.encodeWithSignature("bid(uint256,uint256)", auctionId, _bid) ); require( success, string( abi.encodePacked( "PartyBid::bid: place bid failed: ", returnData ) ) ); // update highest bid submitted & emit success event highestBid = _bid; emit Bid(_bid); } // ======== External: Finalize ========= /** * @notice Finalize the state of the auction * @dev Emits a Finalized event upon success; callable by anyone */ function finalize() external nonReentrant { require( partyStatus == PartyStatus.AUCTION_ACTIVE, "PartyBid::finalize: auction not active" ); // finalize auction if it hasn't already been done if (!IMarketWrapper(marketWrapper).isFinalized(auctionId)) { IMarketWrapper(marketWrapper).finalize(auctionId); } // after the auction has been finalized, // if the NFT is owned by the PartyBid, then the PartyBid won the auction address _owner = _getOwner(); partyStatus = _owner == address(this) ? PartyStatus.AUCTION_WON : PartyStatus.AUCTION_LOST; uint256 _fee; // if the auction was won, if (partyStatus == PartyStatus.AUCTION_WON) { // transfer 5% fee to PartyDAO _fee = _getFee(highestBid); _transferETHOrWETH(partyDAOMultisig, _fee); // record total spent by auction + PartyDAO fees totalSpent = highestBid + _fee; // deploy fractionalized NFT vault // and mint fractional ERC-20 tokens _fractionalizeNFT(totalSpent); } // set the contract status & emit result emit Finalized(partyStatus, totalSpent, _fee, totalContributedToParty); } // ======== External: Claim ========= /** * @notice Claim the tokens and excess ETH owed * to a single contributor after the auction has ended * @dev Emits a Claimed event upon success * callable by anyone (doesn't have to be the contributor) * @param _contributor the address of the contributor */ function claim(address _contributor) external nonReentrant { // ensure auction has finalized require( partyStatus != PartyStatus.AUCTION_ACTIVE, "PartyBid::claim: auction not finalized" ); // ensure contributor submitted some ETH require( totalContributed[_contributor] != 0, "PartyBid::claim: not a contributor" ); // ensure the contributor hasn't already claimed require( !claimed[_contributor], "PartyBid::claim: contribution already claimed" ); // mark the contribution as claimed claimed[_contributor] = true; // calculate the amount of fractional NFT tokens owed to the user // based on how much ETH they contributed towards the auction, // and the amount of excess ETH owed to the user (uint256 _tokenAmount, uint256 _ethAmount) = _calculateTokensAndETHOwed(_contributor); // transfer tokens to contributor for their portion of ETH used if (_tokenAmount > 0) { _transferTokens(_contributor, _tokenAmount); } // if there is excess ETH, send it back to the contributor if (_ethAmount > 0) { _transferETHOrWETH(_contributor, _ethAmount); } emit Claimed( _contributor, totalContributed[_contributor], _ethAmount, _tokenAmount ); } // ======== External: Emergency Escape Hatches (PartyDAO Multisig Only) ========= /** * @notice Escape hatch: in case of emergency, * PartyDAO can use emergencyWithdrawEth to withdraw * ETH stuck in the contract */ function emergencyWithdrawEth(uint256 _value) external onlyPartyDAO { _transferETHOrWETH(partyDAOMultisig, _value); } /** * @notice Escape hatch: in case of emergency, * PartyDAO can use emergencyCall to call an external contract * (e.g. to withdraw a stuck NFT or stuck ERC-20s) */ function emergencyCall(address _contract, bytes memory _calldata) external onlyPartyDAO returns (bool _success, bytes memory _returnData) { (_success, _returnData) = _contract.call(_calldata); require(_success, string(_returnData)); } /** * @notice Escape hatch: in case of emergency, * PartyDAO can force the PartyBid to finalize with status LOST * (e.g. if finalize is not callable) */ function emergencyForceLost() external onlyPartyDAO { // set partyStatus to LOST partyStatus = PartyStatus.AUCTION_LOST; // emit Finalized event emit Finalized(partyStatus, 0, 0, totalContributedToParty); } // ======== Public: Utility Calculations ========= /** * @notice Convert ETH value to equivalent token amount */ function valueToTokens(uint256 _value) public pure returns (uint256 _tokens) { _tokens = _value * TOKEN_SCALE; } // ============ Internal: Bid ============ /** * @notice The maximum bid that can be submitted * while leaving 5% fee for PartyDAO * @return _maxBid the maximum bid */ function _getMaximumBid() internal view returns (uint256 _maxBid) { _maxBid = (totalContributedToParty * 100) / (100 + FEE_PERCENT); } /** * @notice Calculate 5% fee for PartyDAO * NOTE: Remove this fee causes a critical vulnerability * allowing anyone to exploit a PartyBid via price manipulation. * See Security Review in README for more info. * @return _fee 5% of the given amount */ function _getFee(uint256 _amount) internal pure returns (uint256 _fee) { _fee = (_amount * FEE_PERCENT) / 100; } // ============ Internal: Finalize ============ /** * @notice Query the NFT contract to get the token owner * @dev nftContract must implement the ERC-721 token standard exactly: * function ownerOf(uint256 _tokenId) external view returns (address); * See https://eips.ethereum.org/EIPS/eip-721 * @dev Returns address(0) if NFT token or NFT contract * no longer exists (token burned or contract self-destructed) * @return _owner the owner of the NFT */ function _getOwner() internal returns (address _owner) { (bool success, bytes memory returnData) = nftContract.call( abi.encodeWithSignature( "ownerOf(uint256)", tokenId ) ); if (success && returnData.length > 0) { _owner = abi.decode(returnData, (address)); } } /** * @notice Upon winning the auction, transfer the NFT * to fractional.art vault & mint fractional ERC-20 tokens */ function _fractionalizeNFT(uint256 _totalSpent) internal { // approve fractionalized NFT Factory to withdraw NFT IERC721Metadata(nftContract).approve(tokenVaultFactory, tokenId); // deploy fractionalized NFT vault uint256 vaultNumber = IERC721VaultFactory(tokenVaultFactory).mint( name, symbol, nftContract, tokenId, valueToTokens(_totalSpent), _totalSpent, 0 ); // store token vault address to storage tokenVault = IERC721VaultFactory(tokenVaultFactory).vaults(vaultNumber); // transfer curator to null address ITokenVault(tokenVault).updateCurator(address(0)); } // ============ Internal: Claim ============ /** * @notice Calculate the amount of fractional NFT tokens owed to the contributor * based on how much ETH they contributed towards the auction, * and the amount of excess ETH owed to the contributor * based on how much ETH they contributed *not* used towards the auction * @param _contributor the address of the contributor * @return _tokenAmount the amount of fractional NFT tokens owed to the contributor * @return _ethAmount the amount of excess ETH owed to the contributor */ function _calculateTokensAndETHOwed(address _contributor) internal view returns (uint256 _tokenAmount, uint256 _ethAmount) { uint256 _totalContributed = totalContributed[_contributor]; if (partyStatus == PartyStatus.AUCTION_WON) { // calculate the amount of this contributor's ETH // that was used for the winning bid uint256 _totalUsedForBid = _totalEthUsedForBid(_contributor); if (_totalUsedForBid > 0) { _tokenAmount = valueToTokens(_totalUsedForBid); } // the rest of the contributor's ETH should be returned _ethAmount = _totalContributed - _totalUsedForBid; } else { // if the auction was lost, no ETH was spent; // all of the contributor's ETH should be returned _ethAmount = _totalContributed; } } /** * @notice Calculate the total amount of a contributor's funds that were * used towards the winning auction bid * @param _contributor the address of the contributor * @return _total the sum of the contributor's funds that were * used towards the winning auction bid */ function _totalEthUsedForBid(address _contributor) internal view returns (uint256 _total) { // get all of the contributor's contributions Contribution[] memory _contributions = contributions[_contributor]; for (uint256 i = 0; i < _contributions.length; i++) { // calculate how much was used from this individual contribution uint256 _amount = _ethUsedForBid(_contributions[i]); // if we reach a contribution that was not used, // no subsequent contributions will have been used either, // so we can stop calculating to save some gas if (_amount == 0) break; _total = _total + _amount; } } /** * @notice Calculate the amount that was used towards * the winning auction bid from a single Contribution * @param _contribution the Contribution struct * @return the amount of funds from this contribution * that were used towards the winning auction bid */ function _ethUsedForBid(Contribution memory _contribution) internal view returns (uint256) { // load total amount spent once from storage uint256 _totalSpent = totalSpent; if ( _contribution.previousTotalContributedToParty + _contribution.amount <= _totalSpent ) { // contribution was fully used return _contribution.amount; } else if ( _contribution.previousTotalContributedToParty < _totalSpent ) { // contribution was partially used return _totalSpent - _contribution.previousTotalContributedToParty; } // contribution was not used return 0; } // ============ Internal: TransferTokens ============ /** * @notice Transfer tokens to a recipient * @param _to recipient of tokens * @param _value amount of tokens */ function _transferTokens(address _to, uint256 _value) internal { // guard against rounding errors; // if token amount to send is greater than contract balance, // send full contract balance uint256 _partyBidBalance = ITokenVault(tokenVault).balanceOf(address(this)); if (_value > _partyBidBalance) { _value = _partyBidBalance; } ITokenVault(tokenVault).transfer(_to, _value); } // ============ Internal: TransferEthOrWeth ============ /** * @notice Attempt to transfer ETH to a recipient; * if transferring ETH fails, transfer WETH insteads * @param _to recipient of ETH or WETH * @param _value amount of ETH or WETH */ function _transferETHOrWETH(address _to, uint256 _value) internal { // guard against rounding errors; // if ETH amount to send is greater than contract balance, // send full contract balance if (_value > address(this).balance) { _value = address(this).balance; } // Try to transfer ETH to the given recipient. if (!_attemptETHTransfer(_to, _value)) { // If the transfer fails, wrap and send as WETH IWETH(weth).deposit{value: _value}(); IWETH(weth).transfer(_to, _value); // At this point, the recipient can unwrap WETH. } } /** * @notice Attempt to transfer ETH to a recipient * @dev Sending ETH is not guaranteed to succeed * this method will return false if it fails. * We will limit the gas used in transfers, and handle failure cases. * @param _to recipient of ETH * @param _value amount of ETH */ function _attemptETHTransfer(address _to, uint256 _value) internal returns (bool) { // Here increase the gas limit a reasonable amount above the default, and try // to send ETH to the recipient. // NOTE: This might allow the recipient to attempt a limited reentrancy attack. (bool success, ) = _to.call{value: _value, gas: 30000}(""); return success; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuardUpgradeable is Initializable { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; function __ReentrancyGuard_init() internal initializer { __ReentrancyGuard_init_unchained(); } function __ReentrancyGuard_init_unchained() internal initializer { _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 make 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; } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721ReceiverUpgradeable.sol"; import "../../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the {IERC721Receiver} interface. * * Accepts all token transfers. * Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or {IERC721-setApprovalForAll}. */ contract ERC721HolderUpgradeable is Initializable, IERC721ReceiverUpgradeable { function __ERC721Holder_init() internal initializer { __ERC721Holder_init_unchained(); } function __ERC721Holder_init_unchained() internal initializer { } /** * @dev See {IERC721Receiver-onERC721Received}. * * Always returns `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received(address, address, uint256, bytes memory) public virtual override returns (bytes4) { return this.onERC721Received.selector; } uint256[50] private __gap; }
//SPDX-License-Identifier: MIT pragma solidity 0.8.5; interface IERC721VaultFactory { /// @notice the mapping of vault number to vault address function vaults(uint256) external returns (address); /// @notice the function to mint a new vault /// @param _name the desired name of the vault /// @param _symbol the desired sumbol of the vault /// @param _token the ERC721 token address fo the NFT /// @param _id the uint256 ID of the token /// @param _listPrice the initial price of the NFT /// @return the ID of the vault function mint(string memory _name, string memory _symbol, address _token, uint256 _id, uint256 _supply, uint256 _listPrice, uint256 _fee) external returns(uint256); }
//SPDX-License-Identifier: MIT pragma solidity 0.8.5; interface ITokenVault { /// @notice allow curator to update the curator address /// @param _curator the new curator function updateCurator(address _curator) external; /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) external view returns (uint256); }
// SPDX-License-Identifier: MIT 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 pragma solidity 0.8.5; interface IWETH { function deposit() external payable; function transfer(address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.5; /** * @title IMarketWrapper * @author Anna Carroll * @notice IMarketWrapper provides a common interface for * interacting with NFT auction markets. * Contracts can abstract their interactions with * different NFT markets using IMarketWrapper. * NFT markets can become compatible with any contract * using IMarketWrapper by deploying a MarketWrapper contract * that implements this interface using the logic of their Market. * * WARNING: MarketWrapper contracts should NEVER write to storage! * When implementing a MarketWrapper, exercise caution; a poorly implemented * MarketWrapper contract could permanently lose access to the NFT or user funds. */ interface IMarketWrapper { /** * @notice Determine whether there is an existing auction * for this token on the underlying market * @return TRUE if the auction exists */ function auctionExists(uint256 auctionId) external view returns (bool); /** * @notice Determine whether the given auctionId is * an auction for the tokenId + nftContract * @return TRUE if the auctionId matches the tokenId + nftContract */ function auctionIdMatchesToken( uint256 auctionId, address nftContract, uint256 tokenId ) external view returns (bool); /** * @notice Calculate the minimum next bid for this auction * @return minimum bid amount */ function getMinimumBid(uint256 auctionId) external view returns (uint256); /** * @notice Query the current highest bidder for this auction * @return highest bidder */ function getCurrentHighestBidder(uint256 auctionId) external view returns (address); /** * @notice Submit bid to Market contract */ function bid(uint256 auctionId, uint256 bidAmount) external; /** * @notice Determine whether the auction has been finalized * @return TRUE if the auction has been finalized */ function isFinalized(uint256 auctionId) external view returns (bool); /** * @notice Finalize the results of the auction */ function finalize(uint256 auctionId) external; }
// SPDX-License-Identifier: MIT // solhint-disable-next-line compiler-version pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721ReceiverUpgradeable { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; }
// SPDX-License-Identifier: MIT 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); }
{ "optimizer": { "enabled": true, "runs": 999999 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_partyDAOMultisig","type":"address"},{"internalType":"address","name":"_tokenVaultFactory","type":"address"},{"internalType":"address","name":"_weth","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Bid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"contributor","type":"address"},{"indexed":false,"internalType":"uint256","name":"totalContributed","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"excessContribution","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"contributor","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"previousTotalContributedToParty","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalFromContributor","type":"uint256"}],"name":"Contributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum PartyBid.PartyStatus","name":"result","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"totalSpent","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalContributed","type":"uint256"}],"name":"Finalized","type":"event"},{"inputs":[],"name":"auctionId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contributor","type":"address"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contribute","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"contributions","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"previousTotalContributedToParty","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"},{"internalType":"bytes","name":"_calldata","type":"bytes"}],"name":"emergencyCall","outputs":[{"internalType":"bool","name":"_success","type":"bool"},{"internalType":"bytes","name":"_returnData","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyForceLost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"emergencyWithdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finalize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"highestBid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_marketWrapper","type":"address"},{"internalType":"address","name":"_nftContract","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_auctionId","type":"uint256"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketWrapper","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"partyDAOMultisig","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partyStatus","outputs":[{"internalType":"enum PartyBid.PartyStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenVault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenVaultFactory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalContributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalContributedToParty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSpent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"valueToTokens","outputs":[{"internalType":"uint256","name":"_tokens","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"weth","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60e06040523480156200001157600080fd5b506040516200368e3803806200368e833981016040819052620000349162000079565b6001600160601b0319606093841b811660805291831b821660a05290911b1660c052620000c3565b80516001600160a01b03811681146200007457600080fd5b919050565b6000806000606084860312156200008f57600080fd5b6200009a846200005c565b9250620000aa602085016200005c565b9150620000ba604085016200005c565b90509250925092565b60805160601c60a05160601c60c05160601c61354c62000142600039600081816103760152818161212801526121f00152600081816101ee015281816123fb0152818161246b0152612581015260008181610342015281816106900152818161126501528181611317015281816116390152611745015261354c6000f3fe6080604052600436106101ac5760003560e01c80635bc789d9116100ec578063d56d229d1161008a578063df51c07f11610064578063df51c07f14610560578063e001ff5214610587578063ef38bf01146105a7578063fb346eab146105d457600080fd5b8063d56d229d14610515578063d57bde7914610542578063d7bb99ba1461055857600080fd5b80639744b8dc116100c65780639744b8dc1461045a578063a0f243b81461047a578063c4bf0220146104a7578063c884ef83146104d557600080fd5b80635bc789d91461040257806382a5c69a1461042f57806395d89b411461044557600080fd5b80631998aeef116101595780633fc8cef3116101335780633fc8cef314610364578063429093cc146103985780634bb278f3146103b8578063550b521c146103cd57600080fd5b80631998aeef146102fb5780631e83409a146103105780633c4d12d91461033057600080fd5b8063150b7a021161018a578063150b7a021461025957806317821fdc146102ce57806317d70f7c146102e557600080fd5b806306fdde03146101b15780630b203023146101dc57806310782f8f14610235575b600080fd5b3480156101bd57600080fd5b506101c66105ea565b6040516101d3919061323a565b60405180910390f35b3480156101e857600080fd5b506102107f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101d3565b34801561024157600080fd5b5061024b60685481565b6040519081526020016101d3565b34801561026557600080fd5b5061029d610274366004612e26565b7f150b7a0200000000000000000000000000000000000000000000000000000000949350505050565b6040517fffffffff0000000000000000000000000000000000000000000000000000000090911681526020016101d3565b3480156102da57600080fd5b506102e3610678565b005b3480156102f157600080fd5b5061024b60695481565b34801561030757600080fd5b506102e36107b2565b34801561031c57600080fd5b506102e361032b366004612dec565b610ede565b34801561033c57600080fd5b506102107f000000000000000000000000000000000000000000000000000000000000000081565b34801561037057600080fd5b506102107f000000000000000000000000000000000000000000000000000000000000000081565b3480156103a457600080fd5b506102e36103b3366004612fcb565b61124d565b3480156103c457600080fd5b506102e361133f565b3480156103d957600080fd5b506103ed6103e8366004612f7d565b6116cc565b604080519283526020830191909152016101d3565b34801561040e57600080fd5b506067546102109073ffffffffffffffffffffffffffffffffffffffff1681565b34801561043b57600080fd5b5061024b606d5481565b34801561045157600080fd5b506101c6611708565b34801561046657600080fd5b5061024b610475366004612fcb565b611715565b34801561048657600080fd5b5061024b610495366004612dec565b60716020526000908152604090205481565b3480156104b357600080fd5b506104c76104c2366004612f2d565b611729565b6040516101d39291906131e0565b3480156104e157600080fd5b506105056104f0366004612dec565b60726020526000908152604090205460ff1681565b60405190151581526020016101d3565b34801561052157600080fd5b506066546102109073ffffffffffffffffffffffffffffffffffffffff1681565b34801561054e57600080fd5b5061024b606e5481565b6102e36118a0565b34801561056c57600080fd5b50606c5461057a9060ff1681565b6040516101d39190613203565b34801561059357600080fd5b506102e36105a2366004612e92565b611b60565b3480156105b357600080fd5b506065546102109073ffffffffffffffffffffffffffffffffffffffff1681565b3480156105e057600080fd5b5061024b606f5481565b606a80546105f7906133ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610623906133ab565b80156106705780601f1061064557610100808354040283529160200191610670565b820191906000526020600020905b81548152906001019060200180831161065357829003601f168201915b505050505081565b3373ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001614610742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f50617274794269643a3a206f6e6c7920506172747944414f206d756c7469736960448201527f670000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b606c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166002908117909155606d546040517f9a2087478f16b801ecd568a6676f5db758bda2a01b954b2c754257d11eb3770b926107a89290916000918291613211565b60405180910390a1565b6002600154141561081f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610739565b60026001556000606c5460ff16600281111561083d5761083d613467565b146108ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f50617274794269643a3a6269643a2061756374696f6e206e6f7420616374697660448201527f65000000000000000000000000000000000000000000000000000000000000006064820152608401610739565b33600090815260716020526040902054610966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f50617274794269643a3a6269643a206f6e6c7920636f6e7472696275746f727360448201527f2063616e206269640000000000000000000000000000000000000000000000006064820152608401610739565b6065546068546040517f456b09c100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9092169163456b09c1916109c19160040190815260200190565b60206040518083038186803b1580156109d957600080fd5b505afa1580156109ed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a119190612e09565b73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161415610acc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f50617274794269643a3a6269643a20616c72656164792068696768657374206260448201527f69646465720000000000000000000000000000000000000000000000000000006064820152608401610739565b6065546068546040517f33727c4d00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff909216916333727c4d91610b279160040190815260200190565b60206040518083038186803b158015610b3f57600080fd5b505afa158015610b53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b779190612fa9565b15610c04576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f50617274794269643a3a6269643a2061756374696f6e20616c7265616479206660448201527f696e616c697a65640000000000000000000000000000000000000000000000006064820152608401610739565b6065546068546040517f0600d4eb000000000000000000000000000000000000000000000000000000008152600481019190915260009173ffffffffffffffffffffffffffffffffffffffff1690630600d4eb9060240160206040518083038186803b158015610c7357600080fd5b505afa158015610c87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cab9190612fe4565b9050610cb5611efa565b811115610d44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f50617274794269643a3a6269643a20696e73756666696369656e742066756e6460448201527f7320746f206269640000000000000000000000000000000000000000000000006064820152608401610739565b606554606854604051602481019190915260448101839052600091829173ffffffffffffffffffffffffffffffffffffffff90911690606401604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f598647f80000000000000000000000000000000000000000000000000000000017905251610dfe9190613159565b600060405180830381855af49150503d8060008114610e39576040519150601f19603f3d011682016040523d82523d6000602084013e610e3e565b606091505b50915091508181604051602001610e559190613175565b60405160208183030381529060405290610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610739919061323a565b50606e8390556040518381527f7a183e84509e3fe5b0b3aac15347fd1c7d71fd1503001f1a1d7c9658077eb35f9060200160405180910390a150506001805550565b60026001541415610f4b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610739565b60026001556000606c5460ff166002811115610f6957610f69613467565b1415610ff7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f50617274794269643a3a636c61696d3a2061756374696f6e206e6f742066696e60448201527f616c697a656400000000000000000000000000000000000000000000000000006064820152608401610739565b73ffffffffffffffffffffffffffffffffffffffff81166000908152607160205260409020546110a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f50617274794269643a3a636c61696d3a206e6f74206120636f6e74726962757460448201527f6f720000000000000000000000000000000000000000000000000000000000006064820152608401610739565b73ffffffffffffffffffffffffffffffffffffffff811660009081526072602052604090205460ff161561115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f50617274794269643a3a636c61696d3a20636f6e747269627574696f6e20616c60448201527f726561647920636c61696d6564000000000000000000000000000000000000006064820152608401610739565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260726020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055806111b783611f29565b909250905081156111cc576111cc8383611fab565b80156111dc576111dc838261210d565b73ffffffffffffffffffffffffffffffffffffffff83166000818152607160209081526040918290205482519081529081018490529081018490527f9cdcf2f7714cca3508c7f0110b04a90a80a3a8dd0e35de99689db74d28c5383e9060600160405180910390a250506001805550565b3373ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001614611312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f50617274794269643a3a206f6e6c7920506172747944414f206d756c7469736960448201527f67000000000000000000000000000000000000000000000000000000000000006064820152608401610739565b61133c7f00000000000000000000000000000000000000000000000000000000000000008261210d565b50565b600260015414156113ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610739565b60026001556000606c5460ff1660028111156113ca576113ca613467565b14611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f50617274794269643a3a66696e616c697a653a2061756374696f6e206e6f742060448201527f61637469766500000000000000000000000000000000000000000000000000006064820152608401610739565b6065546068546040517f33727c4d00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff909216916333727c4d916114b29160040190815260200190565b60206040518083038186803b1580156114ca57600080fd5b505afa1580156114de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115029190612fa9565b611594576065546068546040517f05261aea00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff909216916305261aea916115619160040190815260200190565b600060405180830381600087803b15801561157b57600080fd5b505af115801561158f573d6000803e3d6000fd5b505050505b600061159e612276565b905073ffffffffffffffffffffffffffffffffffffffff811630146115c45760026115c7565b60015b606c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600183600281111561160157611601613467565b021790555060006001606c5460ff16600281111561162157611621613467565b141561167a57611632606e5461239f565b905061165e7f00000000000000000000000000000000000000000000000000000000000000008261210d565b80606e5461166c91906132b3565b606f81905561167a906123b8565b606c54606f54606d546040517f9a2087478f16b801ecd568a6676f5db758bda2a01b954b2c754257d11eb3770b936116bc9360ff909116929091869190613211565b60405180910390a1505060018055565b607060205281600052604060002081815481106116e857600080fd5b600091825260209091206002909102018054600190910154909250905082565b606b80546105f7906133ab565b60006117236103e88361332b565b92915050565b600060603373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016146117f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f50617274794269643a3a206f6e6c7920506172747944414f206d756c7469736960448201527f67000000000000000000000000000000000000000000000000000000000000006064820152608401610739565b8373ffffffffffffffffffffffffffffffffffffffff16836040516118179190613159565b6000604051808303816000865af19150503d8060008114611854576040519150601f19603f3d011682016040523d82523d6000602084013e611859565b606091505b5090925090508082611898576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610739919061323a565b509250929050565b6002600154141561190d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610739565b60026001556000606c5460ff16600281111561192b5761192b613467565b146119b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f50617274794269643a3a636f6e747269627574653a2061756374696f6e206e6f60448201527f74206163746976650000000000000000000000000000000000000000000000006064820152608401610739565b333480611a47576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f50617274794269643a3a636f6e747269627574653a206d75737420636f6e747260448201527f6962757465206d6f7265207468616e20300000000000000000000000000000006064820152608401610739565b606d54604080518082018252838152602080820184815273ffffffffffffffffffffffffffffffffffffffff871660008181526070845285812080546001818101835591835285832087516002909202019081559351930192909255815260719091529190912054611aba9084906132b3565b73ffffffffffffffffffffffffffffffffffffffff8516600090815260716020526040902055606d54611aee9084906132b3565b606d5573ffffffffffffffffffffffffffffffffffffffff84166000818152607160209081526040918290205482518781529182018690528183015290517fb2623081601722547aae8781994e01a1974d95b0ad9ce6a0cfbe17487556257f9181900360600190a25050600180555050565b600054610100900460ff1680611b79575060005460ff16155b611c05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610739565b600054610100900460ff16158015611c4457600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b611c4c6126c2565b611c546127df565b6065805473ffffffffffffffffffffffffffffffffffffffff808a167fffffffffffffffffffffffff0000000000000000000000000000000000000000928316179092556066805492891692909116919091179055606985905560688490558251611cc690606a906020860190612ca8565b508151611cda90606b906020850190612ca8565b506000611ce5612276565b73ffffffffffffffffffffffffffffffffffffffff161415611d89576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f50617274794269643a3a696e697469616c697a653a204e4654206765744f776e60448201527f6572206661696c656400000000000000000000000000000000000000000000006064820152608401610739565b6040517f97e2d3800000000000000000000000000000000000000000000000000000000081526004810185905273ffffffffffffffffffffffffffffffffffffffff8781166024830152604482018790528816906397e2d3809060640160206040518083038186803b158015611dfe57600080fd5b505afa158015611e12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e369190612fa9565b611ec2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f50617274794269643a3a696e697469616c697a653a2061756374696f6e49642060448201527f646f65736e2774206d6174636820746f6b656e000000000000000000000000006064820152608401610739565b8015611ef157600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555b50505050505050565b6000611f08600560646132cb565b60ff16606d546064611f1a919061332b565b611f2491906132f0565b905090565b73ffffffffffffffffffffffffffffffffffffffff811660009081526071602052604081205481906001606c5460ff166002811115611f6a57611f6a613467565b1415611fa1576000611f7b856128cb565b90508015611f8f57611f8c81611715565b93505b611f998183613368565b925050611fa5565b8091505b50915091565b6067546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009173ffffffffffffffffffffffffffffffffffffffff16906370a082319060240160206040518083038186803b15801561201557600080fd5b505afa158015612029573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061204d9190612fe4565b90508082111561205b578091505b6067546040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152602482018590529091169063a9059cbb90604401602060405180830381600087803b1580156120cf57600080fd5b505af11580156120e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121079190612fa9565b50505050565b478111156121185750475b61212282826129bb565b612272577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b15801561218e57600080fd5b505af11580156121a2573d6000803e3d6000fd5b50506040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8681166004830152602482018690527f000000000000000000000000000000000000000000000000000000000000000016935063a9059cbb92506044019050602060405180830381600087803b15801561223857600080fd5b505af115801561224c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122709190612fa9565b505b5050565b60665460695460405160248101919091526000918291829173ffffffffffffffffffffffffffffffffffffffff1690604401604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f6352211e00000000000000000000000000000000000000000000000000000000179052516123299190613159565b6000604051808303816000865af19150503d8060008114612366576040519150601f19603f3d011682016040523d82523d6000602084013e61236b565b606091505b509150915081801561237e575060008151115b1561239a57808060200190518101906123979190612e09565b92505b505090565b600060646123ae60058461332b565b61172391906132f0565b6066546069546040517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000081166004830152602482019290925291169063095ea7b390604401600060405180830381600087803b15801561244f57600080fd5b505af1158015612463573d6000803e3d6000fd5b5050505060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663bdc01110606a606b606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166069546124d888611715565b8860006040518863ffffffff1660e01b81526004016124fd979695949392919061324d565b602060405180830381600087803b15801561251757600080fd5b505af115801561252b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061254f9190612fe4565b6040517f8c64ea4a000000000000000000000000000000000000000000000000000000008152600481018290529091507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690638c64ea4a90602401602060405180830381600087803b1580156125da57600080fd5b505af11580156125ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126129190612e09565b606780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9290921691821790556040517f0c6a62dd00000000000000000000000000000000000000000000000000000000815260006004820152630c6a62dd90602401600060405180830381600087803b1580156126a657600080fd5b505af11580156126ba573d6000803e3d6000fd5b505050505050565b600054610100900460ff16806126db575060005460ff16155b612767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610739565b600054610100900460ff161580156127a657600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b6127ae612a2b565b801561133c57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16905550565b600054610100900460ff16806127f8575060005460ff16155b612884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610739565b600054610100900460ff161580156128c357600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b6127ae612b44565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260706020908152604080832080548251818502810185019093528083528493849084015b828210156129515783829060005260206000209060020201604051806040016040529081600082015481526020016001820154815250508152602001906001019061290b565b50505050905060005b81518110156129b457600061298783838151811061297a5761297a613496565b6020026020010151612c58565b90508061299457506129b4565b61299e81856132b3565b93505080806129ac906133ff565b91505061295a565b5050919050565b6000808373ffffffffffffffffffffffffffffffffffffffff168361753090604051600060405180830381858888f193505050503d8060008114612a1b576040519150601f19603f3d011682016040523d82523d6000602084013e612a20565b606091505b509095945050505050565b600054610100900460ff1680612a44575060005460ff16155b612ad0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610739565b600054610100900460ff16158015612b0f57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b60018055801561133c57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16905550565b600054610100900460ff1680612b5d575060005460ff16155b612be9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610739565b600054610100900460ff161580156127ae57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000016610101179055801561133c57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16905550565b606f5481516020830151600092918291612c7291906132b3565b11612c7d5750505190565b8083602001511015612c9f576020830151612c989082613368565b9392505050565b50600092915050565b828054612cb4906133ab565b90600052602060002090601f016020900481019282612cd65760008555612d1c565b82601f10612cef57805160ff1916838001178555612d1c565b82800160010185558215612d1c579182015b82811115612d1c578251825591602001919060010190612d01565b50612d28929150612d2c565b5090565b5b80821115612d285760008155600101612d2d565b600082601f830112612d5257600080fd5b813567ffffffffffffffff80821115612d6d57612d6d6134c5565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612db357612db36134c5565b81604052838152866020858801011115612dcc57600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060208284031215612dfe57600080fd5b8135612c98816134f4565b600060208284031215612e1b57600080fd5b8151612c98816134f4565b60008060008060808587031215612e3c57600080fd5b8435612e47816134f4565b93506020850135612e57816134f4565b925060408501359150606085013567ffffffffffffffff811115612e7a57600080fd5b612e8687828801612d41565b91505092959194509250565b60008060008060008060c08789031215612eab57600080fd5b8635612eb6816134f4565b95506020870135612ec6816134f4565b94506040870135935060608701359250608087013567ffffffffffffffff80821115612ef157600080fd5b612efd8a838b01612d41565b935060a0890135915080821115612f1357600080fd5b50612f2089828a01612d41565b9150509295509295509295565b60008060408385031215612f4057600080fd5b8235612f4b816134f4565b9150602083013567ffffffffffffffff811115612f6757600080fd5b612f7385828601612d41565b9150509250929050565b60008060408385031215612f9057600080fd5b8235612f9b816134f4565b946020939093013593505050565b600060208284031215612fbb57600080fd5b81518015158114612c9857600080fd5b600060208284031215612fdd57600080fd5b5035919050565b600060208284031215612ff657600080fd5b5051919050565b6000815180845261301581602086016020860161337f565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6003811061307e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b9052565b8054600090600181811c908083168061309c57607f831692505b60208084108214156130d7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b838852602088018280156130f257600181146131215761314c565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0087168252828201975061314c565b60008981526020902060005b878110156131465781548482015290860190840161312d565b83019850505b5050505050505092915050565b6000825161316b81846020870161337f565b9190910192915050565b7f50617274794269643a3a6269643a20706c61636520626964206661696c65643a81527f20000000000000000000000000000000000000000000000000000000000000006020820152600082516131d381602185016020870161337f565b9190910160210192915050565b82151581526040602082015260006131fb6040830184612ffd565b949350505050565b602081016117238284613047565b6080810161321f8287613047565b84602083015283604083015282606083015295945050505050565b602081526000612c986020830184612ffd565b60e08152600061326060e083018a613082565b8281036020840152613272818a613082565b73ffffffffffffffffffffffffffffffffffffffff98909816604084015250506060810194909452608084019290925260a083015260c09091015292915050565b600082198211156132c6576132c6613438565b500190565b600060ff821660ff84168060ff038211156132e8576132e8613438565b019392505050565b600082613326577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561336357613363613438565b500290565b60008282101561337a5761337a613438565b500390565b60005b8381101561339a578181015183820152602001613382565b838111156121075750506000910152565b600181811c908216806133bf57607f821691505b602082108114156133f9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561343157613431613438565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff8116811461133c57600080fdfea2646970667358221220679495a958ae2b1e3cb0228dc25d70aeae9b9adff5ed1a10ea2c3da722af9d0c64736f6c63430008050033000000000000000000000000f7f52dd34bc21eda08c0b804c7c1dbc48375820f00000000000000000000000085aa7f78bdb2de8f3e0c0010d99ad5853ffcfc63000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Deployed Bytecode
0x6080604052600436106101ac5760003560e01c80635bc789d9116100ec578063d56d229d1161008a578063df51c07f11610064578063df51c07f14610560578063e001ff5214610587578063ef38bf01146105a7578063fb346eab146105d457600080fd5b8063d56d229d14610515578063d57bde7914610542578063d7bb99ba1461055857600080fd5b80639744b8dc116100c65780639744b8dc1461045a578063a0f243b81461047a578063c4bf0220146104a7578063c884ef83146104d557600080fd5b80635bc789d91461040257806382a5c69a1461042f57806395d89b411461044557600080fd5b80631998aeef116101595780633fc8cef3116101335780633fc8cef314610364578063429093cc146103985780634bb278f3146103b8578063550b521c146103cd57600080fd5b80631998aeef146102fb5780631e83409a146103105780633c4d12d91461033057600080fd5b8063150b7a021161018a578063150b7a021461025957806317821fdc146102ce57806317d70f7c146102e557600080fd5b806306fdde03146101b15780630b203023146101dc57806310782f8f14610235575b600080fd5b3480156101bd57600080fd5b506101c66105ea565b6040516101d3919061323a565b60405180910390f35b3480156101e857600080fd5b506102107f00000000000000000000000085aa7f78bdb2de8f3e0c0010d99ad5853ffcfc6381565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016101d3565b34801561024157600080fd5b5061024b60685481565b6040519081526020016101d3565b34801561026557600080fd5b5061029d610274366004612e26565b7f150b7a0200000000000000000000000000000000000000000000000000000000949350505050565b6040517fffffffff0000000000000000000000000000000000000000000000000000000090911681526020016101d3565b3480156102da57600080fd5b506102e3610678565b005b3480156102f157600080fd5b5061024b60695481565b34801561030757600080fd5b506102e36107b2565b34801561031c57600080fd5b506102e361032b366004612dec565b610ede565b34801561033c57600080fd5b506102107f000000000000000000000000f7f52dd34bc21eda08c0b804c7c1dbc48375820f81565b34801561037057600080fd5b506102107f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b3480156103a457600080fd5b506102e36103b3366004612fcb565b61124d565b3480156103c457600080fd5b506102e361133f565b3480156103d957600080fd5b506103ed6103e8366004612f7d565b6116cc565b604080519283526020830191909152016101d3565b34801561040e57600080fd5b506067546102109073ffffffffffffffffffffffffffffffffffffffff1681565b34801561043b57600080fd5b5061024b606d5481565b34801561045157600080fd5b506101c6611708565b34801561046657600080fd5b5061024b610475366004612fcb565b611715565b34801561048657600080fd5b5061024b610495366004612dec565b60716020526000908152604090205481565b3480156104b357600080fd5b506104c76104c2366004612f2d565b611729565b6040516101d39291906131e0565b3480156104e157600080fd5b506105056104f0366004612dec565b60726020526000908152604090205460ff1681565b60405190151581526020016101d3565b34801561052157600080fd5b506066546102109073ffffffffffffffffffffffffffffffffffffffff1681565b34801561054e57600080fd5b5061024b606e5481565b6102e36118a0565b34801561056c57600080fd5b50606c5461057a9060ff1681565b6040516101d39190613203565b34801561059357600080fd5b506102e36105a2366004612e92565b611b60565b3480156105b357600080fd5b506065546102109073ffffffffffffffffffffffffffffffffffffffff1681565b3480156105e057600080fd5b5061024b606f5481565b606a80546105f7906133ab565b80601f0160208091040260200160405190810160405280929190818152602001828054610623906133ab565b80156106705780601f1061064557610100808354040283529160200191610670565b820191906000526020600020905b81548152906001019060200180831161065357829003601f168201915b505050505081565b3373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000f7f52dd34bc21eda08c0b804c7c1dbc48375820f1614610742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f50617274794269643a3a206f6e6c7920506172747944414f206d756c7469736960448201527f670000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b606c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166002908117909155606d546040517f9a2087478f16b801ecd568a6676f5db758bda2a01b954b2c754257d11eb3770b926107a89290916000918291613211565b60405180910390a1565b6002600154141561081f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610739565b60026001556000606c5460ff16600281111561083d5761083d613467565b146108ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f50617274794269643a3a6269643a2061756374696f6e206e6f7420616374697660448201527f65000000000000000000000000000000000000000000000000000000000000006064820152608401610739565b33600090815260716020526040902054610966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f50617274794269643a3a6269643a206f6e6c7920636f6e7472696275746f727360448201527f2063616e206269640000000000000000000000000000000000000000000000006064820152608401610739565b6065546068546040517f456b09c100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9092169163456b09c1916109c19160040190815260200190565b60206040518083038186803b1580156109d957600080fd5b505afa1580156109ed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a119190612e09565b73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161415610acc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f50617274794269643a3a6269643a20616c72656164792068696768657374206260448201527f69646465720000000000000000000000000000000000000000000000000000006064820152608401610739565b6065546068546040517f33727c4d00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff909216916333727c4d91610b279160040190815260200190565b60206040518083038186803b158015610b3f57600080fd5b505afa158015610b53573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b779190612fa9565b15610c04576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f50617274794269643a3a6269643a2061756374696f6e20616c7265616479206660448201527f696e616c697a65640000000000000000000000000000000000000000000000006064820152608401610739565b6065546068546040517f0600d4eb000000000000000000000000000000000000000000000000000000008152600481019190915260009173ffffffffffffffffffffffffffffffffffffffff1690630600d4eb9060240160206040518083038186803b158015610c7357600080fd5b505afa158015610c87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cab9190612fe4565b9050610cb5611efa565b811115610d44576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f50617274794269643a3a6269643a20696e73756666696369656e742066756e6460448201527f7320746f206269640000000000000000000000000000000000000000000000006064820152608401610739565b606554606854604051602481019190915260448101839052600091829173ffffffffffffffffffffffffffffffffffffffff90911690606401604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f598647f80000000000000000000000000000000000000000000000000000000017905251610dfe9190613159565b600060405180830381855af49150503d8060008114610e39576040519150601f19603f3d011682016040523d82523d6000602084013e610e3e565b606091505b50915091508181604051602001610e559190613175565b60405160208183030381529060405290610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610739919061323a565b50606e8390556040518381527f7a183e84509e3fe5b0b3aac15347fd1c7d71fd1503001f1a1d7c9658077eb35f9060200160405180910390a150506001805550565b60026001541415610f4b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610739565b60026001556000606c5460ff166002811115610f6957610f69613467565b1415610ff7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f50617274794269643a3a636c61696d3a2061756374696f6e206e6f742066696e60448201527f616c697a656400000000000000000000000000000000000000000000000000006064820152608401610739565b73ffffffffffffffffffffffffffffffffffffffff81166000908152607160205260409020546110a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f50617274794269643a3a636c61696d3a206e6f74206120636f6e74726962757460448201527f6f720000000000000000000000000000000000000000000000000000000000006064820152608401610739565b73ffffffffffffffffffffffffffffffffffffffff811660009081526072602052604090205460ff161561115f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f50617274794269643a3a636c61696d3a20636f6e747269627574696f6e20616c60448201527f726561647920636c61696d6564000000000000000000000000000000000000006064820152608401610739565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260726020526040812080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055806111b783611f29565b909250905081156111cc576111cc8383611fab565b80156111dc576111dc838261210d565b73ffffffffffffffffffffffffffffffffffffffff83166000818152607160209081526040918290205482519081529081018490529081018490527f9cdcf2f7714cca3508c7f0110b04a90a80a3a8dd0e35de99689db74d28c5383e9060600160405180910390a250506001805550565b3373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000f7f52dd34bc21eda08c0b804c7c1dbc48375820f1614611312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f50617274794269643a3a206f6e6c7920506172747944414f206d756c7469736960448201527f67000000000000000000000000000000000000000000000000000000000000006064820152608401610739565b61133c7f000000000000000000000000f7f52dd34bc21eda08c0b804c7c1dbc48375820f8261210d565b50565b600260015414156113ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610739565b60026001556000606c5460ff1660028111156113ca576113ca613467565b14611457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f50617274794269643a3a66696e616c697a653a2061756374696f6e206e6f742060448201527f61637469766500000000000000000000000000000000000000000000000000006064820152608401610739565b6065546068546040517f33727c4d00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff909216916333727c4d916114b29160040190815260200190565b60206040518083038186803b1580156114ca57600080fd5b505afa1580156114de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115029190612fa9565b611594576065546068546040517f05261aea00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff909216916305261aea916115619160040190815260200190565b600060405180830381600087803b15801561157b57600080fd5b505af115801561158f573d6000803e3d6000fd5b505050505b600061159e612276565b905073ffffffffffffffffffffffffffffffffffffffff811630146115c45760026115c7565b60015b606c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600183600281111561160157611601613467565b021790555060006001606c5460ff16600281111561162157611621613467565b141561167a57611632606e5461239f565b905061165e7f000000000000000000000000f7f52dd34bc21eda08c0b804c7c1dbc48375820f8261210d565b80606e5461166c91906132b3565b606f81905561167a906123b8565b606c54606f54606d546040517f9a2087478f16b801ecd568a6676f5db758bda2a01b954b2c754257d11eb3770b936116bc9360ff909116929091869190613211565b60405180910390a1505060018055565b607060205281600052604060002081815481106116e857600080fd5b600091825260209091206002909102018054600190910154909250905082565b606b80546105f7906133ab565b60006117236103e88361332b565b92915050565b600060603373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000f7f52dd34bc21eda08c0b804c7c1dbc48375820f16146117f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f50617274794269643a3a206f6e6c7920506172747944414f206d756c7469736960448201527f67000000000000000000000000000000000000000000000000000000000000006064820152608401610739565b8373ffffffffffffffffffffffffffffffffffffffff16836040516118179190613159565b6000604051808303816000865af19150503d8060008114611854576040519150601f19603f3d011682016040523d82523d6000602084013e611859565b606091505b5090925090508082611898576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610739919061323a565b509250929050565b6002600154141561190d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610739565b60026001556000606c5460ff16600281111561192b5761192b613467565b146119b8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f50617274794269643a3a636f6e747269627574653a2061756374696f6e206e6f60448201527f74206163746976650000000000000000000000000000000000000000000000006064820152608401610739565b333480611a47576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f50617274794269643a3a636f6e747269627574653a206d75737420636f6e747260448201527f6962757465206d6f7265207468616e20300000000000000000000000000000006064820152608401610739565b606d54604080518082018252838152602080820184815273ffffffffffffffffffffffffffffffffffffffff871660008181526070845285812080546001818101835591835285832087516002909202019081559351930192909255815260719091529190912054611aba9084906132b3565b73ffffffffffffffffffffffffffffffffffffffff8516600090815260716020526040902055606d54611aee9084906132b3565b606d5573ffffffffffffffffffffffffffffffffffffffff84166000818152607160209081526040918290205482518781529182018690528183015290517fb2623081601722547aae8781994e01a1974d95b0ad9ce6a0cfbe17487556257f9181900360600190a25050600180555050565b600054610100900460ff1680611b79575060005460ff16155b611c05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610739565b600054610100900460ff16158015611c4457600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b611c4c6126c2565b611c546127df565b6065805473ffffffffffffffffffffffffffffffffffffffff808a167fffffffffffffffffffffffff0000000000000000000000000000000000000000928316179092556066805492891692909116919091179055606985905560688490558251611cc690606a906020860190612ca8565b508151611cda90606b906020850190612ca8565b506000611ce5612276565b73ffffffffffffffffffffffffffffffffffffffff161415611d89576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f50617274794269643a3a696e697469616c697a653a204e4654206765744f776e60448201527f6572206661696c656400000000000000000000000000000000000000000000006064820152608401610739565b6040517f97e2d3800000000000000000000000000000000000000000000000000000000081526004810185905273ffffffffffffffffffffffffffffffffffffffff8781166024830152604482018790528816906397e2d3809060640160206040518083038186803b158015611dfe57600080fd5b505afa158015611e12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e369190612fa9565b611ec2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f50617274794269643a3a696e697469616c697a653a2061756374696f6e49642060448201527f646f65736e2774206d6174636820746f6b656e000000000000000000000000006064820152608401610739565b8015611ef157600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555b50505050505050565b6000611f08600560646132cb565b60ff16606d546064611f1a919061332b565b611f2491906132f0565b905090565b73ffffffffffffffffffffffffffffffffffffffff811660009081526071602052604081205481906001606c5460ff166002811115611f6a57611f6a613467565b1415611fa1576000611f7b856128cb565b90508015611f8f57611f8c81611715565b93505b611f998183613368565b925050611fa5565b8091505b50915091565b6067546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009173ffffffffffffffffffffffffffffffffffffffff16906370a082319060240160206040518083038186803b15801561201557600080fd5b505afa158015612029573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061204d9190612fe4565b90508082111561205b578091505b6067546040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152602482018590529091169063a9059cbb90604401602060405180830381600087803b1580156120cf57600080fd5b505af11580156120e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121079190612fa9565b50505050565b478111156121185750475b61212282826129bb565b612272577f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b15801561218e57600080fd5b505af11580156121a2573d6000803e3d6000fd5b50506040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8681166004830152602482018690527f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc216935063a9059cbb92506044019050602060405180830381600087803b15801561223857600080fd5b505af115801561224c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122709190612fa9565b505b5050565b60665460695460405160248101919091526000918291829173ffffffffffffffffffffffffffffffffffffffff1690604401604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f6352211e00000000000000000000000000000000000000000000000000000000179052516123299190613159565b6000604051808303816000865af19150503d8060008114612366576040519150601f19603f3d011682016040523d82523d6000602084013e61236b565b606091505b509150915081801561237e575060008151115b1561239a57808060200190518101906123979190612e09565b92505b505090565b600060646123ae60058461332b565b61172391906132f0565b6066546069546040517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000085aa7f78bdb2de8f3e0c0010d99ad5853ffcfc6381166004830152602482019290925291169063095ea7b390604401600060405180830381600087803b15801561244f57600080fd5b505af1158015612463573d6000803e3d6000fd5b5050505060007f00000000000000000000000085aa7f78bdb2de8f3e0c0010d99ad5853ffcfc6373ffffffffffffffffffffffffffffffffffffffff1663bdc01110606a606b606660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166069546124d888611715565b8860006040518863ffffffff1660e01b81526004016124fd979695949392919061324d565b602060405180830381600087803b15801561251757600080fd5b505af115801561252b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061254f9190612fe4565b6040517f8c64ea4a000000000000000000000000000000000000000000000000000000008152600481018290529091507f00000000000000000000000085aa7f78bdb2de8f3e0c0010d99ad5853ffcfc6373ffffffffffffffffffffffffffffffffffffffff1690638c64ea4a90602401602060405180830381600087803b1580156125da57600080fd5b505af11580156125ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126129190612e09565b606780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9290921691821790556040517f0c6a62dd00000000000000000000000000000000000000000000000000000000815260006004820152630c6a62dd90602401600060405180830381600087803b1580156126a657600080fd5b505af11580156126ba573d6000803e3d6000fd5b505050505050565b600054610100900460ff16806126db575060005460ff16155b612767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610739565b600054610100900460ff161580156127a657600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b6127ae612a2b565b801561133c57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16905550565b600054610100900460ff16806127f8575060005460ff16155b612884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610739565b600054610100900460ff161580156128c357600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b6127ae612b44565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260706020908152604080832080548251818502810185019093528083528493849084015b828210156129515783829060005260206000209060020201604051806040016040529081600082015481526020016001820154815250508152602001906001019061290b565b50505050905060005b81518110156129b457600061298783838151811061297a5761297a613496565b6020026020010151612c58565b90508061299457506129b4565b61299e81856132b3565b93505080806129ac906133ff565b91505061295a565b5050919050565b6000808373ffffffffffffffffffffffffffffffffffffffff168361753090604051600060405180830381858888f193505050503d8060008114612a1b576040519150601f19603f3d011682016040523d82523d6000602084013e612a20565b606091505b509095945050505050565b600054610100900460ff1680612a44575060005460ff16155b612ad0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610739565b600054610100900460ff16158015612b0f57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000166101011790555b60018055801561133c57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16905550565b600054610100900460ff1680612b5d575060005460ff16155b612be9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610739565b600054610100900460ff161580156127ae57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000016610101179055801561133c57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff16905550565b606f5481516020830151600092918291612c7291906132b3565b11612c7d5750505190565b8083602001511015612c9f576020830151612c989082613368565b9392505050565b50600092915050565b828054612cb4906133ab565b90600052602060002090601f016020900481019282612cd65760008555612d1c565b82601f10612cef57805160ff1916838001178555612d1c565b82800160010185558215612d1c579182015b82811115612d1c578251825591602001919060010190612d01565b50612d28929150612d2c565b5090565b5b80821115612d285760008155600101612d2d565b600082601f830112612d5257600080fd5b813567ffffffffffffffff80821115612d6d57612d6d6134c5565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612db357612db36134c5565b81604052838152866020858801011115612dcc57600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060208284031215612dfe57600080fd5b8135612c98816134f4565b600060208284031215612e1b57600080fd5b8151612c98816134f4565b60008060008060808587031215612e3c57600080fd5b8435612e47816134f4565b93506020850135612e57816134f4565b925060408501359150606085013567ffffffffffffffff811115612e7a57600080fd5b612e8687828801612d41565b91505092959194509250565b60008060008060008060c08789031215612eab57600080fd5b8635612eb6816134f4565b95506020870135612ec6816134f4565b94506040870135935060608701359250608087013567ffffffffffffffff80821115612ef157600080fd5b612efd8a838b01612d41565b935060a0890135915080821115612f1357600080fd5b50612f2089828a01612d41565b9150509295509295509295565b60008060408385031215612f4057600080fd5b8235612f4b816134f4565b9150602083013567ffffffffffffffff811115612f6757600080fd5b612f7385828601612d41565b9150509250929050565b60008060408385031215612f9057600080fd5b8235612f9b816134f4565b946020939093013593505050565b600060208284031215612fbb57600080fd5b81518015158114612c9857600080fd5b600060208284031215612fdd57600080fd5b5035919050565b600060208284031215612ff657600080fd5b5051919050565b6000815180845261301581602086016020860161337f565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6003811061307e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b9052565b8054600090600181811c908083168061309c57607f831692505b60208084108214156130d7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b838852602088018280156130f257600181146131215761314c565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0087168252828201975061314c565b60008981526020902060005b878110156131465781548482015290860190840161312d565b83019850505b5050505050505092915050565b6000825161316b81846020870161337f565b9190910192915050565b7f50617274794269643a3a6269643a20706c61636520626964206661696c65643a81527f20000000000000000000000000000000000000000000000000000000000000006020820152600082516131d381602185016020870161337f565b9190910160210192915050565b82151581526040602082015260006131fb6040830184612ffd565b949350505050565b602081016117238284613047565b6080810161321f8287613047565b84602083015283604083015282606083015295945050505050565b602081526000612c986020830184612ffd565b60e08152600061326060e083018a613082565b8281036020840152613272818a613082565b73ffffffffffffffffffffffffffffffffffffffff98909816604084015250506060810194909452608084019290925260a083015260c09091015292915050565b600082198211156132c6576132c6613438565b500190565b600060ff821660ff84168060ff038211156132e8576132e8613438565b019392505050565b600082613326577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561336357613363613438565b500290565b60008282101561337a5761337a613438565b500390565b60005b8381101561339a578181015183820152602001613382565b838111156121075750506000910152565b600181811c908216806133bf57607f821691505b602082108114156133f9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561343157613431613438565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff8116811461133c57600080fdfea2646970667358221220679495a958ae2b1e3cb0228dc25d70aeae9b9adff5ed1a10ea2c3da722af9d0c64736f6c63430008050033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f7f52dd34bc21eda08c0b804c7c1dbc48375820f00000000000000000000000085aa7f78bdb2de8f3e0c0010d99ad5853ffcfc63000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
-----Decoded View---------------
Arg [0] : _partyDAOMultisig (address): 0xF7f52Dd34bc21eDA08c0b804C7c1dbc48375820f
Arg [1] : _tokenVaultFactory (address): 0x85Aa7f78BdB2DE8F3e0c0010d99AD5853fFcfC63
Arg [2] : _weth (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000f7f52dd34bc21eda08c0b804c7c1dbc48375820f
Arg [1] : 00000000000000000000000085aa7f78bdb2de8f3e0c0010d99ad5853ffcfc63
Arg [2] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.