Source Code
Overview
ETH Balance
0 ETH
ETH Value
$0.00View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Cross-Chain Transactions
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
SpeedMarketsAMM
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// external
import "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/utils/math/MathUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts-upgradeable/utils/math/SafeMathUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol";
import "@openzeppelin/contracts-4.4.1/proxy/Clones.sol";
import "@pythnetwork/pyth-sdk-solidity/IPyth.sol";
import "@pythnetwork/pyth-sdk-solidity/PythStructs.sol";
// internal
import "../utils/proxy/solidity-0.8.0/ProxyReentrancyGuard.sol";
import "../utils/proxy/solidity-0.8.0/ProxyOwned.sol";
import "../utils/proxy/solidity-0.8.0/ProxyPausable.sol";
import "../utils/libraries/AddressSetLib.sol";
import "../interfaces/IStakingThales.sol";
import "../interfaces/IMultiCollateralOnOffRamp.sol";
import "../interfaces/IReferrals.sol";
import "../interfaces/IAddressManager.sol";
import "../interfaces/ISpeedMarketsAMM.sol";
import "./SpeedMarket.sol";
import "./SpeedMarketsAMMUtils.sol";
/// @title An AMM for Thales speed markets
contract SpeedMarketsAMM is Initializable, ProxyOwned, ProxyPausable, ProxyReentrancyGuard {
using SafeERC20Upgradeable for IERC20Upgradeable;
using AddressSetLib for AddressSetLib.AddressSet;
AddressSetLib.AddressSet internal _activeMarkets;
AddressSetLib.AddressSet internal _maturedMarkets;
uint private constant ONE = 1e18;
uint private constant MAX_APPROVAL = type(uint256).max;
IERC20Upgradeable public sUSD;
address public speedMarketMastercopy;
uint public safeBoxImpact;
uint public lpFee;
address private safeBox; // unused, moved to AddressManager
mapping(bytes32 => bool) public supportedAsset;
uint public minimalTimeToMaturity;
uint public maximalTimeToMaturity;
uint public minBuyinAmount;
uint public maxBuyinAmount;
mapping(bytes32 => uint) public maxRiskPerAsset;
mapping(bytes32 => uint) public currentRiskPerAsset;
mapping(bytes32 => bytes32) public assetToPythId;
IPyth private pyth; // unused, moved to AddressManager
uint64 public maximumPriceDelay;
IStakingThales private stakingThales; // unused, moved to AddressManager
mapping(address => AddressSetLib.AddressSet) internal _activeMarketsPerUser;
mapping(address => AddressSetLib.AddressSet) internal _maturedMarketsPerUser;
mapping(address => bool) public whitelistedAddresses;
IMultiCollateralOnOffRamp private multiCollateralOnOffRamp; // unused, moved to AddressManager
bool public multicollateralEnabled;
mapping(bytes32 => mapping(SpeedMarket.Direction => uint)) public maxRiskPerAssetAndDirection;
mapping(bytes32 => mapping(SpeedMarket.Direction => uint)) public currentRiskPerAssetAndDirection;
uint64 public maximumPriceDelayForResolving;
mapping(address => bool) public marketHasCreatedAtAttribute;
address private referrals; // unused, moved to AddressManager
uint[] public timeThresholdsForFees;
uint[] public lpFees;
SpeedMarketsAMMUtils private speedMarketsAMMUtils;
mapping(address => bool) public marketHasFeeAttribute;
/// @return The address of the address manager contract
IAddressManager public addressManager;
uint public maxSkewImpact;
uint public skewSlippage;
/// @param user user wallet address
/// @param asset market asset
/// @param strikeTime strike time, if zero delta time is used
/// @param delta delta time, used if strike time is zero
/// @param pythPrice structure with pyth price and publish time
/// @param direction direction (UP/DOWN)
/// @param collateral collateral address, for default collateral use zero address
/// @param collateralAmount collateral amount, for non default includes fees
/// @param referrer referrer address
/// @param skewImpact skew impact, used to check skew slippage
struct CreateMarketParams {
address user;
bytes32 asset;
uint64 strikeTime;
uint64 delta;
PythStructs.Price pythPrice;
SpeedMarket.Direction direction;
address collateral;
uint collateralAmount;
address referrer;
uint skewImpact;
}
receive() external payable {}
function initialize(address _owner, IERC20Upgradeable _sUSD) external initializer {
setOwner(_owner);
initNonReentrant();
sUSD = _sUSD;
}
/// @notice create new market for a given delta/strike time
/// @param _params parameters for creating market
function createNewMarket(CreateMarketParams calldata _params) external nonReentrant notPaused onlyCreator {
IAddressManager.Addresses memory contractsAddresses = addressManager.getAddresses();
bool isDefaultCollateral = _params.collateral == address(0);
uint64 strikeTime = _params.strikeTime == 0 ? uint64(block.timestamp + _params.delta) : _params.strikeTime;
uint buyinAmount = isDefaultCollateral
? _params.collateralAmount
: _getBuyinWithConversion(
_params.user,
_params.collateral,
_params.collateralAmount,
strikeTime,
contractsAddresses
);
_createNewMarket(
_params.user,
_params.asset,
strikeTime,
_params.pythPrice,
_params.direction,
buyinAmount,
isDefaultCollateral,
_params.referrer,
_params.skewImpact,
contractsAddresses
);
}
function _getBuyinWithConversion(
address user,
address collateral,
uint collateralAmount,
uint64 strikeTime,
IAddressManager.Addresses memory contractsAddresses
) internal returns (uint buyinAmount) {
require(multicollateralEnabled, "Multicollateral onramp not enabled");
uint amountBefore = sUSD.balanceOf(address(this));
IMultiCollateralOnOffRamp iMultiCollateralOnOffRamp = IMultiCollateralOnOffRamp(
contractsAddresses.multiCollateralOnOffRamp
);
IERC20Upgradeable(collateral).safeTransferFrom(user, address(this), collateralAmount);
IERC20Upgradeable(collateral).approve(address(iMultiCollateralOnOffRamp), collateralAmount);
uint convertedAmount = iMultiCollateralOnOffRamp.onramp(collateral, collateralAmount);
uint lpFeeForDeltaTime = speedMarketsAMMUtils.getFeeByTimeThreshold(
uint64(strikeTime - block.timestamp),
timeThresholdsForFees,
lpFees,
lpFee
);
buyinAmount = (convertedAmount * ONE) / (ONE + safeBoxImpact + lpFeeForDeltaTime);
uint amountDiff = sUSD.balanceOf(address(this)) - amountBefore;
require(amountDiff >= buyinAmount, "not enough received via onramp");
}
function _getSkewByAssetAndDirection(bytes32 _asset, SpeedMarket.Direction _direction) internal view returns (uint) {
return
(((currentRiskPerAssetAndDirection[_asset][_direction] * ONE) /
maxRiskPerAssetAndDirection[_asset][_direction]) * maxSkewImpact) / ONE;
}
function _handleRiskAndGetFee(
bytes32 asset,
SpeedMarket.Direction direction,
uint buyinAmount,
uint64 strikeTime,
uint skewImpact
) internal returns (uint lpFeeWithSkew) {
uint skew = _getSkewByAssetAndDirection(asset, direction);
require(skew <= skewImpact + skewSlippage, "Skew slippage exceeded");
SpeedMarket.Direction oppositeDirection = direction == SpeedMarket.Direction.Up
? SpeedMarket.Direction.Down
: SpeedMarket.Direction.Up;
// calculate discount as half of skew for opposite direction
uint discount = skew == 0 ? _getSkewByAssetAndDirection(asset, oppositeDirection) / 2 : 0;
// decrease risk for opposite direction if there is, otherwise increase risk for current direction
if (currentRiskPerAssetAndDirection[asset][oppositeDirection] > buyinAmount) {
currentRiskPerAssetAndDirection[asset][oppositeDirection] -= buyinAmount;
} else {
currentRiskPerAssetAndDirection[asset][direction] +=
buyinAmount -
currentRiskPerAssetAndDirection[asset][oppositeDirection];
currentRiskPerAssetAndDirection[asset][oppositeDirection] = 0;
require(
currentRiskPerAssetAndDirection[asset][direction] <= maxRiskPerAssetAndDirection[asset][direction],
"Risk per direction exceeded"
);
}
// (LP fee by delta time) + (skew impact based on risk per direction and asset) - (discount as half of opposite skew)
lpFeeWithSkew =
speedMarketsAMMUtils.getFeeByTimeThreshold(
uint64(strikeTime - block.timestamp),
timeThresholdsForFees,
lpFees,
lpFee
) +
skew -
discount;
currentRiskPerAsset[asset] += (buyinAmount * 2 - (buyinAmount * (ONE + lpFeeWithSkew)) / ONE);
require(currentRiskPerAsset[asset] <= maxRiskPerAsset[asset], "Risk per asset exceeded");
}
function _handleReferrerAndSafeBox(
address user,
address referrer,
uint buyinAmount,
IAddressManager.Addresses memory contractsAddresses
) internal returns (uint referrerShare) {
IReferrals iReferrals = IReferrals(contractsAddresses.referrals);
if (address(iReferrals) != address(0)) {
address newOrExistingReferrer;
if (referrer != address(0)) {
iReferrals.setReferrer(referrer, user);
newOrExistingReferrer = referrer;
} else {
newOrExistingReferrer = iReferrals.referrals(user);
}
if (newOrExistingReferrer != address(0)) {
uint referrerFeeByTier = iReferrals.getReferrerFee(newOrExistingReferrer);
if (referrerFeeByTier > 0) {
referrerShare = (buyinAmount * referrerFeeByTier) / ONE;
sUSD.safeTransfer(newOrExistingReferrer, referrerShare);
emit ReferrerPaid(newOrExistingReferrer, user, referrerShare, buyinAmount);
}
}
}
sUSD.safeTransfer(contractsAddresses.safeBox, (buyinAmount * safeBoxImpact) / ONE - referrerShare);
}
function _createNewMarket(
address user,
bytes32 asset,
uint64 strikeTime,
PythStructs.Price calldata pythPrice,
SpeedMarket.Direction direction,
uint buyinAmount,
bool transferSusd,
address referrer,
uint skewImpact,
IAddressManager.Addresses memory contractsAddresses
) internal {
require(supportedAsset[asset], "Asset is not supported");
require(buyinAmount >= minBuyinAmount && buyinAmount <= maxBuyinAmount, "Wrong buy in amount");
require(strikeTime >= (block.timestamp + minimalTimeToMaturity), "Strike time not allowed");
require(strikeTime <= block.timestamp + maximalTimeToMaturity, "Time too far into the future");
uint lpFeeWithSkew = _handleRiskAndGetFee(asset, direction, buyinAmount, strikeTime, skewImpact);
if (transferSusd) {
uint totalAmountToTransfer = (buyinAmount * (ONE + safeBoxImpact + lpFeeWithSkew)) / ONE;
sUSD.safeTransferFrom(user, address(this), totalAmountToTransfer);
}
SpeedMarket srm = SpeedMarket(Clones.clone(speedMarketMastercopy));
srm.initialize(
SpeedMarket.InitParams(
address(this),
user,
asset,
strikeTime,
pythPrice.price,
uint64(pythPrice.publishTime),
direction,
buyinAmount,
safeBoxImpact,
lpFeeWithSkew
)
);
sUSD.safeTransfer(address(srm), buyinAmount * 2);
_handleReferrerAndSafeBox(user, referrer, buyinAmount, contractsAddresses);
_activeMarkets.add(address(srm));
_activeMarketsPerUser[user].add(address(srm));
if (contractsAddresses.stakingThales != address(0)) {
IStakingThales(contractsAddresses.stakingThales).updateVolume(user, buyinAmount);
}
marketHasCreatedAtAttribute[address(srm)] = true;
marketHasFeeAttribute[address(srm)] = true;
emit MarketCreated(address(srm), user, asset, strikeTime, pythPrice.price, direction, buyinAmount);
emit MarketCreatedWithFees(
address(srm),
user,
asset,
strikeTime,
pythPrice.price,
direction,
buyinAmount,
safeBoxImpact,
lpFeeWithSkew
);
}
/// @notice resolveMarket resolves an active market
/// @param market address of the market
function resolveMarket(address market, bytes[] calldata priceUpdateData) external payable nonReentrant notPaused {
_resolveMarket(market, priceUpdateData);
}
/// @notice resolveMarket resolves an active market with offramp
/// @param market address of the market
function resolveMarketWithOfframp(
address market,
bytes[] calldata priceUpdateData,
address collateral,
bool toEth
) external payable nonReentrant notPaused {
require(multicollateralEnabled, "Multicollateral offramp not enabled");
address user = SpeedMarket(market).user();
require(msg.sender == user, "Only allowed from market owner");
uint amountBefore = sUSD.balanceOf(user);
_resolveMarket(market, priceUpdateData);
uint amountDiff = sUSD.balanceOf(user) - amountBefore;
sUSD.safeTransferFrom(user, address(this), amountDiff);
if (amountDiff > 0) {
IMultiCollateralOnOffRamp iMultiCollateralOnOffRamp = IMultiCollateralOnOffRamp(
addressManager.multiCollateralOnOffRamp()
);
if (toEth) {
uint offramped = iMultiCollateralOnOffRamp.offrampIntoEth(amountDiff);
address payable _to = payable(user);
bool sent = _to.send(offramped);
require(sent, "Failed to send Ether");
} else {
uint offramped = iMultiCollateralOnOffRamp.offramp(collateral, amountDiff);
IERC20Upgradeable(collateral).safeTransfer(user, offramped);
}
}
}
/// @notice resolveMarkets in a batch
function resolveMarketsBatch(address[] calldata markets, bytes[] calldata priceUpdateData)
external
payable
nonReentrant
notPaused
{
for (uint i = 0; i < markets.length; i++) {
if (canResolveMarket(markets[i])) {
bytes[] memory subarray = new bytes[](1);
subarray[0] = priceUpdateData[i];
_resolveMarket(markets[i], subarray);
}
}
}
function _resolveMarket(address market, bytes[] memory priceUpdateData) internal {
require(canResolveMarket(market), "Can not resolve");
IPyth iPyth = IPyth(addressManager.pyth());
bytes32[] memory priceIds = new bytes32[](1);
priceIds[0] = assetToPythId[SpeedMarket(market).asset()];
PythStructs.PriceFeed[] memory prices = iPyth.parsePriceFeedUpdates{value: iPyth.getUpdateFee(priceUpdateData)}(
priceUpdateData,
priceIds,
SpeedMarket(market).strikeTime(),
SpeedMarket(market).strikeTime() + maximumPriceDelayForResolving
);
PythStructs.Price memory price = prices[0].price;
require(price.price > 0, "Invalid price");
_resolveMarketWithPrice(market, price.price);
}
/// @notice admin resolve market for a given market address with finalPrice
function resolveMarketManually(address _market, int64 _finalPrice) external isAddressWhitelisted {
_resolveMarketManually(_market, _finalPrice);
}
/// @notice admin resolve for a given markets with finalPrices
function resolveMarketManuallyBatch(address[] calldata markets, int64[] calldata finalPrices)
external
isAddressWhitelisted
{
for (uint i = 0; i < markets.length; i++) {
if (canResolveMarket(markets[i])) {
_resolveMarketManually(markets[i], finalPrices[i]);
}
}
}
/// @notice owner can resolve market for a given market address with finalPrice
function resolveMarketAsOwner(address _market, int64 _finalPrice) external onlyOwner {
require(canResolveMarket(_market), "Can not resolve");
_resolveMarketWithPrice(_market, _finalPrice);
}
function _resolveMarketManually(address _market, int64 _finalPrice) internal {
SpeedMarket.Direction direction = SpeedMarket(_market).direction();
int64 strikePrice = SpeedMarket(_market).strikePrice();
bool isUserWinner = (_finalPrice < strikePrice && direction == SpeedMarket.Direction.Down) ||
(_finalPrice > strikePrice && direction == SpeedMarket.Direction.Up);
require(canResolveMarket(_market) && !isUserWinner, "Can not resolve manually");
_resolveMarketWithPrice(_market, _finalPrice);
}
function _resolveMarketWithPrice(address market, int64 _finalPrice) internal {
SpeedMarket(market).resolve(_finalPrice);
_activeMarkets.remove(market);
_maturedMarkets.add(market);
address user = SpeedMarket(market).user();
if (_activeMarketsPerUser[user].contains(market)) {
_activeMarketsPerUser[user].remove(market);
}
_maturedMarketsPerUser[user].add(market);
bytes32 asset = SpeedMarket(market).asset();
uint buyinAmount = SpeedMarket(market).buyinAmount();
SpeedMarket.Direction direction = SpeedMarket(market).direction();
if (currentRiskPerAssetAndDirection[asset][direction] > buyinAmount) {
currentRiskPerAssetAndDirection[asset][direction] -= buyinAmount;
} else {
currentRiskPerAssetAndDirection[asset][direction] = 0;
}
if (!SpeedMarket(market).isUserWinner()) {
if (currentRiskPerAsset[asset] > 2 * buyinAmount) {
currentRiskPerAsset[asset] -= (2 * buyinAmount);
} else {
currentRiskPerAsset[asset] = 0;
}
}
emit MarketResolved(market, SpeedMarket(market).result(), SpeedMarket(market).isUserWinner());
}
/// @notice Transfer amount to destination address
function transferAmount(address _destination, uint _amount) external onlyOwner {
sUSD.safeTransfer(_destination, _amount);
emit AmountTransfered(_destination, _amount);
}
//////////// getters /////////////////
/// @notice activeMarkets returns list of active markets
/// @param index index of the page
/// @param pageSize number of addresses per page
/// @return address[] active market list
function activeMarkets(uint index, uint pageSize) external view returns (address[] memory) {
return _activeMarkets.getPage(index, pageSize);
}
/// @notice maturedMarkets returns list of matured markets
/// @param index index of the page
/// @param pageSize number of addresses per page
/// @return address[] matured market list
function maturedMarkets(uint index, uint pageSize) external view returns (address[] memory) {
return _maturedMarkets.getPage(index, pageSize);
}
/// @notice activeMarkets returns list of active markets per user
function activeMarketsPerUser(
uint index,
uint pageSize,
address user
) external view returns (address[] memory) {
return _activeMarketsPerUser[user].getPage(index, pageSize);
}
/// @notice maturedMarkets returns list of matured markets per user
function maturedMarketsPerUser(
uint index,
uint pageSize,
address user
) external view returns (address[] memory) {
return _maturedMarketsPerUser[user].getPage(index, pageSize);
}
/// @notice whether a market can be resolved
function canResolveMarket(address market) public view returns (bool) {
return
_activeMarkets.contains(market) &&
(SpeedMarket(market).strikeTime() < block.timestamp) &&
!SpeedMarket(market).resolved();
}
/// @notice get lengths of all arrays
function getLengths(address user) external view returns (uint[5] memory) {
return [
_activeMarkets.elements.length,
_maturedMarkets.elements.length,
_activeMarketsPerUser[user].elements.length,
_maturedMarketsPerUser[user].elements.length,
lpFees.length
];
}
/// @notice get params for chained market
function getParams(bytes32 asset) external view returns (ISpeedMarketsAMM.Params memory) {
ISpeedMarketsAMM.Params memory params;
params.supportedAsset = supportedAsset[asset];
params.safeBoxImpact = safeBoxImpact;
params.maximumPriceDelay = maximumPriceDelay;
return params;
}
//////////////////setters/////////////////
/// @notice Set addresses used in AMM
/// @param _mastercopy to use to create markets
/// @param _speedMarketsAMMUtils address of speed markets AMM utils
/// @param _addressManager address manager contract
function setAMMAddresses(
address _mastercopy,
SpeedMarketsAMMUtils _speedMarketsAMMUtils,
address _addressManager
) external onlyOwner {
speedMarketMastercopy = _mastercopy;
speedMarketsAMMUtils = _speedMarketsAMMUtils;
addressManager = IAddressManager(_addressManager);
emit AMMAddressesChanged(_mastercopy, _speedMarketsAMMUtils, _addressManager);
}
/// @notice Set parameters for limits
function setLimitParams(
uint _minBuyinAmount,
uint _maxBuyinAmount,
uint _minimalTimeToMaturity,
uint _maximalTimeToMaturity,
uint64 _maximumPriceDelay,
uint64 _maximumPriceDelayForResolving
) external onlyOwner {
minBuyinAmount = _minBuyinAmount;
maxBuyinAmount = _maxBuyinAmount;
minimalTimeToMaturity = _minimalTimeToMaturity;
maximalTimeToMaturity = _maximalTimeToMaturity;
maximumPriceDelay = _maximumPriceDelay;
maximumPriceDelayForResolving = _maximumPriceDelayForResolving;
emit LimitParamsChanged(
_minBuyinAmount,
_maxBuyinAmount,
_minimalTimeToMaturity,
_maximalTimeToMaturity,
_maximumPriceDelay,
_maximumPriceDelayForResolving
);
}
/// @notice maximum risk per asset and per asset and direction
function setMaxRisks(
bytes32 asset,
uint _maxRiskPerAsset,
uint _maxRiskPerAssetAndDirection
) external onlyOwner {
maxRiskPerAsset[asset] = _maxRiskPerAsset;
currentRiskPerAsset[asset] = 0;
maxRiskPerAssetAndDirection[asset][SpeedMarket.Direction.Up] = _maxRiskPerAssetAndDirection;
maxRiskPerAssetAndDirection[asset][SpeedMarket.Direction.Down] = _maxRiskPerAssetAndDirection;
emit SetMaxRisks(asset, _maxRiskPerAsset, _maxRiskPerAssetAndDirection);
}
/// @notice set SafeBox, max skew impact and skew slippage
/// @param _safeBoxImpact safebox impact
/// @param _maxSkewImpact skew impact
/// @param _skewSlippage skew slippage
function setSafeBoxAndMaxSkewImpact(
uint _safeBoxImpact,
uint _maxSkewImpact,
uint _skewSlippage
) external onlyOwner {
safeBoxImpact = _safeBoxImpact;
maxSkewImpact = _maxSkewImpact;
skewSlippage = _skewSlippage;
emit SafeBoxAndMaxSkewImpactChanged(_safeBoxImpact, _maxSkewImpact, _skewSlippage);
}
/// @notice set LP fee params
/// @param _timeThresholds array of time thresholds (minutes) for different fees in ascending order
/// @param _lpFees array of fees applied to each time frame defined in _timeThresholds
/// @param _lpFee default LP fee when there are no dynamic fees
function setLPFeeParams(
uint[] calldata _timeThresholds,
uint[] calldata _lpFees,
uint _lpFee
) external onlyOwner {
require(_timeThresholds.length == _lpFees.length, "Times and fees must have the same length");
delete timeThresholdsForFees;
delete lpFees;
for (uint i = 0; i < _timeThresholds.length; i++) {
timeThresholdsForFees.push(_timeThresholds[i]);
lpFees.push(_lpFees[i]);
}
lpFee = _lpFee;
emit SetLPFeeParams(_timeThresholds, _lpFees, _lpFee);
}
/// @notice set whether an asset is supported
function setSupportedAsset(bytes32 asset, bool _supported) external onlyOwner {
supportedAsset[asset] = _supported;
emit SetSupportedAsset(asset, _supported);
}
/// @notice map asset to PythID, e.g. "ETH" as bytes 32 to an equivalent ID from pyth docs
function setAssetToPythID(bytes32 asset, bytes32 pythId) external onlyOwner {
assetToPythId[asset] = pythId;
emit SetAssetToPythID(asset, pythId);
}
/// @notice set sUSD address (default collateral)
function setSusdAddress(address _sUSD) external onlyOwner {
sUSD = IERC20Upgradeable(_sUSD);
emit SusdAddressChanged(_sUSD);
}
/// @notice set multi-collateral enabled
function setMultiCollateralOnOffRampEnabled(bool _enabled) external onlyOwner {
address multiCollateralAddress = addressManager.multiCollateralOnOffRamp();
if (multiCollateralAddress != address(0)) {
sUSD.approve(multiCollateralAddress, _enabled ? MAX_APPROVAL : 0);
}
multicollateralEnabled = _enabled;
emit MultiCollateralOnOffRampEnabled(_enabled);
}
/// @notice adding/removing whitelist address depending on a flag
/// @param _whitelistAddress address that needed to be whitelisted or removed from WL
/// @param _flag adding or removing from whitelist (true: add, false: remove)
function addToWhitelist(address _whitelistAddress, bool _flag) external onlyOwner {
require(_whitelistAddress != address(0));
whitelistedAddresses[_whitelistAddress] = _flag;
emit AddedIntoWhitelist(_whitelistAddress, _flag);
}
//////////////////modifiers/////////////////
modifier isAddressWhitelisted() {
require(whitelistedAddresses[msg.sender], "Resolver not whitelisted");
_;
}
modifier onlyCreator() {
address speedMarketsCreator = addressManager.getAddress("SpeedMarketsAMMCreator");
require(msg.sender == speedMarketsCreator, "only from Creator");
_;
}
//////////////////events/////////////////
event MarketCreated(
address _market,
address _user,
bytes32 _asset,
uint _strikeTime,
int64 _strikePrice,
SpeedMarket.Direction _direction,
uint _buyinAmount
);
event MarketCreatedWithFees(
address _market,
address _user,
bytes32 _asset,
uint _strikeTime,
int64 _strikePrice,
SpeedMarket.Direction _direction,
uint _buyinAmount,
uint _safeBoxImpact,
uint _lpFee
);
event MarketResolved(address _market, SpeedMarket.Direction _result, bool _userIsWinner);
event AMMAddressesChanged(address _mastercopy, SpeedMarketsAMMUtils _speedMarketsAMMUtils, address _addressManager);
event LimitParamsChanged(
uint _minBuyinAmount,
uint _maxBuyinAmount,
uint _minimalTimeToMaturity,
uint _maximalTimeToMaturity,
uint _maximumPriceDelay,
uint _maximumPriceDelayForResolving
);
event SetMaxRisks(bytes32 asset, uint _maxRiskPerAsset, uint _maxRiskPerAssetAndDirection);
event SafeBoxAndMaxSkewImpactChanged(uint _safeBoxImpact, uint _maxSkewImpact, uint _skewSlippage);
event SetLPFeeParams(uint[] _timeThresholds, uint[] _lpFees, uint _lpFee);
event SetSupportedAsset(bytes32 asset, bool _supported);
event SetAssetToPythID(bytes32 asset, bytes32 pythId);
event AddedIntoWhitelist(address _whitelistAddress, bool _flag);
event SusdAddressChanged(address _sUSD);
event MultiCollateralOnOffRampEnabled(bool _enabled);
event ReferrerPaid(address refferer, address trader, uint amount, uint volume);
event AmountTransfered(address _destination, uint _amount);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20Upgradeable.sol";
import "../../../utils/AddressUpgradeable.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20Upgradeable {
using AddressUpgradeable for address;
function safeTransfer(
IERC20Upgradeable token,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(
IERC20Upgradeable token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20Upgradeable token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(
IERC20Upgradeable token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20Upgradeable token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20Upgradeable token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library MathUpgradeable {
/**
* @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 / b + (a % b == 0 ? 0 : 1);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
function __Ownable_init() internal onlyInitializing {
__Context_init_unchained();
__Ownable_init_unchained();
}
function __Ownable_init_unchained() internal onlyInitializing {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
uint256[49] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (proxy/utils/Initializable.sol)
pragma solidity ^0.8.0;
import "../../utils/AddressUpgradeable.sol";
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*
* [CAUTION]
* ====
* Avoid leaving a contract uninitialized.
*
* An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
* contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the
* initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed:
*
* [.hljs-theme-light.nopadding]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() initializer {}
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
*/
bool private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Modifier to protect an initializer function from being invoked twice.
*/
modifier initializer() {
// If the contract is initializing we ignore whether _initialized is set in order to support multiple
// inheritance patterns, but we only do this in the context of a constructor, because in other contexts the
// contract may have been reentered.
require(_initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized");
bool isTopLevelCall = !_initializing;
if (isTopLevelCall) {
_initializing = true;
_initialized = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
}
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} modifier, directly or indirectly.
*/
modifier onlyInitializing() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
function _isConstructor() private view returns (bool) {
return !AddressUpgradeable.isContract(address(this));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 SafeMathUpgradeable {
/**
* @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 substraction 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 v4.4.1 (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20Upgradeable {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract PausableUpgradeable is Initializable, ContextUpgradeable {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
function __Pausable_init() internal onlyInitializing {
__Context_init_unchained();
__Pausable_init_unchained();
}
function __Pausable_init_unchained() internal onlyInitializing {
_paused = false;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
require(!paused(), "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
require(paused(), "Pausable: not paused");
_;
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
uint256[49] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (proxy/Clones.sol)
pragma solidity ^0.8.0;
/**
* @dev https://eips.ethereum.org/EIPS/eip-1167[EIP 1167] is a standard for
* deploying minimal proxy contracts, also known as "clones".
*
* > To simply and cheaply clone contract functionality in an immutable way, this standard specifies
* > a minimal bytecode implementation that delegates all calls to a known, fixed address.
*
* The library includes functions to deploy a proxy using either `create` (traditional deployment) or `create2`
* (salted deterministic deployment). It also includes functions to predict the addresses of clones deployed using the
* deterministic method.
*
* _Available since v3.4._
*/
library Clones {
/**
* @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`.
*
* This function uses the create opcode, which should never revert.
*/
function clone(address implementation) internal returns (address instance) {
/// @solidity memory-safe-assembly
assembly {
let ptr := mload(0x40)
mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000)
mstore(add(ptr, 0x14), shl(0x60, implementation))
mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000)
instance := create(0, ptr, 0x37)
}
require(instance != address(0), "ERC1167: create failed");
}
/**
* @dev Deploys and returns the address of a clone that mimics the behaviour of `implementation`.
*
* This function uses the create2 opcode and a `salt` to deterministically deploy
* the clone. Using the same `implementation` and `salt` multiple time will revert, since
* the clones cannot be deployed twice at the same address.
*/
function cloneDeterministic(address implementation, bytes32 salt) internal returns (address instance) {
/// @solidity memory-safe-assembly
assembly {
let ptr := mload(0x40)
mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000)
mstore(add(ptr, 0x14), shl(0x60, implementation))
mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000)
instance := create2(0, ptr, 0x37, salt)
}
require(instance != address(0), "ERC1167: create2 failed");
}
/**
* @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}.
*/
function predictDeterministicAddress(
address implementation,
bytes32 salt,
address deployer
) internal pure returns (address predicted) {
/// @solidity memory-safe-assembly
assembly {
let ptr := mload(0x40)
mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000)
mstore(add(ptr, 0x14), shl(0x60, implementation))
mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf3ff00000000000000000000000000000000)
mstore(add(ptr, 0x38), shl(0x60, deployer))
mstore(add(ptr, 0x4c), salt)
mstore(add(ptr, 0x6c), keccak256(ptr, 0x37))
predicted := keccak256(add(ptr, 0x37), 0x55)
}
}
/**
* @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}.
*/
function predictDeterministicAddress(address implementation, bytes32 salt)
internal
view
returns (address predicted)
{
return predictDeterministicAddress(implementation, salt, address(this));
}
}// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;
import "./PythStructs.sol";
import "./IPythEvents.sol";
/// @title Consume prices from the Pyth Network (https://pyth.network/).
/// @dev Please refer to the guidance at https://docs.pyth.network/consumers/best-practices for how to consume prices safely.
/// @author Pyth Data Association
interface IPyth is IPythEvents {
/// @notice Returns the period (in seconds) that a price feed is considered valid since its publish time
function getValidTimePeriod() external view returns (uint validTimePeriod);
/// @notice Returns the price and confidence interval.
/// @dev Reverts if the price has not been updated within the last `getValidTimePeriod()` seconds.
/// @param id The Pyth Price Feed ID of which to fetch the price and confidence interval.
/// @return price - please read the documentation of PythStructs.Price to understand how to use this safely.
function getPrice(
bytes32 id
) external view returns (PythStructs.Price memory price);
/// @notice Returns the exponentially-weighted moving average price and confidence interval.
/// @dev Reverts if the EMA price is not available.
/// @param id The Pyth Price Feed ID of which to fetch the EMA price and confidence interval.
/// @return price - please read the documentation of PythStructs.Price to understand how to use this safely.
function getEmaPrice(
bytes32 id
) external view returns (PythStructs.Price memory price);
/// @notice Returns the price of a price feed without any sanity checks.
/// @dev This function returns the most recent price update in this contract without any recency checks.
/// This function is unsafe as the returned price update may be arbitrarily far in the past.
///
/// Users of this function should check the `publishTime` in the price to ensure that the returned price is
/// sufficiently recent for their application. If you are considering using this function, it may be
/// safer / easier to use either `getPrice` or `getPriceNoOlderThan`.
/// @return price - please read the documentation of PythStructs.Price to understand how to use this safely.
function getPriceUnsafe(
bytes32 id
) external view returns (PythStructs.Price memory price);
/// @notice Returns the price that is no older than `age` seconds of the current time.
/// @dev This function is a sanity-checked version of `getPriceUnsafe` which is useful in
/// applications that require a sufficiently-recent price. Reverts if the price wasn't updated sufficiently
/// recently.
/// @return price - please read the documentation of PythStructs.Price to understand how to use this safely.
function getPriceNoOlderThan(
bytes32 id,
uint age
) external view returns (PythStructs.Price memory price);
/// @notice Returns the exponentially-weighted moving average price of a price feed without any sanity checks.
/// @dev This function returns the same price as `getEmaPrice` in the case where the price is available.
/// However, if the price is not recent this function returns the latest available price.
///
/// The returned price can be from arbitrarily far in the past; this function makes no guarantees that
/// the returned price is recent or useful for any particular application.
///
/// Users of this function should check the `publishTime` in the price to ensure that the returned price is
/// sufficiently recent for their application. If you are considering using this function, it may be
/// safer / easier to use either `getEmaPrice` or `getEmaPriceNoOlderThan`.
/// @return price - please read the documentation of PythStructs.Price to understand how to use this safely.
function getEmaPriceUnsafe(
bytes32 id
) external view returns (PythStructs.Price memory price);
/// @notice Returns the exponentially-weighted moving average price that is no older than `age` seconds
/// of the current time.
/// @dev This function is a sanity-checked version of `getEmaPriceUnsafe` which is useful in
/// applications that require a sufficiently-recent price. Reverts if the price wasn't updated sufficiently
/// recently.
/// @return price - please read the documentation of PythStructs.Price to understand how to use this safely.
function getEmaPriceNoOlderThan(
bytes32 id,
uint age
) external view returns (PythStructs.Price memory price);
/// @notice Update price feeds with given update messages.
/// This method requires the caller to pay a fee in wei; the required fee can be computed by calling
/// `getUpdateFee` with the length of the `updateData` array.
/// Prices will be updated if they are more recent than the current stored prices.
/// The call will succeed even if the update is not the most recent.
/// @dev Reverts if the transferred fee is not sufficient or the updateData is invalid.
/// @param updateData Array of price update data.
function updatePriceFeeds(bytes[] calldata updateData) external payable;
/// @notice Wrapper around updatePriceFeeds that rejects fast if a price update is not necessary. A price update is
/// necessary if the current on-chain publishTime is older than the given publishTime. It relies solely on the
/// given `publishTimes` for the price feeds and does not read the actual price update publish time within `updateData`.
///
/// This method requires the caller to pay a fee in wei; the required fee can be computed by calling
/// `getUpdateFee` with the length of the `updateData` array.
///
/// `priceIds` and `publishTimes` are two arrays with the same size that correspond to senders known publishTime
/// of each priceId when calling this method. If all of price feeds within `priceIds` have updated and have
/// a newer or equal publish time than the given publish time, it will reject the transaction to save gas.
/// Otherwise, it calls updatePriceFeeds method to update the prices.
///
/// @dev Reverts if update is not needed or the transferred fee is not sufficient or the updateData is invalid.
/// @param updateData Array of price update data.
/// @param priceIds Array of price ids.
/// @param publishTimes Array of publishTimes. `publishTimes[i]` corresponds to known `publishTime` of `priceIds[i]`
function updatePriceFeedsIfNecessary(
bytes[] calldata updateData,
bytes32[] calldata priceIds,
uint64[] calldata publishTimes
) external payable;
/// @notice Returns the required fee to update an array of price updates.
/// @param updateData Array of price update data.
/// @return feeAmount The required fee in Wei.
function getUpdateFee(
bytes[] calldata updateData
) external view returns (uint feeAmount);
/// @notice Parse `updateData` and return price feeds of the given `priceIds` if they are all published
/// within `minPublishTime` and `maxPublishTime`.
///
/// You can use this method if you want to use a Pyth price at a fixed time and not the most recent price;
/// otherwise, please consider using `updatePriceFeeds`. This method does not store the price updates on-chain.
///
/// This method requires the caller to pay a fee in wei; the required fee can be computed by calling
/// `getUpdateFee` with the length of the `updateData` array.
///
///
/// @dev Reverts if the transferred fee is not sufficient or the updateData is invalid or there is
/// no update for any of the given `priceIds` within the given time range.
/// @param updateData Array of price update data.
/// @param priceIds Array of price ids.
/// @param minPublishTime minimum acceptable publishTime for the given `priceIds`.
/// @param maxPublishTime maximum acceptable publishTime for the given `priceIds`.
/// @return priceFeeds Array of the price feeds corresponding to the given `priceIds` (with the same order).
function parsePriceFeedUpdates(
bytes[] calldata updateData,
bytes32[] calldata priceIds,
uint64 minPublishTime,
uint64 maxPublishTime
) external payable returns (PythStructs.PriceFeed[] memory priceFeeds);
}// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;
contract PythStructs {
// A price with a degree of uncertainty, represented as a price +- a confidence interval.
//
// The confidence interval roughly corresponds to the standard error of a normal distribution.
// Both the price and confidence are stored in a fixed-point numeric representation,
// `x * (10^expo)`, where `expo` is the exponent.
//
// Please refer to the documentation at https://docs.pyth.network/consumers/best-practices for how
// to how this price safely.
struct Price {
// Price
int64 price;
// Confidence interval around the price
uint64 conf;
// Price exponent
int32 expo;
// Unix timestamp describing when the price was published
uint publishTime;
}
// PriceFeed represents a current aggregate price from pyth publisher feeds.
struct PriceFeed {
// The price ID.
bytes32 id;
// Latest available price
Price price;
// Latest available exponentially-weighted moving average price
Price emaPrice;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the `nonReentrant` modifier
* available, which can be aplied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*/
contract ProxyReentrancyGuard {
/// @dev counter to allow mutex lock with only one SSTORE operation
uint256 private _guardCounter;
bool private _initialized;
function initNonReentrant() public {
require(!_initialized, "Already initialized");
_initialized = true;
_guardCounter = 1;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and make it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_guardCounter += 1;
uint256 localCounter = _guardCounter;
_;
require(localCounter == _guardCounter, "ReentrancyGuard: reentrant call");
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// Clone of syntetix contract without constructor
contract ProxyOwned {
address public owner;
address public nominatedOwner;
bool private _initialized;
bool private _transferredAtInit;
function setOwner(address _owner) public {
require(_owner != address(0), "Owner address cannot be 0");
require(!_initialized, "Already initialized, use nominateNewOwner");
_initialized = true;
owner = _owner;
emit OwnerChanged(address(0), _owner);
}
function nominateNewOwner(address _owner) external onlyOwner {
nominatedOwner = _owner;
emit OwnerNominated(_owner);
}
function acceptOwnership() external {
require(msg.sender == nominatedOwner, "You must be nominated before you can accept ownership");
emit OwnerChanged(owner, nominatedOwner);
owner = nominatedOwner;
nominatedOwner = address(0);
}
function transferOwnershipAtInit(address proxyAddress) external onlyOwner {
require(proxyAddress != address(0), "Invalid address");
require(!_transferredAtInit, "Already transferred");
owner = proxyAddress;
_transferredAtInit = true;
emit OwnerChanged(owner, proxyAddress);
}
modifier onlyOwner {
_onlyOwner();
_;
}
function _onlyOwner() private view {
require(msg.sender == owner, "Only the contract owner may perform this action");
}
event OwnerNominated(address newOwner);
event OwnerChanged(address oldOwner, address newOwner);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// Inheritance
import "./ProxyOwned.sol";
// Clone of syntetix contract without constructor
contract ProxyPausable is ProxyOwned {
uint public lastPauseTime;
bool public paused;
/**
* @notice Change the paused state of the contract
* @dev Only the contract owner may call this.
*/
function setPaused(bool _paused) external onlyOwner {
// Ensure we're actually changing the state before we do anything
if (_paused == paused) {
return;
}
// Set our paused state.
paused = _paused;
// If applicable, set the last pause time.
if (paused) {
lastPauseTime = block.timestamp;
}
// Let everyone know that our pause state has changed.
emit PauseChanged(paused);
}
event PauseChanged(bool isPaused);
modifier notPaused {
require(!paused, "This action cannot be performed while the contract is paused");
_;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
library AddressSetLib {
struct AddressSet {
address[] elements;
mapping(address => uint) indices;
}
function contains(AddressSet storage set, address candidate) internal view returns (bool) {
if (set.elements.length == 0) {
return false;
}
uint index = set.indices[candidate];
return index != 0 || set.elements[0] == candidate;
}
function getPage(
AddressSet storage set,
uint index,
uint pageSize
) internal view returns (address[] memory) {
// NOTE: This implementation should be converted to slice operators if the compiler is updated to v0.6.0+
uint endIndex = index + pageSize; // The check below that endIndex <= index handles overflow.
// If the page extends past the end of the list, truncate it.
if (endIndex > set.elements.length) {
endIndex = set.elements.length;
}
if (endIndex <= index) {
return new address[](0);
}
uint n = endIndex - index; // We already checked for negative overflow.
address[] memory page = new address[](n);
for (uint i; i < n; i++) {
page[i] = set.elements[i + index];
}
return page;
}
function add(AddressSet storage set, address element) internal {
// Adding to a set is an idempotent operation.
if (!contains(set, element)) {
set.indices[element] = set.elements.length;
set.elements.push(element);
}
}
function remove(AddressSet storage set, address element) internal {
require(contains(set, element), "Element not in set.");
// Replace the removed element with the last element of the list.
uint index = set.indices[element];
uint lastIndex = set.elements.length - 1; // We required that element is in the list, so it is not empty.
if (index != lastIndex) {
// No need to shift the last element if it is the one we want to delete.
address shiftedElement = set.elements[lastIndex];
set.elements[index] = shiftedElement;
set.indices[shiftedElement] = index;
}
set.elements.pop();
delete set.indices[element];
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.5.16;
interface IStakingThales {
function updateVolume(address account, uint amount) external;
function updateStakingRewards(
uint _currentPeriodRewards,
uint _extraRewards,
uint _revShare
) external;
/* ========== VIEWS / VARIABLES ========== */
function totalStakedAmount() external view returns (uint);
function stakedBalanceOf(address account) external view returns (uint);
function currentPeriodRewards() external view returns (uint);
function currentPeriodFees() external view returns (uint);
function getLastPeriodOfClaimedRewards(address account) external view returns (uint);
function getRewardsAvailable(address account) external view returns (uint);
function getRewardFeesAvailable(address account) external view returns (uint);
function getAlreadyClaimedRewards(address account) external view returns (uint);
function getContractRewardFunds() external view returns (uint);
function getContractFeeFunds() external view returns (uint);
function getAMMVolume(address account) external view returns (uint);
function updateVolumeAtAmountDecimals(
address account,
uint amount,
uint decimals
) external;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.5.16;
interface IMultiCollateralOnOffRamp {
function onramp(address collateral, uint collateralAmount) external returns (uint);
function onrampWithEth(uint amount) external payable returns (uint);
function getMinimumReceived(address collateral, uint amount) external view returns (uint);
function getMinimumNeeded(address collateral, uint amount) external view returns (uint);
function WETH9() external view returns (address);
function offrampIntoEth(uint amount) external returns (uint);
function offramp(address collateral, uint amount) external returns (uint);
function offrampFromIntoEth(address collateralFrom, uint amount) external returns (uint);
function offrampFrom(
address collateralFrom,
address collateralTo,
uint amount
) external returns (uint);
function priceFeed() external view returns (address);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.5.16;
interface IReferrals {
function referrals(address) external view returns (address);
function getReferrerFee(address) external view returns (uint);
function sportReferrals(address) external view returns (address);
function setReferrer(address, address) external;
}// SPDX-License-Identifier: MIT
pragma solidity >=0.5.16;
interface IAddressManager {
struct Addresses {
address safeBox;
address referrals;
address stakingThales;
address multiCollateralOnOffRamp;
address pyth;
address speedMarketsAMM;
}
function safeBox() external view returns (address);
function referrals() external view returns (address);
function stakingThales() external view returns (address);
function multiCollateralOnOffRamp() external view returns (address);
function pyth() external view returns (address);
function speedMarketsAMM() external view returns (address);
function getAddresses() external view returns (Addresses memory);
function getAddresses(string[] calldata _contractNames) external view returns (address[] memory contracts);
function getAddress(string memory _contractName) external view returns (address contract_);
function checkIfContractExists(string memory _contractName) external view returns (bool contractExists);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.5.16;
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import "@pythnetwork/pyth-sdk-solidity/PythStructs.sol";
import "../SpeedMarkets/SpeedMarket.sol";
import "../SpeedMarkets/SpeedMarketsAMM.sol";
interface ISpeedMarketsAMM {
struct Params {
bool supportedAsset;
uint safeBoxImpact;
uint64 maximumPriceDelay;
}
function sUSD() external view returns (IERC20Upgradeable);
function createNewMarket(SpeedMarketsAMM.CreateMarketParams calldata _params) external;
function supportedAsset(bytes32 _asset) external view returns (bool);
function assetToPythId(bytes32 _asset) external view returns (bytes32);
function minBuyinAmount() external view returns (uint);
function maxBuyinAmount() external view returns (uint);
function minimalTimeToMaturity() external view returns (uint);
function maximalTimeToMaturity() external view returns (uint);
function maximumPriceDelay() external view returns (uint64);
function maximumPriceDelayForResolving() external view returns (uint64);
function timeThresholdsForFees(uint _index) external view returns (uint);
function lpFees(uint _index) external view returns (uint);
function lpFee() external view returns (uint);
function maxSkewImpact() external view returns (uint);
function safeBoxImpact() external view returns (uint);
function marketHasCreatedAtAttribute(address _market) external view returns (bool);
function marketHasFeeAttribute(address _market) external view returns (bool);
function maxRiskPerAsset(bytes32 _asset) external view returns (uint);
function currentRiskPerAsset(bytes32 _asset) external view returns (uint);
function maxRiskPerAssetAndDirection(bytes32 _asset, SpeedMarket.Direction _direction) external view returns (uint);
function currentRiskPerAssetAndDirection(bytes32 _asset, SpeedMarket.Direction _direction) external view returns (uint);
function whitelistedAddresses(address _wallet) external view returns (bool);
function getLengths(address _user) external view returns (uint[5] memory);
function getParams(bytes32 _asset) external view returns (Params memory);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import "../interfaces/ISpeedMarketsAMM.sol";
contract SpeedMarket {
using SafeERC20Upgradeable for IERC20Upgradeable;
struct InitParams {
address _speedMarketsAMM;
address _user;
bytes32 _asset;
uint64 _strikeTime;
int64 _strikePrice;
uint64 _strikePricePublishTime;
Direction _direction;
uint _buyinAmount;
uint _safeBoxImpact;
uint _lpFee;
}
enum Direction {
Up,
Down
}
address public user;
bytes32 public asset;
uint64 public strikeTime;
int64 public strikePrice;
uint64 public strikePricePublishTime;
Direction public direction;
uint public buyinAmount;
bool public resolved;
int64 public finalPrice;
Direction public result;
ISpeedMarketsAMM public speedMarketsAMM;
uint public safeBoxImpact;
uint public lpFee;
uint256 public createdAt;
/* ========== CONSTRUCTOR ========== */
bool public initialized = false;
function initialize(InitParams calldata params) external {
require(!initialized, "Speed market already initialized");
initialized = true;
speedMarketsAMM = ISpeedMarketsAMM(params._speedMarketsAMM);
user = params._user;
asset = params._asset;
strikeTime = params._strikeTime;
strikePrice = params._strikePrice;
strikePricePublishTime = params._strikePricePublishTime;
direction = params._direction;
buyinAmount = params._buyinAmount;
safeBoxImpact = params._safeBoxImpact;
lpFee = params._lpFee;
speedMarketsAMM.sUSD().approve(params._speedMarketsAMM, type(uint256).max);
createdAt = block.timestamp;
}
function resolve(int64 _finalPrice) external onlyAMM {
require(!resolved, "already resolved");
require(block.timestamp > strikeTime, "not ready to be resolved");
resolved = true;
finalPrice = _finalPrice;
if (finalPrice < strikePrice) {
result = Direction.Down;
} else if (finalPrice > strikePrice) {
result = Direction.Up;
} else {
result = direction == Direction.Up ? Direction.Down : Direction.Up;
}
if (direction == result) {
speedMarketsAMM.sUSD().safeTransfer(user, speedMarketsAMM.sUSD().balanceOf(address(this)));
} else {
speedMarketsAMM.sUSD().safeTransfer(address(speedMarketsAMM), speedMarketsAMM.sUSD().balanceOf(address(this)));
}
emit Resolved(finalPrice, result, direction == result);
}
function isUserWinner() external view returns (bool) {
return resolved && (direction == result);
}
modifier onlyAMM() {
require(msg.sender == address(speedMarketsAMM), "only the AMM may perform these methods");
_;
}
event Resolved(int64 finalPrice, Direction result, bool userIsWinner);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/// @title An AMM utils for Thales speed markets
contract SpeedMarketsAMMUtils {
uint private constant SECONDS_PER_MINUTE = 60;
/// @notice get dynamic fee based on defined time thresholds for a given delta time
/// @param _deltaTimeSec to search for appropriate time range (in seconds)
/// @param _timeThresholds array of time thresholds for each fee (in minutes)
/// @param _fees array of fees for every time range
/// @param _defaultFee if _deltaTime doesn't have appropriate time range return this value
/// @return fee defined for specific time range to which _deltaTime belongs to
function getFeeByTimeThreshold(
uint64 _deltaTimeSec,
uint[] calldata _timeThresholds,
uint[] calldata _fees,
uint _defaultFee
) external pure returns (uint fee) {
fee = _defaultFee;
uint _deltaTime = _deltaTimeSec / SECONDS_PER_MINUTE;
for (uint i = _timeThresholds.length; i > 0; i--) {
if (_deltaTime >= _timeThresholds[i - 1]) {
fee = _fees[i - 1];
break;
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library AddressUpgradeable {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract ContextUpgradeable is Initializable {
function __Context_init() internal onlyInitializing {
__Context_init_unchained();
}
function __Context_init_unchained() internal onlyInitializing {
}
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
uint256[50] private __gap;
}// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;
/// @title IPythEvents contains the events that Pyth contract emits.
/// @dev This interface can be used for listening to the updates for off-chain and testing purposes.
interface IPythEvents {
/// @dev Emitted when the price feed with `id` has received a fresh update.
/// @param id The Pyth Price Feed ID.
/// @param publishTime Publish time of the given price update.
/// @param price Price of the given price update.
/// @param conf Confidence interval of the given price update.
event PriceFeedUpdate(
bytes32 indexed id,
uint64 publishTime,
int64 price,
uint64 conf
);
/// @dev Emitted when a batch price update is processed successfully.
/// @param chainId ID of the source chain that the batch price update comes from.
/// @param sequenceNumber Sequence number of the batch price update.
event BatchPriceFeedUpdate(uint16 chainId, uint64 sequenceNumber);
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_mastercopy","type":"address"},{"indexed":false,"internalType":"contract SpeedMarketsAMMUtils","name":"_speedMarketsAMMUtils","type":"address"},{"indexed":false,"internalType":"address","name":"_addressManager","type":"address"}],"name":"AMMAddressesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_whitelistAddress","type":"address"},{"indexed":false,"internalType":"bool","name":"_flag","type":"bool"}],"name":"AddedIntoWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_destination","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"AmountTransfered","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_minBuyinAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_maxBuyinAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_minimalTimeToMaturity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_maximalTimeToMaturity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_maximumPriceDelay","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_maximumPriceDelayForResolving","type":"uint256"}],"name":"LimitParamsChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_market","type":"address"},{"indexed":false,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"bytes32","name":"_asset","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"_strikeTime","type":"uint256"},{"indexed":false,"internalType":"int64","name":"_strikePrice","type":"int64"},{"indexed":false,"internalType":"enum SpeedMarket.Direction","name":"_direction","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"_buyinAmount","type":"uint256"}],"name":"MarketCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_market","type":"address"},{"indexed":false,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"bytes32","name":"_asset","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"_strikeTime","type":"uint256"},{"indexed":false,"internalType":"int64","name":"_strikePrice","type":"int64"},{"indexed":false,"internalType":"enum SpeedMarket.Direction","name":"_direction","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"_buyinAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_safeBoxImpact","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_lpFee","type":"uint256"}],"name":"MarketCreatedWithFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_market","type":"address"},{"indexed":false,"internalType":"enum SpeedMarket.Direction","name":"_result","type":"uint8"},{"indexed":false,"internalType":"bool","name":"_userIsWinner","type":"bool"}],"name":"MarketResolved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_enabled","type":"bool"}],"name":"MultiCollateralOnOffRampEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldOwner","type":"address"},{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerNominated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isPaused","type":"bool"}],"name":"PauseChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"refferer","type":"address"},{"indexed":false,"internalType":"address","name":"trader","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"volume","type":"uint256"}],"name":"ReferrerPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_safeBoxImpact","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_maxSkewImpact","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_skewSlippage","type":"uint256"}],"name":"SafeBoxAndMaxSkewImpactChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"asset","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"pythId","type":"bytes32"}],"name":"SetAssetToPythID","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256[]","name":"_timeThresholds","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"_lpFees","type":"uint256[]"},{"indexed":false,"internalType":"uint256","name":"_lpFee","type":"uint256"}],"name":"SetLPFeeParams","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"asset","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"_maxRiskPerAsset","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_maxRiskPerAssetAndDirection","type":"uint256"}],"name":"SetMaxRisks","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"asset","type":"bytes32"},{"indexed":false,"internalType":"bool","name":"_supported","type":"bool"}],"name":"SetSupportedAsset","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_sUSD","type":"address"}],"name":"SusdAddressChanged","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"pageSize","type":"uint256"}],"name":"activeMarkets","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"pageSize","type":"uint256"},{"internalType":"address","name":"user","type":"address"}],"name":"activeMarketsPerUser","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_whitelistAddress","type":"address"},{"internalType":"bool","name":"_flag","type":"bool"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"addressManager","outputs":[{"internalType":"contract IAddressManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"assetToPythId","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"market","type":"address"}],"name":"canResolveMarket","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bytes32","name":"asset","type":"bytes32"},{"internalType":"uint64","name":"strikeTime","type":"uint64"},{"internalType":"uint64","name":"delta","type":"uint64"},{"components":[{"internalType":"int64","name":"price","type":"int64"},{"internalType":"uint64","name":"conf","type":"uint64"},{"internalType":"int32","name":"expo","type":"int32"},{"internalType":"uint256","name":"publishTime","type":"uint256"}],"internalType":"struct PythStructs.Price","name":"pythPrice","type":"tuple"},{"internalType":"enum SpeedMarket.Direction","name":"direction","type":"uint8"},{"internalType":"address","name":"collateral","type":"address"},{"internalType":"uint256","name":"collateralAmount","type":"uint256"},{"internalType":"address","name":"referrer","type":"address"},{"internalType":"uint256","name":"skewImpact","type":"uint256"}],"internalType":"struct SpeedMarketsAMM.CreateMarketParams","name":"_params","type":"tuple"}],"name":"createNewMarket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"currentRiskPerAsset","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"enum SpeedMarket.Direction","name":"","type":"uint8"}],"name":"currentRiskPerAssetAndDirection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getLengths","outputs":[{"internalType":"uint256[5]","name":"","type":"uint256[5]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"asset","type":"bytes32"}],"name":"getParams","outputs":[{"components":[{"internalType":"bool","name":"supportedAsset","type":"bool"},{"internalType":"uint256","name":"safeBoxImpact","type":"uint256"},{"internalType":"uint64","name":"maximumPriceDelay","type":"uint64"}],"internalType":"struct ISpeedMarketsAMM.Params","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initNonReentrant","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"contract IERC20Upgradeable","name":"_sUSD","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastPauseTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lpFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"marketHasCreatedAtAttribute","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"marketHasFeeAttribute","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"pageSize","type":"uint256"}],"name":"maturedMarkets","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"pageSize","type":"uint256"},{"internalType":"address","name":"user","type":"address"}],"name":"maturedMarketsPerUser","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyinAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"maxRiskPerAsset","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"enum SpeedMarket.Direction","name":"","type":"uint8"}],"name":"maxRiskPerAssetAndDirection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSkewImpact","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximalTimeToMaturity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumPriceDelay","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumPriceDelayForResolving","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minBuyinAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimalTimeToMaturity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"multicollateralEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"nominateNewOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"nominatedOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"market","type":"address"},{"internalType":"bytes[]","name":"priceUpdateData","type":"bytes[]"}],"name":"resolveMarket","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_market","type":"address"},{"internalType":"int64","name":"_finalPrice","type":"int64"}],"name":"resolveMarketAsOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_market","type":"address"},{"internalType":"int64","name":"_finalPrice","type":"int64"}],"name":"resolveMarketManually","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"markets","type":"address[]"},{"internalType":"int64[]","name":"finalPrices","type":"int64[]"}],"name":"resolveMarketManuallyBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"market","type":"address"},{"internalType":"bytes[]","name":"priceUpdateData","type":"bytes[]"},{"internalType":"address","name":"collateral","type":"address"},{"internalType":"bool","name":"toEth","type":"bool"}],"name":"resolveMarketWithOfframp","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"markets","type":"address[]"},{"internalType":"bytes[]","name":"priceUpdateData","type":"bytes[]"}],"name":"resolveMarketsBatch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"sUSD","outputs":[{"internalType":"contract IERC20Upgradeable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"safeBoxImpact","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_mastercopy","type":"address"},{"internalType":"contract SpeedMarketsAMMUtils","name":"_speedMarketsAMMUtils","type":"address"},{"internalType":"address","name":"_addressManager","type":"address"}],"name":"setAMMAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"asset","type":"bytes32"},{"internalType":"bytes32","name":"pythId","type":"bytes32"}],"name":"setAssetToPythID","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_timeThresholds","type":"uint256[]"},{"internalType":"uint256[]","name":"_lpFees","type":"uint256[]"},{"internalType":"uint256","name":"_lpFee","type":"uint256"}],"name":"setLPFeeParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minBuyinAmount","type":"uint256"},{"internalType":"uint256","name":"_maxBuyinAmount","type":"uint256"},{"internalType":"uint256","name":"_minimalTimeToMaturity","type":"uint256"},{"internalType":"uint256","name":"_maximalTimeToMaturity","type":"uint256"},{"internalType":"uint64","name":"_maximumPriceDelay","type":"uint64"},{"internalType":"uint64","name":"_maximumPriceDelayForResolving","type":"uint64"}],"name":"setLimitParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"asset","type":"bytes32"},{"internalType":"uint256","name":"_maxRiskPerAsset","type":"uint256"},{"internalType":"uint256","name":"_maxRiskPerAssetAndDirection","type":"uint256"}],"name":"setMaxRisks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setMultiCollateralOnOffRampEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_safeBoxImpact","type":"uint256"},{"internalType":"uint256","name":"_maxSkewImpact","type":"uint256"},{"internalType":"uint256","name":"_skewSlippage","type":"uint256"}],"name":"setSafeBoxAndMaxSkewImpact","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"asset","type":"bytes32"},{"internalType":"bool","name":"_supported","type":"bool"}],"name":"setSupportedAsset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sUSD","type":"address"}],"name":"setSusdAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"skewSlippage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"speedMarketMastercopy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"supportedAsset","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"timeThresholdsForFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_destination","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"transferOwnershipAtInit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
608060405234801561001057600080fd5b50615b5880620000216000396000f3fe6080604052600436106103a65760003560e01c806389c6318d116101e7578063ce87e2ee1161010d578063e60a4d25116100a0578063ebc797721161006f578063ebc7977214610bd1578063ef469ba214610be6578063f8335cde14610c06578063fd6e9b9714610c2657600080fd5b8063e60a4d2514610b4e578063e73efc9b14610b7b578063e76fbb0214610b9b578063e915586614610bbb57600080fd5b8063da6b532f116100dc578063da6b532f14610ab3578063e0223eea14610ac6578063e11f951d14610ae6578063e396ed2614610b1e57600080fd5b8063ce87e2ee14610a3d578063cf898ca914610a5d578063d69fb66814610a7d578063d7081e0314610a9357600080fd5b8063a201b30711610185578063bc93233f11610154578063bc93233f146109a3578063bd47a9b8146109c3578063c3b83f5f146109f0578063c453180214610a1057600080fd5b8063a201b30714610911578063a3a2adf014610950578063a8da1a1714610963578063b711d4071461098357600080fd5b80639324cac7116101c15780639324cac714610890578063999045a0146108b057806399c18e7e146108d05780639fc42703146108f157600080fd5b806389c6318d146108345780638da5cb5b1461085457806391b4ded91461087a57600080fd5b806330a1ea01116102cc5780635403f80f1161026a5780636bfffb12116102395780636bfffb12146107c9578063704ce43e146107e957806379ba5097146107ff5780637de926d11461081457600080fd5b80635403f80f146107595780635631bf8a1461076f5780635c975abb1461078f57806368b9f66b146107a957600080fd5b80633e7ad1de116102a65780633e7ad1de146106e3578063485cc955146106f95780634eb7c43b1461071957806353a47bb71461073957600080fd5b806330a1ea011461066b5780633ab76e9f1461068b5780633b46bfc9146106c357600080fd5b806313af40351161034457806317b94eac1161031357806317b94eac14610574578063289cc19f146105875780632b03da3c1461059d5780632c43dc831461064b57600080fd5b806313af4035146104f257806314527f3a146105145780631627540c1461053457806316c38b3c1461055457600080fd5b806306c933d81161038057806306c933d81461046957806307b53bb41461049957806312039b6d146104af57806312aa3833146104dc57600080fd5b806301bea636146103b2578063023fb259146103f657806305bfdfd41461042357600080fd5b366103ad57005b600080fd5b3480156103be57600080fd5b506103e16103cd366004614c99565b602080526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b34801561040257600080fd5b50610416610411366004614c99565b610c56565b6040516103ed9190615629565b34801561042f57600080fd5b5061045b61043e3660046150fe565b601e60209081526000928352604080842090915290825290205481565b6040519081526020016103ed565b34801561047557600080fd5b506103e1610484366004614c99565b601b6020526000908152604090205460ff1681565b3480156104a557600080fd5b5061045b60135481565b3480156104bb57600080fd5b506104cf6104ca36600461527e565b610cb1565b6040516103ed9190615557565b3480156104e857600080fd5b5061045b60125481565b3480156104fe57600080fd5b5061051261050d366004614c99565b610ce1565b005b34801561052057600080fd5b506103e161052f366004614c99565b610e21565b34801561054057600080fd5b5061051261054f366004614c99565b610f32565b34801561056057600080fd5b5061051261056f366004615051565b610f88565b610512610582366004614cd1565b610ffe565b34801561059357600080fd5b5061045b60285481565b3480156105a957600080fd5b5061061e6105b8366004615089565b60408051606080820183526000808352602080840182905292840181905283519182018452808252818301818152828501828152958252600f909352929092205460ff1615158252600c549052601754600160a01b90046001600160401b031690915290565b6040805182511515815260208084015190820152918101516001600160401b0316908201526060016103ed565b34801561065757600080fd5b50610512610666366004614ea4565b611076565b34801561067757600080fd5b50610512610686366004614e4c565b6111a3565b34801561069757600080fd5b506026546106ab906001600160a01b031681565b6040516001600160a01b0390911681526020016103ed565b3480156106cf57600080fd5b506105126106de3660046152ab565b611200565b3480156106ef57600080fd5b5061045b60105481565b34801561070557600080fd5b50610512610714366004614dd5565b6112bd565b34801561072557600080fd5b5061045b610734366004615089565b6113a4565b34801561074557600080fd5b506001546106ab906001600160a01b031681565b34801561076557600080fd5b5061045b60115481565b34801561077b57600080fd5b5061045b61078a366004615089565b6113c5565b34801561079b57600080fd5b506003546103e19060ff1681565b3480156107b557600080fd5b506105126107c4366004615051565b6113d5565b3480156107d557600080fd5b506105126107e4366004614e02565b611566565b3480156107f557600080fd5b5061045b600d5481565b34801561080b57600080fd5b506105126115f3565b34801561082057600080fd5b5061051261082f3660046150b9565b6116f0565b34801561084057600080fd5b506104cf61084f3660046150dd565b61174a565b34801561086057600080fd5b506000546106ab906201000090046001600160a01b031681565b34801561088657600080fd5b5061045b60025481565b34801561089c57600080fd5b50600a546106ab906001600160a01b031681565b3480156108bc57600080fd5b506105126108cb366004614c99565b611758565b3480156108dc57600080fd5b50601c546103e190600160a01b900460ff1681565b3480156108fd57600080fd5b506104cf61090c36600461527e565b6117ae565b34801561091d57600080fd5b5060175461093890600160a01b90046001600160401b031681565b6040516001600160401b0390911681526020016103ed565b61051261095e366004614ea4565b6117d4565b34801561096f57600080fd5b5061051261097e366004614e4c565b61197a565b34801561098f57600080fd5b5061051261099e366004614fe1565b6119de565b3480156109af57600080fd5b506105126109be366004614d9d565b611b50565b3480156109cf57600080fd5b5061045b6109de366004615089565b60166020526000908152604090205481565b3480156109fc57600080fd5b50610512610a0b366004614c99565b611bc7565b348015610a1c57600080fd5b5061045b610a2b366004615089565b60146020526000908152604090205481565b348015610a4957600080fd5b50600b546106ab906001600160a01b031681565b348015610a6957600080fd5b50601f54610938906001600160401b031681565b348015610a8957600080fd5b5061045b600c5481565b348015610a9f57600080fd5b50610512610aae366004614e79565b611ce0565b610512610ac1366004614d23565b611d3e565b348015610ad257600080fd5b50610512610ae1366004615266565b612230565b348015610af257600080fd5b5061045b610b013660046150fe565b601d60209081526000928352604080842090915290825290205481565b348015610b2a57600080fd5b506103e1610b39366004615089565b600f6020526000908152604090205460ff1681565b348015610b5a57600080fd5b5061045b610b69366004615089565b60156020526000908152604090205481565b348015610b8757600080fd5b506104cf610b963660046150dd565b612511565b348015610ba757600080fd5b50610512610bb6366004615122565b61251f565b348015610bc757600080fd5b5061045b60275481565b348015610bdd57600080fd5b50610512612574565b348015610bf257600080fd5b50610512610c01366004615122565b6125d2565b348015610c1257600080fd5b50610512610c213660046150dd565b612650565b348015610c3257600080fd5b506103e1610c41366004614c99565b60256020526000908152604090205460ff1681565b610c5e614b7a565b506040805160a08101825260065481526008546020808301919091526001600160a01b039093166000818152601985528381205483850152908152601a9093529120546060820152602354608082015290565b6001600160a01b0381166000908152601960205260409020606090610cd79085856126a0565b90505b9392505050565b6001600160a01b038116610d3c5760405162461bcd60e51b815260206004820152601960248201527f4f776e657220616464726573732063616e6e6f7420626520300000000000000060448201526064015b60405180910390fd5b600154600160a01b900460ff1615610da85760405162461bcd60e51b815260206004820152602960248201527f416c726561647920696e697469616c697a65642c20757365206e6f6d696e617460448201526832a732bba7bbb732b960b91b6064820152608401610d33565b6001805460ff60a01b1916600160a01b179055600080546001600160a01b03831662010000810262010000600160b01b03199092169190911782556040805192835260208301919091527fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c91015b60405180910390a150565b6000610e2e6006836127e4565b8015610eb2575042826001600160a01b03166351d8044f6040518163ffffffff1660e01b815260040160206040518083038186803b158015610e6f57600080fd5b505afa158015610e83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea79190615324565b6001600160401b0316105b8015610f2c5750816001600160a01b0316633f6fa6556040518163ffffffff1660e01b815260040160206040518083038186803b158015610ef257600080fd5b505afa158015610f06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f2a919061506d565b155b92915050565b610f3a612866565b600180546001600160a01b0319166001600160a01b0383169081179091556040519081527f906a1c6bd7e3091ea86693dd029a831c19049ce77f1dce2ce0bab1cacbabce2290602001610e16565b610f90612866565b60035460ff1615158115151415610fa45750565b6003805460ff191682151590811790915560ff1615610fc257426002555b60035460405160ff909116151581527f8fb6c181ee25a520cf3dd6565006ef91229fcfe5a989566c2a3b8c115570cec590602001610e16565b50565b60016004600082825461101191906158fd565b909155505060045460035460ff161561103c5760405162461bcd60e51b8152600401610d33906156a7565b61104f8461104a8486615996565b6128e0565b60045481146110705760405162461bcd60e51b8152600401610d3390615704565b50505050565b336000908152601b602052604090205460ff166110d05760405162461bcd60e51b815260206004820152601860248201527714995cdbdb1d995c881b9bdd081dda1a5d195b1a5cdd195960421b6044820152606401610d33565b60005b8381101561119c576111138585838181106110fe57634e487b7160e01b600052603260045260246000fd5b905060200201602081019061052f9190614c99565b1561118a5761118a85858381811061113b57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906111509190614c99565b84848481811061117057634e487b7160e01b600052603260045260246000fd5b90506020020160208101906111859190615185565b612d02565b8061119481615a87565b9150506110d3565b5050505050565b6111ab612866565b6111b482610e21565b6111f25760405162461bcd60e51b815260206004820152600f60248201526e43616e206e6f74207265736f6c766560881b6044820152606401610d33565b6111fc8282612ec3565b5050565b611208612866565b60128690556013859055601084905560118390556017805467ffffffffffffffff60a01b1916600160a01b6001600160401b0385811691820292909217909255601f805467ffffffffffffffff19169184169182179055604080518981526020810189905290810187905260608101869052608081019290925260a08201527fcb4727945d0c9bf77ea3b48c6c630e5b0e5016c1fe67c9508feafe8fc265cdba9060c0015b60405180910390a1505050505050565b600054610100900460ff166112d85760005460ff16156112dc565b303b155b61133f5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610d33565b600054610100900460ff16158015611361576000805461ffff19166101011790555b61136a83610ce1565b611372612574565b600a80546001600160a01b0319166001600160a01b038416179055801561139f576000805461ff00191690555b505050565b602381815481106113b457600080fd5b600091825260209091200154905081565b602281815481106113b457600080fd5b6113dd612866565b60265460408051639a618c0f60e01b815290516000926001600160a01b031691639a618c0f916004808301926020929190829003018186803b15801561142257600080fd5b505afa158015611436573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145a9190614cb5565b90506001600160a01b0381161561150d57600a546001600160a01b031663095ea7b3828461148957600061148d565b6000195b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b1580156114d357600080fd5b505af11580156114e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061150b919061506d565b505b601c8054831515600160a01b0260ff60a01b199091161790556040517fb76eab56cfa3088dda43a9a4b3ea4bb7685b8007428d4a65248fdaa763d339f89061155a90841515815260200190565b60405180910390a15050565b61156e612866565b600b80546001600160a01b038581166001600160a01b0319928316811790935560248054868316908416811790915560268054928616929093168217909255604080519384526020840192909252908201527fbf934b81354c7e34eda71aa08a74419a5682a0737282cc3f448b353a1893c41f906060015b60405180910390a1505050565b6001546001600160a01b0316331461166b5760405162461bcd60e51b815260206004820152603560248201527f596f75206d757374206265206e6f6d696e61746564206265666f726520796f7560448201527402063616e20616363657074206f776e65727368697605c1b6064820152608401610d33565b60005460015460408051620100009093046001600160a01b03908116845290911660208301527fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c910160405180910390a1600180546000805462010000600160b01b0319166001600160a01b03831662010000021790556001600160a01b0319169055565b6116f8612866565b6000828152600f6020908152604091829020805460ff19168415159081179091558251858152918201527f6af8d0ea20290a2d8dcbb43a77926d5993cd89bac2c6a72cd7813c4eacc2124b910161155a565b6060610cda600884846126a0565b611760612866565b600a80546001600160a01b0319166001600160a01b0383169081179091556040519081527fba10f1023c43b7797db2ff58a62990dbbb24aa29adb28dae7424301e38d99ed990602001610e16565b6001600160a01b0381166000908152601a60205260409020606090610cd79085856126a0565b6001600460008282546117e791906158fd565b909155505060045460035460ff16156118125760405162461bcd60e51b8152600401610d33906156a7565b60005b84811015611958576118408686838181106110fe57634e487b7160e01b600052603260045260246000fd5b1561194657604080516001808252818301909252600091816020015b606081526020019060019003908161185c57905050905084848381811061189357634e487b7160e01b600052603260045260246000fd5b90506020028101906118a5919061583e565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052508551869450909250151590506118fb57634e487b7160e01b600052603260045260246000fd5b602002602001018190525061194487878481811061192957634e487b7160e01b600052603260045260246000fd5b905060200201602081019061193e9190614c99565b826128e0565b505b8061195081615a87565b915050611815565b50600454811461119c5760405162461bcd60e51b8152600401610d3390615704565b336000908152601b602052604090205460ff166119d45760405162461bcd60e51b815260206004820152601860248201527714995cdbdb1d995c881b9bdd081dda1a5d195b1a5cdd195960421b6044820152606401610d33565b6111fc8282612d02565b6119e6612866565b838214611a465760405162461bcd60e51b815260206004820152602860248201527f54696d657320616e642066656573206d7573742068617665207468652073616d6044820152670ca40d8cadccee8d60c31b6064820152608401610d33565b611a5260226000614b98565b611a5e60236000614b98565b60005b84811015611b03576022868683818110611a8b57634e487b7160e01b600052603260045260246000fd5b835460018101855560009485526020948590209190940292909201359190920155506023848483818110611acf57634e487b7160e01b600052603260045260246000fd5b8354600181018555600094855260209485902091909402929092013591909201555080611afb81615a87565b915050611a61565b50600d8190556040517f97b8e3f33b113d945b11628418dc7b155d05943a8a517a937a9d88f4eda67a6b90611b41908790879087908790879061565a565b60405180910390a15050505050565b611b58612866565b6001600160a01b038216611b6b57600080fd5b6001600160a01b0382166000818152601b6020908152604091829020805460ff19168515159081179091558251938452908301527f58d7a3ccc34541e162fcfc87b84be7b78c34d1e1e7f15de6e4dd67d0fe70aecd910161155a565b611bcf612866565b6001600160a01b038116611c175760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610d33565b600154600160a81b900460ff1615611c675760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481d1c985b9cd9995c9c9959606a1b6044820152606401610d33565b600080546001600160a01b038381166201000081810262010000600160b01b031990941693909317938490556001805460ff60a81b1916600160a81b1790556040805193909404909116825260208201527fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c9101610e16565b611ce8612866565b600a54611cff906001600160a01b031683836134a8565b604080516001600160a01b0384168152602081018390527fc3ce4eeef579533b0a2d7ae2e50eb68dccae3b183dc8cce60267f3c9fa4935c0910161155a565b600160046000828254611d5191906158fd565b909155505060045460035460ff1615611d7c5760405162461bcd60e51b8152600401610d33906156a7565b601c54600160a01b900460ff16611de15760405162461bcd60e51b815260206004820152602360248201527f4d756c7469636f6c6c61746572616c206f666672616d70206e6f7420656e61626044820152621b195960ea1b6064820152608401610d33565b6000866001600160a01b0316634f8632ba6040518163ffffffff1660e01b815260040160206040518083038186803b158015611e1c57600080fd5b505afa158015611e30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e549190614cb5565b9050336001600160a01b03821614611eae5760405162461bcd60e51b815260206004820152601e60248201527f4f6e6c7920616c6c6f7765642066726f6d206d61726b6574206f776e657200006044820152606401610d33565b600a546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a082319060240160206040518083038186803b158015611ef457600080fd5b505afa158015611f08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f2c91906150a1565b9050611f3c8861104a888a615996565b600a546040516370a0823160e01b81526001600160a01b03848116600483015260009284929116906370a082319060240160206040518083038186803b158015611f8557600080fd5b505afa158015611f99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fbd91906150a1565b611fc7919061597f565b600a54909150611fe2906001600160a01b031684308461350b565b80156122045760265460408051639a618c0f60e01b815290516000926001600160a01b031691639a618c0f916004808301926020929190829003018186803b15801561202d57600080fd5b505afa158015612041573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120659190614cb5565b905085156121645760405163b45e98d960e01b8152600481018390526000906001600160a01b0383169063b45e98d990602401602060405180830381600087803b1580156120b257600080fd5b505af11580156120c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120ea91906150a1565b60405190915085906000906001600160a01b0383169084156108fc0290859084818181858888f1935050505090508061215c5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610d33565b505050612202565b604051630992646d60e31b81526001600160a01b0388811660048301526024820184905260009190831690634c93236890604401602060405180830381600087803b1580156121b257600080fd5b505af11580156121c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121ea91906150a1565b90506122006001600160a01b03891686836134a8565b505b505b50505060045481146122285760405162461bcd60e51b8152600401610d3390615704565b505050505050565b60016004600082825461224391906158fd565b909155505060045460035460ff161561226e5760405162461bcd60e51b8152600401610d33906156a7565b60265460405163bf40fac160e01b815260206004820152601660248201527529b832b2b226b0b935b2ba39a0a6a6a1b932b0ba37b960511b60448201526000916001600160a01b03169063bf40fac19060640160206040518083038186803b1580156122d957600080fd5b505afa1580156122ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123119190614cb5565b9050336001600160a01b0382161461235f5760405162461bcd60e51b815260206004820152601160248201527037b7363c90333937b69021b932b0ba37b960791b6044820152606401610d33565b602654604080516351cfd60960e11b815290516000926001600160a01b03169163a39fac129160048083019260c0929190829003018186803b1580156123a457600080fd5b505afa1580156123b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123dc91906151bd565b90506000806123f361014087016101208801614c99565b6001600160a01b031614905060006124116060870160408801615308565b6001600160401b0316156124345761242f6060870160408801615308565b612457565b6124446080870160608801615308565b612457906001600160401b0316426158fd565b90506000826124945761248f6124706020890189614c99565b6124826101408a016101208b01614c99565b8961014001358588613543565b61249b565b8661014001355b90506124eb6124ad6020890189614c99565b60208901358460808b016124c96101208d016101008e0161514d565b86898e6101600160208101906124df9190614c99565b8f61018001358d613916565b505050505060045481146111fc5760405162461bcd60e51b8152600401610d3390615704565b6060610cda600684846126a0565b612527612866565b600c8390556027829055602881905560408051848152602081018490529081018290527faa4fb0e426c89ca5b40184bc99ab0d12c722021c90689decd8f7b901d3f82b34906060016115e6565b60055460ff16156125bd5760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481a5b9a5d1a585b1a5e9959606a1b6044820152606401610d33565b6005805460ff19166001908117909155600455565b6125da612866565b600083815260146020908152604080832085905560158252808320839055601d82528083208380528252808320849055600183529182902083905581518581529081018490529081018290527facbec488a49aaa9d1b3799159ede0349850bc1a73c0e90913ff03dd4354a34a8906060016115e6565b612658612866565b60008281526016602090815260409182902083905581518481529081018390527fbe9b5564f6075c4b92cab3a707053c7e8828f045a5d233c3157bc3407cb00963910161155a565b606060006126ae83856158fd565b85549091508111156126be575083545b8381116126db575050604080516000815260208101909152610cda565b60006126e7858361597f565b90506000816001600160401b0381111561271157634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561273a578160200160208202803683370190505b50905060005b828110156127d9578761275388836158fd565b8154811061277157634e487b7160e01b600052603260045260246000fd5b9060005260206000200160009054906101000a90046001600160a01b03168282815181106127af57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0390921660209283029190910190910152806127d181615a87565b915050612740565b509695505050505050565b81546000906127f557506000610f2c565b6001600160a01b03821660009081526001840160205260409020548015158061285e5750826001600160a01b03168460000160008154811061284757634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316145b949350505050565b6000546201000090046001600160a01b031633146128de5760405162461bcd60e51b815260206004820152602f60248201527f4f6e6c792074686520636f6e7472616374206f776e6572206d6179207065726660448201526e37b936903a3434b99030b1ba34b7b760891b6064820152608401610d33565b565b6128e982610e21565b6129275760405162461bcd60e51b815260206004820152600f60248201526e43616e206e6f74207265736f6c766560881b6044820152606401610d33565b60265460408051630f98d06f60e41b815290516000926001600160a01b03169163f98d06f0916004808301926020929190829003018186803b15801561296c57600080fd5b505afa158015612980573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129a49190614cb5565b604080516001808252818301909252919250600091906020808301908036833701905050905060166000856001600160a01b03166338d52e0f6040518163ffffffff1660e01b815260040160206040518083038186803b158015612a0757600080fd5b505afa158015612a1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a3f91906150a1565b81526020019081526020016000205481600081518110612a6f57634e487b7160e01b600052603260045260246000fd5b602090810291909101015260405163d47eed4560e01b81526000906001600160a01b03841690634716e9c590829063d47eed4590612ab19089906004016155a4565b60206040518083038186803b158015612ac957600080fd5b505afa158015612add573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b0191906150a1565b8685896001600160a01b03166351d8044f6040518163ffffffff1660e01b815260040160206040518083038186803b158015612b3c57600080fd5b505afa158015612b50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b749190615324565b601f60009054906101000a90046001600160401b03168b6001600160a01b03166351d8044f6040518163ffffffff1660e01b815260040160206040518083038186803b158015612bc357600080fd5b505afa158015612bd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bfb9190615324565b612c059190615915565b6040518663ffffffff1660e01b8152600401612c2494939291906155b7565b6000604051808303818588803b158015612c3d57600080fd5b505af1158015612c51573d6000803e3d6000fd5b50505050506040513d6000823e601f3d908101601f19168201604052612c7a9190810190614f0c565b9050600081600081518110612c9f57634e487b7160e01b600052603260045260246000fd5b60200260200101516020015190506000816000015160070b13612cf45760405162461bcd60e51b815260206004820152600d60248201526c496e76616c696420707269636560981b6044820152606401610d33565b612228868260000151612ec3565b6000826001600160a01b031663645539ed6040518163ffffffff1660e01b815260040160206040518083038186803b158015612d3d57600080fd5b505afa158015612d51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d759190615169565b90506000836001600160a01b031663c52987cf6040518163ffffffff1660e01b815260040160206040518083038186803b158015612db257600080fd5b505afa158015612dc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dea91906151a1565b905060008160070b8460070b128015612e2257506001836001811115612e2057634e487b7160e01b600052602160045260246000fd5b145b80612e5c57508160070b8460070b138015612e5c57506000836001811115612e5a57634e487b7160e01b600052602160045260246000fd5b145b9050612e6785610e21565b8015612e71575080155b612ebd5760405162461bcd60e51b815260206004820152601860248201527f43616e206e6f74207265736f6c7665206d616e75616c6c7900000000000000006044820152606401610d33565b61119c85855b604051631f67c49160e01b8152600782900b60048201526001600160a01b03831690631f67c49190602401600060405180830381600087803b158015612f0857600080fd5b505af1158015612f1c573d6000803e3d6000fd5b50505050612f34826006613de790919063ffffffff16565b612f3f600883613f6a565b6000826001600160a01b0316634f8632ba6040518163ffffffff1660e01b815260040160206040518083038186803b158015612f7a57600080fd5b505afa158015612f8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fb29190614cb5565b6001600160a01b0381166000908152601960205260409020909150612fd790846127e4565b15612ffe576001600160a01b0381166000908152601960205260409020612ffe9084613de7565b6001600160a01b0381166000908152601a602052604090206130209084613f6a565b6000836001600160a01b03166338d52e0f6040518163ffffffff1660e01b815260040160206040518083038186803b15801561305b57600080fd5b505afa15801561306f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061309391906150a1565b90506000846001600160a01b0316631fcc8bb26040518163ffffffff1660e01b815260040160206040518083038186803b1580156130d057600080fd5b505afa1580156130e4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061310891906150a1565b90506000856001600160a01b031663645539ed6040518163ffffffff1660e01b815260040160206040518083038186803b15801561314557600080fd5b505afa158015613159573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061317d9190615169565b6000848152601e602052604081209192508391908360018111156131b157634e487b7160e01b600052602160045260246000fd5b60018111156131d057634e487b7160e01b600052602160045260246000fd5b815260200190815260200160002054111561325c576000838152601e60205260408120839183600181111561321557634e487b7160e01b600052602160045260246000fd5b600181111561323457634e487b7160e01b600052602160045260246000fd5b81526020019081526020016000206000828254613251919061597f565b909155506132bc9050565b6000838152601e602052604081208183600181111561328b57634e487b7160e01b600052602160045260246000fd5b60018111156132aa57634e487b7160e01b600052602160045260246000fd5b81526020810191909152604001600020555b856001600160a01b0316633a2c1e556040518163ffffffff1660e01b815260040160206040518083038186803b1580156132f557600080fd5b505afa158015613309573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061332d919061506d565b6133955761333c826002615960565b60008481526015602052604090205411156133855761335c826002615960565b6000848152601560205260408120805490919061337a90849061597f565b909155506133959050565b6000838152601560205260408120555b7f738ac9ca76b7fd50246d5acdc827b2852e656ed2c287d6538e57b046f0ecf64b86876001600160a01b031663653721476040518163ffffffff1660e01b815260040160206040518083038186803b1580156133f057600080fd5b505afa158015613404573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134289190615169565b886001600160a01b0316633a2c1e556040518163ffffffff1660e01b815260040160206040518083038186803b15801561346157600080fd5b505afa158015613475573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613499919061506d565b6040516112ad9392919061552a565b6040516001600160a01b03831660248201526044810182905261139f90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152613fbc565b6040516001600160a01b03808516602483015283166044820152606481018290526110709085906323b872dd60e01b906084016134d4565b601c54600090600160a01b900460ff166135aa5760405162461bcd60e51b815260206004820152602260248201527f4d756c7469636f6c6c61746572616c206f6e72616d70206e6f7420656e61626c604482015261195960f21b6064820152608401610d33565b600a546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156135ee57600080fd5b505afa158015613602573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061362691906150a1565b60608401519091506136436001600160a01b03881689308961350b565b60405163095ea7b360e01b81526001600160a01b0382811660048301526024820188905288169063095ea7b390604401602060405180830381600087803b15801561368d57600080fd5b505af11580156136a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136c5919061506d565b506040516322ceb11360e21b81526001600160a01b0388811660048301526024820188905260009190831690638b3ac44c90604401602060405180830381600087803b15801561371457600080fd5b505af1158015613728573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061374c91906150a1565b6024549091506000906001600160a01b031663336ef50d613776426001600160401b038b1661597f565b60226023600d546040518563ffffffff1660e01b815260040161379c94939291906157f8565b60206040518083038186803b1580156137b457600080fd5b505afa1580156137c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137ec91906150a1565b905080600c54670de0b6b3a764000061380591906158fd565b61380f91906158fd565b613821670de0b6b3a764000084615960565b61382b9190615940565b600a546040516370a0823160e01b815230600482015291965060009186916001600160a01b0316906370a082319060240160206040518083038186803b15801561387457600080fd5b505afa158015613888573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138ac91906150a1565b6138b6919061597f565b9050858110156139085760405162461bcd60e51b815260206004820152601e60248201527f6e6f7420656e6f75676820726563656976656420766961206f6e72616d7000006044820152606401610d33565b505050505095945050505050565b6000898152600f602052604090205460ff1661396d5760405162461bcd60e51b8152602060048201526016602482015275105cdcd95d081a5cc81b9bdd081cdd5c1c1bdc9d195960521b6044820152606401610d33565b601254851015801561398157506013548511155b6139c35760405162461bcd60e51b815260206004820152601360248201527215dc9bdb99c8189d5e481a5b88185b5bdd5b9d606a1b6044820152606401610d33565b6010546139d090426158fd565b886001600160401b03161015613a285760405162461bcd60e51b815260206004820152601760248201527f537472696b652074696d65206e6f7420616c6c6f7765640000000000000000006044820152606401610d33565b601154613a3590426158fd565b886001600160401b03161115613a8d5760405162461bcd60e51b815260206004820152601c60248201527f54696d6520746f6f2066617220696e746f2074686520667574757265000000006044820152606401610d33565b6000613a9c8a88888c8761408e565b90508415613b01576000670de0b6b3a764000082600c54670de0b6b3a7640000613ac691906158fd565b613ad091906158fd565b613ada9089615960565b613ae49190615940565b600a54909150613aff906001600160a01b03168d308461350b565b505b600b54600090613b19906001600160a01b03166145ff565b9050806001600160a01b031663ddf338f5604051806101400160405280306001600160a01b031681526020018f6001600160a01b031681526020018e81526020018d6001600160401b031681526020018c6000016020810190613b7c9190615185565b60070b81526020018c606001356001600160401b031681526020018b6001811115613bb757634e487b7160e01b600052602160045260246000fd5b81526020018a8152602001600c548152602001858152506040518263ffffffff1660e01b8152600401613bea919061573b565b600060405180830381600087803b158015613c0457600080fd5b505af1158015613c18573d6000803e3d6000fd5b50505050613c4081886002613c2d9190615960565b600a546001600160a01b031691906134a8565b613c4c8c86898661469c565b50613c58600682613f6a565b6001600160a01b038c166000908152601960205260409020613c7a9082613f6a565b60408301516001600160a01b031615613cf65760408084015190516302c7739b60e01b81526001600160a01b038e81166004830152602482018a9052909116906302c7739b90604401600060405180830381600087803b158015613cdd57600080fd5b505af1158015613cf1573d6000803e3d6000fd5b505050505b6001600160a01b0381166000908152602080805260408083208054600160ff199182168117909255602584529190932080549091169092179091557f4fb5dd0be05638074eabb1b37a9bdf9ab8cbad8d83c7bce9298aca16de5b79c39082908e908e908e90613d67908f018f615185565b8d8d604051613d7c979695949392919061546c565b60405180910390a17f51f385a862a654703b4b7a2e647518a58930354129b8364d5dbe945752df3646818d8d8d613db660208f018f615185565b8d8d600c548a604051613dd1999897969594939291906154c3565b60405180910390a1505050505050505050505050565b613df182826127e4565b613e335760405162461bcd60e51b815260206004820152601360248201527222b632b6b2b73a103737ba1034b71039b2ba1760691b6044820152606401610d33565b6001600160a01b0381166000908152600180840160205260408220548454909291613e5d9161597f565b9050808214613f05576000846000018281548110613e8b57634e487b7160e01b600052603260045260246000fd5b60009182526020909120015485546001600160a01b0390911691508190869085908110613ec857634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b0394851617905592909116815260018601909152604090208290555b8354849080613f2457634e487b7160e01b600052603160045260246000fd5b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b0394909416815260019490940190925250506040812055565b613f7482826127e4565b6111fc5781546001600160a01b038216600081815260018086016020908152604083208590559084018655858252902090910180546001600160a01b03191690911790555050565b6000614011826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661490a9092919063ffffffff16565b80519091501561139f578080602001905181019061402f919061506d565b61139f5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610d33565b60008061409b8787614919565b9050602854836140ab91906158fd565b8111156140f35760405162461bcd60e51b815260206004820152601660248201527514dad95dc81cdb1a5c1c1859d948195e18d95959195960521b6044820152606401610d33565b60008087600181111561411657634e487b7160e01b600052602160045260246000fd5b14614122576000614125565b60015b90506000821561413657600061414c565b60026141428a84614919565b61414c9190615940565b60008a8152601e6020526040812091925088919084600181111561418057634e487b7160e01b600052602160045260246000fd5b600181111561419f57634e487b7160e01b600052602160045260246000fd5b815260200190815260200160002054111561422b576000898152601e6020526040812088918460018111156141e457634e487b7160e01b600052602160045260246000fd5b600181111561420357634e487b7160e01b600052602160045260246000fd5b81526020019081526020016000206000828254614220919061597f565b909155506144779050565b6000898152601e602052604081209083600181111561425a57634e487b7160e01b600052602160045260246000fd5b600181111561427957634e487b7160e01b600052602160045260246000fd5b81526020019081526020016000205487614293919061597f565b60008a8152601e60205260408120908a60018111156142c257634e487b7160e01b600052602160045260246000fd5b60018111156142e157634e487b7160e01b600052602160045260246000fd5b815260200190815260200160002060008282546142fe91906158fd565b90915550506000898152601e602052604081208184600181111561433257634e487b7160e01b600052602160045260246000fd5b600181111561435157634e487b7160e01b600052602160045260246000fd5b815260200190815260200160002081905550601d60008a8152602001908152602001600020600089600181111561439857634e487b7160e01b600052602160045260246000fd5b60018111156143b757634e487b7160e01b600052602160045260246000fd5b815260200190815260200160002054601e60008b815260200190815260200160002060008a60018111156143fb57634e487b7160e01b600052602160045260246000fd5b600181111561441a57634e487b7160e01b600052602160045260246000fd5b81526020019081526020016000205411156144775760405162461bcd60e51b815260206004820152601b60248201527f5269736b2070657220646972656374696f6e20657863656564656400000000006044820152606401610d33565b602454819084906001600160a01b031663336ef50d61449f426001600160401b038c1661597f565b60226023600d546040518563ffffffff1660e01b81526004016144c594939291906157f8565b60206040518083038186803b1580156144dd57600080fd5b505afa1580156144f1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061451591906150a1565b61451f91906158fd565b614529919061597f565b9350670de0b6b3a764000061453e85826158fd565b6145489089615960565b6145529190615940565b61455d886002615960565b614567919061597f565b60008a815260156020526040812080549091906145859084906158fd565b909155505060008981526014602090815260408083205460159092529091205411156145f35760405162461bcd60e51b815260206004820152601760248201527f5269736b207065722061737365742065786365656465640000000000000000006044820152606401610d33565b50505095945050505050565b6000604051733d602d80600a3d3981f3363d3d373d3d3d363d7360601b81528260601b60148201526e5af43d82803e903d91602b57fd5bf360881b60288201526037816000f09150506001600160a01b0381166146975760405162461bcd60e51b8152602060048201526016602482015275115490cc4c4d8dce8818dc99585d194819985a5b195960521b6044820152606401610d33565b919050565b60208101516000906001600160a01b038116156148cd5760006001600160a01b0386161561472f5760405163bbddaca360e01b81526001600160a01b038781166004830152888116602483015283169063bbddaca390604401600060405180830381600087803b15801561470f57600080fd5b505af1158015614723573d6000803e3d6000fd5b505050508590506147ab565b604051639ca423b360e01b81526001600160a01b038881166004830152831690639ca423b39060240160206040518083038186803b15801561477057600080fd5b505afa158015614784573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906147a89190614cb5565b90505b6001600160a01b038116156148cb5760405163c7d1f5f160e01b81526001600160a01b0382811660048301526000919084169063c7d1f5f19060240160206040518083038186803b1580156147ff57600080fd5b505afa158015614813573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061483791906150a1565b905080156148c957670de0b6b3a76400006148528288615960565b61485c9190615940565b600a54909450614876906001600160a01b031683866134a8565b604080516001600160a01b0380851682528a166020820152908101859052606081018790527f8fa68a6a8e2fc9ff758a6e64afba8bc2f66fb082999a2c5225c8c49633faded49060800160405180910390a15b505b505b614901836000015183670de0b6b3a7640000600c54886148ed9190615960565b6148f79190615940565b613c2d919061597f565b50949350505050565b6060610cd78484600085614a19565b6027546000838152601d602052604081209091670de0b6b3a7640000918385600181111561495757634e487b7160e01b600052602160045260246000fd5b600181111561497657634e487b7160e01b600052602160045260246000fd5b815260200190815260200160002054670de0b6b3a7640000601e600088815260200190815260200160002060008760018111156149c357634e487b7160e01b600052602160045260246000fd5b60018111156149e257634e487b7160e01b600052602160045260246000fd5b8152602001908152602001600020546149fb9190615960565b614a059190615940565b614a0f9190615960565b610cda9190615940565b606082471015614a7a5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610d33565b843b614ac85760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610d33565b600080866001600160a01b03168587604051614ae49190615450565b60006040518083038185875af1925050503d8060008114614b21576040519150601f19603f3d011682016040523d82523d6000602084013e614b26565b606091505b5091509150614b36828286614b41565b979650505050505050565b60608315614b50575081610cda565b825115614b605782518084602001fd5b8160405162461bcd60e51b8152600401610d339190615694565b6040518060a001604052806005906020820280368337509192915050565b5080546000825590600052602060002090810190610ffb91905b80821115614bc65760008155600101614bb2565b5090565b60008083601f840112614bdb578182fd5b5081356001600160401b03811115614bf1578182fd5b6020830191508360208260051b8501011115614c0c57600080fd5b9250929050565b600060808284031215614c24578081fd5b604051608081018181106001600160401b0382111715614c4657614c46615ab8565b80604052508091508251614c5981615afe565b81526020830151614c6981615b0d565b60208201526040830151600381900b8114614c8357600080fd5b6040820152606092830151920191909152919050565b600060208284031215614caa578081fd5b8135610cda81615ace565b600060208284031215614cc6578081fd5b8151610cda81615ace565b600080600060408486031215614ce5578182fd5b8335614cf081615ace565b925060208401356001600160401b03811115614d0a578283fd5b614d1686828701614bca565b9497909650939450505050565b600080600080600060808688031215614d3a578283fd5b8535614d4581615ace565b945060208601356001600160401b03811115614d5f578384fd5b614d6b88828901614bca565b9095509350506040860135614d7f81615ace565b91506060860135614d8f81615ae3565b809150509295509295909350565b60008060408385031215614daf578182fd5b8235614dba81615ace565b91506020830135614dca81615ae3565b809150509250929050565b60008060408385031215614de7578182fd5b8235614df281615ace565b91506020830135614dca81615ace565b600080600060608486031215614e16578081fd5b8335614e2181615ace565b92506020840135614e3181615ace565b91506040840135614e4181615ace565b809150509250925092565b60008060408385031215614e5e578182fd5b8235614e6981615ace565b91506020830135614dca81615afe565b60008060408385031215614e8b578182fd5b8235614e9681615ace565b946020939093013593505050565b60008060008060408587031215614eb9578182fd5b84356001600160401b0380821115614ecf578384fd5b614edb88838901614bca565b90965094506020870135915080821115614ef3578384fd5b50614f0087828801614bca565b95989497509550505050565b60006020808385031215614f1e578182fd5b82516001600160401b03811115614f33578283fd5b8301601f81018513614f43578283fd5b8051614f56614f51826158da565b6158aa565b81815283810190838501610120808502860187018a1015614f75578788fd5b8795505b84861015614fd35780828b031215614f8f578788fd5b614f97615882565b82518152614fa78b898501614c13565b88820152614fb88b60a08501614c13565b60408201528452600195909501949286019290810190614f79565b509098975050505050505050565b600080600080600060608688031215614ff8578283fd5b85356001600160401b038082111561500e578485fd5b61501a89838a01614bca565b90975095506020880135915080821115615032578485fd5b5061503f88828901614bca565b96999598509660400135949350505050565b600060208284031215615062578081fd5b8135610cda81615ae3565b60006020828403121561507e578081fd5b8151610cda81615ae3565b60006020828403121561509a578081fd5b5035919050565b6000602082840312156150b2578081fd5b5051919050565b600080604083850312156150cb578182fd5b823591506020830135614dca81615ae3565b600080604083850312156150ef578182fd5b50508035926020909101359150565b60008060408385031215615110578182fd5b823591506020830135614dca81615af1565b600080600060608486031215615136578081fd5b505081359360208301359350604090920135919050565b60006020828403121561515e578081fd5b8135610cda81615af1565b60006020828403121561517a578081fd5b8151610cda81615af1565b600060208284031215615196578081fd5b8135610cda81615afe565b6000602082840312156151b2578081fd5b8151610cda81615afe565b600060c082840312156151ce578081fd5b60405160c081018181106001600160401b03821117156151f0576151f0615ab8565b60405282516151fe81615ace565b8152602083015161520e81615ace565b6020820152604083015161522181615ace565b6040820152606083015161523481615ace565b6060820152608083015161524781615ace565b608082015260a083015161525a81615ace565b60a08201529392505050565b60006101a08284031215615278578081fd5b50919050565b600080600060608486031215615292578081fd5b83359250602084013591506040840135614e4181615ace565b60008060008060008060c087890312156152c3578384fd5b8635955060208701359450604087013593506060870135925060808701356152ea81615b0d565b915060a08701356152fa81615b0d565b809150509295509295509295565b600060208284031215615319578081fd5b8135610cda81615b0d565b600060208284031215615335578081fd5b8151610cda81615b0d565b6000815180845260208085019450848260051b8601828601855b85811015615384578383038952615372838351615402565b9885019892509084019060010161535a565b5090979650505050505050565b81835260006001600160fb1b038311156153a9578081fd5b8260051b80836020870137939093016020019283525090919050565b6000815480845260208085019450838352808320835b838110156153f7578154875295820195600191820191016153db565b509495945050505050565b6000815180845261541a816020860160208601615a5b565b601f01601f19169290920160200192915050565b6002811061544c57634e487b7160e01b600052602160045260246000fd5b9052565b60008251615462818460208701615a5b565b9190910192915050565b6001600160a01b03888116825287166020820152604081018690526001600160401b0385166060820152600784900b608082015260e081016154b160a083018561542e565b8260c083015298975050505050505050565b6001600160a01b038a8116825289166020820152604081018890526001600160401b0387166060820152600786900b6080820152610120810161550960a083018761542e565b8460c08301528360e0830152826101008301529a9950505050505050505050565b6001600160a01b038416815260608101615547602083018561542e565b8215156040830152949350505050565b6020808252825182820181905260009190848201906040850190845b818110156155985783516001600160a01b031683529284019291840191600101615573565b50909695505050505050565b602081526000610cda6020830184615340565b6080815260006155ca6080830187615340565b828103602084810191909152865180835287820192820190845b81811015615600578451835293830193918301916001016155e4565b50506001600160401b039687166040860152949095166060909301929092525090949350505050565b60a08101818360005b6005811015615651578151835260209283019290910190600101615632565b50505092915050565b60608152600061566e606083018789615391565b8281036020840152615681818688615391565b9150508260408301529695505050505050565b602081526000610cda6020830184615402565b6020808252603c908201527f5468697320616374696f6e2063616e6e6f7420626520706572666f726d65642060408201527f7768696c652074686520636f6e74726163742069732070617573656400000000606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b81516001600160a01b031681526101408101602083015161576760208401826001600160a01b03169052565b5060408301516040830152606083015161578c60608401826001600160401b03169052565b5060808301516157a1608084018260070b9052565b5060a08301516157bc60a08401826001600160401b03169052565b5060c08301516157cf60c084018261542e565b5060e083015160e083015261010080840151818401525061012080840151818401525092915050565b6001600160401b038516815260806020820152600061581a60808301866153c5565b828103604084015261582c81866153c5565b91505082606083015295945050505050565b6000808335601e19843603018112615854578283fd5b8301803591506001600160401b0382111561586d578283fd5b602001915036819003821315614c0c57600080fd5b604051606081016001600160401b03811182821017156158a4576158a4615ab8565b60405290565b604051601f8201601f191681016001600160401b03811182821017156158d2576158d2615ab8565b604052919050565b60006001600160401b038211156158f3576158f3615ab8565b5060051b60200190565b6000821982111561591057615910615aa2565b500190565b60006001600160401b0380831681851680830382111561593757615937615aa2565b01949350505050565b60008261595b57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561597a5761597a615aa2565b500290565b60008282101561599157615991615aa2565b500390565b60006159a4614f51846158da565b808482526020808301925084368760051b870111156159c1578485fd5b845b87811015615a4f5781356001600160401b03808211156159e1578788fd5b90880190601f36818401126159f4578889fd5b823582811115615a0657615a06615ab8565b615a17818301601f191688016158aa565b92508083523687828601011115615a2c57898afd5b8087850188850137820186018990525086525093820193908201906001016159c3565b50919695505050505050565b60005b83811015615a76578181015183820152602001615a5e565b838111156110705750506000910152565b6000600019821415615a9b57615a9b615aa2565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610ffb57600080fd5b8015158114610ffb57600080fd5b60028110610ffb57600080fd5b8060070b8114610ffb57600080fd5b6001600160401b0381168114610ffb57600080fdfea2646970667358221220a38dae3249517ca761ad23bbf9c9a7b7a6174fbaaad9fef0543f55d53f95814b64736f6c63430008040033
Deployed Bytecode
0x6080604052600436106103a65760003560e01c806389c6318d116101e7578063ce87e2ee1161010d578063e60a4d25116100a0578063ebc797721161006f578063ebc7977214610bd1578063ef469ba214610be6578063f8335cde14610c06578063fd6e9b9714610c2657600080fd5b8063e60a4d2514610b4e578063e73efc9b14610b7b578063e76fbb0214610b9b578063e915586614610bbb57600080fd5b8063da6b532f116100dc578063da6b532f14610ab3578063e0223eea14610ac6578063e11f951d14610ae6578063e396ed2614610b1e57600080fd5b8063ce87e2ee14610a3d578063cf898ca914610a5d578063d69fb66814610a7d578063d7081e0314610a9357600080fd5b8063a201b30711610185578063bc93233f11610154578063bc93233f146109a3578063bd47a9b8146109c3578063c3b83f5f146109f0578063c453180214610a1057600080fd5b8063a201b30714610911578063a3a2adf014610950578063a8da1a1714610963578063b711d4071461098357600080fd5b80639324cac7116101c15780639324cac714610890578063999045a0146108b057806399c18e7e146108d05780639fc42703146108f157600080fd5b806389c6318d146108345780638da5cb5b1461085457806391b4ded91461087a57600080fd5b806330a1ea01116102cc5780635403f80f1161026a5780636bfffb12116102395780636bfffb12146107c9578063704ce43e146107e957806379ba5097146107ff5780637de926d11461081457600080fd5b80635403f80f146107595780635631bf8a1461076f5780635c975abb1461078f57806368b9f66b146107a957600080fd5b80633e7ad1de116102a65780633e7ad1de146106e3578063485cc955146106f95780634eb7c43b1461071957806353a47bb71461073957600080fd5b806330a1ea011461066b5780633ab76e9f1461068b5780633b46bfc9146106c357600080fd5b806313af40351161034457806317b94eac1161031357806317b94eac14610574578063289cc19f146105875780632b03da3c1461059d5780632c43dc831461064b57600080fd5b806313af4035146104f257806314527f3a146105145780631627540c1461053457806316c38b3c1461055457600080fd5b806306c933d81161038057806306c933d81461046957806307b53bb41461049957806312039b6d146104af57806312aa3833146104dc57600080fd5b806301bea636146103b2578063023fb259146103f657806305bfdfd41461042357600080fd5b366103ad57005b600080fd5b3480156103be57600080fd5b506103e16103cd366004614c99565b602080526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b34801561040257600080fd5b50610416610411366004614c99565b610c56565b6040516103ed9190615629565b34801561042f57600080fd5b5061045b61043e3660046150fe565b601e60209081526000928352604080842090915290825290205481565b6040519081526020016103ed565b34801561047557600080fd5b506103e1610484366004614c99565b601b6020526000908152604090205460ff1681565b3480156104a557600080fd5b5061045b60135481565b3480156104bb57600080fd5b506104cf6104ca36600461527e565b610cb1565b6040516103ed9190615557565b3480156104e857600080fd5b5061045b60125481565b3480156104fe57600080fd5b5061051261050d366004614c99565b610ce1565b005b34801561052057600080fd5b506103e161052f366004614c99565b610e21565b34801561054057600080fd5b5061051261054f366004614c99565b610f32565b34801561056057600080fd5b5061051261056f366004615051565b610f88565b610512610582366004614cd1565b610ffe565b34801561059357600080fd5b5061045b60285481565b3480156105a957600080fd5b5061061e6105b8366004615089565b60408051606080820183526000808352602080840182905292840181905283519182018452808252818301818152828501828152958252600f909352929092205460ff1615158252600c549052601754600160a01b90046001600160401b031690915290565b6040805182511515815260208084015190820152918101516001600160401b0316908201526060016103ed565b34801561065757600080fd5b50610512610666366004614ea4565b611076565b34801561067757600080fd5b50610512610686366004614e4c565b6111a3565b34801561069757600080fd5b506026546106ab906001600160a01b031681565b6040516001600160a01b0390911681526020016103ed565b3480156106cf57600080fd5b506105126106de3660046152ab565b611200565b3480156106ef57600080fd5b5061045b60105481565b34801561070557600080fd5b50610512610714366004614dd5565b6112bd565b34801561072557600080fd5b5061045b610734366004615089565b6113a4565b34801561074557600080fd5b506001546106ab906001600160a01b031681565b34801561076557600080fd5b5061045b60115481565b34801561077b57600080fd5b5061045b61078a366004615089565b6113c5565b34801561079b57600080fd5b506003546103e19060ff1681565b3480156107b557600080fd5b506105126107c4366004615051565b6113d5565b3480156107d557600080fd5b506105126107e4366004614e02565b611566565b3480156107f557600080fd5b5061045b600d5481565b34801561080b57600080fd5b506105126115f3565b34801561082057600080fd5b5061051261082f3660046150b9565b6116f0565b34801561084057600080fd5b506104cf61084f3660046150dd565b61174a565b34801561086057600080fd5b506000546106ab906201000090046001600160a01b031681565b34801561088657600080fd5b5061045b60025481565b34801561089c57600080fd5b50600a546106ab906001600160a01b031681565b3480156108bc57600080fd5b506105126108cb366004614c99565b611758565b3480156108dc57600080fd5b50601c546103e190600160a01b900460ff1681565b3480156108fd57600080fd5b506104cf61090c36600461527e565b6117ae565b34801561091d57600080fd5b5060175461093890600160a01b90046001600160401b031681565b6040516001600160401b0390911681526020016103ed565b61051261095e366004614ea4565b6117d4565b34801561096f57600080fd5b5061051261097e366004614e4c565b61197a565b34801561098f57600080fd5b5061051261099e366004614fe1565b6119de565b3480156109af57600080fd5b506105126109be366004614d9d565b611b50565b3480156109cf57600080fd5b5061045b6109de366004615089565b60166020526000908152604090205481565b3480156109fc57600080fd5b50610512610a0b366004614c99565b611bc7565b348015610a1c57600080fd5b5061045b610a2b366004615089565b60146020526000908152604090205481565b348015610a4957600080fd5b50600b546106ab906001600160a01b031681565b348015610a6957600080fd5b50601f54610938906001600160401b031681565b348015610a8957600080fd5b5061045b600c5481565b348015610a9f57600080fd5b50610512610aae366004614e79565b611ce0565b610512610ac1366004614d23565b611d3e565b348015610ad257600080fd5b50610512610ae1366004615266565b612230565b348015610af257600080fd5b5061045b610b013660046150fe565b601d60209081526000928352604080842090915290825290205481565b348015610b2a57600080fd5b506103e1610b39366004615089565b600f6020526000908152604090205460ff1681565b348015610b5a57600080fd5b5061045b610b69366004615089565b60156020526000908152604090205481565b348015610b8757600080fd5b506104cf610b963660046150dd565b612511565b348015610ba757600080fd5b50610512610bb6366004615122565b61251f565b348015610bc757600080fd5b5061045b60275481565b348015610bdd57600080fd5b50610512612574565b348015610bf257600080fd5b50610512610c01366004615122565b6125d2565b348015610c1257600080fd5b50610512610c213660046150dd565b612650565b348015610c3257600080fd5b506103e1610c41366004614c99565b60256020526000908152604090205460ff1681565b610c5e614b7a565b506040805160a08101825260065481526008546020808301919091526001600160a01b039093166000818152601985528381205483850152908152601a9093529120546060820152602354608082015290565b6001600160a01b0381166000908152601960205260409020606090610cd79085856126a0565b90505b9392505050565b6001600160a01b038116610d3c5760405162461bcd60e51b815260206004820152601960248201527f4f776e657220616464726573732063616e6e6f7420626520300000000000000060448201526064015b60405180910390fd5b600154600160a01b900460ff1615610da85760405162461bcd60e51b815260206004820152602960248201527f416c726561647920696e697469616c697a65642c20757365206e6f6d696e617460448201526832a732bba7bbb732b960b91b6064820152608401610d33565b6001805460ff60a01b1916600160a01b179055600080546001600160a01b03831662010000810262010000600160b01b03199092169190911782556040805192835260208301919091527fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c91015b60405180910390a150565b6000610e2e6006836127e4565b8015610eb2575042826001600160a01b03166351d8044f6040518163ffffffff1660e01b815260040160206040518083038186803b158015610e6f57600080fd5b505afa158015610e83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea79190615324565b6001600160401b0316105b8015610f2c5750816001600160a01b0316633f6fa6556040518163ffffffff1660e01b815260040160206040518083038186803b158015610ef257600080fd5b505afa158015610f06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f2a919061506d565b155b92915050565b610f3a612866565b600180546001600160a01b0319166001600160a01b0383169081179091556040519081527f906a1c6bd7e3091ea86693dd029a831c19049ce77f1dce2ce0bab1cacbabce2290602001610e16565b610f90612866565b60035460ff1615158115151415610fa45750565b6003805460ff191682151590811790915560ff1615610fc257426002555b60035460405160ff909116151581527f8fb6c181ee25a520cf3dd6565006ef91229fcfe5a989566c2a3b8c115570cec590602001610e16565b50565b60016004600082825461101191906158fd565b909155505060045460035460ff161561103c5760405162461bcd60e51b8152600401610d33906156a7565b61104f8461104a8486615996565b6128e0565b60045481146110705760405162461bcd60e51b8152600401610d3390615704565b50505050565b336000908152601b602052604090205460ff166110d05760405162461bcd60e51b815260206004820152601860248201527714995cdbdb1d995c881b9bdd081dda1a5d195b1a5cdd195960421b6044820152606401610d33565b60005b8381101561119c576111138585838181106110fe57634e487b7160e01b600052603260045260246000fd5b905060200201602081019061052f9190614c99565b1561118a5761118a85858381811061113b57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906111509190614c99565b84848481811061117057634e487b7160e01b600052603260045260246000fd5b90506020020160208101906111859190615185565b612d02565b8061119481615a87565b9150506110d3565b5050505050565b6111ab612866565b6111b482610e21565b6111f25760405162461bcd60e51b815260206004820152600f60248201526e43616e206e6f74207265736f6c766560881b6044820152606401610d33565b6111fc8282612ec3565b5050565b611208612866565b60128690556013859055601084905560118390556017805467ffffffffffffffff60a01b1916600160a01b6001600160401b0385811691820292909217909255601f805467ffffffffffffffff19169184169182179055604080518981526020810189905290810187905260608101869052608081019290925260a08201527fcb4727945d0c9bf77ea3b48c6c630e5b0e5016c1fe67c9508feafe8fc265cdba9060c0015b60405180910390a1505050505050565b600054610100900460ff166112d85760005460ff16156112dc565b303b155b61133f5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610d33565b600054610100900460ff16158015611361576000805461ffff19166101011790555b61136a83610ce1565b611372612574565b600a80546001600160a01b0319166001600160a01b038416179055801561139f576000805461ff00191690555b505050565b602381815481106113b457600080fd5b600091825260209091200154905081565b602281815481106113b457600080fd5b6113dd612866565b60265460408051639a618c0f60e01b815290516000926001600160a01b031691639a618c0f916004808301926020929190829003018186803b15801561142257600080fd5b505afa158015611436573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145a9190614cb5565b90506001600160a01b0381161561150d57600a546001600160a01b031663095ea7b3828461148957600061148d565b6000195b6040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526024820152604401602060405180830381600087803b1580156114d357600080fd5b505af11580156114e7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061150b919061506d565b505b601c8054831515600160a01b0260ff60a01b199091161790556040517fb76eab56cfa3088dda43a9a4b3ea4bb7685b8007428d4a65248fdaa763d339f89061155a90841515815260200190565b60405180910390a15050565b61156e612866565b600b80546001600160a01b038581166001600160a01b0319928316811790935560248054868316908416811790915560268054928616929093168217909255604080519384526020840192909252908201527fbf934b81354c7e34eda71aa08a74419a5682a0737282cc3f448b353a1893c41f906060015b60405180910390a1505050565b6001546001600160a01b0316331461166b5760405162461bcd60e51b815260206004820152603560248201527f596f75206d757374206265206e6f6d696e61746564206265666f726520796f7560448201527402063616e20616363657074206f776e65727368697605c1b6064820152608401610d33565b60005460015460408051620100009093046001600160a01b03908116845290911660208301527fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c910160405180910390a1600180546000805462010000600160b01b0319166001600160a01b03831662010000021790556001600160a01b0319169055565b6116f8612866565b6000828152600f6020908152604091829020805460ff19168415159081179091558251858152918201527f6af8d0ea20290a2d8dcbb43a77926d5993cd89bac2c6a72cd7813c4eacc2124b910161155a565b6060610cda600884846126a0565b611760612866565b600a80546001600160a01b0319166001600160a01b0383169081179091556040519081527fba10f1023c43b7797db2ff58a62990dbbb24aa29adb28dae7424301e38d99ed990602001610e16565b6001600160a01b0381166000908152601a60205260409020606090610cd79085856126a0565b6001600460008282546117e791906158fd565b909155505060045460035460ff16156118125760405162461bcd60e51b8152600401610d33906156a7565b60005b84811015611958576118408686838181106110fe57634e487b7160e01b600052603260045260246000fd5b1561194657604080516001808252818301909252600091816020015b606081526020019060019003908161185c57905050905084848381811061189357634e487b7160e01b600052603260045260246000fd5b90506020028101906118a5919061583e565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052508551869450909250151590506118fb57634e487b7160e01b600052603260045260246000fd5b602002602001018190525061194487878481811061192957634e487b7160e01b600052603260045260246000fd5b905060200201602081019061193e9190614c99565b826128e0565b505b8061195081615a87565b915050611815565b50600454811461119c5760405162461bcd60e51b8152600401610d3390615704565b336000908152601b602052604090205460ff166119d45760405162461bcd60e51b815260206004820152601860248201527714995cdbdb1d995c881b9bdd081dda1a5d195b1a5cdd195960421b6044820152606401610d33565b6111fc8282612d02565b6119e6612866565b838214611a465760405162461bcd60e51b815260206004820152602860248201527f54696d657320616e642066656573206d7573742068617665207468652073616d6044820152670ca40d8cadccee8d60c31b6064820152608401610d33565b611a5260226000614b98565b611a5e60236000614b98565b60005b84811015611b03576022868683818110611a8b57634e487b7160e01b600052603260045260246000fd5b835460018101855560009485526020948590209190940292909201359190920155506023848483818110611acf57634e487b7160e01b600052603260045260246000fd5b8354600181018555600094855260209485902091909402929092013591909201555080611afb81615a87565b915050611a61565b50600d8190556040517f97b8e3f33b113d945b11628418dc7b155d05943a8a517a937a9d88f4eda67a6b90611b41908790879087908790879061565a565b60405180910390a15050505050565b611b58612866565b6001600160a01b038216611b6b57600080fd5b6001600160a01b0382166000818152601b6020908152604091829020805460ff19168515159081179091558251938452908301527f58d7a3ccc34541e162fcfc87b84be7b78c34d1e1e7f15de6e4dd67d0fe70aecd910161155a565b611bcf612866565b6001600160a01b038116611c175760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610d33565b600154600160a81b900460ff1615611c675760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481d1c985b9cd9995c9c9959606a1b6044820152606401610d33565b600080546001600160a01b038381166201000081810262010000600160b01b031990941693909317938490556001805460ff60a81b1916600160a81b1790556040805193909404909116825260208201527fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c9101610e16565b611ce8612866565b600a54611cff906001600160a01b031683836134a8565b604080516001600160a01b0384168152602081018390527fc3ce4eeef579533b0a2d7ae2e50eb68dccae3b183dc8cce60267f3c9fa4935c0910161155a565b600160046000828254611d5191906158fd565b909155505060045460035460ff1615611d7c5760405162461bcd60e51b8152600401610d33906156a7565b601c54600160a01b900460ff16611de15760405162461bcd60e51b815260206004820152602360248201527f4d756c7469636f6c6c61746572616c206f666672616d70206e6f7420656e61626044820152621b195960ea1b6064820152608401610d33565b6000866001600160a01b0316634f8632ba6040518163ffffffff1660e01b815260040160206040518083038186803b158015611e1c57600080fd5b505afa158015611e30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e549190614cb5565b9050336001600160a01b03821614611eae5760405162461bcd60e51b815260206004820152601e60248201527f4f6e6c7920616c6c6f7765642066726f6d206d61726b6574206f776e657200006044820152606401610d33565b600a546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a082319060240160206040518083038186803b158015611ef457600080fd5b505afa158015611f08573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f2c91906150a1565b9050611f3c8861104a888a615996565b600a546040516370a0823160e01b81526001600160a01b03848116600483015260009284929116906370a082319060240160206040518083038186803b158015611f8557600080fd5b505afa158015611f99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fbd91906150a1565b611fc7919061597f565b600a54909150611fe2906001600160a01b031684308461350b565b80156122045760265460408051639a618c0f60e01b815290516000926001600160a01b031691639a618c0f916004808301926020929190829003018186803b15801561202d57600080fd5b505afa158015612041573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120659190614cb5565b905085156121645760405163b45e98d960e01b8152600481018390526000906001600160a01b0383169063b45e98d990602401602060405180830381600087803b1580156120b257600080fd5b505af11580156120c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120ea91906150a1565b60405190915085906000906001600160a01b0383169084156108fc0290859084818181858888f1935050505090508061215c5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b6044820152606401610d33565b505050612202565b604051630992646d60e31b81526001600160a01b0388811660048301526024820184905260009190831690634c93236890604401602060405180830381600087803b1580156121b257600080fd5b505af11580156121c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121ea91906150a1565b90506122006001600160a01b03891686836134a8565b505b505b50505060045481146122285760405162461bcd60e51b8152600401610d3390615704565b505050505050565b60016004600082825461224391906158fd565b909155505060045460035460ff161561226e5760405162461bcd60e51b8152600401610d33906156a7565b60265460405163bf40fac160e01b815260206004820152601660248201527529b832b2b226b0b935b2ba39a0a6a6a1b932b0ba37b960511b60448201526000916001600160a01b03169063bf40fac19060640160206040518083038186803b1580156122d957600080fd5b505afa1580156122ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123119190614cb5565b9050336001600160a01b0382161461235f5760405162461bcd60e51b815260206004820152601160248201527037b7363c90333937b69021b932b0ba37b960791b6044820152606401610d33565b602654604080516351cfd60960e11b815290516000926001600160a01b03169163a39fac129160048083019260c0929190829003018186803b1580156123a457600080fd5b505afa1580156123b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123dc91906151bd565b90506000806123f361014087016101208801614c99565b6001600160a01b031614905060006124116060870160408801615308565b6001600160401b0316156124345761242f6060870160408801615308565b612457565b6124446080870160608801615308565b612457906001600160401b0316426158fd565b90506000826124945761248f6124706020890189614c99565b6124826101408a016101208b01614c99565b8961014001358588613543565b61249b565b8661014001355b90506124eb6124ad6020890189614c99565b60208901358460808b016124c96101208d016101008e0161514d565b86898e6101600160208101906124df9190614c99565b8f61018001358d613916565b505050505060045481146111fc5760405162461bcd60e51b8152600401610d3390615704565b6060610cda600684846126a0565b612527612866565b600c8390556027829055602881905560408051848152602081018490529081018290527faa4fb0e426c89ca5b40184bc99ab0d12c722021c90689decd8f7b901d3f82b34906060016115e6565b60055460ff16156125bd5760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481a5b9a5d1a585b1a5e9959606a1b6044820152606401610d33565b6005805460ff19166001908117909155600455565b6125da612866565b600083815260146020908152604080832085905560158252808320839055601d82528083208380528252808320849055600183529182902083905581518581529081018490529081018290527facbec488a49aaa9d1b3799159ede0349850bc1a73c0e90913ff03dd4354a34a8906060016115e6565b612658612866565b60008281526016602090815260409182902083905581518481529081018390527fbe9b5564f6075c4b92cab3a707053c7e8828f045a5d233c3157bc3407cb00963910161155a565b606060006126ae83856158fd565b85549091508111156126be575083545b8381116126db575050604080516000815260208101909152610cda565b60006126e7858361597f565b90506000816001600160401b0381111561271157634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561273a578160200160208202803683370190505b50905060005b828110156127d9578761275388836158fd565b8154811061277157634e487b7160e01b600052603260045260246000fd5b9060005260206000200160009054906101000a90046001600160a01b03168282815181106127af57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0390921660209283029190910190910152806127d181615a87565b915050612740565b509695505050505050565b81546000906127f557506000610f2c565b6001600160a01b03821660009081526001840160205260409020548015158061285e5750826001600160a01b03168460000160008154811061284757634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316145b949350505050565b6000546201000090046001600160a01b031633146128de5760405162461bcd60e51b815260206004820152602f60248201527f4f6e6c792074686520636f6e7472616374206f776e6572206d6179207065726660448201526e37b936903a3434b99030b1ba34b7b760891b6064820152608401610d33565b565b6128e982610e21565b6129275760405162461bcd60e51b815260206004820152600f60248201526e43616e206e6f74207265736f6c766560881b6044820152606401610d33565b60265460408051630f98d06f60e41b815290516000926001600160a01b03169163f98d06f0916004808301926020929190829003018186803b15801561296c57600080fd5b505afa158015612980573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129a49190614cb5565b604080516001808252818301909252919250600091906020808301908036833701905050905060166000856001600160a01b03166338d52e0f6040518163ffffffff1660e01b815260040160206040518083038186803b158015612a0757600080fd5b505afa158015612a1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a3f91906150a1565b81526020019081526020016000205481600081518110612a6f57634e487b7160e01b600052603260045260246000fd5b602090810291909101015260405163d47eed4560e01b81526000906001600160a01b03841690634716e9c590829063d47eed4590612ab19089906004016155a4565b60206040518083038186803b158015612ac957600080fd5b505afa158015612add573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b0191906150a1565b8685896001600160a01b03166351d8044f6040518163ffffffff1660e01b815260040160206040518083038186803b158015612b3c57600080fd5b505afa158015612b50573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b749190615324565b601f60009054906101000a90046001600160401b03168b6001600160a01b03166351d8044f6040518163ffffffff1660e01b815260040160206040518083038186803b158015612bc357600080fd5b505afa158015612bd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bfb9190615324565b612c059190615915565b6040518663ffffffff1660e01b8152600401612c2494939291906155b7565b6000604051808303818588803b158015612c3d57600080fd5b505af1158015612c51573d6000803e3d6000fd5b50505050506040513d6000823e601f3d908101601f19168201604052612c7a9190810190614f0c565b9050600081600081518110612c9f57634e487b7160e01b600052603260045260246000fd5b60200260200101516020015190506000816000015160070b13612cf45760405162461bcd60e51b815260206004820152600d60248201526c496e76616c696420707269636560981b6044820152606401610d33565b612228868260000151612ec3565b6000826001600160a01b031663645539ed6040518163ffffffff1660e01b815260040160206040518083038186803b158015612d3d57600080fd5b505afa158015612d51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d759190615169565b90506000836001600160a01b031663c52987cf6040518163ffffffff1660e01b815260040160206040518083038186803b158015612db257600080fd5b505afa158015612dc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dea91906151a1565b905060008160070b8460070b128015612e2257506001836001811115612e2057634e487b7160e01b600052602160045260246000fd5b145b80612e5c57508160070b8460070b138015612e5c57506000836001811115612e5a57634e487b7160e01b600052602160045260246000fd5b145b9050612e6785610e21565b8015612e71575080155b612ebd5760405162461bcd60e51b815260206004820152601860248201527f43616e206e6f74207265736f6c7665206d616e75616c6c7900000000000000006044820152606401610d33565b61119c85855b604051631f67c49160e01b8152600782900b60048201526001600160a01b03831690631f67c49190602401600060405180830381600087803b158015612f0857600080fd5b505af1158015612f1c573d6000803e3d6000fd5b50505050612f34826006613de790919063ffffffff16565b612f3f600883613f6a565b6000826001600160a01b0316634f8632ba6040518163ffffffff1660e01b815260040160206040518083038186803b158015612f7a57600080fd5b505afa158015612f8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612fb29190614cb5565b6001600160a01b0381166000908152601960205260409020909150612fd790846127e4565b15612ffe576001600160a01b0381166000908152601960205260409020612ffe9084613de7565b6001600160a01b0381166000908152601a602052604090206130209084613f6a565b6000836001600160a01b03166338d52e0f6040518163ffffffff1660e01b815260040160206040518083038186803b15801561305b57600080fd5b505afa15801561306f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061309391906150a1565b90506000846001600160a01b0316631fcc8bb26040518163ffffffff1660e01b815260040160206040518083038186803b1580156130d057600080fd5b505afa1580156130e4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061310891906150a1565b90506000856001600160a01b031663645539ed6040518163ffffffff1660e01b815260040160206040518083038186803b15801561314557600080fd5b505afa158015613159573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061317d9190615169565b6000848152601e602052604081209192508391908360018111156131b157634e487b7160e01b600052602160045260246000fd5b60018111156131d057634e487b7160e01b600052602160045260246000fd5b815260200190815260200160002054111561325c576000838152601e60205260408120839183600181111561321557634e487b7160e01b600052602160045260246000fd5b600181111561323457634e487b7160e01b600052602160045260246000fd5b81526020019081526020016000206000828254613251919061597f565b909155506132bc9050565b6000838152601e602052604081208183600181111561328b57634e487b7160e01b600052602160045260246000fd5b60018111156132aa57634e487b7160e01b600052602160045260246000fd5b81526020810191909152604001600020555b856001600160a01b0316633a2c1e556040518163ffffffff1660e01b815260040160206040518083038186803b1580156132f557600080fd5b505afa158015613309573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061332d919061506d565b6133955761333c826002615960565b60008481526015602052604090205411156133855761335c826002615960565b6000848152601560205260408120805490919061337a90849061597f565b909155506133959050565b6000838152601560205260408120555b7f738ac9ca76b7fd50246d5acdc827b2852e656ed2c287d6538e57b046f0ecf64b86876001600160a01b031663653721476040518163ffffffff1660e01b815260040160206040518083038186803b1580156133f057600080fd5b505afa158015613404573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906134289190615169565b886001600160a01b0316633a2c1e556040518163ffffffff1660e01b815260040160206040518083038186803b15801561346157600080fd5b505afa158015613475573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613499919061506d565b6040516112ad9392919061552a565b6040516001600160a01b03831660248201526044810182905261139f90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152613fbc565b6040516001600160a01b03808516602483015283166044820152606481018290526110709085906323b872dd60e01b906084016134d4565b601c54600090600160a01b900460ff166135aa5760405162461bcd60e51b815260206004820152602260248201527f4d756c7469636f6c6c61746572616c206f6e72616d70206e6f7420656e61626c604482015261195960f21b6064820152608401610d33565b600a546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156135ee57600080fd5b505afa158015613602573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061362691906150a1565b60608401519091506136436001600160a01b03881689308961350b565b60405163095ea7b360e01b81526001600160a01b0382811660048301526024820188905288169063095ea7b390604401602060405180830381600087803b15801561368d57600080fd5b505af11580156136a1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136c5919061506d565b506040516322ceb11360e21b81526001600160a01b0388811660048301526024820188905260009190831690638b3ac44c90604401602060405180830381600087803b15801561371457600080fd5b505af1158015613728573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061374c91906150a1565b6024549091506000906001600160a01b031663336ef50d613776426001600160401b038b1661597f565b60226023600d546040518563ffffffff1660e01b815260040161379c94939291906157f8565b60206040518083038186803b1580156137b457600080fd5b505afa1580156137c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137ec91906150a1565b905080600c54670de0b6b3a764000061380591906158fd565b61380f91906158fd565b613821670de0b6b3a764000084615960565b61382b9190615940565b600a546040516370a0823160e01b815230600482015291965060009186916001600160a01b0316906370a082319060240160206040518083038186803b15801561387457600080fd5b505afa158015613888573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138ac91906150a1565b6138b6919061597f565b9050858110156139085760405162461bcd60e51b815260206004820152601e60248201527f6e6f7420656e6f75676820726563656976656420766961206f6e72616d7000006044820152606401610d33565b505050505095945050505050565b6000898152600f602052604090205460ff1661396d5760405162461bcd60e51b8152602060048201526016602482015275105cdcd95d081a5cc81b9bdd081cdd5c1c1bdc9d195960521b6044820152606401610d33565b601254851015801561398157506013548511155b6139c35760405162461bcd60e51b815260206004820152601360248201527215dc9bdb99c8189d5e481a5b88185b5bdd5b9d606a1b6044820152606401610d33565b6010546139d090426158fd565b886001600160401b03161015613a285760405162461bcd60e51b815260206004820152601760248201527f537472696b652074696d65206e6f7420616c6c6f7765640000000000000000006044820152606401610d33565b601154613a3590426158fd565b886001600160401b03161115613a8d5760405162461bcd60e51b815260206004820152601c60248201527f54696d6520746f6f2066617220696e746f2074686520667574757265000000006044820152606401610d33565b6000613a9c8a88888c8761408e565b90508415613b01576000670de0b6b3a764000082600c54670de0b6b3a7640000613ac691906158fd565b613ad091906158fd565b613ada9089615960565b613ae49190615940565b600a54909150613aff906001600160a01b03168d308461350b565b505b600b54600090613b19906001600160a01b03166145ff565b9050806001600160a01b031663ddf338f5604051806101400160405280306001600160a01b031681526020018f6001600160a01b031681526020018e81526020018d6001600160401b031681526020018c6000016020810190613b7c9190615185565b60070b81526020018c606001356001600160401b031681526020018b6001811115613bb757634e487b7160e01b600052602160045260246000fd5b81526020018a8152602001600c548152602001858152506040518263ffffffff1660e01b8152600401613bea919061573b565b600060405180830381600087803b158015613c0457600080fd5b505af1158015613c18573d6000803e3d6000fd5b50505050613c4081886002613c2d9190615960565b600a546001600160a01b031691906134a8565b613c4c8c86898661469c565b50613c58600682613f6a565b6001600160a01b038c166000908152601960205260409020613c7a9082613f6a565b60408301516001600160a01b031615613cf65760408084015190516302c7739b60e01b81526001600160a01b038e81166004830152602482018a9052909116906302c7739b90604401600060405180830381600087803b158015613cdd57600080fd5b505af1158015613cf1573d6000803e3d6000fd5b505050505b6001600160a01b0381166000908152602080805260408083208054600160ff199182168117909255602584529190932080549091169092179091557f4fb5dd0be05638074eabb1b37a9bdf9ab8cbad8d83c7bce9298aca16de5b79c39082908e908e908e90613d67908f018f615185565b8d8d604051613d7c979695949392919061546c565b60405180910390a17f51f385a862a654703b4b7a2e647518a58930354129b8364d5dbe945752df3646818d8d8d613db660208f018f615185565b8d8d600c548a604051613dd1999897969594939291906154c3565b60405180910390a1505050505050505050505050565b613df182826127e4565b613e335760405162461bcd60e51b815260206004820152601360248201527222b632b6b2b73a103737ba1034b71039b2ba1760691b6044820152606401610d33565b6001600160a01b0381166000908152600180840160205260408220548454909291613e5d9161597f565b9050808214613f05576000846000018281548110613e8b57634e487b7160e01b600052603260045260246000fd5b60009182526020909120015485546001600160a01b0390911691508190869085908110613ec857634e487b7160e01b600052603260045260246000fd5b600091825260208083209190910180546001600160a01b0319166001600160a01b0394851617905592909116815260018601909152604090208290555b8354849080613f2457634e487b7160e01b600052603160045260246000fd5b60008281526020808220830160001990810180546001600160a01b03191690559092019092556001600160a01b0394909416815260019490940190925250506040812055565b613f7482826127e4565b6111fc5781546001600160a01b038216600081815260018086016020908152604083208590559084018655858252902090910180546001600160a01b03191690911790555050565b6000614011826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661490a9092919063ffffffff16565b80519091501561139f578080602001905181019061402f919061506d565b61139f5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610d33565b60008061409b8787614919565b9050602854836140ab91906158fd565b8111156140f35760405162461bcd60e51b815260206004820152601660248201527514dad95dc81cdb1a5c1c1859d948195e18d95959195960521b6044820152606401610d33565b60008087600181111561411657634e487b7160e01b600052602160045260246000fd5b14614122576000614125565b60015b90506000821561413657600061414c565b60026141428a84614919565b61414c9190615940565b60008a8152601e6020526040812091925088919084600181111561418057634e487b7160e01b600052602160045260246000fd5b600181111561419f57634e487b7160e01b600052602160045260246000fd5b815260200190815260200160002054111561422b576000898152601e6020526040812088918460018111156141e457634e487b7160e01b600052602160045260246000fd5b600181111561420357634e487b7160e01b600052602160045260246000fd5b81526020019081526020016000206000828254614220919061597f565b909155506144779050565b6000898152601e602052604081209083600181111561425a57634e487b7160e01b600052602160045260246000fd5b600181111561427957634e487b7160e01b600052602160045260246000fd5b81526020019081526020016000205487614293919061597f565b60008a8152601e60205260408120908a60018111156142c257634e487b7160e01b600052602160045260246000fd5b60018111156142e157634e487b7160e01b600052602160045260246000fd5b815260200190815260200160002060008282546142fe91906158fd565b90915550506000898152601e602052604081208184600181111561433257634e487b7160e01b600052602160045260246000fd5b600181111561435157634e487b7160e01b600052602160045260246000fd5b815260200190815260200160002081905550601d60008a8152602001908152602001600020600089600181111561439857634e487b7160e01b600052602160045260246000fd5b60018111156143b757634e487b7160e01b600052602160045260246000fd5b815260200190815260200160002054601e60008b815260200190815260200160002060008a60018111156143fb57634e487b7160e01b600052602160045260246000fd5b600181111561441a57634e487b7160e01b600052602160045260246000fd5b81526020019081526020016000205411156144775760405162461bcd60e51b815260206004820152601b60248201527f5269736b2070657220646972656374696f6e20657863656564656400000000006044820152606401610d33565b602454819084906001600160a01b031663336ef50d61449f426001600160401b038c1661597f565b60226023600d546040518563ffffffff1660e01b81526004016144c594939291906157f8565b60206040518083038186803b1580156144dd57600080fd5b505afa1580156144f1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061451591906150a1565b61451f91906158fd565b614529919061597f565b9350670de0b6b3a764000061453e85826158fd565b6145489089615960565b6145529190615940565b61455d886002615960565b614567919061597f565b60008a815260156020526040812080549091906145859084906158fd565b909155505060008981526014602090815260408083205460159092529091205411156145f35760405162461bcd60e51b815260206004820152601760248201527f5269736b207065722061737365742065786365656465640000000000000000006044820152606401610d33565b50505095945050505050565b6000604051733d602d80600a3d3981f3363d3d373d3d3d363d7360601b81528260601b60148201526e5af43d82803e903d91602b57fd5bf360881b60288201526037816000f09150506001600160a01b0381166146975760405162461bcd60e51b8152602060048201526016602482015275115490cc4c4d8dce8818dc99585d194819985a5b195960521b6044820152606401610d33565b919050565b60208101516000906001600160a01b038116156148cd5760006001600160a01b0386161561472f5760405163bbddaca360e01b81526001600160a01b038781166004830152888116602483015283169063bbddaca390604401600060405180830381600087803b15801561470f57600080fd5b505af1158015614723573d6000803e3d6000fd5b505050508590506147ab565b604051639ca423b360e01b81526001600160a01b038881166004830152831690639ca423b39060240160206040518083038186803b15801561477057600080fd5b505afa158015614784573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906147a89190614cb5565b90505b6001600160a01b038116156148cb5760405163c7d1f5f160e01b81526001600160a01b0382811660048301526000919084169063c7d1f5f19060240160206040518083038186803b1580156147ff57600080fd5b505afa158015614813573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061483791906150a1565b905080156148c957670de0b6b3a76400006148528288615960565b61485c9190615940565b600a54909450614876906001600160a01b031683866134a8565b604080516001600160a01b0380851682528a166020820152908101859052606081018790527f8fa68a6a8e2fc9ff758a6e64afba8bc2f66fb082999a2c5225c8c49633faded49060800160405180910390a15b505b505b614901836000015183670de0b6b3a7640000600c54886148ed9190615960565b6148f79190615940565b613c2d919061597f565b50949350505050565b6060610cd78484600085614a19565b6027546000838152601d602052604081209091670de0b6b3a7640000918385600181111561495757634e487b7160e01b600052602160045260246000fd5b600181111561497657634e487b7160e01b600052602160045260246000fd5b815260200190815260200160002054670de0b6b3a7640000601e600088815260200190815260200160002060008760018111156149c357634e487b7160e01b600052602160045260246000fd5b60018111156149e257634e487b7160e01b600052602160045260246000fd5b8152602001908152602001600020546149fb9190615960565b614a059190615940565b614a0f9190615960565b610cda9190615940565b606082471015614a7a5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610d33565b843b614ac85760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610d33565b600080866001600160a01b03168587604051614ae49190615450565b60006040518083038185875af1925050503d8060008114614b21576040519150601f19603f3d011682016040523d82523d6000602084013e614b26565b606091505b5091509150614b36828286614b41565b979650505050505050565b60608315614b50575081610cda565b825115614b605782518084602001fd5b8160405162461bcd60e51b8152600401610d339190615694565b6040518060a001604052806005906020820280368337509192915050565b5080546000825590600052602060002090810190610ffb91905b80821115614bc65760008155600101614bb2565b5090565b60008083601f840112614bdb578182fd5b5081356001600160401b03811115614bf1578182fd5b6020830191508360208260051b8501011115614c0c57600080fd5b9250929050565b600060808284031215614c24578081fd5b604051608081018181106001600160401b0382111715614c4657614c46615ab8565b80604052508091508251614c5981615afe565b81526020830151614c6981615b0d565b60208201526040830151600381900b8114614c8357600080fd5b6040820152606092830151920191909152919050565b600060208284031215614caa578081fd5b8135610cda81615ace565b600060208284031215614cc6578081fd5b8151610cda81615ace565b600080600060408486031215614ce5578182fd5b8335614cf081615ace565b925060208401356001600160401b03811115614d0a578283fd5b614d1686828701614bca565b9497909650939450505050565b600080600080600060808688031215614d3a578283fd5b8535614d4581615ace565b945060208601356001600160401b03811115614d5f578384fd5b614d6b88828901614bca565b9095509350506040860135614d7f81615ace565b91506060860135614d8f81615ae3565b809150509295509295909350565b60008060408385031215614daf578182fd5b8235614dba81615ace565b91506020830135614dca81615ae3565b809150509250929050565b60008060408385031215614de7578182fd5b8235614df281615ace565b91506020830135614dca81615ace565b600080600060608486031215614e16578081fd5b8335614e2181615ace565b92506020840135614e3181615ace565b91506040840135614e4181615ace565b809150509250925092565b60008060408385031215614e5e578182fd5b8235614e6981615ace565b91506020830135614dca81615afe565b60008060408385031215614e8b578182fd5b8235614e9681615ace565b946020939093013593505050565b60008060008060408587031215614eb9578182fd5b84356001600160401b0380821115614ecf578384fd5b614edb88838901614bca565b90965094506020870135915080821115614ef3578384fd5b50614f0087828801614bca565b95989497509550505050565b60006020808385031215614f1e578182fd5b82516001600160401b03811115614f33578283fd5b8301601f81018513614f43578283fd5b8051614f56614f51826158da565b6158aa565b81815283810190838501610120808502860187018a1015614f75578788fd5b8795505b84861015614fd35780828b031215614f8f578788fd5b614f97615882565b82518152614fa78b898501614c13565b88820152614fb88b60a08501614c13565b60408201528452600195909501949286019290810190614f79565b509098975050505050505050565b600080600080600060608688031215614ff8578283fd5b85356001600160401b038082111561500e578485fd5b61501a89838a01614bca565b90975095506020880135915080821115615032578485fd5b5061503f88828901614bca565b96999598509660400135949350505050565b600060208284031215615062578081fd5b8135610cda81615ae3565b60006020828403121561507e578081fd5b8151610cda81615ae3565b60006020828403121561509a578081fd5b5035919050565b6000602082840312156150b2578081fd5b5051919050565b600080604083850312156150cb578182fd5b823591506020830135614dca81615ae3565b600080604083850312156150ef578182fd5b50508035926020909101359150565b60008060408385031215615110578182fd5b823591506020830135614dca81615af1565b600080600060608486031215615136578081fd5b505081359360208301359350604090920135919050565b60006020828403121561515e578081fd5b8135610cda81615af1565b60006020828403121561517a578081fd5b8151610cda81615af1565b600060208284031215615196578081fd5b8135610cda81615afe565b6000602082840312156151b2578081fd5b8151610cda81615afe565b600060c082840312156151ce578081fd5b60405160c081018181106001600160401b03821117156151f0576151f0615ab8565b60405282516151fe81615ace565b8152602083015161520e81615ace565b6020820152604083015161522181615ace565b6040820152606083015161523481615ace565b6060820152608083015161524781615ace565b608082015260a083015161525a81615ace565b60a08201529392505050565b60006101a08284031215615278578081fd5b50919050565b600080600060608486031215615292578081fd5b83359250602084013591506040840135614e4181615ace565b60008060008060008060c087890312156152c3578384fd5b8635955060208701359450604087013593506060870135925060808701356152ea81615b0d565b915060a08701356152fa81615b0d565b809150509295509295509295565b600060208284031215615319578081fd5b8135610cda81615b0d565b600060208284031215615335578081fd5b8151610cda81615b0d565b6000815180845260208085019450848260051b8601828601855b85811015615384578383038952615372838351615402565b9885019892509084019060010161535a565b5090979650505050505050565b81835260006001600160fb1b038311156153a9578081fd5b8260051b80836020870137939093016020019283525090919050565b6000815480845260208085019450838352808320835b838110156153f7578154875295820195600191820191016153db565b509495945050505050565b6000815180845261541a816020860160208601615a5b565b601f01601f19169290920160200192915050565b6002811061544c57634e487b7160e01b600052602160045260246000fd5b9052565b60008251615462818460208701615a5b565b9190910192915050565b6001600160a01b03888116825287166020820152604081018690526001600160401b0385166060820152600784900b608082015260e081016154b160a083018561542e565b8260c083015298975050505050505050565b6001600160a01b038a8116825289166020820152604081018890526001600160401b0387166060820152600786900b6080820152610120810161550960a083018761542e565b8460c08301528360e0830152826101008301529a9950505050505050505050565b6001600160a01b038416815260608101615547602083018561542e565b8215156040830152949350505050565b6020808252825182820181905260009190848201906040850190845b818110156155985783516001600160a01b031683529284019291840191600101615573565b50909695505050505050565b602081526000610cda6020830184615340565b6080815260006155ca6080830187615340565b828103602084810191909152865180835287820192820190845b81811015615600578451835293830193918301916001016155e4565b50506001600160401b039687166040860152949095166060909301929092525090949350505050565b60a08101818360005b6005811015615651578151835260209283019290910190600101615632565b50505092915050565b60608152600061566e606083018789615391565b8281036020840152615681818688615391565b9150508260408301529695505050505050565b602081526000610cda6020830184615402565b6020808252603c908201527f5468697320616374696f6e2063616e6e6f7420626520706572666f726d65642060408201527f7768696c652074686520636f6e74726163742069732070617573656400000000606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b81516001600160a01b031681526101408101602083015161576760208401826001600160a01b03169052565b5060408301516040830152606083015161578c60608401826001600160401b03169052565b5060808301516157a1608084018260070b9052565b5060a08301516157bc60a08401826001600160401b03169052565b5060c08301516157cf60c084018261542e565b5060e083015160e083015261010080840151818401525061012080840151818401525092915050565b6001600160401b038516815260806020820152600061581a60808301866153c5565b828103604084015261582c81866153c5565b91505082606083015295945050505050565b6000808335601e19843603018112615854578283fd5b8301803591506001600160401b0382111561586d578283fd5b602001915036819003821315614c0c57600080fd5b604051606081016001600160401b03811182821017156158a4576158a4615ab8565b60405290565b604051601f8201601f191681016001600160401b03811182821017156158d2576158d2615ab8565b604052919050565b60006001600160401b038211156158f3576158f3615ab8565b5060051b60200190565b6000821982111561591057615910615aa2565b500190565b60006001600160401b0380831681851680830382111561593757615937615aa2565b01949350505050565b60008261595b57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561597a5761597a615aa2565b500290565b60008282101561599157615991615aa2565b500390565b60006159a4614f51846158da565b808482526020808301925084368760051b870111156159c1578485fd5b845b87811015615a4f5781356001600160401b03808211156159e1578788fd5b90880190601f36818401126159f4578889fd5b823582811115615a0657615a06615ab8565b615a17818301601f191688016158aa565b92508083523687828601011115615a2c57898afd5b8087850188850137820186018990525086525093820193908201906001016159c3565b50919695505050505050565b60005b83811015615a76578181015183820152602001615a5e565b838111156110705750506000910152565b6000600019821415615a9b57615a9b615aa2565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610ffb57600080fd5b8015158114610ffb57600080fd5b60028110610ffb57600080fd5b8060070b8114610ffb57600080fd5b6001600160401b0381168114610ffb57600080fdfea2646970667358221220a38dae3249517ca761ad23bbf9c9a7b7a6174fbaaad9fef0543f55d53f95814b64736f6c63430008040033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.