Source Code
Overview
POL Balance
POL Value
$0.00| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
Latest 1 internal transaction
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 49699473 | 847 days ago | Contract Creation | 0 POL |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
AssimilatorV3
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
pragma solidity ^0.8.13;
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/math/Math.sol";
import "../lib/ABDKMath64x64.sol";
import "../interfaces/IAssimilator.sol";
import "../interfaces/IOracle.sol";
import "../interfaces/IWeth.sol";
contract AssimilatorV3 is IAssimilator {
using ABDKMath64x64 for int128;
using ABDKMath64x64 for uint256;
using SafeMath for uint256;
using SafeERC20 for IERC20Metadata;
IERC20Metadata public immutable pairToken;
IOracle public immutable oracle;
IERC20Metadata public immutable token;
uint256 public immutable oracleDecimals;
uint256 public immutable tokenDecimals;
uint256 public immutable pairTokenDecimals;
address public immutable wETH;
// solhint-disable-next-line
constructor(
address _wETH,
address _pairToken,
IOracle _oracle,
address _token,
uint256 _tokenDecimals,
uint256 _oracleDecimals
) {
wETH = _wETH;
oracle = _oracle;
token = IERC20Metadata(_token);
oracleDecimals = _oracleDecimals;
tokenDecimals = _tokenDecimals;
pairToken = IERC20Metadata(_pairToken);
pairTokenDecimals = pairToken.decimals();
}
function underlyingToken() external view override returns (address) {
return address(token);
}
function getWeth() external view override returns (address) {
return wETH;
}
function getRate() public view override returns (uint256) {
(, int256 price,,,) = oracle.latestRoundData();
require(price >= 0, "invalid price oracle");
return uint256(price);
}
// takes raw eurs amount, transfers it in, calculates corresponding numeraire amount and returns it
function intakeRawAndGetBalance(uint256 _amount)
external
payable
override
returns (int128 amount_, int128 balance_)
{
require(_amount > 0, "zero amount!");
uint256 balanceBefore = token.balanceOf(address(this));
token.safeTransferFrom(msg.sender, address(this), _amount);
uint256 balanceAfter = token.balanceOf(address(this));
uint256 diff = _amount - (balanceAfter - balanceBefore);
if (diff > 0) {
intakeMoreFromFoT(_amount, diff);
}
uint256 _balance = token.balanceOf(address(this));
uint256 _rate = getRate();
balance_ = ((_balance * _rate) / 10 ** oracleDecimals).divu(10 ** tokenDecimals);
amount_ = ((_amount * _rate) / 10 ** oracleDecimals).divu(10 ** tokenDecimals);
}
// takes raw eurs amount, transfers it in, calculates corresponding numeraire amount and returns it
function intakeRaw(uint256 _amount) external payable override returns (int128 amount_) {
require(_amount > 0, "zero amount!");
uint256 balanceBefore = token.balanceOf(address(this));
token.safeTransferFrom(msg.sender, address(this), _amount);
uint256 balanceAfter = token.balanceOf(address(this));
uint256 diff = _amount - (balanceAfter - balanceBefore);
if (diff > 0) {
intakeMoreFromFoT(_amount, diff);
}
uint256 _rate = getRate();
amount_ = ((_amount * _rate) / 10 ** oracleDecimals).divu(10 ** tokenDecimals);
}
// takes a numeraire amount, calculates the raw amount of eurs, tr ansfers it in and returns the corresponding raw amount
function intakeNumeraire(int128 _amount) external payable override returns (uint256 amount_) {
uint256 _rate = getRate();
// improve precision
amount_ = Math.ceilDiv(_amount.mulu(10 ** (tokenDecimals + oracleDecimals + 18)), _rate * 1e18);
require(amount_ > 0, "zero amount!");
uint256 balanceBefore = token.balanceOf(address(this));
token.safeTransferFrom(msg.sender, address(this), amount_);
uint256 balanceAfter = token.balanceOf(address(this));
uint256 diff = amount_ - (balanceAfter - balanceBefore);
if (diff > 0) intakeMoreFromFoT(amount_, diff);
}
// takes a numeraire amount, calculates the raw amount of eurs, transfers it in and returns the corresponding raw amount
function intakeNumeraireLPRatio(
uint256 _minBaseAmount,
uint256 _maxBaseAmount,
uint256 _baseAmount,
uint256 _minpairTokenAmount,
uint256 _maxpairTokenAmount,
uint256 _quoteAmount,
address token0
) external payable override returns (uint256 amount_) {
if (token0 == address(token)) {
amount_ = _baseAmount;
} else {
amount_ = _quoteAmount;
}
require(amount_ > 0, "zero amount!");
if (token0 == address(token)) {
require(amount_ > _minBaseAmount && amount_ <= _maxBaseAmount, "Assimilator/LP Ratio imbalanced!");
} else {
require(amount_ > _minpairTokenAmount && amount_ <= _maxpairTokenAmount, "Assimilator/LP Ratio imbalanced!");
}
uint256 balanceBefore = token.balanceOf(address(this));
token.safeTransferFrom(msg.sender, address(this), amount_);
uint256 balanceAfter = token.balanceOf(address(this));
uint256 diff = amount_ - (balanceAfter - balanceBefore);
if (diff > 0) intakeMoreFromFoT(amount_, diff);
}
function intakeMoreFromFoT(uint256 amount_, uint256 diff) internal {
require(amount_ > 0, "zero amount!");
// handle FoT token
uint256 feePercentage = diff.mul(1e5).div(amount_).add(1);
uint256 additionalIntakeAmt = (diff * 1e5) / (1e5 - feePercentage);
token.safeTransferFrom(msg.sender, address(this), additionalIntakeAmt);
}
// takes a raw amount of eurs and transfers it out, returns numeraire value of the raw amount
function outputRawAndGetBalance(address _dst, uint256 _amount)
external
override
returns (int128 amount_, int128 balance_)
{
require(_amount > 0, "zero amount!");
uint256 _rate = getRate();
token.safeTransfer(_dst, _amount);
uint256 _balance = token.balanceOf(address(this));
amount_ = ((_amount * _rate)).divu(10 ** (tokenDecimals + oracleDecimals));
balance_ = ((_balance * _rate)).divu(10 ** (tokenDecimals + oracleDecimals));
}
// takes a raw amount of eurs and transfers it out, returns numeraire value of the raw amount
function outputRaw(address _dst, uint256 _amount) external override returns (int128 amount_) {
require(_amount > 0, "zero amount!");
uint256 _rate = getRate();
token.safeTransfer(_dst, _amount);
amount_ = ((_amount * _rate)).divu(10 ** (tokenDecimals + oracleDecimals));
}
// takes a numeraire value of eurs, figures out the raw amount, transfers raw amount out, and returns raw amount
function outputNumeraire(address _dst, int128 _amount, bool _toETH)
external
payable
override
returns (uint256 amount_)
{
uint256 _rate = getRate();
amount_ = Math.ceilDiv(_amount.mulu(10 ** (tokenDecimals + oracleDecimals + 18)), _rate * 1e18);
require(amount_ > 0, "zero amount!");
if (_toETH) {
IWETH(wETH).withdraw(amount_);
(bool success,) = payable(_dst).call{value: amount_}("");
require(success, "Assimilator/Transfer ETH Failed");
} else {
token.safeTransfer(_dst, amount_);
}
}
// takes a numeraire amount and returns the raw amount
function viewRawAmount(int128 _amount) external view override returns (uint256 amount_) {
uint256 _rate = getRate();
// improve precision
amount_ = Math.ceilDiv(_amount.mulu(10 ** (tokenDecimals + oracleDecimals + 18)), _rate * 1e18);
}
function viewRawAmountLPRatio(uint256 _baseWeight, uint256 _pairTokenWeight, address _addr, int128 _amount)
external
view
override
returns (uint256 amount_)
{
uint256 _tokenBal = token.balanceOf(_addr);
if (_tokenBal <= 0) return 0;
_tokenBal = _tokenBal.mul(10 ** (18 + pairTokenDecimals)).div(_baseWeight);
uint256 _pairTokenBal = pairToken.balanceOf(_addr).mul(10 ** (18 + tokenDecimals)).div(_pairTokenWeight);
// Rate is in pair token decimals
uint256 _rate = _pairTokenBal.mul(1e6).div(_tokenBal);
amount_ = Math.ceilDiv(_amount.mulu(10 ** tokenDecimals * 1e6 * 1e18), _rate * 1e18);
}
// takes a raw amount and returns the numeraire amount
function viewNumeraireAmount(uint256 _amount) external view override returns (int128 amount_) {
uint256 _rate = getRate();
amount_ = ((_amount * _rate) / 10 ** oracleDecimals).divu(10 ** tokenDecimals);
}
// views the numeraire value of the current balance of the reserve, in this case eurs
function viewNumeraireBalance(address _addr) external view override returns (int128 balance_) {
uint256 _rate = getRate();
uint256 _balance = token.balanceOf(_addr);
if (_balance <= 0) return ABDKMath64x64.fromUInt(0);
balance_ = ((_balance * _rate) / 10 ** oracleDecimals).divu(10 ** tokenDecimals);
}
// views the numeraire value of the current balance of the reserve, in this case eurs
function viewNumeraireAmountAndBalance(address _addr, uint256 _amount)
external
view
override
returns (int128 amount_, int128 balance_)
{
uint256 _rate = getRate();
amount_ = ((_amount * _rate) / 10 ** oracleDecimals).divu(10 ** tokenDecimals);
uint256 _balance = token.balanceOf(_addr);
balance_ = ((_balance * _rate) / 10 ** oracleDecimals).divu(10 ** tokenDecimals);
}
// views the numeraire value of the current balance of the reserve, in this case eurs
// instead of calculating with chainlink's "rate" it'll be determined by the existing
// token ratio. This is in here to prevent LPs from losing out on future oracle price updates
function viewNumeraireBalanceLPRatio(uint256 _baseWeight, uint256 _pairTokenWeight, address _addr)
external
view
override
returns (int128 balance_)
{
uint256 _tokenBal = token.balanceOf(_addr);
if (_tokenBal <= 0) return ABDKMath64x64.fromUInt(0);
uint256 _pairTokenBal = pairToken.balanceOf(_addr).mul(1e18).div(_pairTokenWeight);
// Rate is in 1e6
uint256 _rate = _pairTokenBal.mul(1e18).div(_tokenBal.mul(1e18).div(_baseWeight));
balance_ = ((_tokenBal * _rate) / 10 ** pairTokenDecimals).divu(1e18);
}
function transferFee(int128 _amount, address _treasury) external payable override {
uint256 _rate = getRate();
if (_amount < 0) _amount = -(_amount);
uint256 amount = _amount.mulu(10 ** (tokenDecimals + oracleDecimals + 18)) / (_rate * 1e18);
token.safeTransfer(_treasury, amount);
}
}// 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/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 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.6.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}// 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, "Math: mulDiv overflow");
///////////////////////////////////////////////
// 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 256, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
}
}
}// SPDX-License-Identifier: BSD-4-Clause /* * ABDK Math 64.64 Smart Contract Library. Copyright © 2019 by ABDK Consulting. * Author: Mikhail Vladimirov <[email protected]> */ pragma solidity ^0.8.13; /** * Smart contract library of mathematical functions operating with signed * 64.64-bit fixed point numbers. Signed 64.64-bit fixed point number is * basically a simple fraction whose numerator is signed 128-bit integer and * denominator is 2^64. As long as denominator is always the same, there is no * need to store it, thus in Solidity signed 64.64-bit fixed point numbers are * represented by int128 type holding only the numerator. */ library ABDKMath64x64 { /* * Minimum value signed 64.64-bit fixed point number may have. */ int128 private constant MIN_64x64 = -0x80000000000000000000000000000000; /* * Maximum value signed 64.64-bit fixed point number may have. */ int128 private constant MAX_64x64 = 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF; /** * Convert signed 256-bit integer number into signed 64.64-bit fixed point * number. Revert on overflow. * * @param x signed 256-bit integer number * @return signed 64.64-bit fixed point number */ function fromInt(int256 x) internal pure returns (int128) { unchecked { require(x >= -0x8000000000000000 && x <= 0x7FFFFFFFFFFFFFFF); return int128(x << 64); } } /** * Convert signed 64.64 fixed point number into signed 64-bit integer number * rounding down. * * @param x signed 64.64-bit fixed point number * @return signed 64-bit integer number */ function toInt(int128 x) internal pure returns (int64) { unchecked { return int64(x >> 64); } } /** * Convert unsigned 256-bit integer number into signed 64.64-bit fixed point * number. Revert on overflow. * * @param x unsigned 256-bit integer number * @return signed 64.64-bit fixed point number */ function fromUInt(uint256 x) internal pure returns (int128) { unchecked { require(x <= 0x7FFFFFFFFFFFFFFF); return int128(int256(x << 64)); } } /** * Convert signed 64.64 fixed point number into unsigned 64-bit integer * number rounding down. Revert on underflow. * * @param x signed 64.64-bit fixed point number * @return unsigned 64-bit integer number */ function toUInt(int128 x) internal pure returns (uint64) { unchecked { require(x >= 0); return uint64(uint128(x >> 64)); } } /** * Convert signed 128.128 fixed point number into signed 64.64-bit fixed point * number rounding down. Revert on overflow. * * @param x signed 128.128-bin fixed point number * @return signed 64.64-bit fixed point number */ function from128x128(int256 x) internal pure returns (int128) { unchecked { int256 result = x >> 64; require(result >= MIN_64x64 && result <= MAX_64x64); return int128(result); } } /** * Convert signed 64.64 fixed point number into signed 128.128 fixed point * number. * * @param x signed 64.64-bit fixed point number * @return signed 128.128 fixed point number */ function to128x128(int128 x) internal pure returns (int256) { unchecked { return int256(x) << 64; } } /** * Calculate x + y. Revert on overflow. * * @param x signed 64.64-bit fixed point number * @param y signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function add(int128 x, int128 y) internal pure returns (int128) { unchecked { int256 result = int256(x) + y; require(result >= MIN_64x64 && result <= MAX_64x64); return int128(result); } } /** * Calculate x - y. Revert on overflow. * * @param x signed 64.64-bit fixed point number * @param y signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function sub(int128 x, int128 y) internal pure returns (int128) { unchecked { int256 result = int256(x) - y; require(result >= MIN_64x64 && result <= MAX_64x64); return int128(result); } } /** * Calculate x * y rounding down. Revert on overflow. * * @param x signed 64.64-bit fixed point number * @param y signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function mul(int128 x, int128 y) internal pure returns (int128) { unchecked { int256 result = int256(x) * y >> 64; require(result >= MIN_64x64 && result <= MAX_64x64); return int128(result); } } /** * Calculate x * y rounding towards zero, where x is signed 64.64 fixed point * number and y is signed 256-bit integer number. Revert on overflow. * * @param x signed 64.64 fixed point number * @param y signed 256-bit integer number * @return signed 256-bit integer number */ function muli(int128 x, int256 y) internal pure returns (int256) { unchecked { if (x == MIN_64x64) { require( y >= -0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF && y <= 0x1000000000000000000000000000000000000000000000000 ); return -y << 63; } else { bool negativeResult = false; if (x < 0) { x = -x; negativeResult = true; } if (y < 0) { y = -y; // We rely on overflow behavior here negativeResult = !negativeResult; } uint256 absoluteResult = mulu(x, uint256(y)); if (negativeResult) { require(absoluteResult <= 0x8000000000000000000000000000000000000000000000000000000000000000); return -int256(absoluteResult); // We rely on overflow behavior here } else { require(absoluteResult <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF); return int256(absoluteResult); } } } } /** * Calculate x * y rounding down, where x is signed 64.64 fixed point number * and y is unsigned 256-bit integer number. Revert on overflow. * * @param x signed 64.64 fixed point number * @param y unsigned 256-bit integer number * @return unsigned 256-bit integer number */ function mulu(int128 x, uint256 y) internal pure returns (uint256) { unchecked { if (y == 0) return 0; require(x >= 0); uint256 lo = (uint256(int256(x)) * (y & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)) >> 64; uint256 hi = uint256(int256(x)) * (y >> 128); require(hi <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF); hi <<= 64; require(hi <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF - lo); return hi + lo; } } /** * Calculate x / y rounding towards zero. Revert on overflow or when y is * zero. * * @param x signed 64.64-bit fixed point number * @param y signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function div(int128 x, int128 y) internal pure returns (int128) { unchecked { require(y != 0); int256 result = (int256(x) << 64) / y; require(result >= MIN_64x64 && result <= MAX_64x64); return int128(result); } } /** * Calculate x / y rounding towards zero, where x and y are signed 256-bit * integer numbers. Revert on overflow or when y is zero. * * @param x signed 256-bit integer number * @param y signed 256-bit integer number * @return signed 64.64-bit fixed point number */ function divi(int256 x, int256 y) internal pure returns (int128) { unchecked { require(y != 0); bool negativeResult = false; if (x < 0) { x = -x; // We rely on overflow behavior here negativeResult = true; } if (y < 0) { y = -y; // We rely on overflow behavior here negativeResult = !negativeResult; } uint128 absoluteResult = divuu(uint256(x), uint256(y)); if (negativeResult) { require(absoluteResult <= 0x80000000000000000000000000000000); return -int128(absoluteResult); // We rely on overflow behavior here } else { require(absoluteResult <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF); return int128(absoluteResult); // We rely on overflow behavior here } } } /** * Calculate x / y rounding towards zero, where x and y are unsigned 256-bit * integer numbers. Revert on overflow or when y is zero. * * @param x unsigned 256-bit integer number * @param y unsigned 256-bit integer number * @return signed 64.64-bit fixed point number */ function divu(uint256 x, uint256 y) internal pure returns (int128) { unchecked { require(y != 0); uint128 result = divuu(x, y); require(result <= uint128(MAX_64x64)); return int128(result); } } /** * Calculate -x. Revert on overflow. * * @param x signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function neg(int128 x) internal pure returns (int128) { unchecked { require(x != MIN_64x64); return -x; } } /** * Calculate |x|. Revert on overflow. * * @param x signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function abs(int128 x) internal pure returns (int128) { unchecked { require(x != MIN_64x64); return x < 0 ? -x : x; } } /** * Calculate 1 / x rounding towards zero. Revert on overflow or when x is * zero. * * @param x signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function inv(int128 x) internal pure returns (int128) { unchecked { require(x != 0); int256 result = int256(0x100000000000000000000000000000000) / x; require(result >= MIN_64x64 && result <= MAX_64x64); return int128(result); } } /** * Calculate arithmetics average of x and y, i.e. (x + y) / 2 rounding down. * * @param x signed 64.64-bit fixed point number * @param y signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function avg(int128 x, int128 y) internal pure returns (int128) { unchecked { return int128((int256(x) + int256(y)) >> 1); } } /** * Calculate geometric average of x and y, i.e. sqrt (x * y) rounding down. * Revert on overflow or in case x * y is negative. * * @param x signed 64.64-bit fixed point number * @param y signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function gavg(int128 x, int128 y) internal pure returns (int128) { unchecked { int256 m = int256(x) * int256(y); require(m >= 0); require(m < 0x4000000000000000000000000000000000000000000000000000000000000000); return int128(sqrtu(uint256(m))); } } /** * Calculate x^y assuming 0^0 is 1, where x is signed 64.64 fixed point number * and y is unsigned 256-bit integer number. Revert on overflow. * * @param x signed 64.64-bit fixed point number * @param y uint256 value * @return signed 64.64-bit fixed point number */ function pow(int128 x, uint256 y) internal pure returns (int128) { unchecked { bool negative = x < 0 && y & 1 == 1; uint256 absX = uint128(x < 0 ? -x : x); uint256 absResult; absResult = 0x100000000000000000000000000000000; if (absX <= 0x10000000000000000) { absX <<= 63; while (y != 0) { if (y & 0x1 != 0) { absResult = absResult * absX >> 127; } absX = absX * absX >> 127; if (y & 0x2 != 0) { absResult = absResult * absX >> 127; } absX = absX * absX >> 127; if (y & 0x4 != 0) { absResult = absResult * absX >> 127; } absX = absX * absX >> 127; if (y & 0x8 != 0) { absResult = absResult * absX >> 127; } absX = absX * absX >> 127; y >>= 4; } absResult >>= 64; } else { uint256 absXShift = 63; if (absX < 0x1000000000000000000000000) { absX <<= 32; absXShift -= 32; } if (absX < 0x10000000000000000000000000000) { absX <<= 16; absXShift -= 16; } if (absX < 0x1000000000000000000000000000000) { absX <<= 8; absXShift -= 8; } if (absX < 0x10000000000000000000000000000000) { absX <<= 4; absXShift -= 4; } if (absX < 0x40000000000000000000000000000000) { absX <<= 2; absXShift -= 2; } if (absX < 0x80000000000000000000000000000000) { absX <<= 1; absXShift -= 1; } uint256 resultShift = 0; while (y != 0) { require(absXShift < 64); if (y & 0x1 != 0) { absResult = absResult * absX >> 127; resultShift += absXShift; if (absResult > 0x100000000000000000000000000000000) { absResult >>= 1; resultShift += 1; } } absX = absX * absX >> 127; absXShift <<= 1; if (absX >= 0x100000000000000000000000000000000) { absX >>= 1; absXShift += 1; } y >>= 1; } require(resultShift < 64); absResult >>= 64 - resultShift; } int256 result = negative ? -int256(absResult) : int256(absResult); require(result >= MIN_64x64 && result <= MAX_64x64); return int128(result); } } /** * Calculate sqrt (x) rounding down. Revert if x < 0. * * @param x signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function sqrt(int128 x) internal pure returns (int128) { unchecked { require(x >= 0); return int128(sqrtu(uint256(int256(x)) << 64)); } } /** * Calculate binary logarithm of x. Revert if x <= 0. * * @param x signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function log_2(int128 x) internal pure returns (int128) { unchecked { require(x > 0); int256 msb = 0; int256 xc = x; if (xc >= 0x10000000000000000) { xc >>= 64; msb += 64; } if (xc >= 0x100000000) { xc >>= 32; msb += 32; } if (xc >= 0x10000) { xc >>= 16; msb += 16; } if (xc >= 0x100) { xc >>= 8; msb += 8; } if (xc >= 0x10) { xc >>= 4; msb += 4; } if (xc >= 0x4) { xc >>= 2; msb += 2; } if (xc >= 0x2) msb += 1; // No need to shift xc anymore int256 result = msb - 64 << 64; uint256 ux = uint256(int256(x)) << uint256(127 - msb); for (int256 bit = 0x8000000000000000; bit > 0; bit >>= 1) { ux *= ux; uint256 b = ux >> 255; ux >>= 127 + b; result += bit * int256(b); } return int128(result); } } /** * Calculate natural logarithm of x. Revert if x <= 0. * * @param x signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function ln(int128 x) internal pure returns (int128) { unchecked { require(x > 0); return int128(int256(uint256(int256(log_2(x))) * 0xB17217F7D1CF79ABC9E3B39803F2F6AF >> 128)); } } /** * Calculate binary exponent of x. Revert on overflow. * * @param x signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function exp_2(int128 x) internal pure returns (int128) { unchecked { require(x < 0x400000000000000000); // Overflow if (x < -0x400000000000000000) return 0; // Underflow uint256 result = 0x80000000000000000000000000000000; if (x & 0x8000000000000000 > 0) { result = result * 0x16A09E667F3BCC908B2FB1366EA957D3E >> 128; } if (x & 0x4000000000000000 > 0) { result = result * 0x1306FE0A31B7152DE8D5A46305C85EDEC >> 128; } if (x & 0x2000000000000000 > 0) { result = result * 0x1172B83C7D517ADCDF7C8C50EB14A791F >> 128; } if (x & 0x1000000000000000 > 0) { result = result * 0x10B5586CF9890F6298B92B71842A98363 >> 128; } if (x & 0x800000000000000 > 0) { result = result * 0x1059B0D31585743AE7C548EB68CA417FD >> 128; } if (x & 0x400000000000000 > 0) { result = result * 0x102C9A3E778060EE6F7CACA4F7A29BDE8 >> 128; } if (x & 0x200000000000000 > 0) { result = result * 0x10163DA9FB33356D84A66AE336DCDFA3F >> 128; } if (x & 0x100000000000000 > 0) { result = result * 0x100B1AFA5ABCBED6129AB13EC11DC9543 >> 128; } if (x & 0x80000000000000 > 0) { result = result * 0x10058C86DA1C09EA1FF19D294CF2F679B >> 128; } if (x & 0x40000000000000 > 0) { result = result * 0x1002C605E2E8CEC506D21BFC89A23A00F >> 128; } if (x & 0x20000000000000 > 0) { result = result * 0x100162F3904051FA128BCA9C55C31E5DF >> 128; } if (x & 0x10000000000000 > 0) { result = result * 0x1000B175EFFDC76BA38E31671CA939725 >> 128; } if (x & 0x8000000000000 > 0) { result = result * 0x100058BA01FB9F96D6CACD4B180917C3D >> 128; } if (x & 0x4000000000000 > 0) { result = result * 0x10002C5CC37DA9491D0985C348C68E7B3 >> 128; } if (x & 0x2000000000000 > 0) { result = result * 0x1000162E525EE054754457D5995292026 >> 128; } if (x & 0x1000000000000 > 0) { result = result * 0x10000B17255775C040618BF4A4ADE83FC >> 128; } if (x & 0x800000000000 > 0) { result = result * 0x1000058B91B5BC9AE2EED81E9B7D4CFAB >> 128; } if (x & 0x400000000000 > 0) { result = result * 0x100002C5C89D5EC6CA4D7C8ACC017B7C9 >> 128; } if (x & 0x200000000000 > 0) { result = result * 0x10000162E43F4F831060E02D839A9D16D >> 128; } if (x & 0x100000000000 > 0) { result = result * 0x100000B1721BCFC99D9F890EA06911763 >> 128; } if (x & 0x80000000000 > 0) { result = result * 0x10000058B90CF1E6D97F9CA14DBCC1628 >> 128; } if (x & 0x40000000000 > 0) { result = result * 0x1000002C5C863B73F016468F6BAC5CA2B >> 128; } if (x & 0x20000000000 > 0) { result = result * 0x100000162E430E5A18F6119E3C02282A5 >> 128; } if (x & 0x10000000000 > 0) { result = result * 0x1000000B1721835514B86E6D96EFD1BFE >> 128; } if (x & 0x8000000000 > 0) { result = result * 0x100000058B90C0B48C6BE5DF846C5B2EF >> 128; } if (x & 0x4000000000 > 0) { result = result * 0x10000002C5C8601CC6B9E94213C72737A >> 128; } if (x & 0x2000000000 > 0) { result = result * 0x1000000162E42FFF037DF38AA2B219F06 >> 128; } if (x & 0x1000000000 > 0) { result = result * 0x10000000B17217FBA9C739AA5819F44F9 >> 128; } if (x & 0x800000000 > 0) { result = result * 0x1000000058B90BFCDEE5ACD3C1CEDC823 >> 128; } if (x & 0x400000000 > 0) { result = result * 0x100000002C5C85FE31F35A6A30DA1BE50 >> 128; } if (x & 0x200000000 > 0) { result = result * 0x10000000162E42FF0999CE3541B9FFFCF >> 128; } if (x & 0x100000000 > 0) { result = result * 0x100000000B17217F80F4EF5AADDA45554 >> 128; } if (x & 0x80000000 > 0) { result = result * 0x10000000058B90BFBF8479BD5A81B51AD >> 128; } if (x & 0x40000000 > 0) { result = result * 0x1000000002C5C85FDF84BD62AE30A74CC >> 128; } if (x & 0x20000000 > 0) { result = result * 0x100000000162E42FEFB2FED257559BDAA >> 128; } if (x & 0x10000000 > 0) { result = result * 0x1000000000B17217F7D5A7716BBA4A9AE >> 128; } if (x & 0x8000000 > 0) { result = result * 0x100000000058B90BFBE9DDBAC5E109CCE >> 128; } if (x & 0x4000000 > 0) { result = result * 0x10000000002C5C85FDF4B15DE6F17EB0D >> 128; } if (x & 0x2000000 > 0) { result = result * 0x1000000000162E42FEFA494F1478FDE05 >> 128; } if (x & 0x1000000 > 0) { result = result * 0x10000000000B17217F7D20CF927C8E94C >> 128; } if (x & 0x800000 > 0) { result = result * 0x1000000000058B90BFBE8F71CB4E4B33D >> 128; } if (x & 0x400000 > 0) { result = result * 0x100000000002C5C85FDF477B662B26945 >> 128; } if (x & 0x200000 > 0) { result = result * 0x10000000000162E42FEFA3AE53369388C >> 128; } if (x & 0x100000 > 0) { result = result * 0x100000000000B17217F7D1D351A389D40 >> 128; } if (x & 0x80000 > 0) { result = result * 0x10000000000058B90BFBE8E8B2D3D4EDE >> 128; } if (x & 0x40000 > 0) { result = result * 0x1000000000002C5C85FDF4741BEA6E77E >> 128; } if (x & 0x20000 > 0) { result = result * 0x100000000000162E42FEFA39FE95583C2 >> 128; } if (x & 0x10000 > 0) { result = result * 0x1000000000000B17217F7D1CFB72B45E1 >> 128; } if (x & 0x8000 > 0) { result = result * 0x100000000000058B90BFBE8E7CC35C3F0 >> 128; } if (x & 0x4000 > 0) { result = result * 0x10000000000002C5C85FDF473E242EA38 >> 128; } if (x & 0x2000 > 0) { result = result * 0x1000000000000162E42FEFA39F02B772C >> 128; } if (x & 0x1000 > 0) { result = result * 0x10000000000000B17217F7D1CF7D83C1A >> 128; } if (x & 0x800 > 0) { result = result * 0x1000000000000058B90BFBE8E7BDCBE2E >> 128; } if (x & 0x400 > 0) { result = result * 0x100000000000002C5C85FDF473DEA871F >> 128; } if (x & 0x200 > 0) { result = result * 0x10000000000000162E42FEFA39EF44D91 >> 128; } if (x & 0x100 > 0) { result = result * 0x100000000000000B17217F7D1CF79E949 >> 128; } if (x & 0x80 > 0) { result = result * 0x10000000000000058B90BFBE8E7BCE544 >> 128; } if (x & 0x40 > 0) { result = result * 0x1000000000000002C5C85FDF473DE6ECA >> 128; } if (x & 0x20 > 0) { result = result * 0x100000000000000162E42FEFA39EF366F >> 128; } if (x & 0x10 > 0) { result = result * 0x1000000000000000B17217F7D1CF79AFA >> 128; } if (x & 0x8 > 0) { result = result * 0x100000000000000058B90BFBE8E7BCD6D >> 128; } if (x & 0x4 > 0) { result = result * 0x10000000000000002C5C85FDF473DE6B2 >> 128; } if (x & 0x2 > 0) { result = result * 0x1000000000000000162E42FEFA39EF358 >> 128; } if (x & 0x1 > 0) { result = result * 0x10000000000000000B17217F7D1CF79AB >> 128; } result >>= uint256(int256(63 - (x >> 64))); require(result <= uint256(int256(MAX_64x64))); return int128(int256(result)); } } /** * Calculate natural exponent of x. Revert on overflow. * * @param x signed 64.64-bit fixed point number * @return signed 64.64-bit fixed point number */ function exp(int128 x) internal pure returns (int128) { unchecked { require(x < 0x400000000000000000); // Overflow if (x < -0x400000000000000000) return 0; // Underflow return exp_2(int128(int256(x) * 0x171547652B82FE1777D0FFDA0D23A7D12 >> 128)); } } /** * Calculate x / y rounding towards zero, where x and y are unsigned 256-bit * integer numbers. Revert on overflow or when y is zero. * * @param x unsigned 256-bit integer number * @param y unsigned 256-bit integer number * @return unsigned 64.64-bit fixed point number */ function divuu(uint256 x, uint256 y) private pure returns (uint128) { unchecked { require(y != 0); uint256 result; if (x <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF) { result = (x << 64) / y; } else { uint256 msb = 192; uint256 xc = x >> 192; if (xc >= 0x100000000) { xc >>= 32; msb += 32; } if (xc >= 0x10000) { xc >>= 16; msb += 16; } if (xc >= 0x100) { xc >>= 8; msb += 8; } if (xc >= 0x10) { xc >>= 4; msb += 4; } if (xc >= 0x4) { xc >>= 2; msb += 2; } if (xc >= 0x2) msb += 1; // No need to shift xc anymore result = (x << 255 - msb) / ((y - 1 >> msb - 191) + 1); require(result <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF); uint256 hi = result * (y >> 128); uint256 lo = result * (y & 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF); uint256 xh = x >> 192; uint256 xl = x << 64; if (xl < lo) xh -= 1; xl -= lo; // We rely on overflow behavior here lo = hi << 128; if (xl < lo) xh -= 1; xl -= lo; // We rely on overflow behavior here assert(xh == hi >> 128); result += xl / y; } require(result <= 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF); return uint128(result); } } /** * Calculate sqrt (x) rounding down, where x is unsigned 256-bit integer * number. * * @param x unsigned 256-bit integer number * @return unsigned 128-bit integer number */ function sqrtu(uint256 x) private pure returns (uint128) { unchecked { if (x == 0) { return 0; } else { uint256 xx = x; uint256 r = 1; if (xx >= 0x100000000000000000000000000000000) { xx >>= 128; r <<= 64; } if (xx >= 0x10000000000000000) { xx >>= 64; r <<= 32; } if (xx >= 0x100000000) { xx >>= 32; r <<= 16; } if (xx >= 0x10000) { xx >>= 16; r <<= 8; } if (xx >= 0x100) { xx >>= 8; r <<= 4; } if (xx >= 0x10) { xx >>= 4; r <<= 2; } if (xx >= 0x8) r <<= 1; r = (r + x / r) >> 1; r = (r + x / r) >> 1; r = (r + x / r) >> 1; r = (r + x / r) >> 1; r = (r + x / r) >> 1; r = (r + x / r) >> 1; r = (r + x / r) >> 1; // Seven iterations should be enough uint256 r1 = x / r; return uint128(r < r1 ? r : r1); } } } }
// SPDX-License-Identifier: MIT
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
pragma solidity ^0.8.13;
interface IAssimilator {
function oracleDecimals() external view returns (uint256);
function underlyingToken() external view returns (address);
function getWeth() external view returns (address);
function tokenDecimals() external view returns (uint256);
function getRate() external view returns (uint256);
function intakeRaw(uint256 amount) external payable returns (int128);
function intakeRawAndGetBalance(uint256 amount) external payable returns (int128, int128);
function intakeNumeraire(int128 amount) external payable returns (uint256);
function intakeNumeraireLPRatio(uint256, uint256, uint256, uint256, uint256, uint256, address)
external
payable
returns (uint256);
function outputRaw(address dst, uint256 amount) external returns (int128);
function outputRawAndGetBalance(address dst, uint256 amount) external returns (int128, int128);
function outputNumeraire(address dst, int128 amount, bool toETH) external payable returns (uint256);
function viewRawAmount(int128) external view returns (uint256);
function viewRawAmountLPRatio(uint256, uint256, address, int128) external view returns (uint256);
function viewNumeraireAmount(uint256) external view returns (int128);
function viewNumeraireBalanceLPRatio(uint256, uint256, address) external view returns (int128);
function viewNumeraireBalance(address) external view returns (int128);
function viewNumeraireAmountAndBalance(address, uint256) external view returns (int128, int128);
function transferFee(int128, address) external payable;
}// SPDX-License-Identifier: MIT
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
pragma solidity ^0.8.13;
interface IOracle {
function acceptOwnership() external;
function accessController() external view returns (address);
function aggregator() external view returns (address);
function confirmAggregator(address _aggregator) external;
function decimals() external view returns (uint8);
function description() external view returns (string memory);
function getAnswer(uint256 _roundId) external view returns (int256);
function getRoundData(uint80 _roundId)
external
view
returns (uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound);
function getTimestamp(uint256 _roundId) external view returns (uint256);
function latestAnswer() external view returns (int256);
function latestRound() external view returns (uint256);
function latestRoundData()
external
view
returns (uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound);
function latestTimestamp() external view returns (uint256);
function owner() external view returns (address);
function phaseAggregators(uint16) external view returns (address);
function phaseId() external view returns (uint16);
function proposeAggregator(address _aggregator) external;
function proposedAggregator() external view returns (address);
function proposedGetRoundData(uint80 _roundId)
external
view
returns (uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound);
function proposedLatestRoundData()
external
view
returns (uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound);
function setController(address _accessController) external;
function transferOwnership(address _to) external;
function version() external view returns (uint256);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
interface IWETH {
function deposit() external payable;
function transfer(address to, uint256 value) external returns (bool);
function withdraw(uint256) external;
}// 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 (token/ERC20/extensions/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
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}{
"remappings": [
"@openzeppelin/=lib/openzeppelin-contracts/",
"@forge-std/=lib/forge-std/src/",
"ds-test/=lib/forge-std/lib/ds-test/src/",
"forge-std/=lib/forge-std/src/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/"
],
"optimizer": {
"enabled": true,
"runs": 200
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "paris",
"libraries": {
"src/Curve.sol": {
"Curves": "0xeb60919ac3b66d2fee0d53bf4cdd6a5f9a91a077"
},
"src/Orchestrator.sol": {
"Orchestrator": "0x11654bb1e4bc79894e4447545af6c1630b56921f"
},
"src/ProportionalLiquidity.sol": {
"ProportionalLiquidity": "0x3a2f9e9cdc6791c52dbb79dd271bd02817082379"
},
"src/Swaps.sol": {
"Swaps": "0xa49bf76606a82e75b9d6769ced0aa1b4cd8e5ecd"
},
"src/ViewLiquidity.sol": {
"ViewLiquidity": "0xd6af8d8bf04104f9b0f9f20b863e60d8f9b3e6f0"
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_wETH","type":"address"},{"internalType":"address","name":"_pairToken","type":"address"},{"internalType":"contract IOracle","name":"_oracle","type":"address"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_tokenDecimals","type":"uint256"},{"internalType":"uint256","name":"_oracleDecimals","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"getRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWeth","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int128","name":"_amount","type":"int128"}],"name":"intakeNumeraire","outputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minBaseAmount","type":"uint256"},{"internalType":"uint256","name":"_maxBaseAmount","type":"uint256"},{"internalType":"uint256","name":"_baseAmount","type":"uint256"},{"internalType":"uint256","name":"_minpairTokenAmount","type":"uint256"},{"internalType":"uint256","name":"_maxpairTokenAmount","type":"uint256"},{"internalType":"uint256","name":"_quoteAmount","type":"uint256"},{"internalType":"address","name":"token0","type":"address"}],"name":"intakeNumeraireLPRatio","outputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"intakeRaw","outputs":[{"internalType":"int128","name":"amount_","type":"int128"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"intakeRawAndGetBalance","outputs":[{"internalType":"int128","name":"amount_","type":"int128"},{"internalType":"int128","name":"balance_","type":"int128"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"oracle","outputs":[{"internalType":"contract IOracle","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oracleDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_dst","type":"address"},{"internalType":"int128","name":"_amount","type":"int128"},{"internalType":"bool","name":"_toETH","type":"bool"}],"name":"outputNumeraire","outputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_dst","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"outputRaw","outputs":[{"internalType":"int128","name":"amount_","type":"int128"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_dst","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"outputRawAndGetBalance","outputs":[{"internalType":"int128","name":"amount_","type":"int128"},{"internalType":"int128","name":"balance_","type":"int128"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pairToken","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairTokenDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20Metadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int128","name":"_amount","type":"int128"},{"internalType":"address","name":"_treasury","type":"address"}],"name":"transferFee","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"underlyingToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"viewNumeraireAmount","outputs":[{"internalType":"int128","name":"amount_","type":"int128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"viewNumeraireAmountAndBalance","outputs":[{"internalType":"int128","name":"amount_","type":"int128"},{"internalType":"int128","name":"balance_","type":"int128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"viewNumeraireBalance","outputs":[{"internalType":"int128","name":"balance_","type":"int128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_baseWeight","type":"uint256"},{"internalType":"uint256","name":"_pairTokenWeight","type":"uint256"},{"internalType":"address","name":"_addr","type":"address"}],"name":"viewNumeraireBalanceLPRatio","outputs":[{"internalType":"int128","name":"balance_","type":"int128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int128","name":"_amount","type":"int128"}],"name":"viewRawAmount","outputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_baseWeight","type":"uint256"},{"internalType":"uint256","name":"_pairTokenWeight","type":"uint256"},{"internalType":"address","name":"_addr","type":"address"},{"internalType":"int128","name":"_amount","type":"int128"}],"name":"viewRawAmountLPRatio","outputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
6101606040523480156200001257600080fd5b5060405162002adc38038062002adc8339810160408190526200003591620000f1565b6001600160a01b038087166101405284811660a05283811660c05260e0829052610100839052851660808190526040805163313ce56760e01b8152905163313ce567916004808201926020929091908290030181865afa1580156200009e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620000c491906200016d565b60ff16610120525062000199945050505050565b6001600160a01b0381168114620000ee57600080fd5b50565b60008060008060008060c087890312156200010b57600080fd5b86516200011881620000d8565b60208801519096506200012b81620000d8565b60408801519095506200013e81620000d8565b60608801519094506200015181620000d8565b809350506080870151915060a087015190509295509295509295565b6000602082840312156200018057600080fd5b815160ff811681146200019257600080fd5b9392505050565b60805160a05160c05160e051610100516101205161014051612736620003a6600039600081816101d8015281816104760152610be10152600081816103ce015281816105ae0152610ad80152600081816102b5015281816105fc015281816106e00152818161078e01528181610b5e01528181610d4101528181610e36015281816111db0152818161135e015281816113c20152818161150c0152818161176b015281816117d0015281816118ee0152818161199e015281816119ec0152611be90152600081816104220152818161076d01528181610b3d01528181610d6c01528181610e61015281816111ba0152818161133d015281816113a1015281816114eb01528181611796015281816117fb0152818161197d01528181611a170152611c1401526000818161027f015281816104dd015281816105230152818161081601528181610898015281816108d8015281816109a201528181610cfb01528181610dc101528181610ea001528181610f030152818161100d0152818161108f015281816110cf0152818161121801528181611281015281816112c00152818161156b015281816115ed0152818161162d015281816116e2015281816118670152818161194e01528181611a7601528181611af801528181611b380152611df101526000818161038701526114000152600081816102e90152818161064c0152610a3d01526127366000f3fe60806040526004361061014b5760003560e01c8063679aefce116100b6578063e68b52e71161006f578063e68b52e714610410578063f09a3fc314610444578063f242862114610464578063f5e6c0ca14610498578063fa00102a146104b8578063fc0c546a146104cb57600080fd5b8063679aefce146103405780636b677a8f146103555780637dc0d1d0146103755780637f328ecc146103a95780638d288aec146103bc578063ac969a73146103f057600080fd5b80631e9c4778116101085780631e9c47781461025d5780632495a599146102705780633b97e856146102a35780633de35b79146102d7578063459d5a061461030b578063523bf2571461032057600080fd5b8063011847a0146101505780630271c3c81461018357806305cf7bb414610196578063107c279f146101c9578063186e9cba146102105780631e9b2cba14610223575b600080fd5b34801561015c57600080fd5b5061017061016b366004612235565b6104ff565b6040519081526020015b60405180910390f35b61017061019136600461227b565b610755565b3480156101a257600080fd5b506101b66101b1366004612296565b61097e565b604051600f9190910b815260200161017a565b3480156101d557600080fd5b507f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b03909116815260200161017a565b61017061021e3660046122dc565b610b25565b34801561022f57600080fd5b5061024361023e366004612323565b610d2a565b60408051600f93840b81529190920b60208201520161017a565b61017061026b36600461234d565b610e9c565b34801561027c57600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006101f8565b3480156102af57600080fd5b506101707f000000000000000000000000000000000000000000000000000000000000000081565b3480156102e357600080fd5b506101f87f000000000000000000000000000000000000000000000000000000000000000081565b61031e6103193660046123a9565b61117a565b005b34801561032c57600080fd5b5061024361033b366004612323565b611245565b34801561034c57600080fd5b506101706113fb565b34801561036157600080fd5b5061017061037036600461227b565b6114d3565b34801561038157600080fd5b506101f87f000000000000000000000000000000000000000000000000000000000000000081565b6102436103b73660046123dc565b611530565b3480156103c857600080fd5b506101707f000000000000000000000000000000000000000000000000000000000000000081565b3480156103fc57600080fd5b506101b661040b3660046123f5565b611837565b34801561041c57600080fd5b506101707f000000000000000000000000000000000000000000000000000000000000000081565b34801561045057600080fd5b506101b661045f366004612323565b611914565b34801561047057600080fd5b506101f87f000000000000000000000000000000000000000000000000000000000000000081565b3480156104a457600080fd5b506101b66104b33660046123dc565b6119d7565b6101b66104c63660046123dc565b611a3d565b3480156104d757600080fd5b506101f87f000000000000000000000000000000000000000000000000000000000000000081565b6040516370a0823160e01b81526001600160a01b03838116600483015260009182917f000000000000000000000000000000000000000000000000000000000000000016906370a0823190602401602060405180830381865afa15801561056a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061058e9190612410565b9050600081116105a257600091505061074d565b6105ec866105e66105d47f0000000000000000000000000000000000000000000000000000000000000000601261243f565b6105df90600a612536565b8490611c4e565b90611c63565b905060006106be866105e66106227f0000000000000000000000000000000000000000000000000000000000000000601261243f565b61062d90600a612536565b6040516370a0823160e01b81526001600160a01b038a811660048301527f000000000000000000000000000000000000000000000000000000000000000016906370a08231906024015b602060405180830381865afa158015610694573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b89190612410565b90611c4e565b905060006106d3836105e684620f4240611c4e565b90506107476107306107067f0000000000000000000000000000000000000000000000000000000000000000600a612536565b61071390620f4240612542565b61072590670de0b6b3a7640000612542565b600f88900b90611c6f565b61074283670de0b6b3a7640000612542565b611cda565b93505050505b949350505050565b6000806107606113fb565b90506107d36107306107b27f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000061243f565b6107bd90601261243f565b6107c890600a612536565b600f86900b90611c6f565b9150600082116107fe5760405162461bcd60e51b81526004016107f590612559565b60405180910390fd5b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610865573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108899190612410565b90506108c06001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016333086611d11565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610927573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094b9190612410565b90506000610959838361257f565b610963908661257f565b90508015610975576109758582611d7c565b50505050919050565b6040516370a0823160e01b81526001600160a01b03828116600483015260009182917f000000000000000000000000000000000000000000000000000000000000000016906370a0823190602401602060405180830381865afa1580156109e9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a0d9190612410565b905060008111610a2957610a216000611e19565b915050610b1e565b6000610a96856105e6670de0b6b3a76400007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231896040518263ffffffff1660e01b815260040161067791906001600160a01b0391909116815260200190565b90506000610ac5610ab3886105e686670de0b6b3a7640000611c4e565b6105e684670de0b6b3a7640000611c4e565b9050610b18670de0b6b3a7640000610afe7f0000000000000000000000000000000000000000000000000000000000000000600a612536565b610b088487612542565b610b1291906125a8565b90611e37565b93505050505b9392505050565b600080610b306113fb565b9050610ba3610730610b827f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000061243f565b610b8d90601261243f565b610b9890600a612536565b600f87900b90611c6f565b915060008211610bc55760405162461bcd60e51b81526004016107f590612559565b8215610cee57604051632e1a7d4d60e01b8152600481018390527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690632e1a7d4d90602401600060405180830381600087803b158015610c2d57600080fd5b505af1158015610c41573d6000803e3d6000fd5b505050506000856001600160a01b03168360405160006040518083038185875af1925050503d8060008114610c92576040519150601f19603f3d011682016040523d82523d6000602084013e610c97565b606091505b5050905080610ce85760405162461bcd60e51b815260206004820152601f60248201527f417373696d696c61746f722f5472616e7366657220455448204661696c65640060448201526064016107f5565b50610d22565b610d226001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168684611e71565b509392505050565b6000806000610d376113fb565b9050610d9c610d677f0000000000000000000000000000000000000000000000000000000000000000600a612536565b610d927f0000000000000000000000000000000000000000000000000000000000000000600a612536565b610b088488612542565b6040516370a0823160e01b81526001600160a01b0387811660048301529194506000917f000000000000000000000000000000000000000000000000000000000000000016906370a0823190602401602060405180830381865afa158015610e08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2c9190612410565b9050610e91610e5c7f0000000000000000000000000000000000000000000000000000000000000000600a612536565b610e877f0000000000000000000000000000000000000000000000000000000000000000600a612536565b610b088585612542565b925050509250929050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610ede575084610ee1565b50815b60008111610f015760405162461bcd60e51b81526004016107f590612559565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610f9a578781118015610f495750868111155b610f955760405162461bcd60e51b815260206004820181905260248201527f417373696d696c61746f722f4c5020526174696f20696d62616c616e6365642160448201526064016107f5565b610ff5565b8481118015610fa95750838111155b610ff55760405162461bcd60e51b815260206004820181905260248201527f417373696d696c61746f722f4c5020526174696f20696d62616c616e6365642160448201526064016107f5565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa15801561105c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110809190612410565b90506110b76001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016333085611d11565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa15801561111e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111429190612410565b90506000611150838361257f565b61115a908561257f565b9050801561116c5761116c8482611d7c565b505050979650505050505050565b60006111846113fb565b9050600083600f0b121561119e5761119b836125ca565b92505b60006111b282670de0b6b3a7640000612542565b6111ff610b827f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000061243f565b61120991906125a8565b905061123f6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168483611e71565b50505050565b600080600083116112685760405162461bcd60e51b81526004016107f590612559565b60006112726113fb565b90506112a86001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168686611e71565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa15801561130f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113339190612410565b90506113976113827f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000061243f565b61138d90600a612536565b610b128488612542565b9350610e916113e67f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000061243f565b6113f190600a612536565b610b128484612542565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa15801561145c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611480919061260a565b50505091505060008112156114ce5760405162461bcd60e51b8152602060048201526014602482015273696e76616c6964207072696365206f7261636c6560601b60448201526064016107f5565b919050565b6000806114de6113fb565b9050610b1e6107306107b27f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000061243f565b600080600083116115535760405162461bcd60e51b81526004016107f590612559565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa1580156115ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115de9190612410565b90506116156001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016333087611d11565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa15801561167c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116a09190612410565b905060006116ae838361257f565b6116b8908761257f565b905080156116ca576116ca8682611d7c565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015611731573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117559190612410565b905060006117616113fb565b90506117c66117917f0000000000000000000000000000000000000000000000000000000000000000600a612536565b6117bc7f0000000000000000000000000000000000000000000000000000000000000000600a612536565b610b088486612542565b955061182b6117f67f0000000000000000000000000000000000000000000000000000000000000000600a612536565b6118217f0000000000000000000000000000000000000000000000000000000000000000600a612536565b610b08848c612542565b96505050505050915091565b6000806118426113fb565b6040516370a0823160e01b81526001600160a01b0385811660048301529192506000917f000000000000000000000000000000000000000000000000000000000000000016906370a0823190602401602060405180830381865afa1580156118ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d29190612410565b9050600081116118e65761074d6000611e19565b61074d610e5c7f0000000000000000000000000000000000000000000000000000000000000000600a612536565b60008082116119355760405162461bcd60e51b81526004016107f590612559565b600061193f6113fb565b90506119756001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168585611e71565b61074d6119c27f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000061243f565b6119cd90600a612536565b610b128386612542565b6000806119e26113fb565b9050610b1e611a127f0000000000000000000000000000000000000000000000000000000000000000600a612536565b610afe7f0000000000000000000000000000000000000000000000000000000000000000600a612536565b6000808211611a5e5760405162461bcd60e51b81526004016107f590612559565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015611ac5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ae99190612410565b9050611b206001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016333086611d11565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015611b87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bab9190612410565b90506000611bb9838361257f565b611bc3908661257f565b90508015611bd557611bd58582611d7c565b6000611bdf6113fb565b9050611c44611c0f7f0000000000000000000000000000000000000000000000000000000000000000600a612536565b611c3a7f0000000000000000000000000000000000000000000000000000000000000000600a612536565b610b08848a612542565b9695505050505050565b6000611c5a8284612542565b90505b92915050565b6000611c5a82846125a8565b600081600003611c8157506000611c5d565b600083600f0b1215611c9257600080fd5b600f83900b6001600160801b038316810260401c90608084901c026001600160c01b03811115611cc157600080fd5b60401b8119811115611cd257600080fd5b019392505050565b60008215611d085781611cee60018561257f565b611cf891906125a8565b611d0390600161243f565b611c5a565b50600092915050565b6040516001600160a01b038085166024830152831660448201526064810182905261123f9085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611ea6565b60008211611d9c5760405162461bcd60e51b81526004016107f590612559565b6000611dba6001611db4856105e686620186a0611c4e565b90611f78565b90506000611dcb82620186a061257f565b611dd884620186a0612542565b611de291906125a8565b905061123f6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016333084611d11565b6000677fffffffffffffff821115611e3057600080fd5b5060401b90565b600081600003611e4657600080fd5b6000611e528484611f84565b905060016001607f1b036001600160801b0382161115611c5a57600080fd5b6040516001600160a01b038316602482015260448101829052611ea190849063a9059cbb60e01b90606401611d45565b505050565b6000611efb826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166120e99092919063ffffffff16565b805190915015611ea15780806020019051810190611f19919061265a565b611ea15760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016107f5565b6000611c5a828461243f565b600081600003611f9357600080fd5b60006001600160c01b038411611fbe5782604085901b81611fb657611fb6612592565b0490506120d5565b60c084811c6401000000008110611fd7576020918201911c5b620100008110611fe9576010918201911c5b6101008110611ffa576008918201911c5b6010811061200a576004918201911c5b6004811061201a576002918201911c5b60028110612029576001820191505b60bf820360018603901c6001018260ff0387901b8161204a5761204a612592565b0492506001600160801b0383111561206157600080fd5b608085901c83026001600160801b038616840260c088901c604089901b8281101561208d576001820391505b608084901b929003828110156120a4576001820391505b829003608084901c82146120ba576120ba612677565b8881816120c9576120c9612592565b04870196505050505050505b6001600160801b03811115611c5a57600080fd5b606061074d848460008585600080866001600160a01b0316858760405161211091906126b1565b60006040518083038185875af1925050503d806000811461214d576040519150601f19603f3d011682016040523d82523d6000602084013e612152565b606091505b50915091506121638783838761216e565b979650505050505050565b606083156121dd5782516000036121d6576001600160a01b0385163b6121d65760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016107f5565b508161074d565b61074d83838151156121f25781518083602001fd5b8060405162461bcd60e51b81526004016107f591906126cd565b80356001600160a01b03811681146114ce57600080fd5b8035600f81900b81146114ce57600080fd5b6000806000806080858703121561224b57600080fd5b84359350602085013592506122626040860161220c565b915061227060608601612223565b905092959194509250565b60006020828403121561228d57600080fd5b611c5a82612223565b6000806000606084860312156122ab57600080fd5b83359250602084013591506122c26040850161220c565b90509250925092565b80151581146122d957600080fd5b50565b6000806000606084860312156122f157600080fd5b6122fa8461220c565b925061230860208501612223565b91506040840135612318816122cb565b809150509250925092565b6000806040838503121561233657600080fd5b61233f8361220c565b946020939093013593505050565b600080600080600080600060e0888a03121561236857600080fd5b873596506020880135955060408801359450606088013593506080880135925060a0880135915061239b60c0890161220c565b905092959891949750929550565b600080604083850312156123bc57600080fd5b6123c583612223565b91506123d36020840161220c565b90509250929050565b6000602082840312156123ee57600080fd5b5035919050565b60006020828403121561240757600080fd5b611c5a8261220c565b60006020828403121561242257600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115611c5d57611c5d612429565b600181815b8085111561248d57816000190482111561247357612473612429565b8085161561248057918102915b93841c9390800290612457565b509250929050565b6000826124a457506001611c5d565b816124b157506000611c5d565b81600181146124c757600281146124d1576124ed565b6001915050611c5d565b60ff8411156124e2576124e2612429565b50506001821b611c5d565b5060208310610133831016604e8410600b8410161715612510575081810a611c5d565b61251a8383612452565b806000190482111561252e5761252e612429565b029392505050565b6000611c5a8383612495565b8082028115828204841417611c5d57611c5d612429565b6020808252600c908201526b7a65726f20616d6f756e742160a01b604082015260600190565b81810381811115611c5d57611c5d612429565b634e487b7160e01b600052601260045260246000fd5b6000826125c557634e487b7160e01b600052601260045260246000fd5b500490565b600081600f0b60016001607f1b031981036125e7576125e7612429565b60000392915050565b805169ffffffffffffffffffff811681146114ce57600080fd5b600080600080600060a0868803121561262257600080fd5b61262b866125f0565b945060208601519350604086015192506060860151915061264e608087016125f0565b90509295509295909350565b60006020828403121561266c57600080fd5b8151611c5a816122cb565b634e487b7160e01b600052600160045260246000fd5b60005b838110156126a8578181015183820152602001612690565b50506000910152565b600082516126c381846020870161268d565b9190910192915050565b60208152600082518060208401526126ec81604085016020870161268d565b601f01601f1916919091016040019291505056fea264697066735822122038d5f2864d8776167ba7bad6d03c47589363a0572834f8c4c06c9fee82d8c84b64736f6c634300081500330000000000000000000000000d500b1d8e8ef31e21c99d1db9a6444d3adf12700000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c3359000000000000000000000000fe4a8cc5b5b2366c1b58bea3858e81843581b2f70000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008
Deployed Bytecode
0x60806040526004361061014b5760003560e01c8063679aefce116100b6578063e68b52e71161006f578063e68b52e714610410578063f09a3fc314610444578063f242862114610464578063f5e6c0ca14610498578063fa00102a146104b8578063fc0c546a146104cb57600080fd5b8063679aefce146103405780636b677a8f146103555780637dc0d1d0146103755780637f328ecc146103a95780638d288aec146103bc578063ac969a73146103f057600080fd5b80631e9c4778116101085780631e9c47781461025d5780632495a599146102705780633b97e856146102a35780633de35b79146102d7578063459d5a061461030b578063523bf2571461032057600080fd5b8063011847a0146101505780630271c3c81461018357806305cf7bb414610196578063107c279f146101c9578063186e9cba146102105780631e9b2cba14610223575b600080fd5b34801561015c57600080fd5b5061017061016b366004612235565b6104ff565b6040519081526020015b60405180910390f35b61017061019136600461227b565b610755565b3480156101a257600080fd5b506101b66101b1366004612296565b61097e565b604051600f9190910b815260200161017a565b3480156101d557600080fd5b507f0000000000000000000000000d500b1d8e8ef31e21c99d1db9a6444d3adf12705b6040516001600160a01b03909116815260200161017a565b61017061021e3660046122dc565b610b25565b34801561022f57600080fd5b5061024361023e366004612323565b610d2a565b60408051600f93840b81529190920b60208201520161017a565b61017061026b36600461234d565b610e9c565b34801561027c57600080fd5b507f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841746101f8565b3480156102af57600080fd5b506101707f000000000000000000000000000000000000000000000000000000000000000681565b3480156102e357600080fd5b506101f87f0000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c335981565b61031e6103193660046123a9565b61117a565b005b34801561032c57600080fd5b5061024361033b366004612323565b611245565b34801561034c57600080fd5b506101706113fb565b34801561036157600080fd5b5061017061037036600461227b565b6114d3565b34801561038157600080fd5b506101f87f000000000000000000000000fe4a8cc5b5b2366c1b58bea3858e81843581b2f781565b6102436103b73660046123dc565b611530565b3480156103c857600080fd5b506101707f000000000000000000000000000000000000000000000000000000000000000681565b3480156103fc57600080fd5b506101b661040b3660046123f5565b611837565b34801561041c57600080fd5b506101707f000000000000000000000000000000000000000000000000000000000000000881565b34801561045057600080fd5b506101b661045f366004612323565b611914565b34801561047057600080fd5b506101f87f0000000000000000000000000d500b1d8e8ef31e21c99d1db9a6444d3adf127081565b3480156104a457600080fd5b506101b66104b33660046123dc565b6119d7565b6101b66104c63660046123dc565b611a3d565b3480156104d757600080fd5b506101f87f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417481565b6040516370a0823160e01b81526001600160a01b03838116600483015260009182917f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417416906370a0823190602401602060405180830381865afa15801561056a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061058e9190612410565b9050600081116105a257600091505061074d565b6105ec866105e66105d47f0000000000000000000000000000000000000000000000000000000000000006601261243f565b6105df90600a612536565b8490611c4e565b90611c63565b905060006106be866105e66106227f0000000000000000000000000000000000000000000000000000000000000006601261243f565b61062d90600a612536565b6040516370a0823160e01b81526001600160a01b038a811660048301527f0000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c335916906370a08231906024015b602060405180830381865afa158015610694573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b89190612410565b90611c4e565b905060006106d3836105e684620f4240611c4e565b90506107476107306107067f0000000000000000000000000000000000000000000000000000000000000006600a612536565b61071390620f4240612542565b61072590670de0b6b3a7640000612542565b600f88900b90611c6f565b61074283670de0b6b3a7640000612542565b611cda565b93505050505b949350505050565b6000806107606113fb565b90506107d36107306107b27f00000000000000000000000000000000000000000000000000000000000000087f000000000000000000000000000000000000000000000000000000000000000661243f565b6107bd90601261243f565b6107c890600a612536565b600f86900b90611c6f565b9150600082116107fe5760405162461bcd60e51b81526004016107f590612559565b60405180910390fd5b6040516370a0823160e01b81523060048201526000907f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841746001600160a01b0316906370a0823190602401602060405180830381865afa158015610865573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108899190612410565b90506108c06001600160a01b037f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417416333086611d11565b6040516370a0823160e01b81523060048201526000907f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841746001600160a01b0316906370a0823190602401602060405180830381865afa158015610927573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094b9190612410565b90506000610959838361257f565b610963908661257f565b90508015610975576109758582611d7c565b50505050919050565b6040516370a0823160e01b81526001600160a01b03828116600483015260009182917f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417416906370a0823190602401602060405180830381865afa1580156109e9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a0d9190612410565b905060008111610a2957610a216000611e19565b915050610b1e565b6000610a96856105e6670de0b6b3a76400007f0000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c33596001600160a01b03166370a08231896040518263ffffffff1660e01b815260040161067791906001600160a01b0391909116815260200190565b90506000610ac5610ab3886105e686670de0b6b3a7640000611c4e565b6105e684670de0b6b3a7640000611c4e565b9050610b18670de0b6b3a7640000610afe7f0000000000000000000000000000000000000000000000000000000000000006600a612536565b610b088487612542565b610b1291906125a8565b90611e37565b93505050505b9392505050565b600080610b306113fb565b9050610ba3610730610b827f00000000000000000000000000000000000000000000000000000000000000087f000000000000000000000000000000000000000000000000000000000000000661243f565b610b8d90601261243f565b610b9890600a612536565b600f87900b90611c6f565b915060008211610bc55760405162461bcd60e51b81526004016107f590612559565b8215610cee57604051632e1a7d4d60e01b8152600481018390527f0000000000000000000000000d500b1d8e8ef31e21c99d1db9a6444d3adf12706001600160a01b031690632e1a7d4d90602401600060405180830381600087803b158015610c2d57600080fd5b505af1158015610c41573d6000803e3d6000fd5b505050506000856001600160a01b03168360405160006040518083038185875af1925050503d8060008114610c92576040519150601f19603f3d011682016040523d82523d6000602084013e610c97565b606091505b5050905080610ce85760405162461bcd60e51b815260206004820152601f60248201527f417373696d696c61746f722f5472616e7366657220455448204661696c65640060448201526064016107f5565b50610d22565b610d226001600160a01b037f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174168684611e71565b509392505050565b6000806000610d376113fb565b9050610d9c610d677f0000000000000000000000000000000000000000000000000000000000000006600a612536565b610d927f0000000000000000000000000000000000000000000000000000000000000008600a612536565b610b088488612542565b6040516370a0823160e01b81526001600160a01b0387811660048301529194506000917f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417416906370a0823190602401602060405180830381865afa158015610e08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e2c9190612410565b9050610e91610e5c7f0000000000000000000000000000000000000000000000000000000000000006600a612536565b610e877f0000000000000000000000000000000000000000000000000000000000000008600a612536565b610b088585612542565b925050509250929050565b60007f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841746001600160a01b0316826001600160a01b031603610ede575084610ee1565b50815b60008111610f015760405162461bcd60e51b81526004016107f590612559565b7f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841746001600160a01b0316826001600160a01b031603610f9a578781118015610f495750868111155b610f955760405162461bcd60e51b815260206004820181905260248201527f417373696d696c61746f722f4c5020526174696f20696d62616c616e6365642160448201526064016107f5565b610ff5565b8481118015610fa95750838111155b610ff55760405162461bcd60e51b815260206004820181905260248201527f417373696d696c61746f722f4c5020526174696f20696d62616c616e6365642160448201526064016107f5565b6040516370a0823160e01b81523060048201526000907f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841746001600160a01b0316906370a0823190602401602060405180830381865afa15801561105c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110809190612410565b90506110b76001600160a01b037f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417416333085611d11565b6040516370a0823160e01b81523060048201526000907f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841746001600160a01b0316906370a0823190602401602060405180830381865afa15801561111e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111429190612410565b90506000611150838361257f565b61115a908561257f565b9050801561116c5761116c8482611d7c565b505050979650505050505050565b60006111846113fb565b9050600083600f0b121561119e5761119b836125ca565b92505b60006111b282670de0b6b3a7640000612542565b6111ff610b827f00000000000000000000000000000000000000000000000000000000000000087f000000000000000000000000000000000000000000000000000000000000000661243f565b61120991906125a8565b905061123f6001600160a01b037f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174168483611e71565b50505050565b600080600083116112685760405162461bcd60e51b81526004016107f590612559565b60006112726113fb565b90506112a86001600160a01b037f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174168686611e71565b6040516370a0823160e01b81523060048201526000907f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841746001600160a01b0316906370a0823190602401602060405180830381865afa15801561130f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113339190612410565b90506113976113827f00000000000000000000000000000000000000000000000000000000000000087f000000000000000000000000000000000000000000000000000000000000000661243f565b61138d90600a612536565b610b128488612542565b9350610e916113e67f00000000000000000000000000000000000000000000000000000000000000087f000000000000000000000000000000000000000000000000000000000000000661243f565b6113f190600a612536565b610b128484612542565b6000807f000000000000000000000000fe4a8cc5b5b2366c1b58bea3858e81843581b2f76001600160a01b031663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa15801561145c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611480919061260a565b50505091505060008112156114ce5760405162461bcd60e51b8152602060048201526014602482015273696e76616c6964207072696365206f7261636c6560601b60448201526064016107f5565b919050565b6000806114de6113fb565b9050610b1e6107306107b27f00000000000000000000000000000000000000000000000000000000000000087f000000000000000000000000000000000000000000000000000000000000000661243f565b600080600083116115535760405162461bcd60e51b81526004016107f590612559565b6040516370a0823160e01b81523060048201526000907f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841746001600160a01b0316906370a0823190602401602060405180830381865afa1580156115ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115de9190612410565b90506116156001600160a01b037f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417416333087611d11565b6040516370a0823160e01b81523060048201526000907f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841746001600160a01b0316906370a0823190602401602060405180830381865afa15801561167c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116a09190612410565b905060006116ae838361257f565b6116b8908761257f565b905080156116ca576116ca8682611d7c565b6040516370a0823160e01b81523060048201526000907f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841746001600160a01b0316906370a0823190602401602060405180830381865afa158015611731573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117559190612410565b905060006117616113fb565b90506117c66117917f0000000000000000000000000000000000000000000000000000000000000006600a612536565b6117bc7f0000000000000000000000000000000000000000000000000000000000000008600a612536565b610b088486612542565b955061182b6117f67f0000000000000000000000000000000000000000000000000000000000000006600a612536565b6118217f0000000000000000000000000000000000000000000000000000000000000008600a612536565b610b08848c612542565b96505050505050915091565b6000806118426113fb565b6040516370a0823160e01b81526001600160a01b0385811660048301529192506000917f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417416906370a0823190602401602060405180830381865afa1580156118ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118d29190612410565b9050600081116118e65761074d6000611e19565b61074d610e5c7f0000000000000000000000000000000000000000000000000000000000000006600a612536565b60008082116119355760405162461bcd60e51b81526004016107f590612559565b600061193f6113fb565b90506119756001600160a01b037f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174168585611e71565b61074d6119c27f00000000000000000000000000000000000000000000000000000000000000087f000000000000000000000000000000000000000000000000000000000000000661243f565b6119cd90600a612536565b610b128386612542565b6000806119e26113fb565b9050610b1e611a127f0000000000000000000000000000000000000000000000000000000000000006600a612536565b610afe7f0000000000000000000000000000000000000000000000000000000000000008600a612536565b6000808211611a5e5760405162461bcd60e51b81526004016107f590612559565b6040516370a0823160e01b81523060048201526000907f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841746001600160a01b0316906370a0823190602401602060405180830381865afa158015611ac5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ae99190612410565b9050611b206001600160a01b037f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417416333086611d11565b6040516370a0823160e01b81523060048201526000907f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841746001600160a01b0316906370a0823190602401602060405180830381865afa158015611b87573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bab9190612410565b90506000611bb9838361257f565b611bc3908661257f565b90508015611bd557611bd58582611d7c565b6000611bdf6113fb565b9050611c44611c0f7f0000000000000000000000000000000000000000000000000000000000000006600a612536565b611c3a7f0000000000000000000000000000000000000000000000000000000000000008600a612536565b610b08848a612542565b9695505050505050565b6000611c5a8284612542565b90505b92915050565b6000611c5a82846125a8565b600081600003611c8157506000611c5d565b600083600f0b1215611c9257600080fd5b600f83900b6001600160801b038316810260401c90608084901c026001600160c01b03811115611cc157600080fd5b60401b8119811115611cd257600080fd5b019392505050565b60008215611d085781611cee60018561257f565b611cf891906125a8565b611d0390600161243f565b611c5a565b50600092915050565b6040516001600160a01b038085166024830152831660448201526064810182905261123f9085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611ea6565b60008211611d9c5760405162461bcd60e51b81526004016107f590612559565b6000611dba6001611db4856105e686620186a0611c4e565b90611f78565b90506000611dcb82620186a061257f565b611dd884620186a0612542565b611de291906125a8565b905061123f6001600160a01b037f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417416333084611d11565b6000677fffffffffffffff821115611e3057600080fd5b5060401b90565b600081600003611e4657600080fd5b6000611e528484611f84565b905060016001607f1b036001600160801b0382161115611c5a57600080fd5b6040516001600160a01b038316602482015260448101829052611ea190849063a9059cbb60e01b90606401611d45565b505050565b6000611efb826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166120e99092919063ffffffff16565b805190915015611ea15780806020019051810190611f19919061265a565b611ea15760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016107f5565b6000611c5a828461243f565b600081600003611f9357600080fd5b60006001600160c01b038411611fbe5782604085901b81611fb657611fb6612592565b0490506120d5565b60c084811c6401000000008110611fd7576020918201911c5b620100008110611fe9576010918201911c5b6101008110611ffa576008918201911c5b6010811061200a576004918201911c5b6004811061201a576002918201911c5b60028110612029576001820191505b60bf820360018603901c6001018260ff0387901b8161204a5761204a612592565b0492506001600160801b0383111561206157600080fd5b608085901c83026001600160801b038616840260c088901c604089901b8281101561208d576001820391505b608084901b929003828110156120a4576001820391505b829003608084901c82146120ba576120ba612677565b8881816120c9576120c9612592565b04870196505050505050505b6001600160801b03811115611c5a57600080fd5b606061074d848460008585600080866001600160a01b0316858760405161211091906126b1565b60006040518083038185875af1925050503d806000811461214d576040519150601f19603f3d011682016040523d82523d6000602084013e612152565b606091505b50915091506121638783838761216e565b979650505050505050565b606083156121dd5782516000036121d6576001600160a01b0385163b6121d65760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016107f5565b508161074d565b61074d83838151156121f25781518083602001fd5b8060405162461bcd60e51b81526004016107f591906126cd565b80356001600160a01b03811681146114ce57600080fd5b8035600f81900b81146114ce57600080fd5b6000806000806080858703121561224b57600080fd5b84359350602085013592506122626040860161220c565b915061227060608601612223565b905092959194509250565b60006020828403121561228d57600080fd5b611c5a82612223565b6000806000606084860312156122ab57600080fd5b83359250602084013591506122c26040850161220c565b90509250925092565b80151581146122d957600080fd5b50565b6000806000606084860312156122f157600080fd5b6122fa8461220c565b925061230860208501612223565b91506040840135612318816122cb565b809150509250925092565b6000806040838503121561233657600080fd5b61233f8361220c565b946020939093013593505050565b600080600080600080600060e0888a03121561236857600080fd5b873596506020880135955060408801359450606088013593506080880135925060a0880135915061239b60c0890161220c565b905092959891949750929550565b600080604083850312156123bc57600080fd5b6123c583612223565b91506123d36020840161220c565b90509250929050565b6000602082840312156123ee57600080fd5b5035919050565b60006020828403121561240757600080fd5b611c5a8261220c565b60006020828403121561242257600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115611c5d57611c5d612429565b600181815b8085111561248d57816000190482111561247357612473612429565b8085161561248057918102915b93841c9390800290612457565b509250929050565b6000826124a457506001611c5d565b816124b157506000611c5d565b81600181146124c757600281146124d1576124ed565b6001915050611c5d565b60ff8411156124e2576124e2612429565b50506001821b611c5d565b5060208310610133831016604e8410600b8410161715612510575081810a611c5d565b61251a8383612452565b806000190482111561252e5761252e612429565b029392505050565b6000611c5a8383612495565b8082028115828204841417611c5d57611c5d612429565b6020808252600c908201526b7a65726f20616d6f756e742160a01b604082015260600190565b81810381811115611c5d57611c5d612429565b634e487b7160e01b600052601260045260246000fd5b6000826125c557634e487b7160e01b600052601260045260246000fd5b500490565b600081600f0b60016001607f1b031981036125e7576125e7612429565b60000392915050565b805169ffffffffffffffffffff811681146114ce57600080fd5b600080600080600060a0868803121561262257600080fd5b61262b866125f0565b945060208601519350604086015192506060860151915061264e608087016125f0565b90509295509295909350565b60006020828403121561266c57600080fd5b8151611c5a816122cb565b634e487b7160e01b600052600160045260246000fd5b60005b838110156126a8578181015183820152602001612690565b50506000910152565b600082516126c381846020870161268d565b9190910192915050565b60208152600082518060208401526126ec81604085016020870161268d565b601f01601f1916919091016040019291505056fea264697066735822122038d5f2864d8776167ba7bad6d03c47589363a0572834f8c4c06c9fee82d8c84b64736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000d500b1d8e8ef31e21c99d1db9a6444d3adf12700000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c3359000000000000000000000000fe4a8cc5b5b2366c1b58bea3858e81843581b2f70000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417400000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008
-----Decoded View---------------
Arg [0] : _wETH (address): 0x0d500B1d8E8eF31E21C99d1Db9A6444d3ADf1270
Arg [1] : _pairToken (address): 0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359
Arg [2] : _oracle (address): 0xfE4A8cc5b5B2366C1B58Bea3858e81843581b2F7
Arg [3] : _token (address): 0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174
Arg [4] : _tokenDecimals (uint256): 6
Arg [5] : _oracleDecimals (uint256): 8
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000d500b1d8e8ef31e21c99d1db9a6444d3adf1270
Arg [1] : 0000000000000000000000003c499c542cef5e3811e1192ce70d8cc03d5c3359
Arg [2] : 000000000000000000000000fe4a8cc5b5b2366c1b58bea3858e81843581b2f7
Arg [3] : 0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in POL
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
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.