Source Code
Overview
POL Balance
More Info
ContractCreator
Multichain Info
N/A
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Grant Role | 10750918 | 187 days ago | IN | 0 POL | 0.00085024 |
Loading...
Loading
Contract Name:
MarketFundingPool
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 600 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import { IERC20Metadata } from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import { ERC165Checker } from "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol"; import { IERC165Upgradeable } from "@openzeppelin/contracts-upgradeable/utils/introspection/IERC165Upgradeable.sol"; import { ParentFundingPool, IParentFundingPoolV1 } from "../funding/ParentFundingPool.sol"; import { ChildFundingPool, IChildFundingPoolV1 } from "../funding/ChildFundingPool.sol"; import { IConditionalTokensV1_2, ConditionalTokensErrors } from "../conditions/IConditionalTokensV1_2.sol"; import { IMarketFactory, IMarketFactoryV1_2, IMarketMakerV1, MarketAddressParams } from "./IMarketFactory.sol"; import { MarketErrors } from "./MarketErrors.sol"; interface MarketFundingPoolErrors { error InvalidLimitsArray(); error NotAFactory(address); error FactoryNotApproved(address); } interface MarketFundingPoolEvents { event MarketFactoryApproval(address indexed factory, bool approved); } /// @dev This acts as a central Liquidity Pool for all created markets, and /// ensures that the markets can be trusted by including the factory. Batch /// market creation with approval is possible contract MarketFundingPool is ParentFundingPool, MarketFundingPoolErrors, MarketFundingPoolEvents, MarketErrors, ConditionalTokensErrors { using ERC165Checker for address; struct Params { IConditionalTokensV1_2 conditionalTokens; IERC20Metadata collateralToken; address admin; address executor; } IConditionalTokensV1_2 public immutable conditionalTokens; mapping(address => bool) private factoryApproval; bytes4 private constant MARKET_INTERFACE_ID = 0x19a298e7; bytes4 private constant FACTORY_INTERFACE_V1_ID = 0xaecc550a; bytes4 private constant FACTORY_INTERFACE_V1_2_ID = 0xb4b15167; /// @custom:oz-upgrades-unsafe-allow constructor constructor(Params memory params, address prevPool) ParentFundingPool(params.admin, params.executor, params.collateralToken, prevPool) { conditionalTokens = params.conditionalTokens; } /// @dev allow a factory to be used to create markets for the fund. function setFactoryApproval(address factory, bool approved) external onlyAdmin { // If approving, require not to be paused // If removing approval, can be paused if (approved) { _requireNotPaused(); } bool supportsFactory = factory.supportsInterface(FACTORY_INTERFACE_V1_ID); if (!supportsFactory) revert NotAFactory(factory); if (factoryApproval[factory] != approved) { factoryApproval[factory] = approved; emit MarketFactoryApproval(factory, approved); } } /// @dev Create markets and approve them as child markets, so they can /// request funding directly from this pool. The function is idempotent, so /// if a market was already created, or approved, it will not fail and just /// succeed gracefully function createMarketsWithPrices( IMarketFactoryV1_2 factory, address conditionOracle, uint256 fee, uint256[] calldata marketLimits, IMarketFactoryV1_2.PackedPriceMarketParams[] calldata marketParamsArray ) public returns (IMarketMakerV1[] memory markets) { if (!factoryApproval[address(factory)]) revert FactoryNotApproved(address(factory)); bool supportsFactoryV1_2 = address(factory).supportsInterface(FACTORY_INTERFACE_V1_2_ID); if (!supportsFactoryV1_2) revert NotAFactory(address(factory)); if (marketLimits.length != marketParamsArray.length) revert InvalidLimitsArray(); markets = new IMarketMakerV1[](marketParamsArray.length); MarketAddressParams memory addresses = MarketAddressParams(conditionalTokens, collateralToken, address(this), address(0x0), conditionOracle); for (uint256 i = 0; i < marketParamsArray.length; ++i) { IMarketMakerV1 market = factory.createMarket(fee, addresses, marketParamsArray[i]); bool supportsMarket = address(market).supportsInterface(MARKET_INTERFACE_ID); if (!supportsMarket) revert NotAFactory(address(factory)); markets[i] = market; // Slither has a medium-level warning for re-entrancy here. The // issue is that we change a local state (child approval) after an // external call (to factory.createMarket) . In usual re-entrancy // problems, the state change is something like a balance change, // but in this case we are actually allowing operations only after // creation. Meaning, even if the factory or created market // re-enters another method, approval is false at that time, so // nothing nefarious is possible. // slither-disable-next-line reentrancy-no-eth setApprovalForChild(address(market), marketLimits[i]); } } /// @dev Same as other overload, but for old market factory interface function createMarketsWithPrices( IMarketFactory factory, address priceOracle, address conditionOracle, uint256 fee, uint256[] calldata marketLimits, IMarketFactory.PriceMarketParams[] calldata marketParamsArray ) external returns (IMarketMakerV1[] memory markets) { if (!factoryApproval[address(factory)]) revert FactoryNotApproved(address(factory)); if (marketLimits.length != marketParamsArray.length) revert InvalidLimitsArray(); markets = new IMarketMakerV1[](marketParamsArray.length); MarketAddressParams memory addresses = MarketAddressParams(conditionalTokens, collateralToken, address(this), priceOracle, conditionOracle); for (uint256 i = 0; i < marketParamsArray.length; ++i) { IMarketMakerV1 market = factory.createMarket(fee, addresses, marketParamsArray[i]); bool supportsMarket = address(market).supportsInterface(MARKET_INTERFACE_ID); if (!supportsMarket) revert NotAFactory(address(factory)); markets[i] = market; // See comment explaining in other implementation // slither-disable-next-line reentrancy-no-eth setApprovalForChild(address(market), marketLimits[i]); } } function getFactoryApproval(address factory) public view returns (bool) { return factoryApproval[factory]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.2) (utils/introspection/ERC165Checker.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Library used to query support of an interface declared via {IERC165}. * * Note that these functions return the actual result of the query: they do not * `revert` if an interface is not supported. It is up to the caller to decide * what to do in these cases. */ library ERC165Checker { // As per the EIP-165 spec, no interface should ever match 0xffffffff bytes4 private constant _INTERFACE_ID_INVALID = 0xffffffff; /** * @dev Returns true if `account` supports the {IERC165} interface. */ function supportsERC165(address account) internal view returns (bool) { // Any contract that implements ERC165 must explicitly indicate support of // InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid return supportsERC165InterfaceUnchecked(account, type(IERC165).interfaceId) && !supportsERC165InterfaceUnchecked(account, _INTERFACE_ID_INVALID); } /** * @dev Returns true if `account` supports the interface defined by * `interfaceId`. Support for {IERC165} itself is queried automatically. * * See {IERC165-supportsInterface}. */ function supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) { // query support of both ERC165 as per the spec and support of _interfaceId return supportsERC165(account) && supportsERC165InterfaceUnchecked(account, interfaceId); } /** * @dev Returns a boolean array where each value corresponds to the * interfaces passed in and whether they're supported or not. This allows * you to batch check interfaces for a contract where your expectation * is that some interfaces may not be supported. * * See {IERC165-supportsInterface}. * * _Available since v3.4._ */ function getSupportedInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool[] memory) { // an array of booleans corresponding to interfaceIds and whether they're supported or not bool[] memory interfaceIdsSupported = new bool[](interfaceIds.length); // query support of ERC165 itself if (supportsERC165(account)) { // query support of each interface in interfaceIds for (uint256 i = 0; i < interfaceIds.length; i++) { interfaceIdsSupported[i] = supportsERC165InterfaceUnchecked(account, interfaceIds[i]); } } return interfaceIdsSupported; } /** * @dev Returns true if `account` supports all the interfaces defined in * `interfaceIds`. Support for {IERC165} itself is queried automatically. * * Batch-querying can lead to gas savings by skipping repeated checks for * {IERC165} support. * * See {IERC165-supportsInterface}. */ function supportsAllInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool) { // query support of ERC165 itself if (!supportsERC165(account)) { return false; } // query support of each interface in interfaceIds for (uint256 i = 0; i < interfaceIds.length; i++) { if (!supportsERC165InterfaceUnchecked(account, interfaceIds[i])) { return false; } } // all interfaces supported return true; } /** * @notice Query if a contract implements an interface, does not check ERC165 support * @param account The address of the contract to query for support of an interface * @param interfaceId The interface identifier, as specified in ERC-165 * @return true if the contract at account indicates support of the interface with * identifier interfaceId, false otherwise * @dev Assumes that account contains a contract that supports ERC165, otherwise * the behavior of this method is undefined. This precondition can be checked * with {supportsERC165}. * * Some precompiled contracts will falsely indicate support for a given interface, so caution * should be exercised when using this function. * * Interface identification is specified in ERC-165. */ function supportsERC165InterfaceUnchecked(address account, bytes4 interfaceId) internal view returns (bool) { // prepare call bytes memory encodedParams = abi.encodeWithSelector(IERC165.supportsInterface.selector, interfaceId); // perform static call bool success; uint256 returnSize; uint256 returnValue; assembly { success := staticcall(30000, account, add(encodedParams, 0x20), mload(encodedParams), 0x00, 0x20) returnSize := returndatasize() returnValue := mload(0x00) } return success && returnSize >= 0x20 && returnValue > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165Upgradeable { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import { IERC20Metadata } from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import { IERC165Upgradeable } from "@openzeppelin/contracts-upgradeable/utils/introspection/IERC165Upgradeable.sol"; import { ContextUpgradeable } from "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol"; import { ERC165Checker } from "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol"; import { AccessControlUpgradeable } from "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol"; import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import { SafeERC20Upgradeable } from "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol"; import { Math } from "@openzeppelin/contracts/utils/math/Math.sol"; import { FundingPool, IFundingPoolV1_1, IFundingPoolV1, FundingMath } from "./FundingPool.sol"; import { IParentFundingPoolV1 } from "./IParentFundingPoolV1.sol"; import { ChildFundingPool, IChildFundingPoolV1 } from "./ChildFundingPool.sol"; import { ClampedMath } from "../Math.sol"; import { AdminExecutorAccessUpgradeable } from "../AdminExecutorAccess.sol"; interface MigrateFundsEvents { event MigratedFunds(address indexed receiver, uint256 collateralMigrated, uint256 costBasis, uint256 sharesGranted); } /// @dev Interface for migrating funds from current Parent pool to another interface IMigrateFundsSender is MigrateFundsEvents { error DoesNotSupportMigrateFundsInterface(address); error DoesNotSupportParentPoolInterface(address); function migrateFundsTo(address newPool) external returns (uint256 collateralMigrated, uint256 costBasis, uint256 sharesGranted); } /// @dev Interface for migrating funds from another Parent pool to this one. interface IMigrateFundsReceiver { error NoPrevPoolConfigured(); error SenderIsNotPrevPool(address); /// @dev Call to initiate migration through requestFunding. Must be called /// by the pool from which the funds are being migrated /// @return collateralMigrated quantity of collateral that was able to be migrated /// @return costBasis the recorded costBasis of the migrated collateral /// @return sharesGranted number of liquidity shares given for the migrated funds function migrateFundsFromSender() external returns (uint256 collateralMigrated, uint256 costBasis, uint256 sharesGranted); } interface IManagementFee { event ManagementFeeSet(uint64 feeEvaluationBlockPeriod, uint8 feePortion); } contract ParentFundingPool is FundingPool, IParentFundingPoolV1, AdminExecutorAccessUpgradeable, ChildFundingPool, IMigrateFundsReceiver, IMigrateFundsSender, IManagementFee { using ERC165Checker for address; using ClampedMath for uint256; using Math for uint256; using SafeERC20 for IERC20Metadata; using SafeERC20Upgradeable for IFundingPoolV1; struct FunderShareRemovals { uint256 removedAsCollateral; uint256 removedAsChildShares; } /// @dev Current state of investement in a child pool struct ChildValue { /// @dev How much collateral is locked up in a child pool uint256 locked; /// @dev realized losses or gains by child when returning funds int256 pnl; } /// @dev a struct to keep track of the current state of pool during liquidity removal struct RemovalContext { uint256 currentFunderShares; uint256 totalShares; uint256 poolValue; uint256 totalChildValueLocked; uint256 valueHighPoint; FunderShareRemovals removals; } /// @dev What is the maximum any child fund can request. Managed by DEFAULT_ADMIN_ROLE uint256 public requestLimit; /// @dev What is the maximum a particular child fund can request to be funded. Managed by FUND_MANAGER_ROLE mapping(address => uint256) private childApproval; // Interface ids for interoperability with already deployed contracts bytes4 private constant FUNDING_POOL_INTERFACE_ID = 0x0dc4a76a; bytes4 private constant FUNDING_POOL_V1_1_INTERFACE_ID = 0x5ee02cbf; bytes4 private constant CHILD_POOL_INTERFACE_ID = 0xd2da4040; bytes4 private constant MIGRATE_FUNDS_RECEIVER_INTERFACE_ID = 0x49bcbcc0; /// @dev How much collateral is used up in a child pool mapping(address => ChildValue) private childValue; /// @dev current value locked in all child pools uint256 public totalChildValueLocked; /// @dev Keeps track of how many shares were directly exchanged for /// "unlocked"/"locked" collateral in the pool. Used to prevent funders /// withdrawing all their shares only in collateral, leaving other funders /// stuck with only locked liquidity. mapping(address => FunderShareRemovals) private funderShareRemovals; mapping(address => mapping(address => uint256)) private funderShareRemovalsForChild; /// @dev What was the last high point for the overall value of the pool, /// beyond which the pool executor can take a fee on the gains. uint256 public valueHighPoint; /// @dev When was the last fee on gains evaluation performed, as a block number uint64 public lastFeeEvaluationBlock; /// @dev How often to re-evaluate fees uint64 public feeEvaluationBlockPeriod; /// @dev Portion out of 256 to take on the gains uint8 public feePortion; /// @dev Create a ParentFundingPool, and potentially set up a migration from previous pool /// @param admin address with admin priveleges /// @param executor address with executor priveleges /// @param _collateralToken The collateral token to use for investing in the pool /// @param prevPool optional address of previous ParentFundingPool, from which funds should be migrated /// @custom:oz-upgrades-unsafe-allow constructor constructor(address admin, address executor, IERC20Metadata _collateralToken, address prevPool) { // The contract is not meant to be upgradeable or run behind a proxy, // but uses upgradeable base contracts because it shares some base // classes with other contracts that need to be behind a proxy initialize(admin, executor, _collateralToken, prevPool); _disableInitializers(); // By default don't evaluate management fees on gains feeEvaluationBlockPeriod = type(uint64).max; _reevaluateGainsOnPool(false); } /// @inheritdoc IFundingPoolV1 function addFunding(uint256 collateralAdded) external returns (uint256 sharesMinted) { return addFundingFor(_msgSender(), collateralAdded); } /// @inheritdoc IParentFundingPoolV1 function requestFunding(uint256 collateralRequested) external whenNotPaused returns (uint256 collateralAdded, uint256 sharesMinted) { IFundingPoolV1 childPool = _childPoolSender(); // how much is remaining to be requested from the limit and collateral (uint256 limitRemaining,) = getAvailableFunding(address(childPool)); // clamp collateralRequested to the limit collateralAdded = Math.min(limitRemaining, collateralRequested); if (collateralAdded > 0) { childValue[address(childPool)].locked += collateralAdded; totalChildValueLocked += collateralAdded; collateralToken.safeApprove(address(childPool), collateralAdded); sharesMinted = childPool.addFunding(collateralAdded); emit FundingGiven(address(childPool), collateralAdded); // NOTE: currently childPool cannot be completely trustless, as // childPool itself is the ERC20 fund share token, which means it // can burn shares without the knowledge of the parent, in effect // keeping all the funds. This is at least mitigated by the fact // that a child pool cannot exceed its limit. } } /// @notice Set the maximum any child fund can request. function setRequestLimit(uint256 limit) public onlyAdmin { requestLimit = limit; emit RequestLimitChanged(limit); } /// @dev Set management fee parameters /// @param blockPeriod how often the fee is evaluated in blocks /// @param feePortion_ the management fee on gains expressed as proportion out of 256 function setFeeParameters(uint64 blockPeriod, uint8 feePortion_) external onlyAdmin { feeEvaluationBlockPeriod = blockPeriod; feePortion = feePortion_; emit ManagementFeeSet(blockPeriod, feePortion_); } /// @dev This entirely depends on trusting the child pool to report /// fundingReturned correctly. This is accomplished here because this single pool /// controls exactly what code the child pool (markets) are running. In a /// future implementation it would be better to express pool ownership /// through ERC1155 tokens, and utilize the ERC1155Receiver functionality to /// automatically be called back when shares are returned. function fundingReturned(uint256 collateralReturned, uint256 childSharesBurnt) external { IFundingPoolV1 childPool = _childPoolSender(); uint256 childSharesBefore = childPool.balanceOf(address(this)) + childSharesBurnt; ChildValue storage child = childValue[address(childPool)]; uint256 valueLocked = child.locked; uint256 valueUnlocked = childSharesBefore > 0 ? (childSharesBurnt * valueLocked) / childSharesBefore : 0; if (collateralReturned > uint256(type(int256).max)) revert ExcessiveFunding(); assert(valueUnlocked <= uint256(type(int256).max)); child.locked = valueLocked - valueUnlocked; child.pnl += int256(collateralReturned) - int256(valueUnlocked); totalChildValueLocked -= valueUnlocked; emit FundingReturned(address(childPool), collateralReturned, valueUnlocked); _reevaluateGainsOnPool(false); } function feesReturned(uint256 fees) external { IFundingPoolV1 childPool = _childPoolSender(); // Fees just end up being part of the overall collateral value ChildValue storage child = childValue[address(childPool)]; child.pnl += int256(fees); emit FundingReturned(address(childPool), fees, 0); } /// @dev Remove liquidity in collateral by burning a portion of the funder's shares. /// The proportion of shares that can be removed this way cannot exceed the /// proportion of collateral in the parent pool. To maximize the amount of /// collateral removed, do collateral removal first before trying to remove /// liquidity as child shares. /// @param sharesToBurn How many funder shares to burn /// @return collateralReturned How much collateral was returned /// @return sharesBurnt How much many shares were burnt function removeCollateral(uint256 sharesToBurn) external whenNotPaused returns (uint256 collateralReturned, uint256 sharesBurnt) { address funder = _msgSender(); // force re-evaluation because some value is exiting _reevaluateGainsOnPool(true); uint256 valueHighPointReturned; (collateralReturned, sharesBurnt, valueHighPointReturned) = _calcRemoveCollateral(funder, sharesToBurn); if (sharesBurnt == 0) return (collateralReturned, sharesBurnt); valueHighPoint -= valueHighPointReturned; funderShareRemovals[funder].removedAsCollateral += sharesBurnt; _burnSharesOf(funder, sharesBurnt); collateralToken.safeTransfer(funder, collateralReturned); uint256[] memory noTokens = new uint256[](0); emit FundingRemoved(funder, collateralReturned, noTokens, sharesBurnt); } /// @dev Remove liquidity in assets by burning a portion of the funder's shares. /// The proportion of a funder's shares that can be removed in terms of a /// particular child pool's shares cannot exceed the proportion of liquidity /// in that child pool among all child pools /// @param child address of child pool /// @param sharesToBurn How many funder shares to burn function removeChildShares(address child, uint256 sharesToBurn) public whenNotPaused returns (uint256 childSharesReturned, uint256 sharesBurnt) { IFundingPoolV1 childPool = _childPool(child); address funder = _msgSender(); // force re-evaluation because some value is exiting _reevaluateGainsOnPool(true); mapping(address => uint256) storage removalsForChild = funderShareRemovalsForChild[funder]; RemovalContext memory context = _getRemovalContext(funder); (childSharesReturned, sharesBurnt) = _removeChildShares(childPool, context, sharesToBurn, removalsForChild); // Update state if (sharesBurnt > 0) { _burnSharesOf(funder, sharesBurnt); } funderShareRemovals[funder] = context.removals; totalChildValueLocked = context.totalChildValueLocked; valueHighPoint = context.valueHighPoint; if (childSharesReturned > 0) { assert(sharesBurnt > 0); // Transfer childPool.safeTransfer(funder, childSharesReturned); emit FundingRemovedAsToken(funder, uint256(bytes32(bytes20(child))), childSharesReturned, sharesBurnt); } // with fractional shares it's possible to have leftover shares that are // not worth 1 wei of collateral. It is up to the user to avoid // needlessly burning shares } function batchRemoveChildShares(address[] calldata children, uint256[] calldata sharesToBurn) external whenNotPaused returns (uint256 totalSharesBurnt) { if (children.length != sharesToBurn.length) revert InvalidBatchLength(); // No gas optimizations done here because it would open up the code to // re-entrancy attacks for (uint256 i = 0; i < children.length; ++i) { (, uint256 sharesBurnt) = removeChildShares(children[i], sharesToBurn[i]); totalSharesBurnt += sharesBurnt; } } /// @dev Withdraw collectedFees in the form of management fees on gains to another address function withdrawManagementFeesTo(address beneficiary) external onlyAdmin returns (uint256 feesTransferred) { feesTransferred = collectedFees; _unlockFees(feesTransferred); collateralToken.safeTransfer(beneficiary, feesTransferred); emit FeesWithdrawn(beneficiary, feesTransferred); } function migrateFundsTo(address newPool) external onlyAdmin returns (uint256 collateralMigrated, uint256 costBasis, uint256 sharesGranted) { if (!newPool.supportsInterface(PARENT_FUNDING_POOL_INTERFACE_ID)) { revert DoesNotSupportParentPoolInterface(newPool); } if (!newPool.supportsInterface(MIGRATE_FUNDS_RECEIVER_INTERFACE_ID)) { revert DoesNotSupportMigrateFundsInterface(newPool); } _reevaluateGainsOnPool(true); // Total funder cost basis is the target balance of the pool without any PNL uint256 globalTarget = getTotalFunderCostBasis(); // child approval is usually done by the fund executor. We need to override it for this operation grantRole(EXECUTOR_ROLE, msg.sender); setApprovalForChild(newPool, globalTarget); revokeRole(EXECUTOR_ROLE, msg.sender); // Expand request limit to be able to cover the full migration. Will be restored later uint256 prevRequestLimit = requestLimit; setRequestLimit(globalTarget); IMigrateFundsReceiver newParentPool = IMigrateFundsReceiver(newPool); // No re-entrancy threat here, since `newPool` is passed in by admin, so should be trusted. // slither-disable-next-line reentrancy-no-eth (collateralMigrated, costBasis, sharesGranted) = newParentPool.migrateFundsFromSender(); // Restore previous request limit setRequestLimit(prevRequestLimit); emit MigratedFunds(newPool, collateralMigrated, costBasis, sharesGranted); } /// @inheritdoc IMigrateFundsReceiver function migrateFundsFromSender() external returns (uint256 collateralMigrated, uint256 costBasis, uint256 sharesGranted) { address senderPool = getParentPool(); if (senderPool == address(0x0)) revert NoPrevPoolConfigured(); if (msg.sender != senderPool) revert SenderIsNotPrevPool(msg.sender); bool supportsFundingPool = senderPool.supportsInterface(FUNDING_POOL_V1_1_INTERFACE_ID); if (!supportsFundingPool) revert NotAParentPool(senderPool); // The external calls below are trusted because the `senderPool` should // be the same as the parent pool passed in the constructor of this // contract, meaning the whole contract is trusted. // slither-disable-next-line reentrancy-no-eth reentrancy-benign uint256 senderCostBasis = IFundingPoolV1_1(senderPool).getTotalFunderCostBasis(); // slither-disable-next-line reentrancy-no-eth uint256 senderReserves = IFundingPoolV1_1(senderPool).reserves(); // slither-disable-next-line reentrancy-no-eth reentrancy-benign uint256 senderTotalValue = IFundingPoolV1_1(senderPool).getPoolValue(); // Don't proceed if there is no collateral available to be migrated if (senderReserves == 0) { return (0, 0, 0); } uint256 costBasisOfSenderBeforeMigration = getFunderCostBasis(senderPool); // senderPool is guaranteed to support parent pool interface, because it // was assigned in constructor to ChildFundingPool, which checks the // interface support assert(senderPool.supportsInterface(PARENT_FUNDING_POOL_INTERFACE_ID)); IParentFundingPoolV1 senderParentPool = IParentFundingPoolV1(senderPool); // Migrate only the collateral that is immediately available, avoiding any locked liquidity. // The migration can be repeated to migrate everything eventually // slither-disable-next-line reentrancy-benign (collateralMigrated, sharesGranted) = senderParentPool.requestFunding(senderReserves); // Now adjust the cost basis, to match the sender pool. This means // that any unrealized losses will be carried over to this pool { assert(collateralMigrated == (getFunderCostBasis(senderPool) - costBasisOfSenderBeforeMigration)); // Don't carry over unrealized gains, as those will be kept by the original pool senderCostBasis = Math.max(senderCostBasis, senderTotalValue); costBasis = (collateralMigrated * senderCostBasis) / senderTotalValue; assert(costBasis >= collateralMigrated); uint256 adjustment = costBasis - collateralMigrated; _adjustCostBasis(senderPool, adjustment); } } /// @param sharesToBurn How many funder shares to burn /// @return collateralReturned How much collateral was returned /// @return sharesBurnt How much many shares were burnt function calcRemoveCollateral(address funder, uint256 sharesToBurn) public view returns (uint256 collateralReturned, uint256 sharesBurnt) { (collateralReturned, sharesBurnt,) = _calcRemoveCollateral(funder, sharesToBurn); } function _calcRemoveCollateral(address funder, uint256 sharesToBurn) private view returns (uint256 collateralReturned, uint256 sharesBurnt, uint256 valueHighPointReturned) { uint256 _reserves = reserves(); uint256 poolValue = getPoolValue(); if (poolValue == 0) revert PoolValueZero(); FunderShareRemovals memory removals = funderShareRemovals[funder]; uint256 funderTotalShares = balanceOf(funder) + removals.removedAsCollateral; sharesBurnt = FundingMath.calcMaxParentSharesToBurnForAsset( funderTotalShares, sharesToBurn, removals.removedAsCollateral, _reserves, poolValue ); if (sharesBurnt == 0) return (collateralReturned, sharesBurnt, valueHighPointReturned); uint256 _totalSupply = totalSupply(); uint256 _valueHighPoint = valueHighPoint; collateralReturned = FundingMath.calcReturnAmount(sharesBurnt, _totalSupply, poolValue); valueHighPointReturned = FundingMath.calcReturnAmount(sharesBurnt, _totalSupply, _valueHighPoint); assert(collateralReturned <= _reserves); assert(valueHighPointReturned <= _valueHighPoint); } /// @inheritdoc IParentFundingPoolV1 function setApprovalForChild(address childPool, uint256 approval) public onlyExecutor { // If approving, require not to be paused // If removing approval, can be paused if (approval > 0) { _requireNotPaused(); } // reduce gas cost if approval matches the previous value if (childApproval[childPool] == approval) return; bool supportsFundingPool = childPool.supportsInterface(FUNDING_POOL_INTERFACE_ID); if (!supportsFundingPool) revert NotAChildPool(childPool); bool supportsChildPool = childPool.supportsInterface(CHILD_POOL_INTERFACE_ID); if (!(supportsChildPool && IChildFundingPoolV1(childPool).getParentPool() == address(this))) { revert NotAChildPool(childPool); } childApproval[childPool] = approval; emit ChildPoolApproval(childPool, approval); } /// @inheritdoc IFundingPoolV1 function addFundingFor(address receiver, uint256 collateralAdded) public whenNotPaused returns (uint256 sharesMinted) { _reevaluateGainsOnPool(false); valueHighPoint += collateralAdded; uint256 poolValue = getPoolValue(); sharesMinted = _mintSharesFor(receiver, collateralAdded, poolValue); } /// @inheritdoc IParentFundingPoolV1 function getAvailableFunding(address childPool) public view returns (uint256 availableFunding, uint256 availableTarget) { uint256 globalTarget = getTotalFunderCostBasis(); availableTarget = Math.min(requestLimit, childApproval[childPool]); availableTarget = Math.min(globalTarget, availableTarget); availableFunding = availableTarget; // Do not adjust funding based on gains/losses // remaining target after taking into account how much was already spent ChildValue memory child = childValue[childPool]; availableTarget = availableTarget.subClamp(child.locked); availableFunding = availableFunding.subClamp(child.locked); // It is important not to limit availableTarget to reserves. The target // is used to signal the ideal balance for a child pool, regardless of // gains or losses. It serves as a stable baseline for the child pool to // assess its performance. This is important to keep accurate because // collateral is requested and returned constantly between the child and // the parent as needed. If available funding is less than target, that // means the child pool has lost some value and must increase slippage // to regain value back. // If target is reduced to keep pace with reserves, when a child loses // money, it's available funding and target will stay in sync, giving // the illusion that it is doing fine (target and available funding are // the same). It will continue losing money as the reserves shrink. Thus // available funding is relative to reserves, while available target is // relative to cost basis - the original collateral deposited. // Available funding takes into account how much was lost or gained by the child availableFunding = Math.min(reserves(), availableFunding.addClamp(child.pnl)); } function getApprovalForChild(address childPool) public view returns (uint256) { return childApproval[childPool]; } function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165Upgradeable, AccessControlUpgradeable) returns (bool) { return interfaceId == type(IParentFundingPoolV1).interfaceId || interfaceId == type(IFundingPoolV1).interfaceId || interfaceId == type(IFundingPoolV1_1).interfaceId || interfaceId == type(IChildFundingPoolV1).interfaceId || interfaceId == type(IMigrateFundsSender).interfaceId || interfaceId == type(IMigrateFundsReceiver).interfaceId || super.supportsInterface(interfaceId); } function _msgSender() internal view override(ContextUpgradeable) returns (address) { return ContextUpgradeable._msgSender(); } // Have to override, otherwise does not compile // slither-disable-next-line dead-code function _msgData() internal view override(ContextUpgradeable) returns (bytes calldata) { return ContextUpgradeable._msgData(); } function _checkChildPool(address childPool) internal view { if (getApprovalForChild(childPool) == 0) revert ChildPoolNotApproved(childPool); } function _childPoolSender() internal view returns (IFundingPoolV1) { return _childPool(_msgSender()); } function _childPool(address childPool) internal view returns (IFundingPoolV1) { _checkChildPool(childPool); // Don't need to check if childPool supports the right interfaces - that // was already done when it was approved return IFundingPoolV1(childPool); } function _removeChildShares( IFundingPoolV1 childPool, RemovalContext memory context, uint256 sharesToBurn, mapping(address => uint256) storage removalsForChild ) private returns (uint256 childSharesReturned, uint256 sharesBurnt) { if (sharesToBurn > context.currentFunderShares) revert InvalidBurnAmount(); uint256 childLocked = childValue[address(childPool)].locked; // slither-disable-next-line dangerous-strict-equalities if (childLocked == 0) return (childSharesReturned, sharesBurnt); // To explain the below two max values, let's set up a scenario // Setup: // - total 100 liquidity shares for parent pool // - 25% of value is locked in child A, 25% of value is locked in child B // Calculate how many parent shares can be removed from the pool in the form of child pool shares. // Regardless of the funder, in the above scenario, only 25 liquidity // shares of the parent are convertible to child shares of A or B. This is just 25% of the total pool uint256 maxTotalSharesRedeemableForChild = (context.totalShares * childLocked).ceilDiv(context.poolValue); // Limit number of funder shares redeemable to proportion of child value // of overall locked value. In the above scenario, if a funder had 20 // shares in the parent pool, they cannot convert all 20 shares for a // single child's shares. Since each child's portion of locked value is // 50%, at most 10 parent shares of the funder can be converted into // each of the child's shares. This is to limit removals where one // child's liquidity value is more advantageous to remove than another. sharesBurnt = FundingMath.calcMaxParentSharesToBurnForAsset( context.currentFunderShares + context.removals.removedAsChildShares, Math.min(sharesToBurn, maxTotalSharesRedeemableForChild), removalsForChild[address(childPool)], childLocked, context.totalChildValueLocked // instead of pool value ); if (sharesBurnt == 0) return (childSharesReturned, sharesBurnt); uint256 valueReturned = FundingMath.calcReturnAmount(sharesBurnt, context.totalShares, context.poolValue); valueReturned = Math.min(valueReturned, childLocked); uint256 valueHighPointReturned = FundingMath.calcReturnAmount(valueReturned, context.poolValue, context.valueHighPoint); context.removals.removedAsChildShares += sharesBurnt; removalsForChild[address(childPool)] += sharesBurnt; uint256 childShares = childPool.balanceOf(address(this)); childSharesReturned = (childShares * valueReturned) / childLocked; context.currentFunderShares -= sharesBurnt; context.totalShares -= sharesBurnt; context.poolValue -= valueReturned; context.totalChildValueLocked -= valueReturned; context.valueHighPoint -= valueHighPointReturned; childValue[address(childPool)].locked = childLocked - valueReturned; } function _getRemovalContext(address funder) private view returns (RemovalContext memory) { uint256 funderShares = balanceOf(funder); uint256 poolValue = getPoolValue(); // If there is no value in the pool, it doesn't make sense to remove value from it. if (poolValue == 0) revert PoolValueZero(); FunderShareRemovals memory removals = funderShareRemovals[funder]; return RemovalContext(funderShares, totalSupply(), poolValue, totalChildValueLocked, valueHighPoint, removals); } function _reevaluateGainsOnPool(bool force) private returns (uint256 fees) { uint256 lastBlock = lastFeeEvaluationBlock; uint256 period = feeEvaluationBlockPeriod; if (!force && (block.number - lastBlock < period)) return fees; lastFeeEvaluationBlock = uint64(block.number); uint256 poolValue = getPoolValue(); if (poolValue <= valueHighPoint) return fees; // Use ceilDiv to calculate fees, so fees are not lost due to truncation uint256 gains = poolValue - valueHighPoint; fees = (gains * feePortion).ceilDiv(256); // If fees exceed reserves, we can re-evaluate next time, keeping same high point // If we are forcing re-evaluation, _retainFees will revert. This is to // prevent value exiting the pool while we don't have enough collateral // to cover fees if (!force && reserves() < fees) { return 0; } _retainFees(fees); valueHighPoint = poolValue - fees; } function getPoolValue() public view returns (uint256 poolValue) { poolValue = reserves() + totalChildValueLocked; } function initialize(address admin, address executor, IERC20Metadata _collateralToken, address prevPool) private initializer { __AdminExecutor_init(admin, executor); __FundingPool_init(_collateralToken); __ChildFundingPool_init(prevPool); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import { IChildFundingPoolV1 } from "./IChildFundingPoolV1.sol"; import { IParentFundingPoolV1 } from "./IParentFundingPoolV1.sol"; import { ERC165Checker } from "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol"; import { Initializable } from "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; /// @dev A Mixin contract that provides a basic implementation of the IChildFundingPoolV1 interface abstract contract ChildFundingPool is Initializable, IChildFundingPoolV1 { using ERC165Checker for address; address private _parent; bytes4 internal constant PARENT_FUNDING_POOL_INTERFACE_ID = 0xd0632e9a; function getParentPool() public view returns (address) { return _parent; } // solhint-disable-next-line func-name-mixedcase function __ChildFundingPool_init(address parentPool) internal onlyInitializing { __ChildFundingPool_init_unchained(parentPool); } // solhint-disable-next-line func-name-mixedcase function __ChildFundingPool_init_unchained(address parentPool) internal onlyInitializing { assert(address(_parent) == address(0x0)); if (parentPool != address(0x0) && !parentPool.supportsInterface(PARENT_FUNDING_POOL_INTERFACE_ID)) { revert NotAParentPool(parentPool); } _parent = parentPool; emit ParentPoolAdded(parentPool); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import { IConditionalTokensEvents, IConditionalTokens, IERC20, ConditionalTokensErrors } from "./IConditionalTokens.sol"; import { PackedPrices } from "../PackedPrices.sol"; import { ConditionID, QuestionID, CTHelpers } from "./CTHelpers.sol"; interface IConditionalTokensEventsV1_2 is IConditionalTokensEvents { /// @dev Event emitted only when a condition is prepared to save on gas costs /// @param conditionId which condition had its price set /// @param packedPrices the encoded prices in a byte array event ConditionPricesUpdated(ConditionID indexed conditionId, bytes packedPrices); /// @dev Halt time for a condition has been updated event HaltTimeUpdated(ConditionID indexed conditionId, uint32 haltTime); } interface IConditionalTokensV1_2 is IConditionalTokens, IConditionalTokensEventsV1_2 { struct PriceUpdate { ConditionID conditionId; bytes packedPrices; } struct HaltUpdate { ConditionID conditionId; /// @dev haltTime as seconds since epoch, same as block.timestamp /// unsigned 32bit epoch timestamp in seconds should be suitable until year 2106 uint32 haltTime; } function prepareConditionByOracle( QuestionID questionId, uint256 outcomeSlotCount, bytes calldata packedPrices, uint32 haltTime_ ) external returns (ConditionID); function updateFairPrices(ConditionID conditionId, bytes calldata packedPrices) external; function batchUpdateFairPrices(PriceUpdate[] calldata priceUpdates) external; function getFairPrices(ConditionID conditionId) external view returns (uint256[] memory fairPriceDecimals); function updateHaltTime(ConditionID conditionId, uint32 haltTime) external; function batchUpdateHaltTimes(HaltUpdate[] calldata haltUpdates) external; /// @dev Returns the halt time of a condition. Will be 0 if no price oracle /// is configured (if old prepareCondition was called). function haltTime(ConditionID conditionId) external view returns (uint32); /// @dev Returns if the condition is halted or already resolved. Halting /// only effects price updates. If no price oracle was configured for a /// condition, this will always return true. This is ok since it does not /// affect any other aspect. function isHalted(ConditionID conditionId) external view returns (bool); /// @dev combines together balanceOfCondition and getFairPrices into one call to minimize gas usage function getPositionInfo(address account, IERC20 collateralToken, ConditionID conditionId) external view returns (uint256[] memory balances, uint256[] memory fairPriceDecimals); /// @dev Get the current payouts for a condition. function getPayouts(ConditionID conditionId) external view returns (uint256[] memory numerators, uint256 denominator); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { IERC165 } from "@openzeppelin/contracts/utils/introspection/IERC165.sol"; import { IMarketMakerV1 } from "./IMarketMaker.sol"; import { MarketAddressParams } from "./MarketAddressParams.sol"; import { IConditionalTokens, ConditionID, QuestionID } from "../conditions/IConditionalTokens.sol"; /// @title Events for a market factory /// @dev Use these events for blockchain indexing interface IMarketFactoryEvents { event MarketMakerCreation( address indexed creator, IMarketMakerV1 marketMaker, IConditionalTokens indexed conditionalTokens, IERC20 indexed collateralToken, ConditionID conditionId, uint256 haltTime, uint256 fee ); } interface IMarketFactory is IMarketFactoryEvents, IERC165 { /// @dev Parameters unique to a single Market creation struct PriceMarketParams { QuestionID questionId; uint256[] fairPriceDecimals; uint128 minPriceDecimal; uint256 haltTime; } function createMarket(uint256 fee, MarketAddressParams calldata addresses, PriceMarketParams memory params) external returns (IMarketMakerV1); } interface IMarketFactoryV1_2 is IMarketFactory { /// @dev Parameters unique to a single Market creation, with packed prices struct PackedPriceMarketParams { QuestionID questionId; bytes packedPrices; uint32 haltTime; } function createMarket(uint256 fee, MarketAddressParams calldata addresses, PackedPriceMarketParams memory params) external returns (IMarketMakerV1); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import { AmmErrors } from "./AmmErrors.sol"; import { FundingErrors } from "../funding/FundingErrors.sol"; interface MarketErrors is AmmErrors, FundingErrors { error MarketHalted(); error MarketUndecided(); // Buy error InvalidInvestmentAmount(); error MinimumBuyAmountNotReached(); error FeesConsumeInvestment(); // Sell error InvalidReturnAmount(); error MaximumSellAmountExceeded(); error InvestmentDrainsPool(); error OperationNotSupported(); error CanOnlyBeFundedByParent(); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControlUpgradeable.sol"; import "../utils/ContextUpgradeable.sol"; import "../utils/StringsUpgradeable.sol"; import "../utils/introspection/ERC165Upgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControlUpgradeable is Initializable, ContextUpgradeable, IAccessControlUpgradeable, ERC165Upgradeable { function __AccessControl_init() internal onlyInitializing { } function __AccessControl_init_unchained() internal onlyInitializing { } struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", StringsUpgradeable.toHexString(account), " is missing role ", StringsUpgradeable.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * May emit a {RoleGranted} event. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20Upgradeable.sol"; import "../extensions/draft-IERC20PermitUpgradeable.sol"; import "../../../utils/AddressUpgradeable.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20Upgradeable { using AddressUpgradeable for address; function safeTransfer( IERC20Upgradeable token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20Upgradeable token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20Upgradeable token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20Upgradeable token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20Upgradeable token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20PermitUpgradeable token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20Upgradeable token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import { IERC20Metadata } from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import { ERC20Upgradeable } from "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol"; import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import { Math } from "@openzeppelin/contracts/utils/math/Math.sol"; import { IFundingPoolV1_1, IFundingPoolV1 } from "./IFundingPoolV1_1.sol"; import { FundingMath } from "./FundingMath.sol"; import { ArrayMath, ClampedMath } from "../Math.sol"; /// @dev A contract with the necessary storage to keep track of funding. Should /// not be used as a standalone contract, but like a mixin abstract contract FundingPool is IFundingPoolV1_1, ERC20Upgradeable { using Math for uint256; using ArrayMath for uint256[]; using SafeERC20 for IERC20Metadata; IERC20Metadata public collateralToken; /// @inheritdoc IFundingPoolV1 uint256 public collectedFees; /// @dev Keeps track of total collateral used to enter the current liquidity /// position of the funder. It is increased by the collateral amount every /// time the funder funds, and then reduced proportionally to how many LP /// shares are withdrawn during defunding. This can be considered the "cost /// basis" of the lp shares of each funder mapping(address => uint256) private funderCostBasis; /// @dev Total collateral put into funding the current LP shares uint256 private totalFunderCostBasis; /// @dev By default fees are no longer withdrawable - it's up to /// implementation to decide what to do with the fees and how to distribute /// them function withdrawFees(address /* funder */ ) public pure returns (uint256) { return 0; } /// @dev By default fees are no longer withdrawable - it's up to /// implementation to decide what to do with the fees and how to distribute /// them function feesWithdrawableBy(address /* account */ ) public pure returns (uint256) { return 0; } /// @inheritdoc IFundingPoolV1 function reserves() public view returns (uint256 collateral) { uint256 totalCollateral = collateralToken.balanceOf(address(this)); uint256 fees = collectedFees; assert(totalCollateral >= fees); return totalCollateral - fees; } // solhint-disable-next-line func-name-mixedcase function __FundingPool_init(IERC20Metadata _collateralToken) internal onlyInitializing { __ERC20_init("", ""); __FundingPool_init_unchained(_collateralToken); } // solhint-disable-next-line func-name-mixedcase function __FundingPool_init_unchained(IERC20Metadata _collateralToken) internal onlyInitializing { if (_collateralToken.decimals() > 18) revert ExcessiveCollateralDecimals(); collateralToken = _collateralToken; } /// @dev Burns the LP shares corresponding to a particular owner account /// Also note that _beforeTokenTransfer will be invoked to make sure the fee /// bookkeeping is updated for the owner. /// @param owner Account to whom the LP shares belongs to. /// @param sharesToBurn Portion of LP pool to burn. function _burnSharesOf(address owner, uint256 sharesToBurn) internal { // slither-disable-next-line dangerous-strict-equalities if (sharesToBurn == 0) revert InvalidBurnAmount(); uint256 costBasisReduction = FundingMath.calcCostBasisReduction(balanceOf(owner), sharesToBurn, funderCostBasis[owner]); funderCostBasis[owner] -= costBasisReduction; totalFunderCostBasis -= costBasisReduction; _burn(owner, sharesToBurn); } function _mintSharesFor(address receiver, uint256 collateralAdded, uint256 poolValue) internal returns (uint256 sharesMinted) { if (collateralAdded == 0) revert InvalidFundingAmount(); sharesMinted = FundingMath.calcFunding(collateralAdded, totalSupply(), poolValue); // Ensure this stays below type(uint128).max to avoid overflow in liquidity calculations uint256 costBasisAfter = funderCostBasis[receiver] + collateralAdded; if (costBasisAfter > type(uint128).max) revert ExcessiveFunding(); funderCostBasis[receiver] = costBasisAfter; totalFunderCostBasis += collateralAdded; address sender = _msgSender(); collateralToken.safeTransferFrom(sender, address(this), collateralAdded); // Ensure total shares for funding does not exceed type(uint128).max to avoid overflow uint256 sharesAfter = balanceOf(receiver) + sharesMinted; if (sharesAfter > type(uint128).max) revert ExcessiveFunding(); _mint(receiver, sharesMinted); emit FundingAdded(sender, receiver, collateralAdded, sharesMinted); } /// @dev adjust cost basis for a funder function _adjustCostBasis(address funder, uint256 adjustment) internal { funderCostBasis[funder] = funderCostBasis[funder] + adjustment; totalFunderCostBasis = totalFunderCostBasis + adjustment; } /// @dev Sets aside some collateral as fees function _retainFees(uint256 collateralFees) internal { if (collateralFees > reserves()) revert FeesExceedReserves(); if (collateralFees == 0) return; collectedFees += collateralFees; emit FeesRetained(collateralFees); } /// @dev put fees back into reserves function _unlockFees(uint256 collateralFees) internal { if (collateralFees > collectedFees) revert FeesExceedCollected(); collectedFees -= collateralFees; } /// @dev How much collateral was spent by all funders to obtain their current shares function getTotalFunderCostBasis() public view returns (uint256) { return totalFunderCostBasis; } function getFunderCostBasis(address funder) public view returns (uint256) { return funderCostBasis[funder]; } // solhint-disable-next-line ordering uint256[50] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import { IERC165Upgradeable } from "@openzeppelin/contracts-upgradeable/utils/introspection/IERC165Upgradeable.sol"; import { ContextUpgradeable } from "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol"; import { ERC165Checker } from "@openzeppelin/contracts/utils/introspection/ERC165Checker.sol"; import { Initializable } from "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; interface ParentFundingPoolErrors { /// @dev Occurs when a child pool does not support the necessary interfaces error NotAChildPool(address childPool); /// @dev Occurs when a child pool is not approved to perform the operation error ChildPoolNotApproved(address childPool); /// @dev Occurs when batch operations have mismatching array lengths error InvalidBatchLength(); } interface ParentFundingPoolEvents { /// @dev A child pool approval was added or removed event ChildPoolApproval(address indexed childPool, uint256 approved); /// @dev Limit of how much can be requested has changed event RequestLimitChanged(uint256 limit); /// @dev A child pool has requested some funds, and the parent gives it. The /// value locked into the child is exactly equal to the collateralGiven event FundingGiven(address indexed childPool, uint256 collateralGiven); /// @dev A child pool has returned some funding, unlocking some value /// @param childPool the child pool that borrowed the funds /// @param collateralReturned quantity of collateral given back to the pool /// @param valueUnlocked due to profit/loss, collateral returned may not /// equal in value to what was originally given. valueUnlocked corresponds /// to the portion of original collateral that is returned event FundingReturned(address indexed childPool, uint256 collateralReturned, uint256 valueUnlocked); } /// @dev Interface for a FundingPool that allows child FundingPools to request/return funds interface IParentFundingPoolV1 is IERC165Upgradeable, ParentFundingPoolEvents, ParentFundingPoolErrors { /// @dev childPool should support IFundingPoolV1 interface function setApprovalForChild(address childPool, uint256 approval) external; /// @dev Called by an approved child pool, to request collateral /// NOTE: assumes msg.sender supports IFundingPool that is approved /// @param collateralRequested how much collateral is requested by the childPool /// @return collateralAdded Actual amount given (which may be lower than collateralRequested) /// @return sharesMinted How many child shares were given due to the funding function requestFunding(uint256 collateralRequested) external returns (uint256 collateralAdded, uint256 sharesMinted); /// @dev Notify parent after voluntarily returning back some collateral, and burning corresponding shares /// @param collateralReturned how much collateral funding was transferred from child to parent /// @param sharesBurnt how many child shares were burnt as a result function fundingReturned(uint256 collateralReturned, uint256 sharesBurnt) external; /// @dev Notify parent after voluntarily returning back some fees /// @param fees how much fees (in collateral) was transferred from child to parent function feesReturned(uint256 fees) external; /// @dev What is the maximum amount of collateral a child can request from the parent function getApprovalForChild(address childPool) external view returns (uint256 approval); /// @dev See how much funding is available for a particular child pool. /// Takes into account how much has already been consumed from the approval, /// and how much collateral is available in the pool. /// @param childPool address of the childPool /// @return availableFunding how much collateral can be requested, that takes into account any gains or losses /// @return targetFunding The target funding amount that can be requested, without gains or losses function getAvailableFunding(address childPool) external view returns (uint256 availableFunding, uint256 targetFunding); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; // Note on libraries. If any functions are not `internal`, then contracts that // use the libraries, must be linked. library ArrayMath { function sum(uint256[] memory values) internal pure returns (uint256) { uint256 result = 0; for (uint256 i = 0; i < values.length; i++) { result += values[i]; } return result; } } /// @dev Math with saturation/clamping for overflow/underflow handling library ClampedMath { /// @dev min(upper, max(lower, x)) function clampBetween(uint256 x, uint256 lower, uint256 upper) internal pure returns (uint256) { unchecked { return x < lower ? lower : (x > upper ? upper : x); } } /// @dev max(0, a - b) function subClamp(uint256 a, uint256 b) internal pure returns (uint256) { unchecked { return a > b ? a - b : 0; } } /// @dev min(type(uint256).max, max(0, a + b)) function addClamp(uint256 a, int256 b) internal pure returns (uint256) { unchecked { if (b < 0) { // The absolute value of type(int256).min is not representable // in int256, so have to dance about with the + 1 uint256 positiveB = uint256(-(b + 1)) + 1; return (a > positiveB) ? (a - positiveB) : 0; } else { return type(uint256).max - a > uint256(b) ? a + uint256(b) : type(uint256).max; } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import { AccessControlUpgradeable } from "@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable.sol"; import { PausableUpgradeable } from "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol"; /// @dev Simple Access Control, that has an admin role that administers an /// executor role. The intent is to have a multi-sig or other mechanism to be /// the admin, and be able to grant/revoke accounts as executors. abstract contract AdminExecutorAccessUpgradeable is AccessControlUpgradeable, PausableUpgradeable { bytes32 public constant EXECUTOR_ROLE = keccak256("EXECUTOR_ROLE"); modifier onlyAdmin() { checkAdmin(_msgSender()); _; } modifier onlyExecutor() { checkExecutor(_msgSender()); _; } // solhint-disable-next-line func-name-mixedcase function __AdminExecutor_init(address admin, address startingExecutor) internal onlyInitializing { __AccessControl_init(); __Pausable_init(); __AdminExecutor_init_unchained(admin, startingExecutor); } // solhint-disable-next-line func-name-mixedcase function __AdminExecutor_init_unchained(address admin, address startingExecutor) internal onlyInitializing { _grantRole(DEFAULT_ADMIN_ROLE, admin); // DEFAULT_ADMIN_ROLE already is admin for executor by default, so no need for _setRoleAdmin if (startingExecutor != address(0x0)) { _grantRole(EXECUTOR_ROLE, startingExecutor); } } function pause() public onlyAdmin { _pause(); } function unpause() public onlyAdmin { _unpause(); } /// @dev Check is a particular account has executor permissions. Reverts if not the case. /// @param account the account to check function checkExecutor(address account) public view { _checkRole(EXECUTOR_ROLE, account); } function checkAdmin(address account) public view { _checkRole(DEFAULT_ADMIN_ROLE, account); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import { IERC165Upgradeable } from "@openzeppelin/contracts-upgradeable/utils/introspection/IERC165Upgradeable.sol"; interface ChildFundingPoolErrors { error NotAParentPool(address parentPool); } interface ChildFundingPoolEvents { event ParentPoolAdded(address indexed parentPool); } /// @dev Interface for a funding pool that can be added as a child to a Parent Funding pool interface IChildFundingPoolV1 is IERC165Upgradeable, ChildFundingPoolEvents, ChildFundingPoolErrors { function getParentPool() external view returns (address); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.1) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ``` * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a * constructor. * * Emits an {Initialized} event. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: setting the version to 255 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized < type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint8) { return _initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _initializing; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { IERC1155Upgradeable } from "@openzeppelin/contracts-upgradeable/token/ERC1155/IERC1155Upgradeable.sol"; import { ConditionID, QuestionID } from "./CTHelpers.sol"; import { ConditionalTokensErrors } from "./ConditionalTokensErrors.sol"; /// @title Events emitted by conditional tokens /// @dev Minimal interface to be used for blockchain indexing (e.g subgraph) interface IConditionalTokensEvents { /// @dev Emitted upon the successful preparation of a condition. /// @param conditionId The condition's ID. This ID may be derived from the /// other three parameters via ``keccak256(abi.encodePacked(oracle, /// questionId, outcomeSlotCount))``. /// @param oracle The account assigned to report the result for the prepared condition. /// @param questionId An identifier for the question to be answered by the oracle. /// @param outcomeSlotCount The number of outcome slots which should be used /// for this condition. Must not exceed 256. event ConditionPreparation( ConditionID indexed conditionId, address indexed oracle, QuestionID indexed questionId, uint256 outcomeSlotCount ); event ConditionResolution( ConditionID indexed conditionId, address indexed oracle, QuestionID indexed questionId, uint256 outcomeSlotCount, uint256[] payoutNumerators ); /// @dev Emitted when a position is successfully split. event PositionSplit( address indexed stakeholder, IERC20 collateralToken, ConditionID indexed conditionId, uint256 amount ); /// @dev Emitted when positions are successfully merged. event PositionsMerge( address indexed stakeholder, IERC20 collateralToken, ConditionID indexed conditionId, uint256 amount ); /// @notice Emitted when a subset of outcomes are redeemed for a condition event PayoutRedemption( address indexed redeemer, IERC20 indexed collateralToken, ConditionID conditionId, uint256[] indices, uint256 payout ); } interface IConditionalTokens is IERC1155Upgradeable, IConditionalTokensEvents, ConditionalTokensErrors { function prepareCondition(address oracle, QuestionID questionId, uint256 outcomeSlotCount) external returns (ConditionID); function reportPayouts(QuestionID questionId, uint256[] calldata payouts) external; function batchReportPayouts( QuestionID[] calldata questionIDs, uint256[] calldata payouts, uint256[] calldata outcomeSlotCounts ) external; function splitPosition(IERC20 collateralToken, ConditionID conditionId, uint256 amount) external; function mergePositions(IERC20 collateralToken, ConditionID conditionId, uint256 amount) external; function redeemPositionsFor( address receiver, IERC20 collateralToken, ConditionID conditionId, uint256[] calldata indices, uint256[] calldata quantities ) external returns (uint256); function redeemAll(IERC20 collateralToken, ConditionID[] calldata conditionIds, uint256[] calldata indices) external; function redeemAllOf( address ownerAndReceiver, IERC20 collateralToken, ConditionID[] calldata conditionIds, uint256[] calldata indices ) external returns (uint256 totalPayout); function balanceOfCondition(address account, IERC20 collateralToken, ConditionID conditionId) external view returns (uint256[] memory); function isResolved(ConditionID conditionId) external view returns (bool); function getPositionIds(IERC20 collateralToken, ConditionID conditionId) external view returns (uint256[] memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import { Math } from "@openzeppelin/contracts/utils/math/Math.sol"; /// @dev Functions to deal with 16bit prices packed into `bytes`. /// In prediction markets, prices are within the range [0-1]. As such, arbitrary /// magnitude and precision are not necessary. By restricting prices to be fixed /// point integers between 0 and 1e4, we get: /// - Prices fit in 16 bits /// - Can be easily renormalized to 1e18 via a multiplier /// /// The 16bit prices are packed back to back and encoded in big-endian format. /// /// Some notes: /// /// Packing/unpacking is done manually and not via solidity's uint16[]. /// uint16[] arrays are still encoded with all the padding. Additionally, /// working directly with uint16 data types is less efficient than uint256, due /// to bit shifting and masking that is implicitly done library PackedPrices { using Math for uint256; /// @dev a divisor that fits in 16 bits, and easily divides into 1e18 uint256 internal constant DIVISOR = 1e4; /// @dev We store packed prices in 16 bits with a divisor of 1e4. AMM math /// relies on prices having divisor of 1e18. We can go directly from one to /// the other by multiplying by 1e14. uint256 internal constant DECIMAL_CONVERSION_FACTOR = 1e14; /// @dev How many bits to shift to convert between big-endian uint16 and uint256 uint256 internal constant SHIFT_BITS = 30 * 8; /// @dev Given a packed price byte array, unpack into a decimal price array with 1e18 divisor /// @param packedPrices packed byte array /// @return priceDecimals unpacked price array of prices normalized to 1e18 function toPriceDecimals(bytes memory packedPrices) internal pure returns (uint256[] memory priceDecimals) { unchecked { uint256 length = packedPrices.length / 2; priceDecimals = new uint256[](length); for (uint256 i; i < length; i++) { uint256 chunk; uint256 offset = 32 + i * 2; assembly { chunk := mload(add(packedPrices, offset)) } priceDecimals[i] = (chunk >> SHIFT_BITS) * DECIMAL_CONVERSION_FACTOR; } } } /// @dev Given a packed price byte array in storage, unpack into a decimal price array with 1e18 divisor /// @param packedPrices packed byte array storage pointer /// @return priceDecimals unpacked price array of prices normalized to 1e18 function toPriceDecimalsFromStorage(bytes storage packedPrices) internal pure returns (uint256[] memory) { // Much easier to copy the byte array into memory first, and then // perform the conversion from memory array, than doing it directly from // storage. // This is because the storage load instruction `SLOAD` costs 200 gas, // while the memory load instruction `MLOAD` costs only 3. The // drastically simpler code that loads each integer one at a time would // be extremely costly with SLOAD, and would require a different // algorithm that amounts to copying into memory first to minimize SLOAD // instructions. return toPriceDecimals(packedPrices); } /// @dev Given an array of integers, packs them into a byte array of 16bit values. /// Integers are taken as-is, with no re-normalization. /// @param prices array of integers less than or equal to type(uint16).max . Otherwise truncation will occur /// @param divisor what to divide prices by before packing /// @return packedPrices packed byte array function toPackedPrices(uint256[] memory prices, uint256 divisor) internal pure returns (bytes memory packedPrices) { unchecked { uint256 length = prices.length; // set the size of bytes array packedPrices = new bytes(length * 2); for (uint256 i; i < length; i++) { uint256 adjustedPrice = prices[i] / divisor; assert(adjustedPrice <= type(uint16).max); uint256 chunk = adjustedPrice << SHIFT_BITS; uint256 offset = 32 + i * 2; assembly { mstore(add(packedPrices, offset), chunk) } } } } /// @dev Sums the values in the packed price byte array /// @param packedPrices the byte array that encodes the packed prices /// @return result the sum of the decoded prices function sum(bytes memory packedPrices) internal pure returns (uint256 result) { unchecked { uint256 length = packedPrices.length / 2; for (uint256 i; i < length; i++) { uint256 chunk; uint256 offset = 32 + i * 2; assembly { chunk := mload(add(packedPrices, offset)) } result += chunk >> SHIFT_BITS; } } } function arrayLength(bytes memory packedPrices) internal pure returns (uint256) { return packedPrices.length / 2; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; type QuestionID is bytes32; type ConditionID is bytes32; type CollectionID is bytes32; library CTHelpers { /// @dev Constructs a condition ID from an oracle, a question ID, and the /// outcome slot count for the question. /// @param oracle The account assigned to report the result for the prepared condition. /// @param questionId An identifier for the question to be answered by the oracle. /// @param outcomeSlotCount The number of outcome slots which should be used /// for this condition. Must not exceed 256. function getConditionId(address oracle, QuestionID questionId, uint256 outcomeSlotCount) internal pure returns (ConditionID) { assert(outcomeSlotCount < 257); // `<` uses less gas than `<=` return ConditionID.wrap(keccak256(abi.encodePacked(oracle, questionId, outcomeSlotCount))); } /// @dev Constructs an outcome collection ID /// @param conditionId Condition ID of the outcome collection /// @param index outcome index function getCollectionId(ConditionID conditionId, uint256 index) internal pure returns (CollectionID) { return CollectionID.wrap(keccak256(abi.encodePacked(conditionId, index))); } /// @dev Constructs a position ID from a collateral token and an outcome /// collection. These IDs are used as the ERC-1155 ID for this contract. /// @param collateralToken Collateral token which backs the position. /// @param collectionId ID of the outcome collection associated with this position. function getPositionId(IERC20 collateralToken, CollectionID collectionId) internal pure returns (uint256) { return uint256(keccak256(abi.encodePacked(collateralToken, collectionId))); } /// @dev Constructs all position ID in a condition, for a collateral token. /// These IDs are used as the ERC-1155 ID for the ConditionalTokens contract. /// @param collateralToken Collateral token which backs the position. /// @param conditionId ID of the condition associated with all positions /// @param outcomeSlotCount number of outcomes in the condition function getPositionIds(IERC20 collateralToken, ConditionID conditionId, uint256 outcomeSlotCount) internal pure returns (uint256[] memory positionIds) { positionIds = new uint256[](outcomeSlotCount); for (uint256 i = 0; i < outcomeSlotCount; i++) { positionIds[i] = getPositionId(collateralToken, getCollectionId(conditionId, i)); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import { MarketErrors } from "./MarketErrors.sol"; import { IFundingPoolV1 } from "../funding/IFundingPoolV1.sol"; import { IUpdateFairPrices } from "./IUpdateFairPrices.sol"; /// @dev Interface evolution is done by creating new versions of the interfaces /// and making sure that the derived MarketMaker supports all of them. /// Alternatively we could have gone with breaking the interface down into each /// function one by one and checking each function selector. This would /// introduce a lot more code in `supportsInterface` which is called often, so /// it's easier to keep track of incremental evolution than all the constituent /// pieces interface IMarketMakerV1 is IFundingPoolV1, IUpdateFairPrices, MarketErrors { event MarketBuy( address indexed buyer, uint256 investmentAmount, uint256 feeAmount, uint256 indexed outcomeIndex, uint256 outcomeTokensBought ); event MarketSell( address indexed seller, uint256 returnAmount, uint256 feeAmount, uint256 indexed outcomeIndex, uint256 outcomeTokensSold ); event MarketSpontaneousPrices(uint256[] spontaneousPrices); function removeFunding(uint256 sharesToBurn) external returns (uint256 collateral, uint256[] memory sendAmounts); function buyFor(address receiver, uint256 investmentAmount, uint256 outcomeIndex, uint256 minOutcomeTokensToBuy) external returns (uint256 outcomeTokensBought, uint256 feeAmount, uint256[] memory spontaneousPrices); function buy(uint256 investmentAmount, uint256 outcomeIndex, uint256 minOutcomeTokensToBuy) external returns (uint256 outcomeTokensBought, uint256 feeAmount, uint256[] memory spontaneousPrices); function sell(uint256 returnAmount, uint256 outcomeIndex, uint256 maxOutcomeTokensToSell) external returns (uint256 outcomeTokensSold); function removeCollateralFundingOf(address ownerAndReceiver, uint256 sharesToBurn) external returns (uint256[] memory sendAmounts, uint256 collateral); function removeAllCollateralFunding(address[] calldata funders) external returns (uint256 totalSharesBurnt, uint256 totalCollateralRemoved); function isHalted() external view returns (bool); function calcBuyAmount(uint256 investmentAmount, uint256 outcomeIndex) external view returns (uint256 outcomeTokensBought, uint256 feeAmount, uint256[] memory spontaneousPrices); function calcSellAmount(uint256 returnAmount, uint256 outcomeIndex) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import { IConditionalTokensV1_2 } from "../conditions/IConditionalTokensV1_2.sol"; import { IERC20Metadata } from "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; struct MarketAddressParams { IConditionalTokensV1_2 conditionalTokens; IERC20Metadata collateralToken; address parentPool; address priceOracle; address conditionOracle; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; interface AmmErrors { error InvalidOutcomeIndex(); error NoLiquidityAvailable(); error BalancePriceLengthMismatch(); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; interface FundingErrors { error InvalidFundingAmount(); error InvalidBurnAmount(); error InvalidReceiverAddress(); error PoolValueZero(); /// @dev Fee is is or exceeds 100% error InvalidFee(); /// @dev Trying to retain fees that exceed the current reserves error FeesExceedReserves(); /// @dev Trying to unlock more fees than currently collected error FeesExceedCollected(); /// @dev Funding is so large, that it may lead to overflow errors in future /// actions error ExcessiveFunding(); /// @dev Collateral ERC20 decimals exceed 18, leading to potential overflows error ExcessiveCollateralDecimals(); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControlUpgradeable { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/MathUpgradeable.sol"; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = MathUpgradeable.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, MathUpgradeable.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal onlyInitializing { } function __ERC165_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20Upgradeable { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20PermitUpgradeable { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20Upgradeable.sol"; import "./extensions/IERC20MetadataUpgradeable.sol"; import "../../utils/ContextUpgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable, IERC20MetadataUpgradeable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ function __ERC20_init(string memory name_, string memory symbol_) internal onlyInitializing { __ERC20_init_unchained(name_, symbol_); } function __ERC20_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[45] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import { IFundingPoolV1 } from "./IFundingPoolV1.sol"; /// @dev An extension to IFundingPoolV1 that adds more methods to inspect cost basis, interface IFundingPoolV1_1 is IFundingPoolV1 { /// @dev How much collateral was spent by a funder to obtain their current shares function getFunderCostBasis(address funder) external returns (uint256); /// @dev How much collateral was spent by all funders to obtain their current shares function getTotalFunderCostBasis() external returns (uint256); /// @dev Current estimated value in collateral of the entire pool function getPoolValue() external returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import { Math } from "@openzeppelin/contracts/utils/math/Math.sol"; import { ClampedMath } from "../Math.sol"; import { FundingErrors } from "./FundingErrors.sol"; library FundingMath { using ClampedMath for uint256; using Math for uint256; uint256 internal constant SHARE_PRECISION_DECIMALS = 4; uint256 internal constant SHARE_PRECISION_OFFSET = 10 ** SHARE_PRECISION_DECIMALS; /// @dev We always try to keep the pools balanced. There are never any /// "sendBackAmounts" like in a typical constant product AMM where the /// balances need to be maintained to determine the prices. We want to /// use all the available collateral for liquidity no matter what the /// probabilities of the outcomes are. /// @param collateralAdded how much collateral the funder is adding to the pool /// @param totalShares the current number of liquidity pool shares in circulation /// @param poolValue total sum of value of all tokens /// @return sharesMinted how many liquidity pool shares should be minted function calcFunding(uint256 collateralAdded, uint256 totalShares, uint256 poolValue) internal pure returns (uint256 sharesMinted) { // To prevent inflation attack. See articles and reference implementation: // https://mixbytes.io/blog/overview-of-the-inflation-attack // https://docs.openzeppelin.com/contracts/4.x/erc4626#defending_with_a_virtual_offset // https://github.com/boringcrypto/YieldBox/blob/master/contracts/YieldBoxRebase.sol#L24-L29 poolValue++; totalShares += SHARE_PRECISION_OFFSET; assert(totalShares > 0); // mint LP tokens proportional to how much value the new investment // brings to the pool sharesMinted = (collateralAdded * totalShares).ceilDiv(poolValue); } /// @dev Calculate how much of an asset in the liquidity pool to return to a funder. /// @param sharesToBurn how many liquidity pool shares a funder wants to burn /// @param totalShares the current number of liquidity pool shares in circulation /// @param balance number of an asset in the pool /// @return sendAmount how many asset tokens to give back to funder function calcReturnAmount(uint256 sharesToBurn, uint256 totalShares, uint256 balance) internal pure returns (uint256 sendAmount) { if (sharesToBurn > totalShares) revert FundingErrors.InvalidBurnAmount(); if (sharesToBurn == 0) return sendAmount; sendAmount = (balance * sharesToBurn) / totalShares; } /// @dev Calculate how much of the assets in the liquidity pool to return to a funder. /// @param sharesToBurn how many liquidity pool shares a funder wants to burn /// @param totalShares the current number of liquidity pool shares in circulation /// @param balances number of each asset in the pool /// @return sendAmounts how many asset tokens to give back to funder function calcReturnAmounts(uint256 sharesToBurn, uint256 totalShares, uint256[] memory balances) internal pure returns (uint256[] memory sendAmounts) { if (sharesToBurn > totalShares) revert FundingErrors.InvalidBurnAmount(); sendAmounts = new uint256[](balances.length); if (sharesToBurn == 0) return sendAmounts; for (uint256 i = 0; i < balances.length; i++) { sendAmounts[i] = (balances[i] * sharesToBurn) / totalShares; } } /// @dev Calculate how much to reduce the cost basis due to shares being burnt /// @param funderShares how many liquidity pool shares a funder currently owns /// @param sharesToBurn how many liquidity pool shares a funder currently owns /// @param funderCostBasis how much collateral was spent acquiring the funder's liquidity pool shares /// @return costBasisReduction the amount by which to reduce the costbasis for the funder function calcCostBasisReduction(uint256 funderShares, uint256 sharesToBurn, uint256 funderCostBasis) internal pure returns (uint256 costBasisReduction) { if (sharesToBurn > funderShares) revert FundingErrors.InvalidBurnAmount(); costBasisReduction = funderShares == 0 ? 0 : (funderCostBasis * sharesToBurn) / funderShares; } /// @dev Calculate how many shares to burn for an asset, so that how many /// parent shares are removed are not a larger proportion of funder's /// shares, than the proportion of the asset value among other assets. /// /// i.e. /// ((funderSharesRemovedAsAsset + sharesBurnt) / funderTotalShares) /// <= /// (assetValue / totalValue) /// /// @param funderTotalShares Total parent shares owned and removed by funder /// @param sharesToBurn How many funder shares we're trying to burn /// @param funderSharesRemovedAsAsset quantity of shares already removed as the asset /// @param assetValue current value of the asset /// @param totalValue the total value to compare the asset value to. The /// ratio of asset value to this total is what sharesBurnt should not exceed /// @return sharesBurnt quantity of shares that can be burnt given the above restrictions function calcMaxParentSharesToBurnForAsset( uint256 funderTotalShares, uint256 sharesToBurn, uint256 funderSharesRemovedAsAsset, uint256 assetValue, uint256 totalValue ) internal pure returns (uint256 sharesBurnt) { uint256 maxShares = ((funderTotalShares * assetValue).ceilDiv(totalValue)).subClamp(funderSharesRemovedAsAsset); sharesBurnt = Math.min(sharesToBurn, maxShares); if (sharesBurnt > 0) { // This is a re-arrangement of the inequality given in the // description. It only applies when we are trying to give out some // shares. If sharesBurnt is 0, that means we've already exceeded // how many shares we can safely burn, so the inequality is // violated. // The -1 is due to the rounding up in ceilDiv above, used to // prevent never being able to burn the last remaining share assert(((funderSharesRemovedAsAsset + sharesBurnt - 1) * totalValue) < (assetValue * funderTotalShares)); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract PausableUpgradeable is Initializable, ContextUpgradeable { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ function __Pausable_init() internal onlyInitializing { __Pausable_init_unchained(); } function __Pausable_init_unchained() internal onlyInitializing { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155Upgradeable is IERC165Upgradeable { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; interface ConditionalTokensErrors { error ConditionAlreadyPrepared(); error PayoutAlreadyReported(); error PayoutsAreAllZero(); error InvalidOutcomeSlotCountsArray(); error InvalidPayoutArray(); error ResultNotReceivedYet(); error InvalidIndex(); error NoPositionsToRedeem(); error ConditionNotFound(); error InvalidAmount(); error InvalidOutcomeSlotsAmount(); error InvalidQuantities(); error InvalidPrices(); error InvalidConditionOracle(address conditionOracle); error MustBeCalledByOracle(); error InvalidHaltTime(); /// @dev using unapproved ERC20 token with protocol error InvalidERC20(); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import { IERC20Upgradeable } from "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol"; import { FundingErrors } from "./FundingErrors.sol"; interface FundingPoolEvents { /// @notice Collateral is added to the liquidity pool /// @param sender the account that initiated and supplied the collateral for the funding /// @param funder the account that receives the liquidity pool shares /// @param collateralAdded the quantity of collateral supplied to the pool /// @param sharesMinted the quantity of liquidity pool shares created as sa result of the funding event FundingAdded(address indexed sender, address indexed funder, uint256 collateralAdded, uint256 sharesMinted); /// @notice Funding is removed as a mix of tokens and collateral /// @param funder the owner of liquidity pool shares /// @param collateralRemoved the quantity of collateral removed from the pool proportional to funder's shares /// @param tokensRemoved the quantity of tokens removed from the pool proportional to funder's shares. Can be empty /// @param sharesBurnt the quantity of liquidity pool shares burnt event FundingRemoved( address indexed funder, uint256 collateralRemoved, uint256[] tokensRemoved, uint256 sharesBurnt ); /// @notice Funding is removed as a specific token, referred to by an id /// @param funder the owner of liquidity pool shares /// @param tokenId an id that identifies a single asset token in the pool. Up to the pool to decide the meaning of the id /// @param tokensRemoved the quantity of a token removed from the pool /// @param sharesBurnt the quantity of liquidity pool shares burnt event FundingRemovedAsToken( address indexed funder, uint256 indexed tokenId, uint256 tokensRemoved, uint256 sharesBurnt ); /// @notice Some portion of collateral was withdrawn for fee purposes event FeesWithdrawn(address indexed funder, uint256 collateralRemovedFromFees); /// @notice Some portion of collateral was retained for fee purposes event FeesRetained(uint256 collateralAddedToFees); } /// @dev A funding pool deals with 3 different assets: /// - collateral with which to make investments (ERC20 tokens of general usage, e.g. USDT, USDC, DAI, etc.) /// - shares which represent the stake in the fund (ERC20 tokens minted and burned by the funding pool) /// - tokens that are the actual investments (e.g. ERC1155 conditional tokens) interface IFundingPoolV1 is IERC20Upgradeable, FundingErrors, FundingPoolEvents { /// @notice Funds the market with collateral from the sender /// @param collateralAdded Amount of funds from the sender to transfer to the market function addFunding(uint256 collateralAdded) external returns (uint256 sharesMinted); /// @notice Funds the market on behalf of receiver. /// @param receiver Account that receives LP tokens. /// @param collateralAdded Amount of funds from the sender to transfer to the market function addFundingFor(address receiver, uint256 collateralAdded) external returns (uint256 sharesMinted); /// @notice Withdraws the fees from a particular liquidity provider. /// @param funder Account address to withdraw its available fees. function withdrawFees(address funder) external returns (uint256 collateralRemovedFromFees); /// @notice Returns the amount of fee in collateral to be withdrawn by the liquidity providers. /// @param account Account address to check for fees available. function feesWithdrawableBy(address account) external view returns (uint256 collateralFees); /// @notice How much collateral is available that is not set aside for fees function reserves() external view returns (uint256 collateral); /// @notice Returns the current collected fees on this market. function collectedFees() external view returns (uint256 collateralFees); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.19; interface UpdateFairPricesEvents { event MarketPricesUpdated(uint256[] fairPriceDecimals); event MarketMinPriceUpdated(uint128 minPriceDecimal); } interface IUpdateFairPrices is UpdateFairPricesEvents { function updateFairPrices(uint256[] calldata fairPriceDecimals) external; function updateMinPrice(uint128 minPriceDecimal) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library MathUpgradeable { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20Upgradeable.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20MetadataUpgradeable is IERC20Upgradeable { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
{ "remappings": [ "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/", "@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/", "@prb/math/=lib/prb-math/src/", "ds-test/=lib/forge-std/lib/ds-test/src/", "forge-std/=lib/forge-std/src/", "upgrade-scripts/=lib/upgrade-scripts/src/", "UDS/=lib/upgrade-scripts/lib/UDS/src/", "@prb/test/=lib/prb-math/node_modules/@prb/test/", "futils/=lib/upgrade-scripts/lib/UDS/lib/futils/src/", "openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "prb-math/=lib/prb-math/src/", "prb-test/=lib/prb-math/lib/prb-test/src/" ], "optimizer": { "enabled": true, "runs": 600 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "paris", "libraries": {} }
[{"inputs":[{"components":[{"internalType":"contract IConditionalTokensV1_2","name":"conditionalTokens","type":"address"},{"internalType":"contract IERC20Metadata","name":"collateralToken","type":"address"},{"internalType":"address","name":"admin","type":"address"},{"internalType":"address","name":"executor","type":"address"}],"internalType":"struct MarketFundingPool.Params","name":"params","type":"tuple"},{"internalType":"address","name":"prevPool","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"BalancePriceLengthMismatch","type":"error"},{"inputs":[],"name":"CanOnlyBeFundedByParent","type":"error"},{"inputs":[{"internalType":"address","name":"childPool","type":"address"}],"name":"ChildPoolNotApproved","type":"error"},{"inputs":[],"name":"ConditionAlreadyPrepared","type":"error"},{"inputs":[],"name":"ConditionNotFound","type":"error"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"DoesNotSupportMigrateFundsInterface","type":"error"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"DoesNotSupportParentPoolInterface","type":"error"},{"inputs":[],"name":"ExcessiveCollateralDecimals","type":"error"},{"inputs":[],"name":"ExcessiveFunding","type":"error"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"FactoryNotApproved","type":"error"},{"inputs":[],"name":"FeesConsumeInvestment","type":"error"},{"inputs":[],"name":"FeesExceedCollected","type":"error"},{"inputs":[],"name":"FeesExceedReserves","type":"error"},{"inputs":[],"name":"InvalidAmount","type":"error"},{"inputs":[],"name":"InvalidBatchLength","type":"error"},{"inputs":[],"name":"InvalidBurnAmount","type":"error"},{"inputs":[{"internalType":"address","name":"conditionOracle","type":"address"}],"name":"InvalidConditionOracle","type":"error"},{"inputs":[],"name":"InvalidERC20","type":"error"},{"inputs":[],"name":"InvalidFee","type":"error"},{"inputs":[],"name":"InvalidFundingAmount","type":"error"},{"inputs":[],"name":"InvalidHaltTime","type":"error"},{"inputs":[],"name":"InvalidIndex","type":"error"},{"inputs":[],"name":"InvalidInvestmentAmount","type":"error"},{"inputs":[],"name":"InvalidLimitsArray","type":"error"},{"inputs":[],"name":"InvalidOutcomeIndex","type":"error"},{"inputs":[],"name":"InvalidOutcomeSlotCountsArray","type":"error"},{"inputs":[],"name":"InvalidOutcomeSlotsAmount","type":"error"},{"inputs":[],"name":"InvalidPayoutArray","type":"error"},{"inputs":[],"name":"InvalidPrices","type":"error"},{"inputs":[],"name":"InvalidQuantities","type":"error"},{"inputs":[],"name":"InvalidReceiverAddress","type":"error"},{"inputs":[],"name":"InvalidReturnAmount","type":"error"},{"inputs":[],"name":"InvestmentDrainsPool","type":"error"},{"inputs":[],"name":"MarketHalted","type":"error"},{"inputs":[],"name":"MarketUndecided","type":"error"},{"inputs":[],"name":"MaximumSellAmountExceeded","type":"error"},{"inputs":[],"name":"MinimumBuyAmountNotReached","type":"error"},{"inputs":[],"name":"MustBeCalledByOracle","type":"error"},{"inputs":[],"name":"NoLiquidityAvailable","type":"error"},{"inputs":[],"name":"NoPositionsToRedeem","type":"error"},{"inputs":[],"name":"NoPrevPoolConfigured","type":"error"},{"inputs":[{"internalType":"address","name":"childPool","type":"address"}],"name":"NotAChildPool","type":"error"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NotAFactory","type":"error"},{"inputs":[{"internalType":"address","name":"parentPool","type":"address"}],"name":"NotAParentPool","type":"error"},{"inputs":[],"name":"OperationNotSupported","type":"error"},{"inputs":[],"name":"PayoutAlreadyReported","type":"error"},{"inputs":[],"name":"PayoutsAreAllZero","type":"error"},{"inputs":[],"name":"PoolValueZero","type":"error"},{"inputs":[],"name":"ResultNotReceivedYet","type":"error"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"SenderIsNotPrevPool","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"childPool","type":"address"},{"indexed":false,"internalType":"uint256","name":"approved","type":"uint256"}],"name":"ChildPoolApproval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"collateralAddedToFees","type":"uint256"}],"name":"FeesRetained","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"funder","type":"address"},{"indexed":false,"internalType":"uint256","name":"collateralRemovedFromFees","type":"uint256"}],"name":"FeesWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"funder","type":"address"},{"indexed":false,"internalType":"uint256","name":"collateralAdded","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sharesMinted","type":"uint256"}],"name":"FundingAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"childPool","type":"address"},{"indexed":false,"internalType":"uint256","name":"collateralGiven","type":"uint256"}],"name":"FundingGiven","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"funder","type":"address"},{"indexed":false,"internalType":"uint256","name":"collateralRemoved","type":"uint256"},{"indexed":false,"internalType":"uint256[]","name":"tokensRemoved","type":"uint256[]"},{"indexed":false,"internalType":"uint256","name":"sharesBurnt","type":"uint256"}],"name":"FundingRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"funder","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensRemoved","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sharesBurnt","type":"uint256"}],"name":"FundingRemovedAsToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"childPool","type":"address"},{"indexed":false,"internalType":"uint256","name":"collateralReturned","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"valueUnlocked","type":"uint256"}],"name":"FundingReturned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"feeEvaluationBlockPeriod","type":"uint64"},{"indexed":false,"internalType":"uint8","name":"feePortion","type":"uint8"}],"name":"ManagementFeeSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"factory","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"MarketFactoryApproval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"collateralMigrated","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"costBasis","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sharesGranted","type":"uint256"}],"name":"MigratedFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"parentPool","type":"address"}],"name":"ParentPoolAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"limit","type":"uint256"}],"name":"RequestLimitChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXECUTOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"collateralAdded","type":"uint256"}],"name":"addFunding","outputs":[{"internalType":"uint256","name":"sharesMinted","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"collateralAdded","type":"uint256"}],"name":"addFundingFor","outputs":[{"internalType":"uint256","name":"sharesMinted","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"children","type":"address[]"},{"internalType":"uint256[]","name":"sharesToBurn","type":"uint256[]"}],"name":"batchRemoveChildShares","outputs":[{"internalType":"uint256","name":"totalSharesBurnt","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"funder","type":"address"},{"internalType":"uint256","name":"sharesToBurn","type":"uint256"}],"name":"calcRemoveCollateral","outputs":[{"internalType":"uint256","name":"collateralReturned","type":"uint256"},{"internalType":"uint256","name":"sharesBurnt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"checkAdmin","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"checkExecutor","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collateralToken","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectedFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"conditionalTokens","outputs":[{"internalType":"contract IConditionalTokensV1_2","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IMarketFactory","name":"factory","type":"address"},{"internalType":"address","name":"priceOracle","type":"address"},{"internalType":"address","name":"conditionOracle","type":"address"},{"internalType":"uint256","name":"fee","type":"uint256"},{"internalType":"uint256[]","name":"marketLimits","type":"uint256[]"},{"components":[{"internalType":"QuestionID","name":"questionId","type":"bytes32"},{"internalType":"uint256[]","name":"fairPriceDecimals","type":"uint256[]"},{"internalType":"uint128","name":"minPriceDecimal","type":"uint128"},{"internalType":"uint256","name":"haltTime","type":"uint256"}],"internalType":"struct IMarketFactory.PriceMarketParams[]","name":"marketParamsArray","type":"tuple[]"}],"name":"createMarketsWithPrices","outputs":[{"internalType":"contract IMarketMakerV1[]","name":"markets","type":"address[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IMarketFactoryV1_2","name":"factory","type":"address"},{"internalType":"address","name":"conditionOracle","type":"address"},{"internalType":"uint256","name":"fee","type":"uint256"},{"internalType":"uint256[]","name":"marketLimits","type":"uint256[]"},{"components":[{"internalType":"QuestionID","name":"questionId","type":"bytes32"},{"internalType":"bytes","name":"packedPrices","type":"bytes"},{"internalType":"uint32","name":"haltTime","type":"uint32"}],"internalType":"struct IMarketFactoryV1_2.PackedPriceMarketParams[]","name":"marketParamsArray","type":"tuple[]"}],"name":"createMarketsWithPrices","outputs":[{"internalType":"contract IMarketMakerV1[]","name":"markets","type":"address[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeEvaluationBlockPeriod","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feePortion","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"fees","type":"uint256"}],"name":"feesReturned","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"feesWithdrawableBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"collateralReturned","type":"uint256"},{"internalType":"uint256","name":"childSharesBurnt","type":"uint256"}],"name":"fundingReturned","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"childPool","type":"address"}],"name":"getApprovalForChild","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"childPool","type":"address"}],"name":"getAvailableFunding","outputs":[{"internalType":"uint256","name":"availableFunding","type":"uint256"},{"internalType":"uint256","name":"availableTarget","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"factory","type":"address"}],"name":"getFactoryApproval","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"funder","type":"address"}],"name":"getFunderCostBasis","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getParentPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPoolValue","outputs":[{"internalType":"uint256","name":"poolValue","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalFunderCostBasis","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastFeeEvaluationBlock","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"migrateFundsFromSender","outputs":[{"internalType":"uint256","name":"collateralMigrated","type":"uint256"},{"internalType":"uint256","name":"costBasis","type":"uint256"},{"internalType":"uint256","name":"sharesGranted","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPool","type":"address"}],"name":"migrateFundsTo","outputs":[{"internalType":"uint256","name":"collateralMigrated","type":"uint256"},{"internalType":"uint256","name":"costBasis","type":"uint256"},{"internalType":"uint256","name":"sharesGranted","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"child","type":"address"},{"internalType":"uint256","name":"sharesToBurn","type":"uint256"}],"name":"removeChildShares","outputs":[{"internalType":"uint256","name":"childSharesReturned","type":"uint256"},{"internalType":"uint256","name":"sharesBurnt","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sharesToBurn","type":"uint256"}],"name":"removeCollateral","outputs":[{"internalType":"uint256","name":"collateralReturned","type":"uint256"},{"internalType":"uint256","name":"sharesBurnt","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"collateralRequested","type":"uint256"}],"name":"requestFunding","outputs":[{"internalType":"uint256","name":"collateralAdded","type":"uint256"},{"internalType":"uint256","name":"sharesMinted","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"requestLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserves","outputs":[{"internalType":"uint256","name":"collateral","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"childPool","type":"address"},{"internalType":"uint256","name":"approval","type":"uint256"}],"name":"setApprovalForChild","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"factory","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setFactoryApproval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"blockPeriod","type":"uint64"},{"internalType":"uint8","name":"feePortion_","type":"uint8"}],"name":"setFeeParameters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setRequestLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalChildValueLocked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"valueHighPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"withdrawFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"}],"name":"withdrawManagementFeesTo","outputs":[{"internalType":"uint256","name":"feesTransferred","type":"uint256"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b50604051620058c1380380620058c1833981016040819052620000349162000d26565b604082015160608301516020840151836200005284848484620000a9565b6200005c620001d2565b6101398054600160401b600160801b0319166fffffffffffffffff00000000000000001790556200008e600062000280565b505093516001600160a01b0316608052506200101492505050565b600054610100900460ff1615808015620000ca5750600054600160ff909116105b80620000e65750303b158015620000e6575060005460ff166001145b6200014f5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084015b60405180910390fd5b6000805460ff19166001179055801562000173576000805461ff0019166101001790555b6200017f858562000393565b6200018a8362000413565b6200019582620004a3565b8015620001cb576000805461ff001916905560405160018152600080516020620058a18339815191529060200160405180910390a15b5050505050565b600054610100900460ff16156200023c5760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840162000146565b60005460ff90811610156200027e576000805460ff191660ff908117909155604051908152600080516020620058a18339815191529060200160405180910390a15b565b610139546000906001600160401b03808216916801000000000000000090041683158015620002b9575080620002b7834362000df5565b105b15620002c6575050919050565b61013980546001600160401b031916436001600160401b03161790556000620002ee6200050a565b90506101385481116200030357505050919050565b6000610138548262000316919062000df5565b610139549091506200034390610100906200033c90600160801b900460ff168462000e0b565b906200052c565b9450851580156200035c5750846200035a6200056e565b105b156200036e5750600095945050505050565b62000379856200060e565b62000385858362000df5565b610138555092949350505050565b600054610100900460ff16620003ef5760405162461bcd60e51b815260206004820152602b60248201526000805160206200588183398151915260448201526a6e697469616c697a696e6760a81b606482015260840162000146565b620003f962000694565b62000403620006f0565b6200040f828262000756565b5050565b600054610100900460ff166200046f5760405162461bcd60e51b815260206004820152602b60248201526000805160206200588183398151915260448201526a6e697469616c697a696e6760a81b606482015260840162000146565b6040805160208082018352600080835283519182019093529182526200049591620007fb565b620004a08162000863565b50565b600054610100900460ff16620004ff5760405162461bcd60e51b815260206004820152602b60248201526000805160206200588183398151915260448201526a6e697469616c697a696e6760a81b606482015260840162000146565b620004a0816200096b565b610135546000906200051b6200056e565b62000527919062000e25565b905090565b600082156200056257816200054360018562000df5565b6200054f919062000e3b565b6200055c90600162000e25565b62000565565b60005b90505b92915050565b6065546040516370a0823160e01b815230600482015260009182916001600160a01b03909116906370a0823190602401602060405180830381865afa158015620005bc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005e2919062000e5e565b60665490915080821015620005fb57620005fb62000e78565b62000607818362000df5565b9250505090565b620006186200056e565b81111562000639576040516311d681c960e21b815260040160405180910390fd5b80600003620006455750565b806066600082825462000659919062000e25565b90915550506040518181527f7545428d48c07276e600a1b3c9689be2420624a568454764744bed2ed4785b5e9060200160405180910390a150565b600054610100900460ff166200027e5760405162461bcd60e51b815260206004820152602b60248201526000805160206200588183398151915260448201526a6e697469616c697a696e6760a81b606482015260840162000146565b600054610100900460ff166200074c5760405162461bcd60e51b815260206004820152602b60248201526000805160206200588183398151915260448201526a6e697469616c697a696e6760a81b606482015260840162000146565b6200027e62000a8c565b600054610100900460ff16620007b25760405162461bcd60e51b815260206004820152602b60248201526000805160206200588183398151915260448201526a6e697469616c697a696e6760a81b606482015260840162000146565b620007bf60008362000af4565b6001600160a01b038116156200040f576200040f7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e638262000af4565b600054610100900460ff16620008575760405162461bcd60e51b815260206004820152602b60248201526000805160206200588183398151915260448201526a6e697469616c697a696e6760a81b606482015260840162000146565b6200040f828262000b98565b600054610100900460ff16620008bf5760405162461bcd60e51b815260206004820152602b60248201526000805160206200588183398151915260448201526a6e697469616c697a696e6760a81b606482015260840162000146565b6012816001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000900573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000926919062000e8e565b60ff16111562000949576040516347aad2ef60e11b815260040160405180910390fd5b606580546001600160a01b0319166001600160a01b0392909216919091179055565b600054610100900460ff16620009c75760405162461bcd60e51b815260206004820152602b60248201526000805160206200588183398151915260448201526a6e697469616c697a696e6760a81b606482015260840162000146565b610131546001600160a01b031615620009e457620009e462000e78565b6001600160a01b0381161580159062000a16575062000a146001600160a01b038216636831974d60e11b62000c16565b155b1562000a41576040516320d6c2ad60e01b81526001600160a01b038216600482015260240162000146565b61013180546001600160a01b0319166001600160a01b0383169081179091556040517f18da49b0178612731ce8a0d4a3052637cc23b8bfb85385e67c4373011d86ed1390600090a250565b600054610100900460ff1662000ae85760405162461bcd60e51b815260206004820152602b60248201526000805160206200588183398151915260448201526a6e697469616c697a696e6760a81b606482015260840162000146565b60ff805460ff19169055565b600082815260cd602090815260408083206001600160a01b038516845290915290205460ff166200040f57600082815260cd602090815260408083206001600160a01b03851684529091529020805460ff1916600117905562000b543390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600054610100900460ff1662000bf45760405162461bcd60e51b815260206004820152602b60248201526000805160206200588183398151915260448201526a6e697469616c697a696e6760a81b606482015260840162000146565b603662000c02838262000f48565b50603762000c11828262000f48565b505050565b600062000c238362000c37565b801562000565575062000565838362000c6f565b600062000c4c826301ffc9a760e01b62000c6f565b801562000568575062000c68826001600160e01b031962000c6f565b1592915050565b604080516001600160e01b03198316602480830191909152825180830390910181526044909101909152602080820180516001600160e01b03166301ffc9a760e01b178152825160009392849283928392918391908a617530fa92503d9150600051905082801562000ce2575060208210155b801562000cef5750600081115b979650505050505050565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114620004a057600080fd5b60008082840360a081121562000d3b57600080fd5b608081121562000d4a57600080fd5b50604051608081016001600160401b038111828210171562000d705762000d7062000cfa565b604052835162000d808162000d10565b8152602084015162000d928162000d10565b6020820152604084015162000da78162000d10565b6040820152606084015162000dbc8162000d10565b6060820152608084015190925062000dd48162000d10565b809150509250929050565b634e487b7160e01b600052601160045260246000fd5b8181038181111562000568576200056862000ddf565b808202811582820484141762000568576200056862000ddf565b8082018082111562000568576200056862000ddf565b60008262000e5957634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121562000e7157600080fd5b5051919050565b634e487b7160e01b600052600160045260246000fd5b60006020828403121562000ea157600080fd5b815160ff8116811462000eb357600080fd5b9392505050565b600181811c9082168062000ecf57607f821691505b60208210810362000ef057634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000c1157600081815260208120601f850160051c8101602086101562000f1f5750805b601f850160051c820191505b8181101562000f405782815560010162000f2b565b505050505050565b81516001600160401b0381111562000f645762000f6462000cfa565b62000f7c8162000f75845462000eba565b8462000ef6565b602080601f83116001811462000fb4576000841562000f9b5750858301515b600019600386901b1c1916600185901b17855562000f40565b600085815260208120601f198616915b8281101562000fe55788860151825594840194600190910190840162000fc4565b5085821015620010045787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6080516148436200103e6000396000818161060401528181610b410152610df101526148436000f3fe608060405234801561001057600080fd5b50600436106103af5760003560e01c806366261532116101f457806392727cdd1161011a578063b8cc1f36116100ad578063d77eb4c71161007c578063d77eb4c7146108af578063dd62ed3e146108c2578063efa892c3146108fb578063facf6fc31461090e57600080fd5b8063b8cc1f3614610864578063cb02e53614610877578063d2da40401461088a578063d547741f1461089c57600080fd5b8063a9059cbb116100e9578063a9059cbb14610816578063b083afa414610829578063b2016bd41461083e578063b518d9a41461085157600080fd5b806392727cdd146107e057806395d89b41146107f3578063a217fddf146107fb578063a457c2d71461080357600080fd5b8063815cd1a2116101925780639003adfe116101615780639003adfe146107785780639026dee814610781578063909370831461079457806391d14854146107a757600080fd5b8063815cd1a2146107405780638240cdf21461075357806383edf3171461075d5780638456cb591461077057600080fd5b806372441d54116101ce57806372441d54146106e957806375172a8b1461071257806379df81e41461071a5780637e90618e1461072d57600080fd5b806366261532146106835780636a12209c146106ad57806370a08231146106c057600080fd5b80633237c158116102d957806349bcbcc0116102775780635c975abb116102465780635c975abb1461063e5780635cd9ef81146106485780635d5d46131461065b578063609e5e481461066e57600080fd5b806349bcbcc0146105c857806353e8c850146105eb57806354c97ff7146105f55780635bd9e299146105ff57600080fd5b8063390ca127116102b3578063390ca1271461056d578063395093511461059a5780633f036cb0146105ad5780633f4ba83a146105c057600080fd5b80633237c1581461052a57806336568abe146105525780633706c4da1461056557600080fd5b8063164e68de1161035157806323b872dd1161032057806323b872dd146104ca578063248a9ca3146104dd5780632f2ff15d14610500578063313ce5671461051557600080fd5b8063164e68de146104a657806316dbd776146104a657806318160ddd146104ba5780631ba2f531146104c257600080fd5b80630802bf351161038d5780630802bf3514610426578063095ea7b3146104605780630dab3ae814610473578063155b6be51461049357600080fd5b806301ffc9a7146103b457806306fdde03146103dc57806307bd0265146103f1575b600080fd5b6103c76103c2366004613ced565b610921565b60405190151581526020015b60405180910390f35b6103e46109d3565b6040516103d39190613d3b565b6104187fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6381565b6040519081526020016103d3565b610139546104479068010000000000000000900467ffffffffffffffff1681565b60405167ffffffffffffffff90911681526020016103d3565b6103c761046e366004613d83565b610a65565b610486610481366004613dfb565b610a7d565b6040516103d39190613eac565b6104866104a1366004613ef9565b610ceb565b6104186104b4366004613f98565b50600090565b603554610418565b610418610f8e565b6103c76104d8366004613fb5565b610fab565b6104186104eb366004613ff6565b600090815260cd602052604090206001015490565b61051361050e36600461400f565b610fd1565b005b60125b60405160ff90911681526020016103d3565b61053d610538366004613ff6565b610ffb565b604080519283526020830191909152016103d3565b61051361056036600461400f565b6110fa565b606854610418565b6103c761057b366004613f98565b6001600160a01b0316600090815261013a602052604090205460ff1690565b6103c76105a8366004613d83565b611186565b6105136105bb366004613ff6565b6111c5565b610513611250565b6105d0611263565b604080519384526020840192909252908201526060016103d3565b6104186101355481565b6104186101325481565b6106267f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103d3565b60ff8054166103c7565b61053d610656366004613ff6565b61159f565b610418610669366004613ff6565b6116ed565b6101395461051890600160801b900460ff1681565b610418610691366004613f98565b6001600160a01b03166000908152610133602052604090205490565b6105136106bb366004613ff6565b6116f9565b6104186106ce366004613f98565b6001600160a01b031660009081526033602052604090205490565b6104186106f7366004613f98565b6001600160a01b031660009081526067602052604090205490565b61041861173f565b61053d610728366004613d83565b6117d7565b61053d61073b366004613d83565b611910565b61041861074e366004613f98565b611929565b6104186101385481565b61051361076b366004613f98565b6119a0565b6105136119cd565b61041860665481565b61051361078f366004613f98565b6119de565b61053d6107a2366004613f98565b6119e9565b6103c76107b536600461400f565b600091825260cd602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6105136107ee366004613d83565b611ab1565b6103e4611c50565b610418600081565b6103c7610811366004613d83565b611c5f565b6103c7610824366004613d83565b611cfc565b610139546104479067ffffffffffffffff1681565b606554610626906001600160a01b031681565b61041861085f366004613d83565b611d0a565b6105d0610872366004613f98565b611d57565b61041861088536600461403f565b611f3a565b610131546001600160a01b0316610626565b6105136108aa36600461400f565b611fe4565b6105136108bd3660046140ab565b612009565b6104186108d03660046140cd565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b610513610909366004614109565b6121af565b61051361091c366004614137565b61228d565b60006001600160e01b03198216636831974d60e11b148061095257506001600160e01b031982166306e253b560e11b145b8061096d57506001600160e01b03198216635ee02cbf60e01b145b8061098857506001600160e01b0319821663034b690160e61b145b806109a357506001600160e01b03198216635c660f9b60e11b145b806109be57506001600160e01b03198216630126f2f360e61b145b806109cd57506109cd82612330565b92915050565b6060603680546109e290614178565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0e90614178565b8015610a5b5780601f10610a3057610100808354040283529160200191610a5b565b820191906000526020600020905b815481529060010190602001808311610a3e57829003601f168201915b5050505050905090565b600033610a73818585612365565b5060019392505050565b6001600160a01b038816600090815261013a602052604090205460609060ff16610aca57604051631fbef81160e21b81526001600160a01b038a1660048201526024015b60405180910390fd5b838214610aea57604051630a14dfb760e21b815260040160405180910390fd5b8167ffffffffffffffff811115610b0357610b036141b2565b604051908082528060200260200182016040528015610b2c578160200160208202803683370190505b506040805160a0810182526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811682526065548116602083015230928201929092528a82166060820152908916608082015290915060005b83811015610cdd5760008b6001600160a01b031663aecc550a8a85898987818110610bb957610bb96141c8565b9050602002810190610bcb91906141de565b6040518463ffffffff1660e01b8152600401610be99392919061426e565b6020604051808303816000875af1158015610c08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2c9190614368565b90506000610c4a6001600160a01b0383166319a298e760e01b612489565b905080610c755760405163531f290560e11b81526001600160a01b038e166004820152602401610ac1565b81858481518110610c8857610c886141c8565b60200260200101906001600160a01b031690816001600160a01b031681525050610cca828a8a86818110610cbe57610cbe6141c8565b90506020020135611ab1565b505080610cd69061439b565b9050610b8c565b505098975050505050505050565b6001600160a01b038716600090815261013a602052604090205460609060ff16610d3357604051631fbef81160e21b81526001600160a01b0389166004820152602401610ac1565b6000610d4f6001600160a01b038a1663b4b1516760e01b612489565b905080610d7a5760405163531f290560e11b81526001600160a01b038a166004820152602401610ac1565b848314610d9a57604051630a14dfb760e21b815260040160405180910390fd5b8267ffffffffffffffff811115610db357610db36141b2565b604051908082528060200260200182016040528015610ddc578160200160208202803683370190505b506040805160a0810182526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081168252606554811660208301523092820192909252600060608201819052918b1660808201529193505b84811015610f805760008b6001600160a01b031663b4b151678b858a8a87818110610e6857610e686141c8565b9050602002810190610e7a91906143b4565b6040518463ffffffff1660e01b8152600401610e98939291906143de565b6020604051808303816000875af1158015610eb7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610edb9190614368565b90506000610ef96001600160a01b0383166319a298e760e01b612489565b905080610f245760405163531f290560e11b81526001600160a01b038e166004820152602401610ac1565b81868481518110610f3757610f376141c8565b60200260200101906001600160a01b031690816001600160a01b031681525050610f6d828b8b86818110610cbe57610cbe6141c8565b505080610f799061439b565b9050610e3b565b505050979650505050505050565b600061013554610f9c61173f565b610fa691906144d0565b905090565b600033610fb98582856124a5565b610fc4858585612537565b60019150505b9392505050565b600082815260cd6020526040902060010154610fec816126e2565b610ff683836126ec565b505050565b60008061100661278e565b3361101160016127e0565b50600061101e82866128e1565b919550935090506000839003611035575050915091565b80610138600082825461104891906144e3565b90915550506001600160a01b03821660009081526101366020526040812080548592906110769084906144d0565b90915550611086905082846129e5565b60655461109d906001600160a01b03168386612a8c565b60408051600081526020810191829052906001600160a01b038416907f96bd1544577eb6c104cdc0a1e4eda89c64f8875c006dfda5baaef1aa5628b4b9906110ea908890859089906144f6565b60405180910390a2505050915091565b6001600160a01b03811633146111785760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608401610ac1565b6111828282612aef565b5050565b3360008181526034602090815260408083206001600160a01b0387168452909152812054909190610a7390829086906111c09087906144d0565b612365565b60006111cf612b72565b6001600160a01b038116600090815261013460205260408120600181018054939450909285929061120190849061454d565b909155505060408051848152600060208201526001600160a01b038416917fdabd725b6d0865b98c42345bb716aada43ac75fcb5b70d2d189bf7afad456d2e91015b60405180910390a2505050565b611259336119de565b611261612b7d565b565b60008060008061127c610131546001600160a01b031690565b90506001600160a01b0381166112a55760405163297d81a560e01b815260040160405180910390fd5b336001600160a01b038216146112d057604051632c3b4def60e21b8152336004820152602401610ac1565b60006112ec6001600160a01b038316635ee02cbf60e01b612489565b905080611317576040516320d6c2ad60e01b81526001600160a01b0383166004820152602401610ac1565b6000826001600160a01b0316633706c4da6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015611359573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137d9190614575565b90506000836001600160a01b03166375172a8b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113e39190614575565b90506000846001600160a01b0316631ba2f5316040518163ffffffff1660e01b81526004016020604051808303816000875af1158015611427573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144b9190614575565b9050816000036114675750600097889750879650945050505050565b6001600160a01b0385166000818152606760205260409020549061149290636831974d60e11b612489565b61149e5761149e61458e565b604051635cd9ef8160e01b81526004810184905286906001600160a01b03821690635cd9ef819060240160408051808303816000875af11580156114e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061150a91906145a4565b909a5097508161152f886001600160a01b031660009081526067602052604090205490565b61153991906144e3565b8a146115475761154761458e565b6115518584612bcf565b94508261155e868c6145c8565b61156891906145df565b98508989101561157a5761157a61458e565b60006115868b8b6144e3565b90506115928882612be5565b5050505050505050909192565b6000806115aa61278e565b60006115b4612b72565b905060006115c1826119e9565b5090506115ce8186612c37565b935083156116e6576001600160a01b03821660009081526101346020526040812080548692906115ff9084906144d0565b9250508190555083610135600082825461161991906144d0565b9091555050606554611635906001600160a01b03168386612c46565b604051635d5d461360e01b8152600481018590526001600160a01b03831690635d5d4613906024016020604051808303816000875af115801561167c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116a09190614575565b9250816001600160a01b03167fb741f30322e51134d94cb3c8e4d323dfbcfd60a7a86243f62faa4ae60528f8b0856040516116dd91815260200190565b60405180910390a25b5050915091565b60006109cd3383611d0a565b611702336119de565b6101328190556040518181527fcbfebec0d4837dbe12cf8045696140fec0f1ae16160c3474010c7ac91f4b74a2906020015b60405180910390a150565b6065546040516370a0823160e01b815230600482015260009182916001600160a01b03909116906370a0823190602401602060405180830381865afa15801561178c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117b09190614575565b606654909150808210156117c6576117c661458e565b6117d081836144e3565b9250505090565b6000806117e261278e565b60006117ed85612d62565b9050336117fa60016127e0565b506001600160a01b0381166000908152610137602052604081209061181e83612d71565b905061182c84828985612e32565b909650945084156118415761184183866129e5565b60a08101516001600160a01b03841660009081526101366020908152604090912082518155910151600190910155606081015161013555608081015161013855851561190557600085116118975761189761458e565b6118ab6001600160a01b0385168488612a8c565b60408051878152602081018790526bffffffffffffffffffffffff1960608b901b16916001600160a01b038616917fe39d5363f820fc9aad3f881a88f5aa05338eaa1cfe575250c49fc7ff5bf5eaa3910160405180910390a35b505050509250929050565b60008061191d84846128e1565b50909590945092505050565b6000611934336119de565b50606654611941816130a1565b606554611958906001600160a01b03168383612a8c565b816001600160a01b03167fc0819c13be868895eb93e40eaceb96de976442fa1d404e5c55f14bb65a8c489a8260405161199391815260200190565b60405180910390a2919050565b6119ca7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63826130de565b50565b6119d6336119de565b611261613153565b6119ca6000826130de565b60008060006119f760685490565b610132546001600160a01b03861660009081526101336020526040902054919250611a2191612c37565b9150611a2d8183612c37565b6001600160a01b03851660009081526101346020908152604091829020825180840190935280548084526001909101549183019190915291945084935090611a76908490613190565b8151909350611a86908590613190565b9350611aa8611a9361173f565b6020830151611aa39087906131a6565b612c37565b93505050915091565b611aba336119a0565b8015611ac857611ac861278e565b6001600160a01b038216600090815261013360205260409020548114611182576000611b046001600160a01b0384166306e253b560e11b612489565b905080611b2f576040516332be158160e01b81526001600160a01b0384166004820152602401610ac1565b6000611b4b6001600160a01b03851663034b690160e61b612489565b9050808015611bcc5750306001600160a01b0316846001600160a01b031663d2da40406040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bc19190614368565b6001600160a01b0316145b611bf4576040516332be158160e01b81526001600160a01b0385166004820152602401610ac1565b6001600160a01b0384166000818152610133602052604090819020859055517f087334644551f4ef9c19d46c1dbbb3593f9f48d51f0fea493a43e312a652424890611c429086815260200190565b60405180910390a250505050565b6060603780546109e290614178565b3360008181526034602090815260408083206001600160a01b038716845290915281205490919083811015611ce45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610ac1565b611cf18286868403612365565b506001949350505050565b600033610a73818585612537565b6000611d1461278e565b611d1e60006127e0565b50816101386000828254611d3291906144d0565b9091555060009050611d42610f8e565b9050611d4f8484836131ed565b949350505050565b60008080611d64336119de565b611d7e6001600160a01b038516636831974d60e11b612489565b611da65760405163793463e360e01b81526001600160a01b0385166004820152602401610ac1565b611dc06001600160a01b038516630126f2f360e61b612489565b611de85760405163284e951160e21b81526001600160a01b0385166004820152602401610ac1565b611df260016127e0565b506000611dfe60685490565b9050611e2a7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6333610fd1565b611e348582611ab1565b611e5e7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6333611fe4565b61013254611e6b826116f9565b6000869050806001600160a01b03166349bcbcc06040518163ffffffff1660e01b81526004016060604051808303816000875af1158015611eb0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ed49190614601565b91975095509350611ee4826116f9565b60408051878152602081018790529081018590526001600160a01b038816907f2b909767077de53708f0c9bf65c9ea6cfe4ffaf377981f178880e5eb307d81299060600160405180910390a25050509193909250565b6000611f4461278e565b838214611f645760405163ca3487f760e01b815260040160405180910390fd5b60005b84811015611fdb576000611fb9878784818110611f8657611f866141c8565b9050602002016020810190611f9b9190613f98565b868685818110611fad57611fad6141c8565b905060200201356117d7565b9150611fc7905081846144d0565b92505080611fd49061439b565b9050611f67565b50949350505050565b600082815260cd6020526040902060010154611fff816126e2565b610ff68383612aef565b6000612013612b72565b6040516370a0823160e01b815230600482015290915060009083906001600160a01b038416906370a0823190602401602060405180830381865afa15801561205f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120839190614575565b61208d91906144d0565b6001600160a01b03831660009081526101346020526040812080549293509190836120b95760006120ce565b836120c483886145c8565b6120ce91906145df565b90506001600160ff1b038711156120f857604051637756904960e01b815260040160405180910390fd5b6001600160ff1b0381111561210f5761210f61458e565b61211981836144e3565b8355612125818861462f565b836001016000828254612138919061454d565b9250508190555080610135600082825461215291906144e3565b909155505060408051888152602081018390526001600160a01b038716917fdabd725b6d0865b98c42345bb716aada43ac75fcb5b70d2d189bf7afad456d2e910160405180910390a26121a560006127e0565b5050505050505050565b6121b8336119de565b80156121c6576121c661278e565b60006121e26001600160a01b0384166357662a8560e11b612489565b90508061220d5760405163531f290560e11b81526001600160a01b0384166004820152602401610ac1565b6001600160a01b038316600090815261013a602052604090205460ff16151582151514610ff6576001600160a01b038316600081815261013a6020908152604091829020805460ff191686151590811790915591519182527f51228fedbb1530958ad763d83204397c34a21dc73a3525e68bdce060da2563609101611243565b612296336119de565b610139805470ffffffffffffffffff000000000000000019166801000000000000000067ffffffffffffffff851690810270ff00000000000000000000000000000000191691909117600160801b60ff8516908102919091179092556040805191825260208201929092527f9a4f996bbf9517a7375f9a68aa2965412bb9b95c247141192b8f8183d3db4405910160405180910390a15050565b60006001600160e01b03198216637965db0b60e01b14806109cd57506301ffc9a760e01b6001600160e01b03198316146109cd565b6001600160a01b0383166123c75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ac1565b6001600160a01b0382166124285760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ac1565b6001600160a01b0383811660008181526034602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006124948361338b565b8015610fca5750610fca83836133be565b6001600160a01b03838116600090815260346020908152604080832093861683529290522054600019811461253157818110156125245760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610ac1565b6125318484848403612365565b50505050565b6001600160a01b03831661259b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610ac1565b6001600160a01b0382166125fd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610ac1565b6001600160a01b038316600090815260336020526040902054818110156126755760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610ac1565b6001600160a01b0380851660008181526033602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906126d59086815260200190565b60405180910390a3612531565b6119ca81336130de565b600082815260cd602090815260408083206001600160a01b038516845290915290205460ff1661118257600082815260cd602090815260408083206001600160a01b03851684529091529020805460ff1916600117905561274a3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60ff805416156112615760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610ac1565b6101395460009067ffffffffffffffff80821691680100000000000000009004168315801561281757508061281583436144e3565b105b15612823575050919050565b610139805467ffffffffffffffff19164367ffffffffffffffff16179055600061284b610f8e565b905061013854811161285f57505050919050565b6000610138548261287091906144e3565b61013954909150612899906101009061289390600160801b900460ff16846145c8565b90613447565b9450851580156128af5750846128ad61173f565b105b156128c05750600095945050505050565b6128c98561347e565b6128d385836144e3565b610138555092949350505050565b6000806000806128ef61173f565b905060006128fb610f8e565b90508060000361291e5760405163ee7b33a760e01b815260040160405180910390fd5b6001600160a01b03871660008181526101366020908152604080832081518083018352815480825260019092015481850152948452603390925282205461296591906144d0565b90506129788189846000015187876134f8565b95508560000361298b57505050506129de565b600061299660355490565b610138549091506129a8888387613569565b98506129b5888383613569565b9650858911156129c7576129c761458e565b808711156129d7576129d761458e565b5050505050505b9250925092565b80600003612a06576040516302075cc160e41b815260040160405180910390fd5b6001600160a01b0382166000908152603360209081526040808320546067909252822054612a36919084906135a7565b6001600160a01b038416600090815260676020526040812080549293508392909190612a639084906144e3565b925050819055508060686000828254612a7c91906144e3565b90915550610ff6905083836135f4565b6040516001600160a01b038316602482015260448101829052610ff690849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152613728565b600082815260cd602090815260408083206001600160a01b038516845290915290205460ff161561118257600082815260cd602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000610fa633612d62565b612b856137fa565b60ff805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000818311612bde5781610fca565b5090919050565b6001600160a01b038216600090815260676020526040902054612c099082906144d0565b6001600160a01b038316600090815260676020526040902055606854612c309082906144d0565b6068555050565b6000818310612bde5781610fca565b801580612cc05750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015612c9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cbe9190614575565b155b612d325760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152608401610ac1565b6040516001600160a01b038316602482015260448101829052610ff690849063095ea7b360e01b90606401612ab8565b6000612d6d8261384b565b5090565b612d79613c9d565b6001600160a01b03821660009081526033602052604081205490612d9b610f8e565b905080600003612dbe5760405163ee7b33a760e01b815260040160405180910390fd5b6001600160a01b03841660009081526101366020908152604091829020825180840184528154815260019091015481830152825160c0810190935284835291908101612e0960355490565b815260208101939093526101355460408401526101385460608401526080909201529392505050565b6000808460000151841115612e5a576040516302075cc160e41b815260040160405180910390fd5b6001600160a01b0386166000908152610134602052604081205490819003612e825750613098565b6000612e9c876040015183896020015161289391906145c8565b9050612ee88760a00151602001518860000151612eb991906144d0565b612ec38884612c37565b6001600160a01b038b1660009081526020899052604090205460608b015186906134f8565b925082600003612ef9575050613098565b6000612f0e8489602001518a60400151613569565b9050612f1a8184612c37565b90506000612f31828a604001518b60800151613569565b9050848960a00151602001818151612f4991906144d0565b9052506001600160a01b038a1660009081526020889052604081208054879290612f749084906144d0565b90915550506040516370a0823160e01b81523060048201526000906001600160a01b038c16906370a0823190602401602060405180830381865afa158015612fc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fe49190614575565b905084612ff184836145c8565b612ffb91906145df565b9650858a60000181815161300f91906144e3565b90525060208a0180518791906130269083906144e3565b90525060408a01805184919061303d9083906144e3565b90525060608a0180518491906130549083906144e3565b90525060808a01805183919061306b9083906144e3565b90525061307883866144e3565b6001600160a01b038c166000908152610134602052604090205550505050505b94509492505050565b6066548111156130c45760405163cd45232960e01b815260040160405180910390fd5b80606660008282546130d691906144e3565b909155505050565b600082815260cd602090815260408083206001600160a01b038516845290915290205460ff166111825761311181613890565b61311c8360206138a2565b60405160200161312d929190614656565b60408051601f198184030181529082905262461bcd60e51b8252610ac191600401613d3b565b61315b61278e565b60ff805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612bb23390565b60008183116131a0576000610fca565b50900390565b6000808212156131cf5760008290038084116131c35760006131c7565b8084035b9150506109cd565b818360001903116131e2576000196131e6565b8183015b90506109cd565b60008260000361321057604051632ec86ff560e21b815260040160405180910390fd5b6132238361321d60355490565b84613a4b565b6001600160a01b0385166000908152606760205260408120549192509061324b9085906144d0565b90506fffffffffffffffffffffffffffffffff81111561327e57604051637756904960e01b815260040160405180910390fd5b6001600160a01b0385166000908152606760205260408120829055606880548692906132ab9084906144d0565b909155505060655433906132ca906001600160a01b0316823088613a91565b6001600160a01b0386166000908152603360205260408120546132ee9085906144d0565b90506fffffffffffffffffffffffffffffffff81111561332157604051637756904960e01b815260040160405180910390fd5b61332b8785613ac9565b866001600160a01b0316826001600160a01b03167fdcde3dce73cebc28787eaab2e2b0474ab6f06f519882e7ee490a3f57e46abed38887604051613379929190918252602082015260400190565b60405180910390a35050509392505050565b600061339e826301ffc9a760e01b6133be565b80156109cd57506133b7826001600160e01b03196133be565b1592915050565b604080516001600160e01b03198316602480830191909152825180830390910181526044909101909152602080820180516001600160e01b03166301ffc9a760e01b178152825160009392849283928392918391908a617530fa92503d91506000519050828015613430575060208210155b801561343c5750600081115b979650505050505050565b60008215613475578161345b6001856144e3565b61346591906145df565b6134709060016144d0565b610fca565b50600092915050565b61348661173f565b8111156134a6576040516311d681c960e21b815260040160405180910390fd5b806000036134b15750565b80606660008282546134c391906144d0565b90915550506040518181527f7545428d48c07276e600a1b3c9689be2420624a568454764744bed2ed4785b5e90602001611734565b6000806135138561350d85612893888c6145c8565b90613190565b905061351f8682612c37565b9150811561355f5761353187856145c8565b83600161353e85896144d0565b61354891906144e3565b61355291906145c8565b1061355f5761355f61458e565b5095945050505050565b60008284111561358c576040516302075cc160e41b815260040160405180910390fd5b8315610fca578261359d85846145c8565b611d4f91906145df565b6000838311156135ca576040516302075cc160e41b815260040160405180910390fd5b83156135ea57836135db84846145c8565b6135e591906145df565b611d4f565b6000949350505050565b6001600160a01b0382166136545760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610ac1565b6001600160a01b038216600090815260336020526040902054818110156136c85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610ac1565b6001600160a01b03831660008181526033602090815260408083208686039055603580548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600061377d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316613b8a9092919063ffffffff16565b805190915015610ff6578080602001905181019061379b91906146d7565b610ff65760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610ac1565b60ff8054166112615760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610ac1565b6001600160a01b038116600090815261013360205260409020546000036119ca5760405163a0adfe6b60e01b81526001600160a01b0382166004820152602401610ac1565b60606109cd6001600160a01b03831660145b606060006138b18360026145c8565b6138bc9060026144d0565b67ffffffffffffffff8111156138d4576138d46141b2565b6040519080825280601f01601f1916602001820160405280156138fe576020820181803683370190505b509050600360fc1b81600081518110613919576139196141c8565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613948576139486141c8565b60200101906001600160f81b031916908160001a905350600061396c8460026145c8565b6139779060016144d0565b90505b60018111156139fc577f303132333435363738396162636465660000000000000000000000000000000085600f16601081106139b8576139b86141c8565b1a60f81b8282815181106139ce576139ce6141c8565b60200101906001600160f81b031916908160001a90535060049490941c936139f5816146f4565b905061397a565b508315610fca5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610ac1565b600081613a578161439b565b9250613a6790506004600a6147ef565b613a7190846144d0565b925060008311613a8357613a8361458e565b611d4f8261289385876145c8565b6040516001600160a01b03808516602483015283166044820152606481018290526125319085906323b872dd60e01b90608401612ab8565b6001600160a01b038216613b1f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610ac1565b8060356000828254613b3191906144d0565b90915550506001600160a01b0382166000818152603360209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6060611d4f848460008585600080866001600160a01b03168587604051613bb191906147fb565b60006040518083038185875af1925050503d8060008114613bee576040519150601f19603f3d011682016040523d82523d6000602084013e613bf3565b606091505b509150915061343c8783838760608315613c6e578251600003613c67576001600160a01b0385163b613c675760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610ac1565b5081611d4f565b611d4f8383815115613c835781518083602001fd5b8060405162461bcd60e51b8152600401610ac19190613d3b565b6040518060c001604052806000815260200160008152602001600081526020016000815260200160008152602001613ce8604051806040016040528060008152602001600081525090565b905290565b600060208284031215613cff57600080fd5b81356001600160e01b031981168114610fca57600080fd5b60005b83811015613d32578181015183820152602001613d1a565b50506000910152565b6020815260008251806020840152613d5a816040850160208701613d17565b601f01601f19169190910160400192915050565b6001600160a01b03811681146119ca57600080fd5b60008060408385031215613d9657600080fd5b8235613da181613d6e565b946020939093013593505050565b60008083601f840112613dc157600080fd5b50813567ffffffffffffffff811115613dd957600080fd5b6020830191508360208260051b8501011115613df457600080fd5b9250929050565b60008060008060008060008060c0898b031215613e1757600080fd5b8835613e2281613d6e565b97506020890135613e3281613d6e565b96506040890135613e4281613d6e565b955060608901359450608089013567ffffffffffffffff80821115613e6657600080fd5b613e728c838d01613daf565b909650945060a08b0135915080821115613e8b57600080fd5b50613e988b828c01613daf565b999c989b5096995094979396929594505050565b6020808252825182820181905260009190848201906040850190845b81811015613eed5783516001600160a01b031683529284019291840191600101613ec8565b50909695505050505050565b600080600080600080600060a0888a031215613f1457600080fd5b8735613f1f81613d6e565b96506020880135613f2f81613d6e565b955060408801359450606088013567ffffffffffffffff80821115613f5357600080fd5b613f5f8b838c01613daf565b909650945060808a0135915080821115613f7857600080fd5b50613f858a828b01613daf565b989b979a50959850939692959293505050565b600060208284031215613faa57600080fd5b8135610fca81613d6e565b600080600060608486031215613fca57600080fd5b8335613fd581613d6e565b92506020840135613fe581613d6e565b929592945050506040919091013590565b60006020828403121561400857600080fd5b5035919050565b6000806040838503121561402257600080fd5b82359150602083013561403481613d6e565b809150509250929050565b6000806000806040858703121561405557600080fd5b843567ffffffffffffffff8082111561406d57600080fd5b61407988838901613daf565b9096509450602087013591508082111561409257600080fd5b5061409f87828801613daf565b95989497509550505050565b600080604083850312156140be57600080fd5b50508035926020909101359150565b600080604083850312156140e057600080fd5b82356140eb81613d6e565b9150602083013561403481613d6e565b80151581146119ca57600080fd5b6000806040838503121561411c57600080fd5b823561412781613d6e565b91506020830135614034816140fb565b6000806040838503121561414a57600080fd5b823567ffffffffffffffff8116811461416257600080fd5b9150602083013560ff8116811461403457600080fd5b600181811c9082168061418c57607f821691505b6020821081036141ac57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008235607e198336030181126141f457600080fd5b9190910192915050565b81835260007f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83111561423057600080fd5b8260051b80836020870137939093016020019392505050565b80356fffffffffffffffffffffffffffffffff8116811461426957600080fd5b919050565b8381526142bc60208201846001600160a01b03808251168352806020830151166020840152806040830151166040840152806060830151166060840152806080830151166080840152505050565b60e060c0820152813560e082015260006020830135601e198436030181126142e357600080fd5b830160208101903567ffffffffffffffff81111561430057600080fd5b8060051b360382131561431257600080fd5b6080610100850152614329610160850182846141fe565b91505061433860408501614249565b6fffffffffffffffffffffffffffffffff1661012084015260609390930135610140909201919091525092915050565b60006020828403121561437a57600080fd5b8151610fca81613d6e565b634e487b7160e01b600052601160045260246000fd5b6000600182016143ad576143ad614385565b5060010190565b60008235605e198336030181126141f457600080fd5b803563ffffffff8116811461426957600080fd5b83815261442c60208201846001600160a01b03808251168352806020830151166020840152806040830151166040840152806060830151166060840152806080830151166080840152505050565b60e060c0820152813560e082015260006020830135601e1984360301811261445357600080fd5b830160208101903567ffffffffffffffff81111561447057600080fd5b80360382131561447f57600080fd5b60606101008501528061014085015261016081838287013760008183870101526144ab604087016143ca565b63ffffffff16610120860152601f91909101601f191690930190920195945050505050565b808201808211156109cd576109cd614385565b818103818111156109cd576109cd614385565b6000606082018583526020606081850152818651808452608086019150828801935060005b818110156145375784518352938301939183019160010161451b565b5050809350505050826040830152949350505050565b808201828112600083128015821682158216171561456d5761456d614385565b505092915050565b60006020828403121561458757600080fd5b5051919050565b634e487b7160e01b600052600160045260246000fd5b600080604083850312156145b757600080fd5b505080516020909101519092909150565b80820281158282048414176109cd576109cd614385565b6000826145fc57634e487b7160e01b600052601260045260246000fd5b500490565b60008060006060848603121561461657600080fd5b8351925060208401519150604084015190509250925092565b818103600083128015838313168383128216171561464f5761464f614385565b5092915050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161468e816017850160208801613d17565b7f206973206d697373696e6720726f6c652000000000000000000000000000000060179184019182015283516146cb816028840160208801613d17565b01602801949350505050565b6000602082840312156146e957600080fd5b8151610fca816140fb565b60008161470357614703614385565b506000190190565b600181815b8085111561474657816000190482111561472c5761472c614385565b8085161561473957918102915b93841c9390800290614710565b509250929050565b60008261475d575060016109cd565b8161476a575060006109cd565b8160018114614780576002811461478a576147a6565b60019150506109cd565b60ff84111561479b5761479b614385565b50506001821b6109cd565b5060208310610133831016604e8410600b84101617156147c9575081810a6109cd565b6147d3838361470b565b80600019048211156147e7576147e7614385565b029392505050565b6000610fca838361474e565b600082516141f4818460208701613d1756fea264697066735822122064f9a9add1e88fb1402790853a21c06c2e535a3557126789980cfd44a9d5bf4964736f6c63430008130033496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420697f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024980000000000000000000000004bde5ef48fb211e914de3cb45506d1e533f49a910000000000000000000000006a313a0e1130810f4488c175d78472e165e0004e000000000000000000000000d14d2f62949e83708af8633ed555752923c9b9fe0000000000000000000000004720cda43b2bfb177d42a99538d01362543f0a670000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106103af5760003560e01c806366261532116101f457806392727cdd1161011a578063b8cc1f36116100ad578063d77eb4c71161007c578063d77eb4c7146108af578063dd62ed3e146108c2578063efa892c3146108fb578063facf6fc31461090e57600080fd5b8063b8cc1f3614610864578063cb02e53614610877578063d2da40401461088a578063d547741f1461089c57600080fd5b8063a9059cbb116100e9578063a9059cbb14610816578063b083afa414610829578063b2016bd41461083e578063b518d9a41461085157600080fd5b806392727cdd146107e057806395d89b41146107f3578063a217fddf146107fb578063a457c2d71461080357600080fd5b8063815cd1a2116101925780639003adfe116101615780639003adfe146107785780639026dee814610781578063909370831461079457806391d14854146107a757600080fd5b8063815cd1a2146107405780638240cdf21461075357806383edf3171461075d5780638456cb591461077057600080fd5b806372441d54116101ce57806372441d54146106e957806375172a8b1461071257806379df81e41461071a5780637e90618e1461072d57600080fd5b806366261532146106835780636a12209c146106ad57806370a08231146106c057600080fd5b80633237c158116102d957806349bcbcc0116102775780635c975abb116102465780635c975abb1461063e5780635cd9ef81146106485780635d5d46131461065b578063609e5e481461066e57600080fd5b806349bcbcc0146105c857806353e8c850146105eb57806354c97ff7146105f55780635bd9e299146105ff57600080fd5b8063390ca127116102b3578063390ca1271461056d578063395093511461059a5780633f036cb0146105ad5780633f4ba83a146105c057600080fd5b80633237c1581461052a57806336568abe146105525780633706c4da1461056557600080fd5b8063164e68de1161035157806323b872dd1161032057806323b872dd146104ca578063248a9ca3146104dd5780632f2ff15d14610500578063313ce5671461051557600080fd5b8063164e68de146104a657806316dbd776146104a657806318160ddd146104ba5780631ba2f531146104c257600080fd5b80630802bf351161038d5780630802bf3514610426578063095ea7b3146104605780630dab3ae814610473578063155b6be51461049357600080fd5b806301ffc9a7146103b457806306fdde03146103dc57806307bd0265146103f1575b600080fd5b6103c76103c2366004613ced565b610921565b60405190151581526020015b60405180910390f35b6103e46109d3565b6040516103d39190613d3b565b6104187fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6381565b6040519081526020016103d3565b610139546104479068010000000000000000900467ffffffffffffffff1681565b60405167ffffffffffffffff90911681526020016103d3565b6103c761046e366004613d83565b610a65565b610486610481366004613dfb565b610a7d565b6040516103d39190613eac565b6104866104a1366004613ef9565b610ceb565b6104186104b4366004613f98565b50600090565b603554610418565b610418610f8e565b6103c76104d8366004613fb5565b610fab565b6104186104eb366004613ff6565b600090815260cd602052604090206001015490565b61051361050e36600461400f565b610fd1565b005b60125b60405160ff90911681526020016103d3565b61053d610538366004613ff6565b610ffb565b604080519283526020830191909152016103d3565b61051361056036600461400f565b6110fa565b606854610418565b6103c761057b366004613f98565b6001600160a01b0316600090815261013a602052604090205460ff1690565b6103c76105a8366004613d83565b611186565b6105136105bb366004613ff6565b6111c5565b610513611250565b6105d0611263565b604080519384526020840192909252908201526060016103d3565b6104186101355481565b6104186101325481565b6106267f0000000000000000000000004bde5ef48fb211e914de3cb45506d1e533f49a9181565b6040516001600160a01b0390911681526020016103d3565b60ff8054166103c7565b61053d610656366004613ff6565b61159f565b610418610669366004613ff6565b6116ed565b6101395461051890600160801b900460ff1681565b610418610691366004613f98565b6001600160a01b03166000908152610133602052604090205490565b6105136106bb366004613ff6565b6116f9565b6104186106ce366004613f98565b6001600160a01b031660009081526033602052604090205490565b6104186106f7366004613f98565b6001600160a01b031660009081526067602052604090205490565b61041861173f565b61053d610728366004613d83565b6117d7565b61053d61073b366004613d83565b611910565b61041861074e366004613f98565b611929565b6104186101385481565b61051361076b366004613f98565b6119a0565b6105136119cd565b61041860665481565b61051361078f366004613f98565b6119de565b61053d6107a2366004613f98565b6119e9565b6103c76107b536600461400f565b600091825260cd602090815260408084206001600160a01b0393909316845291905290205460ff1690565b6105136107ee366004613d83565b611ab1565b6103e4611c50565b610418600081565b6103c7610811366004613d83565b611c5f565b6103c7610824366004613d83565b611cfc565b610139546104479067ffffffffffffffff1681565b606554610626906001600160a01b031681565b61041861085f366004613d83565b611d0a565b6105d0610872366004613f98565b611d57565b61041861088536600461403f565b611f3a565b610131546001600160a01b0316610626565b6105136108aa36600461400f565b611fe4565b6105136108bd3660046140ab565b612009565b6104186108d03660046140cd565b6001600160a01b03918216600090815260346020908152604080832093909416825291909152205490565b610513610909366004614109565b6121af565b61051361091c366004614137565b61228d565b60006001600160e01b03198216636831974d60e11b148061095257506001600160e01b031982166306e253b560e11b145b8061096d57506001600160e01b03198216635ee02cbf60e01b145b8061098857506001600160e01b0319821663034b690160e61b145b806109a357506001600160e01b03198216635c660f9b60e11b145b806109be57506001600160e01b03198216630126f2f360e61b145b806109cd57506109cd82612330565b92915050565b6060603680546109e290614178565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0e90614178565b8015610a5b5780601f10610a3057610100808354040283529160200191610a5b565b820191906000526020600020905b815481529060010190602001808311610a3e57829003601f168201915b5050505050905090565b600033610a73818585612365565b5060019392505050565b6001600160a01b038816600090815261013a602052604090205460609060ff16610aca57604051631fbef81160e21b81526001600160a01b038a1660048201526024015b60405180910390fd5b838214610aea57604051630a14dfb760e21b815260040160405180910390fd5b8167ffffffffffffffff811115610b0357610b036141b2565b604051908082528060200260200182016040528015610b2c578160200160208202803683370190505b506040805160a0810182526001600160a01b037f0000000000000000000000004bde5ef48fb211e914de3cb45506d1e533f49a91811682526065548116602083015230928201929092528a82166060820152908916608082015290915060005b83811015610cdd5760008b6001600160a01b031663aecc550a8a85898987818110610bb957610bb96141c8565b9050602002810190610bcb91906141de565b6040518463ffffffff1660e01b8152600401610be99392919061426e565b6020604051808303816000875af1158015610c08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2c9190614368565b90506000610c4a6001600160a01b0383166319a298e760e01b612489565b905080610c755760405163531f290560e11b81526001600160a01b038e166004820152602401610ac1565b81858481518110610c8857610c886141c8565b60200260200101906001600160a01b031690816001600160a01b031681525050610cca828a8a86818110610cbe57610cbe6141c8565b90506020020135611ab1565b505080610cd69061439b565b9050610b8c565b505098975050505050505050565b6001600160a01b038716600090815261013a602052604090205460609060ff16610d3357604051631fbef81160e21b81526001600160a01b0389166004820152602401610ac1565b6000610d4f6001600160a01b038a1663b4b1516760e01b612489565b905080610d7a5760405163531f290560e11b81526001600160a01b038a166004820152602401610ac1565b848314610d9a57604051630a14dfb760e21b815260040160405180910390fd5b8267ffffffffffffffff811115610db357610db36141b2565b604051908082528060200260200182016040528015610ddc578160200160208202803683370190505b506040805160a0810182526001600160a01b037f0000000000000000000000004bde5ef48fb211e914de3cb45506d1e533f49a9181168252606554811660208301523092820192909252600060608201819052918b1660808201529193505b84811015610f805760008b6001600160a01b031663b4b151678b858a8a87818110610e6857610e686141c8565b9050602002810190610e7a91906143b4565b6040518463ffffffff1660e01b8152600401610e98939291906143de565b6020604051808303816000875af1158015610eb7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610edb9190614368565b90506000610ef96001600160a01b0383166319a298e760e01b612489565b905080610f245760405163531f290560e11b81526001600160a01b038e166004820152602401610ac1565b81868481518110610f3757610f376141c8565b60200260200101906001600160a01b031690816001600160a01b031681525050610f6d828b8b86818110610cbe57610cbe6141c8565b505080610f799061439b565b9050610e3b565b505050979650505050505050565b600061013554610f9c61173f565b610fa691906144d0565b905090565b600033610fb98582856124a5565b610fc4858585612537565b60019150505b9392505050565b600082815260cd6020526040902060010154610fec816126e2565b610ff683836126ec565b505050565b60008061100661278e565b3361101160016127e0565b50600061101e82866128e1565b919550935090506000839003611035575050915091565b80610138600082825461104891906144e3565b90915550506001600160a01b03821660009081526101366020526040812080548592906110769084906144d0565b90915550611086905082846129e5565b60655461109d906001600160a01b03168386612a8c565b60408051600081526020810191829052906001600160a01b038416907f96bd1544577eb6c104cdc0a1e4eda89c64f8875c006dfda5baaef1aa5628b4b9906110ea908890859089906144f6565b60405180910390a2505050915091565b6001600160a01b03811633146111785760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608401610ac1565b6111828282612aef565b5050565b3360008181526034602090815260408083206001600160a01b0387168452909152812054909190610a7390829086906111c09087906144d0565b612365565b60006111cf612b72565b6001600160a01b038116600090815261013460205260408120600181018054939450909285929061120190849061454d565b909155505060408051848152600060208201526001600160a01b038416917fdabd725b6d0865b98c42345bb716aada43ac75fcb5b70d2d189bf7afad456d2e91015b60405180910390a2505050565b611259336119de565b611261612b7d565b565b60008060008061127c610131546001600160a01b031690565b90506001600160a01b0381166112a55760405163297d81a560e01b815260040160405180910390fd5b336001600160a01b038216146112d057604051632c3b4def60e21b8152336004820152602401610ac1565b60006112ec6001600160a01b038316635ee02cbf60e01b612489565b905080611317576040516320d6c2ad60e01b81526001600160a01b0383166004820152602401610ac1565b6000826001600160a01b0316633706c4da6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015611359573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137d9190614575565b90506000836001600160a01b03166375172a8b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113e39190614575565b90506000846001600160a01b0316631ba2f5316040518163ffffffff1660e01b81526004016020604051808303816000875af1158015611427573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144b9190614575565b9050816000036114675750600097889750879650945050505050565b6001600160a01b0385166000818152606760205260409020549061149290636831974d60e11b612489565b61149e5761149e61458e565b604051635cd9ef8160e01b81526004810184905286906001600160a01b03821690635cd9ef819060240160408051808303816000875af11580156114e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061150a91906145a4565b909a5097508161152f886001600160a01b031660009081526067602052604090205490565b61153991906144e3565b8a146115475761154761458e565b6115518584612bcf565b94508261155e868c6145c8565b61156891906145df565b98508989101561157a5761157a61458e565b60006115868b8b6144e3565b90506115928882612be5565b5050505050505050909192565b6000806115aa61278e565b60006115b4612b72565b905060006115c1826119e9565b5090506115ce8186612c37565b935083156116e6576001600160a01b03821660009081526101346020526040812080548692906115ff9084906144d0565b9250508190555083610135600082825461161991906144d0565b9091555050606554611635906001600160a01b03168386612c46565b604051635d5d461360e01b8152600481018590526001600160a01b03831690635d5d4613906024016020604051808303816000875af115801561167c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116a09190614575565b9250816001600160a01b03167fb741f30322e51134d94cb3c8e4d323dfbcfd60a7a86243f62faa4ae60528f8b0856040516116dd91815260200190565b60405180910390a25b5050915091565b60006109cd3383611d0a565b611702336119de565b6101328190556040518181527fcbfebec0d4837dbe12cf8045696140fec0f1ae16160c3474010c7ac91f4b74a2906020015b60405180910390a150565b6065546040516370a0823160e01b815230600482015260009182916001600160a01b03909116906370a0823190602401602060405180830381865afa15801561178c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117b09190614575565b606654909150808210156117c6576117c661458e565b6117d081836144e3565b9250505090565b6000806117e261278e565b60006117ed85612d62565b9050336117fa60016127e0565b506001600160a01b0381166000908152610137602052604081209061181e83612d71565b905061182c84828985612e32565b909650945084156118415761184183866129e5565b60a08101516001600160a01b03841660009081526101366020908152604090912082518155910151600190910155606081015161013555608081015161013855851561190557600085116118975761189761458e565b6118ab6001600160a01b0385168488612a8c565b60408051878152602081018790526bffffffffffffffffffffffff1960608b901b16916001600160a01b038616917fe39d5363f820fc9aad3f881a88f5aa05338eaa1cfe575250c49fc7ff5bf5eaa3910160405180910390a35b505050509250929050565b60008061191d84846128e1565b50909590945092505050565b6000611934336119de565b50606654611941816130a1565b606554611958906001600160a01b03168383612a8c565b816001600160a01b03167fc0819c13be868895eb93e40eaceb96de976442fa1d404e5c55f14bb65a8c489a8260405161199391815260200190565b60405180910390a2919050565b6119ca7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e63826130de565b50565b6119d6336119de565b611261613153565b6119ca6000826130de565b60008060006119f760685490565b610132546001600160a01b03861660009081526101336020526040902054919250611a2191612c37565b9150611a2d8183612c37565b6001600160a01b03851660009081526101346020908152604091829020825180840190935280548084526001909101549183019190915291945084935090611a76908490613190565b8151909350611a86908590613190565b9350611aa8611a9361173f565b6020830151611aa39087906131a6565b612c37565b93505050915091565b611aba336119a0565b8015611ac857611ac861278e565b6001600160a01b038216600090815261013360205260409020548114611182576000611b046001600160a01b0384166306e253b560e11b612489565b905080611b2f576040516332be158160e01b81526001600160a01b0384166004820152602401610ac1565b6000611b4b6001600160a01b03851663034b690160e61b612489565b9050808015611bcc5750306001600160a01b0316846001600160a01b031663d2da40406040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bc19190614368565b6001600160a01b0316145b611bf4576040516332be158160e01b81526001600160a01b0385166004820152602401610ac1565b6001600160a01b0384166000818152610133602052604090819020859055517f087334644551f4ef9c19d46c1dbbb3593f9f48d51f0fea493a43e312a652424890611c429086815260200190565b60405180910390a250505050565b6060603780546109e290614178565b3360008181526034602090815260408083206001600160a01b038716845290915281205490919083811015611ce45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610ac1565b611cf18286868403612365565b506001949350505050565b600033610a73818585612537565b6000611d1461278e565b611d1e60006127e0565b50816101386000828254611d3291906144d0565b9091555060009050611d42610f8e565b9050611d4f8484836131ed565b949350505050565b60008080611d64336119de565b611d7e6001600160a01b038516636831974d60e11b612489565b611da65760405163793463e360e01b81526001600160a01b0385166004820152602401610ac1565b611dc06001600160a01b038516630126f2f360e61b612489565b611de85760405163284e951160e21b81526001600160a01b0385166004820152602401610ac1565b611df260016127e0565b506000611dfe60685490565b9050611e2a7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6333610fd1565b611e348582611ab1565b611e5e7fd8aa0f3194971a2a116679f7c2090f6939c8d4e01a2a8d7e41d55e5351469e6333611fe4565b61013254611e6b826116f9565b6000869050806001600160a01b03166349bcbcc06040518163ffffffff1660e01b81526004016060604051808303816000875af1158015611eb0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ed49190614601565b91975095509350611ee4826116f9565b60408051878152602081018790529081018590526001600160a01b038816907f2b909767077de53708f0c9bf65c9ea6cfe4ffaf377981f178880e5eb307d81299060600160405180910390a25050509193909250565b6000611f4461278e565b838214611f645760405163ca3487f760e01b815260040160405180910390fd5b60005b84811015611fdb576000611fb9878784818110611f8657611f866141c8565b9050602002016020810190611f9b9190613f98565b868685818110611fad57611fad6141c8565b905060200201356117d7565b9150611fc7905081846144d0565b92505080611fd49061439b565b9050611f67565b50949350505050565b600082815260cd6020526040902060010154611fff816126e2565b610ff68383612aef565b6000612013612b72565b6040516370a0823160e01b815230600482015290915060009083906001600160a01b038416906370a0823190602401602060405180830381865afa15801561205f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120839190614575565b61208d91906144d0565b6001600160a01b03831660009081526101346020526040812080549293509190836120b95760006120ce565b836120c483886145c8565b6120ce91906145df565b90506001600160ff1b038711156120f857604051637756904960e01b815260040160405180910390fd5b6001600160ff1b0381111561210f5761210f61458e565b61211981836144e3565b8355612125818861462f565b836001016000828254612138919061454d565b9250508190555080610135600082825461215291906144e3565b909155505060408051888152602081018390526001600160a01b038716917fdabd725b6d0865b98c42345bb716aada43ac75fcb5b70d2d189bf7afad456d2e910160405180910390a26121a560006127e0565b5050505050505050565b6121b8336119de565b80156121c6576121c661278e565b60006121e26001600160a01b0384166357662a8560e11b612489565b90508061220d5760405163531f290560e11b81526001600160a01b0384166004820152602401610ac1565b6001600160a01b038316600090815261013a602052604090205460ff16151582151514610ff6576001600160a01b038316600081815261013a6020908152604091829020805460ff191686151590811790915591519182527f51228fedbb1530958ad763d83204397c34a21dc73a3525e68bdce060da2563609101611243565b612296336119de565b610139805470ffffffffffffffffff000000000000000019166801000000000000000067ffffffffffffffff851690810270ff00000000000000000000000000000000191691909117600160801b60ff8516908102919091179092556040805191825260208201929092527f9a4f996bbf9517a7375f9a68aa2965412bb9b95c247141192b8f8183d3db4405910160405180910390a15050565b60006001600160e01b03198216637965db0b60e01b14806109cd57506301ffc9a760e01b6001600160e01b03198316146109cd565b6001600160a01b0383166123c75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610ac1565b6001600160a01b0382166124285760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610ac1565b6001600160a01b0383811660008181526034602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006124948361338b565b8015610fca5750610fca83836133be565b6001600160a01b03838116600090815260346020908152604080832093861683529290522054600019811461253157818110156125245760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610ac1565b6125318484848403612365565b50505050565b6001600160a01b03831661259b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610ac1565b6001600160a01b0382166125fd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610ac1565b6001600160a01b038316600090815260336020526040902054818110156126755760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610ac1565b6001600160a01b0380851660008181526033602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906126d59086815260200190565b60405180910390a3612531565b6119ca81336130de565b600082815260cd602090815260408083206001600160a01b038516845290915290205460ff1661118257600082815260cd602090815260408083206001600160a01b03851684529091529020805460ff1916600117905561274a3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60ff805416156112615760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152606401610ac1565b6101395460009067ffffffffffffffff80821691680100000000000000009004168315801561281757508061281583436144e3565b105b15612823575050919050565b610139805467ffffffffffffffff19164367ffffffffffffffff16179055600061284b610f8e565b905061013854811161285f57505050919050565b6000610138548261287091906144e3565b61013954909150612899906101009061289390600160801b900460ff16846145c8565b90613447565b9450851580156128af5750846128ad61173f565b105b156128c05750600095945050505050565b6128c98561347e565b6128d385836144e3565b610138555092949350505050565b6000806000806128ef61173f565b905060006128fb610f8e565b90508060000361291e5760405163ee7b33a760e01b815260040160405180910390fd5b6001600160a01b03871660008181526101366020908152604080832081518083018352815480825260019092015481850152948452603390925282205461296591906144d0565b90506129788189846000015187876134f8565b95508560000361298b57505050506129de565b600061299660355490565b610138549091506129a8888387613569565b98506129b5888383613569565b9650858911156129c7576129c761458e565b808711156129d7576129d761458e565b5050505050505b9250925092565b80600003612a06576040516302075cc160e41b815260040160405180910390fd5b6001600160a01b0382166000908152603360209081526040808320546067909252822054612a36919084906135a7565b6001600160a01b038416600090815260676020526040812080549293508392909190612a639084906144e3565b925050819055508060686000828254612a7c91906144e3565b90915550610ff6905083836135f4565b6040516001600160a01b038316602482015260448101829052610ff690849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152613728565b600082815260cd602090815260408083206001600160a01b038516845290915290205460ff161561118257600082815260cd602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000610fa633612d62565b612b856137fa565b60ff805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000818311612bde5781610fca565b5090919050565b6001600160a01b038216600090815260676020526040902054612c099082906144d0565b6001600160a01b038316600090815260676020526040902055606854612c309082906144d0565b6068555050565b6000818310612bde5781610fca565b801580612cc05750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015612c9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cbe9190614575565b155b612d325760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152608401610ac1565b6040516001600160a01b038316602482015260448101829052610ff690849063095ea7b360e01b90606401612ab8565b6000612d6d8261384b565b5090565b612d79613c9d565b6001600160a01b03821660009081526033602052604081205490612d9b610f8e565b905080600003612dbe5760405163ee7b33a760e01b815260040160405180910390fd5b6001600160a01b03841660009081526101366020908152604091829020825180840184528154815260019091015481830152825160c0810190935284835291908101612e0960355490565b815260208101939093526101355460408401526101385460608401526080909201529392505050565b6000808460000151841115612e5a576040516302075cc160e41b815260040160405180910390fd5b6001600160a01b0386166000908152610134602052604081205490819003612e825750613098565b6000612e9c876040015183896020015161289391906145c8565b9050612ee88760a00151602001518860000151612eb991906144d0565b612ec38884612c37565b6001600160a01b038b1660009081526020899052604090205460608b015186906134f8565b925082600003612ef9575050613098565b6000612f0e8489602001518a60400151613569565b9050612f1a8184612c37565b90506000612f31828a604001518b60800151613569565b9050848960a00151602001818151612f4991906144d0565b9052506001600160a01b038a1660009081526020889052604081208054879290612f749084906144d0565b90915550506040516370a0823160e01b81523060048201526000906001600160a01b038c16906370a0823190602401602060405180830381865afa158015612fc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fe49190614575565b905084612ff184836145c8565b612ffb91906145df565b9650858a60000181815161300f91906144e3565b90525060208a0180518791906130269083906144e3565b90525060408a01805184919061303d9083906144e3565b90525060608a0180518491906130549083906144e3565b90525060808a01805183919061306b9083906144e3565b90525061307883866144e3565b6001600160a01b038c166000908152610134602052604090205550505050505b94509492505050565b6066548111156130c45760405163cd45232960e01b815260040160405180910390fd5b80606660008282546130d691906144e3565b909155505050565b600082815260cd602090815260408083206001600160a01b038516845290915290205460ff166111825761311181613890565b61311c8360206138a2565b60405160200161312d929190614656565b60408051601f198184030181529082905262461bcd60e51b8252610ac191600401613d3b565b61315b61278e565b60ff805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612bb23390565b60008183116131a0576000610fca565b50900390565b6000808212156131cf5760008290038084116131c35760006131c7565b8084035b9150506109cd565b818360001903116131e2576000196131e6565b8183015b90506109cd565b60008260000361321057604051632ec86ff560e21b815260040160405180910390fd5b6132238361321d60355490565b84613a4b565b6001600160a01b0385166000908152606760205260408120549192509061324b9085906144d0565b90506fffffffffffffffffffffffffffffffff81111561327e57604051637756904960e01b815260040160405180910390fd5b6001600160a01b0385166000908152606760205260408120829055606880548692906132ab9084906144d0565b909155505060655433906132ca906001600160a01b0316823088613a91565b6001600160a01b0386166000908152603360205260408120546132ee9085906144d0565b90506fffffffffffffffffffffffffffffffff81111561332157604051637756904960e01b815260040160405180910390fd5b61332b8785613ac9565b866001600160a01b0316826001600160a01b03167fdcde3dce73cebc28787eaab2e2b0474ab6f06f519882e7ee490a3f57e46abed38887604051613379929190918252602082015260400190565b60405180910390a35050509392505050565b600061339e826301ffc9a760e01b6133be565b80156109cd57506133b7826001600160e01b03196133be565b1592915050565b604080516001600160e01b03198316602480830191909152825180830390910181526044909101909152602080820180516001600160e01b03166301ffc9a760e01b178152825160009392849283928392918391908a617530fa92503d91506000519050828015613430575060208210155b801561343c5750600081115b979650505050505050565b60008215613475578161345b6001856144e3565b61346591906145df565b6134709060016144d0565b610fca565b50600092915050565b61348661173f565b8111156134a6576040516311d681c960e21b815260040160405180910390fd5b806000036134b15750565b80606660008282546134c391906144d0565b90915550506040518181527f7545428d48c07276e600a1b3c9689be2420624a568454764744bed2ed4785b5e90602001611734565b6000806135138561350d85612893888c6145c8565b90613190565b905061351f8682612c37565b9150811561355f5761353187856145c8565b83600161353e85896144d0565b61354891906144e3565b61355291906145c8565b1061355f5761355f61458e565b5095945050505050565b60008284111561358c576040516302075cc160e41b815260040160405180910390fd5b8315610fca578261359d85846145c8565b611d4f91906145df565b6000838311156135ca576040516302075cc160e41b815260040160405180910390fd5b83156135ea57836135db84846145c8565b6135e591906145df565b611d4f565b6000949350505050565b6001600160a01b0382166136545760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610ac1565b6001600160a01b038216600090815260336020526040902054818110156136c85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610ac1565b6001600160a01b03831660008181526033602090815260408083208686039055603580548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600061377d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316613b8a9092919063ffffffff16565b805190915015610ff6578080602001905181019061379b91906146d7565b610ff65760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610ac1565b60ff8054166112615760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610ac1565b6001600160a01b038116600090815261013360205260409020546000036119ca5760405163a0adfe6b60e01b81526001600160a01b0382166004820152602401610ac1565b60606109cd6001600160a01b03831660145b606060006138b18360026145c8565b6138bc9060026144d0565b67ffffffffffffffff8111156138d4576138d46141b2565b6040519080825280601f01601f1916602001820160405280156138fe576020820181803683370190505b509050600360fc1b81600081518110613919576139196141c8565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613948576139486141c8565b60200101906001600160f81b031916908160001a905350600061396c8460026145c8565b6139779060016144d0565b90505b60018111156139fc577f303132333435363738396162636465660000000000000000000000000000000085600f16601081106139b8576139b86141c8565b1a60f81b8282815181106139ce576139ce6141c8565b60200101906001600160f81b031916908160001a90535060049490941c936139f5816146f4565b905061397a565b508315610fca5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610ac1565b600081613a578161439b565b9250613a6790506004600a6147ef565b613a7190846144d0565b925060008311613a8357613a8361458e565b611d4f8261289385876145c8565b6040516001600160a01b03808516602483015283166044820152606481018290526125319085906323b872dd60e01b90608401612ab8565b6001600160a01b038216613b1f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610ac1565b8060356000828254613b3191906144d0565b90915550506001600160a01b0382166000818152603360209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6060611d4f848460008585600080866001600160a01b03168587604051613bb191906147fb565b60006040518083038185875af1925050503d8060008114613bee576040519150601f19603f3d011682016040523d82523d6000602084013e613bf3565b606091505b509150915061343c8783838760608315613c6e578251600003613c67576001600160a01b0385163b613c675760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610ac1565b5081611d4f565b611d4f8383815115613c835781518083602001fd5b8060405162461bcd60e51b8152600401610ac19190613d3b565b6040518060c001604052806000815260200160008152602001600081526020016000815260200160008152602001613ce8604051806040016040528060008152602001600081525090565b905290565b600060208284031215613cff57600080fd5b81356001600160e01b031981168114610fca57600080fd5b60005b83811015613d32578181015183820152602001613d1a565b50506000910152565b6020815260008251806020840152613d5a816040850160208701613d17565b601f01601f19169190910160400192915050565b6001600160a01b03811681146119ca57600080fd5b60008060408385031215613d9657600080fd5b8235613da181613d6e565b946020939093013593505050565b60008083601f840112613dc157600080fd5b50813567ffffffffffffffff811115613dd957600080fd5b6020830191508360208260051b8501011115613df457600080fd5b9250929050565b60008060008060008060008060c0898b031215613e1757600080fd5b8835613e2281613d6e565b97506020890135613e3281613d6e565b96506040890135613e4281613d6e565b955060608901359450608089013567ffffffffffffffff80821115613e6657600080fd5b613e728c838d01613daf565b909650945060a08b0135915080821115613e8b57600080fd5b50613e988b828c01613daf565b999c989b5096995094979396929594505050565b6020808252825182820181905260009190848201906040850190845b81811015613eed5783516001600160a01b031683529284019291840191600101613ec8565b50909695505050505050565b600080600080600080600060a0888a031215613f1457600080fd5b8735613f1f81613d6e565b96506020880135613f2f81613d6e565b955060408801359450606088013567ffffffffffffffff80821115613f5357600080fd5b613f5f8b838c01613daf565b909650945060808a0135915080821115613f7857600080fd5b50613f858a828b01613daf565b989b979a50959850939692959293505050565b600060208284031215613faa57600080fd5b8135610fca81613d6e565b600080600060608486031215613fca57600080fd5b8335613fd581613d6e565b92506020840135613fe581613d6e565b929592945050506040919091013590565b60006020828403121561400857600080fd5b5035919050565b6000806040838503121561402257600080fd5b82359150602083013561403481613d6e565b809150509250929050565b6000806000806040858703121561405557600080fd5b843567ffffffffffffffff8082111561406d57600080fd5b61407988838901613daf565b9096509450602087013591508082111561409257600080fd5b5061409f87828801613daf565b95989497509550505050565b600080604083850312156140be57600080fd5b50508035926020909101359150565b600080604083850312156140e057600080fd5b82356140eb81613d6e565b9150602083013561403481613d6e565b80151581146119ca57600080fd5b6000806040838503121561411c57600080fd5b823561412781613d6e565b91506020830135614034816140fb565b6000806040838503121561414a57600080fd5b823567ffffffffffffffff8116811461416257600080fd5b9150602083013560ff8116811461403457600080fd5b600181811c9082168061418c57607f821691505b6020821081036141ac57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60008235607e198336030181126141f457600080fd5b9190910192915050565b81835260007f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83111561423057600080fd5b8260051b80836020870137939093016020019392505050565b80356fffffffffffffffffffffffffffffffff8116811461426957600080fd5b919050565b8381526142bc60208201846001600160a01b03808251168352806020830151166020840152806040830151166040840152806060830151166060840152806080830151166080840152505050565b60e060c0820152813560e082015260006020830135601e198436030181126142e357600080fd5b830160208101903567ffffffffffffffff81111561430057600080fd5b8060051b360382131561431257600080fd5b6080610100850152614329610160850182846141fe565b91505061433860408501614249565b6fffffffffffffffffffffffffffffffff1661012084015260609390930135610140909201919091525092915050565b60006020828403121561437a57600080fd5b8151610fca81613d6e565b634e487b7160e01b600052601160045260246000fd5b6000600182016143ad576143ad614385565b5060010190565b60008235605e198336030181126141f457600080fd5b803563ffffffff8116811461426957600080fd5b83815261442c60208201846001600160a01b03808251168352806020830151166020840152806040830151166040840152806060830151166060840152806080830151166080840152505050565b60e060c0820152813560e082015260006020830135601e1984360301811261445357600080fd5b830160208101903567ffffffffffffffff81111561447057600080fd5b80360382131561447f57600080fd5b60606101008501528061014085015261016081838287013760008183870101526144ab604087016143ca565b63ffffffff16610120860152601f91909101601f191690930190920195945050505050565b808201808211156109cd576109cd614385565b818103818111156109cd576109cd614385565b6000606082018583526020606081850152818651808452608086019150828801935060005b818110156145375784518352938301939183019160010161451b565b5050809350505050826040830152949350505050565b808201828112600083128015821682158216171561456d5761456d614385565b505092915050565b60006020828403121561458757600080fd5b5051919050565b634e487b7160e01b600052600160045260246000fd5b600080604083850312156145b757600080fd5b505080516020909101519092909150565b80820281158282048414176109cd576109cd614385565b6000826145fc57634e487b7160e01b600052601260045260246000fd5b500490565b60008060006060848603121561461657600080fd5b8351925060208401519150604084015190509250925092565b818103600083128015838313168383128216171561464f5761464f614385565b5092915050565b7f416363657373436f6e74726f6c3a206163636f756e742000000000000000000081526000835161468e816017850160208801613d17565b7f206973206d697373696e6720726f6c652000000000000000000000000000000060179184019182015283516146cb816028840160208801613d17565b01602801949350505050565b6000602082840312156146e957600080fd5b8151610fca816140fb565b60008161470357614703614385565b506000190190565b600181815b8085111561474657816000190482111561472c5761472c614385565b8085161561473957918102915b93841c9390800290614710565b509250929050565b60008261475d575060016109cd565b8161476a575060006109cd565b8160018114614780576002811461478a576147a6565b60019150506109cd565b60ff84111561479b5761479b614385565b50506001821b6109cd565b5060208310610133831016604e8410600b84101617156147c9575081810a6109cd565b6147d3838361470b565b80600019048211156147e7576147e7614385565b029392505050565b6000610fca838361474e565b600082516141f4818460208701613d1756fea264697066735822122064f9a9add1e88fb1402790853a21c06c2e535a3557126789980cfd44a9d5bf4964736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000004bde5ef48fb211e914de3cb45506d1e533f49a910000000000000000000000006a313a0e1130810f4488c175d78472e165e0004e000000000000000000000000d14d2f62949e83708af8633ed555752923c9b9fe0000000000000000000000004720cda43b2bfb177d42a99538d01362543f0a670000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : params (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [1] : prevPool (address): 0x0000000000000000000000000000000000000000
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000004bde5ef48fb211e914de3cb45506d1e533f49a91
Arg [1] : 0000000000000000000000006a313a0e1130810f4488c175d78472e165e0004e
Arg [2] : 000000000000000000000000d14d2f62949e83708af8633ed555752923c9b9fe
Arg [3] : 0000000000000000000000004720cda43b2bfb177d42a99538d01362543f0a67
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ 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.