More Info
Private Name Tags
ContractCreator
Latest 23 from a total of 23 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim Rebate | 69789916 | 21 days ago | IN | 0 POL | 0.00220287 | ||||
Claim Rebate | 66128175 | 113 days ago | IN | 0 POL | 0.00092404 | ||||
Claim Rebate | 51432551 | 487 days ago | IN | 0 POL | 0.01352182 | ||||
Claim Ownership | 45853078 | 629 days ago | IN | 0 POL | 0.00400743 | ||||
Transfer Ownersh... | 45853064 | 629 days ago | IN | 0 POL | 0.0035998 | ||||
Claim Rebate | 38223315 | 826 days ago | IN | 0 POL | 0.00278532 | ||||
Claim Rebate | 36524051 | 868 days ago | IN | 0 POL | 0.00169381 | ||||
Set Rebate Rate | 35936281 | 882 days ago | IN | 0 POL | 0.01504076 | ||||
Set Rebate Rate | 35936267 | 882 days ago | IN | 0 POL | 0.01571617 | ||||
Set Rebate Rate | 31054388 | 1004 days ago | IN | 0 POL | 0.01572601 | ||||
Set Rebate Rate | 31054373 | 1004 days ago | IN | 0 POL | 0.01291949 | ||||
Set Rebate Rate | 30784557 | 1012 days ago | IN | 0 POL | 0.00312785 | ||||
Add Rebate | 30442371 | 1020 days ago | IN | 0 POL | 0.00146952 | ||||
Set Rebate Rate | 30176562 | 1027 days ago | IN | 0 POL | 0.00341784 | ||||
Set Rebate Rate | 30176556 | 1027 days ago | IN | 0 POL | 0.00342706 | ||||
Set Rebate Rate | 30176549 | 1027 days ago | IN | 0 POL | 0.00342706 | ||||
Set Rebate Rate | 30176543 | 1027 days ago | IN | 0 POL | 0.00342706 | ||||
Set Rebate Rate | 30176538 | 1027 days ago | IN | 0 POL | 0.00342706 | ||||
Set Rebate Rate | 30176527 | 1027 days ago | IN | 0 POL | 0.00355538 | ||||
Set Rebate Rate | 30176508 | 1027 days ago | IN | 0 POL | 0.00460629 | ||||
Claim Ownership | 30176466 | 1027 days ago | IN | 0 POL | 0.00175389 | ||||
Transfer Ownersh... | 30159881 | 1028 days ago | IN | 0 POL | 0.00117174 | ||||
Set Woo PP | 29860388 | 1036 days ago | IN | 0 POL | 0.00148818 |
Loading...
Loading
Contract Name:
WooRebateManager
Compiler Version
v0.6.12+commit.27d51765
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.6.12; pragma experimental ABIEncoderV2; /* ░██╗░░░░░░░██╗░█████╗░░█████╗░░░░░░░███████╗██╗ ░██║░░██╗░░██║██╔══██╗██╔══██╗░░░░░░██╔════╝██║ ░╚██╗████╗██╔╝██║░░██║██║░░██║█████╗█████╗░░██║ ░░████╔═████║░██║░░██║██║░░██║╚════╝██╔══╝░░██║ ░░╚██╔╝░╚██╔╝░╚█████╔╝╚█████╔╝░░░░░░██║░░░░░██║ ░░░╚═╝░░░╚═╝░░░╚════╝░░╚════╝░░░░░░░╚═╝░░░░░╚═╝ * * MIT License * =========== * * Copyright (c) 2020 WooTrade * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ import './libraries/InitializableOwnable.sol'; import './libraries/DecimalMath.sol'; import './interfaces/IWooracle.sol'; import './interfaces/IWooRebateManager.sol'; import './interfaces/IWooGuardian.sol'; import './interfaces/AggregatorV3Interface.sol'; import './interfaces/IWooAccessManager.sol'; import '@openzeppelin/contracts/utils/ReentrancyGuard.sol'; import '@openzeppelin/contracts/math/SafeMath.sol'; import '@openzeppelin/contracts/token/ERC20/SafeERC20.sol'; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; import '@openzeppelin/contracts/token/ERC20/ERC20.sol'; import '@openzeppelin/contracts/utils/EnumerableSet.sol'; import '@uniswap/lib/contracts/libraries/TransferHelper.sol'; contract WooRebateManager is InitializableOwnable, ReentrancyGuard, IWooRebateManager { using SafeMath for uint256; using DecimalMath for uint256; using SafeERC20 for IERC20; using EnumerableSet for EnumerableSet.AddressSet; // Note: this is the percent rate of the total swap fee (not the swap volume) // decimal: 18; 1e16 = 1%, 1e15 = 0.1%, 1e14 = 0.01% // // e.g. suppose: // rebateRate = 1e17 (10%), so the rebate amount is total_swap_fee * 10%. mapping(address => uint256) public override rebateRate; EnumerableSet.AddressSet private rebateAddressSet; // pending rebate amount in quote token mapping(address => uint256) public pendingRebate; IWooPP private wooPP; address public immutable override quoteToken; // USDT address public rewardToken; // Any Token IWooAccessManager public accessManager; /* ----- Modifiers ----- */ modifier onlyAdmin() { require(msg.sender == _OWNER_ || accessManager.isRebateAdmin(msg.sender), 'WooRebateManager: NOT_ADMIN'); _; } constructor( address newQuoteToken, address newRewardToken, address newAccessManager ) public { require(newQuoteToken != address(0), 'WooRebateManager: INVALID_QUOTE'); require(newRewardToken != address(0), 'WooRebateManager: INVALID_REWARD_TOKEN'); initOwner(msg.sender); quoteToken = newQuoteToken; rewardToken = newRewardToken; accessManager = IWooAccessManager(newAccessManager); } function pendingRebateInUSDT(address brokerAddr) external view override returns (uint256) { require(brokerAddr != address(0), 'WooRebateManager: zero_brokerAddr'); return pendingRebate[brokerAddr]; } function pendingRebateInWOO(address brokerAddr) external view override returns (uint256) { require(brokerAddr != address(0), 'WooRebateManager: zero_brokerAddr'); return wooPP.querySellQuote(rewardToken, pendingRebate[brokerAddr]); } function claimRebate() external override nonReentrant { require(pendingRebate[msg.sender] > 0, 'WooRebateManager: NO_pending_rebate'); uint256 quoteAmount = pendingRebate[msg.sender]; // Note: set the pending rebate early to make external interactions safe. pendingRebate[msg.sender] = 0; uint256 rewardAmount; if (rewardToken == quoteToken) { rewardAmount = quoteAmount; } else { uint256 balanceBefore = IERC20(rewardToken).balanceOf(address(this)); TransferHelper.safeApprove(quoteToken, address(wooPP), quoteAmount); rewardAmount = wooPP.sellQuote(rewardToken, quoteAmount, 0, address(this), address(0)); uint256 balanceAfter = IERC20(rewardToken).balanceOf(address(this)); require(balanceAfter.sub(balanceBefore) >= rewardAmount, 'WooRebateManager: woo amount INSUFF'); } if (rewardAmount > 0) { TransferHelper.safeTransfer(rewardToken, msg.sender, rewardAmount); } emit ClaimReward(msg.sender, rewardAmount); } function allRebateAddresses() external view returns (address[] memory) { address[] memory rebateAddresses = new address[](rebateAddressSet.length()); for (uint256 i = 0; i < rebateAddressSet.length(); ++i) { rebateAddresses[i] = rebateAddressSet.at(i); } return rebateAddresses; } function allRebateAddressesLength() external view returns (uint256) { return rebateAddressSet.length(); } /* ----- Admin Functions ----- */ function addRebate(address brokerAddr, uint256 amountInUSDT) external override nonReentrant onlyAdmin { if (brokerAddr == address(0)) { return; } pendingRebate[brokerAddr] = amountInUSDT.add(pendingRebate[brokerAddr]); } function setRebateRate(address brokerAddr, uint256 rate) external override onlyAdmin { require(brokerAddr != address(0), 'WooRebateManager: brokerAddr_ZERO_ADDR'); require(rate <= 1e18, 'WooRebateManager: INVALID_USER_REWARD_RATE'); // rate <= 100% rebateRate[brokerAddr] = rate; if (rate == 0) { rebateAddressSet.remove(brokerAddr); } else { rebateAddressSet.add(brokerAddr); } emit RebateRateUpdated(brokerAddr, rate); } function setWooPP(address newWooPP) external onlyAdmin { require(newWooPP != address(0), 'WooRebateManager: wooPP_ZERO_ADDR'); wooPP = IWooPP(newWooPP); require(wooPP.quoteToken() == quoteToken, 'WooRebateManager: wooPP_quote_token_INVALID'); } function setAccessManager(address newAccessManager) external onlyOwner { require(newAccessManager != address(0), 'WooRebateManager: newAccessManager_ZERO_ADDR'); accessManager = IWooAccessManager(newAccessManager); } function setRewardToken(address newRewardToken) external onlyAdmin { require(newRewardToken != address(0), 'WooRebateManager: rewardToken_ZERO_ADDR'); rewardToken = newRewardToken; } function emergencyWithdraw(address token, address to) public onlyOwner { require(token != address(0), 'WooRebateManager: token_ZERO_ADDR'); require(to != address(0), 'WooRebateManager: to_ZERO_ADDR'); uint256 amount = IERC20(token).balanceOf(address(this)); TransferHelper.safeTransfer(token, to, amount); emit Withdraw(token, to, amount); } }
// SPDX-License-Identifier: MIT pragma solidity =0.6.12; pragma experimental ABIEncoderV2; /** * @title Ownable initializable contract. * * @notice Ownership related functions */ contract InitializableOwnable { address public _OWNER_; address public _NEW_OWNER_; bool internal _INITIALIZED_; // ============ Events ============ event OwnershipTransferPrepared(address indexed previousOwner, address indexed newOwner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); // ============ Modifiers ============ modifier notInitialized() { require(!_INITIALIZED_, 'InitializableOwnable: SHOULD_NOT_BE_INITIALIZED'); _; } modifier onlyOwner() { require(msg.sender == _OWNER_, 'InitializableOwnable: NOT_OWNER'); _; } // ============ Functions ============ /// @dev Init _OWNER_ from newOwner and set _INITIALIZED_ as true /// @param newOwner new owner address function initOwner(address newOwner) public notInitialized { _INITIALIZED_ = true; _OWNER_ = newOwner; } /// @dev Set _NEW_OWNER_ from newOwner /// @param newOwner new owner address function transferOwnership(address newOwner) public onlyOwner { emit OwnershipTransferPrepared(_OWNER_, newOwner); _NEW_OWNER_ = newOwner; } /// @dev Set _OWNER_ from _NEW_OWNER_ and set _NEW_OWNER_ equal zero address function claimOwnership() public { require(msg.sender == _NEW_OWNER_, 'InitializableOwnable: INVALID_CLAIM'); emit OwnershipTransferred(_OWNER_, _NEW_OWNER_); _OWNER_ = _NEW_OWNER_; _NEW_OWNER_ = address(0); } }
// SPDX-License-Identifier: MIT pragma solidity =0.6.12; pragma experimental ABIEncoderV2; import '@openzeppelin/contracts/math/SafeMath.sol'; /** * @title DecimalMath * * @notice Functions for fixed point number with 18 decimals */ library DecimalMath { using SafeMath for uint256; uint256 internal constant ONE = 10**18; uint256 internal constant TWO = 2 * 10**18; uint256 internal constant ONE2 = 10**36; function mulFloor(uint256 target, uint256 d) internal pure returns (uint256) { return target.mul(d) / (10**18); } function mulCeil(uint256 target, uint256 d) internal pure returns (uint256) { return _divCeil(target.mul(d), 10**18); } function divFloor(uint256 target, uint256 d) internal pure returns (uint256) { return target.mul(10**18).div(d); } function divCeil(uint256 target, uint256 d) internal pure returns (uint256) { return _divCeil(target.mul(10**18), d); } function reciprocalFloor(uint256 target) internal pure returns (uint256) { return uint256(10**36).div(target); } function reciprocalCeil(uint256 target) internal pure returns (uint256) { return _divCeil(uint256(10**36), target); } function _divCeil(uint256 a, uint256 b) private pure returns (uint256) { uint256 quotient = a.div(b); uint256 remainder = a - quotient * b; if (remainder > 0) { return quotient + 1; } else { return quotient; } } }
// SPDX-License-Identifier: MIT pragma solidity =0.6.12; pragma experimental ABIEncoderV2; /* ░██╗░░░░░░░██╗░█████╗░░█████╗░░░░░░░███████╗██╗ ░██║░░██╗░░██║██╔══██╗██╔══██╗░░░░░░██╔════╝██║ ░╚██╗████╗██╔╝██║░░██║██║░░██║█████╗█████╗░░██║ ░░████╔═████║░██║░░██║██║░░██║╚════╝██╔══╝░░██║ ░░╚██╔╝░╚██╔╝░╚█████╔╝╚█████╔╝░░░░░░██║░░░░░██║ ░░░╚═╝░░░╚═╝░░░╚════╝░░╚════╝░░░░░░░╚═╝░░░░░╚═╝ * * MIT License * =========== * * Copyright (c) 2020 WooTrade * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /// @title The oracle interface by Woo.Network. /// @notice update and posted the latest price info by Woo. interface IWooracle { /// @dev the quote token for Wooracle's pricing. /// @return the quote token function quoteToken() external view returns (address); /// @dev the price for the given base token /// @param base baseToken address /// @return priceNow the current price of base token /// @return feasible whether the current price is feasible and valid function price(address base) external view returns (uint256 priceNow, bool feasible); function getPrice(address base) external view returns (uint256); function getSpread(address base) external view returns (uint256); function getCoeff(address base) external view returns (uint256); /// @dev returns the state for the given base token. /// @param base baseToken address /// @return priceNow the current price of base token /// @return spreadNow the current spread of base token /// @return coeffNow the slippage coefficient of base token /// @return feasible whether the current state is feasible and valid function state(address base) external view returns ( uint256 priceNow, uint256 spreadNow, uint256 coeffNow, bool feasible ); /// @dev returns the last updated timestamp /// @return the last updated timestamp function timestamp() external view returns (uint256); /// @dev returns whether the base token price is valid. /// @param base baseToken address /// @return whether the base token price is valid. function isFeasible(address base) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity =0.6.12; pragma experimental ABIEncoderV2; /* ░██╗░░░░░░░██╗░█████╗░░█████╗░░░░░░░███████╗██╗ ░██║░░██╗░░██║██╔══██╗██╔══██╗░░░░░░██╔════╝██║ ░╚██╗████╗██╔╝██║░░██║██║░░██║█████╗█████╗░░██║ ░░████╔═████║░██║░░██║██║░░██║╚════╝██╔══╝░░██║ ░░╚██╔╝░╚██╔╝░╚█████╔╝╚█████╔╝░░░░░░██║░░░░░██║ ░░░╚═╝░░░╚═╝░░░╚════╝░░╚════╝░░░░░░░╚═╝░░░░░╚═╝ * * MIT License * =========== * * Copyright (c) 2020 WooTrade * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /// @title Rebate manager interface for WooFi Swap. /// @notice this is for swap rebate or potential incentive program interface IWooRebateManager { event Withdraw(address indexed token, address indexed to, uint256 amount); event RebateRateUpdated(address indexed brokerAddr, uint256 rate); event ClaimReward(address indexed brokerAddr, uint256 amount); /// @dev Gets the rebate rate for the given broker. /// Note: decimal: 18; 1e16 = 1%, 1e15 = 0.1%, 1e14 = 0.01% /// @param brokerAddr the address for rebate /// @return The rebate rate (decimal: 18; 1e16 = 1%, 1e15 = 0.1%, 1e14 = 0.01%) function rebateRate(address brokerAddr) external view returns (uint256); /// @dev set the rebate rate /// @param brokerAddr the rebate address /// @param rate the rebate rate function setRebateRate(address brokerAddr, uint256 rate) external; /// @dev adds the pending reward for the given user. /// @param brokerAddr the address for rebate /// @param amountInUSD the pending reward amount function addRebate(address brokerAddr, uint256 amountInUSD) external; /// @dev Pending amount in $woo. /// @param brokerAddr the address for rebate function pendingRebateInWOO(address brokerAddr) external view returns (uint256); /// @dev Pending amount in $woo. /// @param brokerAddr the address for rebate function pendingRebateInUSDT(address brokerAddr) external view returns (uint256); /// @dev Claims the reward ($woo token will be distributed) function claimRebate() external; /// @dev get the quote token address /// @return address of quote token function quoteToken() external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity =0.6.12; pragma experimental ABIEncoderV2; /* ░██╗░░░░░░░██╗░█████╗░░█████╗░░░░░░░███████╗██╗ ░██║░░██╗░░██║██╔══██╗██╔══██╗░░░░░░██╔════╝██║ ░╚██╗████╗██╔╝██║░░██║██║░░██║█████╗█████╗░░██║ ░░████╔═████║░██║░░██║██║░░██║╚════╝██╔══╝░░██║ ░░╚██╔╝░╚██╔╝░╚█████╔╝╚█████╔╝░░░░░░██║░░░░░██║ ░░░╚═╝░░░╚═╝░░░╚════╝░░╚════╝░░░░░░░╚═╝░░░░░╚═╝ * * MIT License * =========== * * Copyright (c) 2020 WooTrade * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ import '../interfaces/IWooPP.sol'; /// @title Guardian interface to ensure the trading price and volume correct interface IWooGuardian { event ChainlinkRefOracleUpdated(address indexed token, address indexed chainlinkRefOracle); /* ----- Main check APIs ----- */ function checkSwapPrice( uint256 price, address fromToken, address toToken ) external view; function checkInputAmount(address token, uint256 inputAmount) external view; function checkSwapAmount( address fromToken, address toToken, uint256 fromAmount, uint256 toAmount ) external view; }
// SPDX-License-Identifier: MIT pragma solidity =0.6.12; pragma experimental ABIEncoderV2; interface AggregatorV3Interface { function decimals() external view returns (uint8); function description() external view returns (string memory); function version() external view returns (uint256); /// getRoundData and latestRoundData should both raise "No data present" /// if they do not have data to report, instead of returning unset values /// which could be misinterpreted as actual reported values. function getRoundData(uint80 _roundId) external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); function latestRoundData() external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); }
// SPDX-License-Identifier: MIT pragma solidity =0.6.12; pragma experimental ABIEncoderV2; /* ░██╗░░░░░░░██╗░█████╗░░█████╗░░░░░░░███████╗██╗ ░██║░░██╗░░██║██╔══██╗██╔══██╗░░░░░░██╔════╝██║ ░╚██╗████╗██╔╝██║░░██║██║░░██║█████╗█████╗░░██║ ░░████╔═████║░██║░░██║██║░░██║╚════╝██╔══╝░░██║ ░░╚██╔╝░╚██╔╝░╚█████╔╝╚█████╔╝░░░░░░██║░░░░░██║ ░░░╚═╝░░░╚═╝░░░╚════╝░░╚════╝░░░░░░░╚═╝░░░░░╚═╝ * * MIT License * =========== * * Copyright (c) 2020 WooTrade * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /// @title Reward manager interface for WooFi Swap. /// @notice this is for swap rebate or potential incentive program interface IWooAccessManager { /* ----- Events ----- */ event FeeAdminUpdated(address indexed feeAdmin, bool flag); event VaultAdminUpdated(address indexed vaultAdmin, bool flag); event RebateAdminUpdated(address indexed rebateAdmin, bool flag); event ZeroFeeVaultUpdated(address indexed vault, bool flag); /* ----- External Functions ----- */ function isFeeAdmin(address feeAdmin) external returns (bool); function isVaultAdmin(address vaultAdmin) external returns (bool); function isRebateAdmin(address rebateAdmin) external returns (bool); function isZeroFeeVault(address vault) external returns (bool); /* ----- Admin Functions ----- */ /// @notice Sets feeAdmin function setFeeAdmin(address feeAdmin, bool flag) external; /// @notice Batch sets feeAdmin function batchSetFeeAdmin(address[] calldata feeAdmins, bool[] calldata flags) external; /// @notice Sets vaultAdmin function setVaultAdmin(address vaultAdmin, bool flag) external; /// @notice Batch sets vaultAdmin function batchSetVaultAdmin(address[] calldata vaultAdmins, bool[] calldata flags) external; /// @notice Sets rebateAdmin function setRebateAdmin(address rebateAdmin, bool flag) external; /// @notice Batch sets rebateAdmin function batchSetRebateAdmin(address[] calldata rebateAdmins, bool[] calldata flags) external; /// @notice Sets zeroFeeVault function setZeroFeeVault(address vault, bool flag) external; /// @notice Batch sets zeroFeeVault function batchSetZeroFeeVault(address[] calldata vaults, bool[] calldata flags) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () internal { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { 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) { 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) { // 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) { 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) { 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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); 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) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @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. 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) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); 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) { require(b > 0, "SafeMath: modulo by zero"); 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) { 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. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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) { 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) { require(b > 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "./IERC20.sol"; import "../../math/SafeMath.sol"; import "../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _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(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 pragma solidity >=0.6.0 <0.8.0; import "../../utils/Context.sol"; import "./IERC20.sol"; import "../../math/SafeMath.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } }
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity >=0.6.0; // helper methods for interacting with ERC20 tokens and sending ETH that do not consistently return true/false library TransferHelper { function safeApprove( address token, address to, uint256 value ) internal { // bytes4(keccak256(bytes('approve(address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x095ea7b3, to, value)); require( success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper::safeApprove: approve failed' ); } function safeTransfer( address token, address to, uint256 value ) internal { // bytes4(keccak256(bytes('transfer(address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0xa9059cbb, to, value)); require( success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper::safeTransfer: transfer failed' ); } function safeTransferFrom( address token, address from, address to, uint256 value ) internal { // bytes4(keccak256(bytes('transferFrom(address,address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x23b872dd, from, to, value)); require( success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper::transferFrom: transferFrom failed' ); } function safeTransferETH(address to, uint256 value) internal { (bool success, ) = to.call{value: value}(new bytes(0)); require(success, 'TransferHelper::safeTransferETH: ETH transfer failed'); } }
// SPDX-License-Identifier: MIT pragma solidity =0.6.12; pragma experimental ABIEncoderV2; /* ░██╗░░░░░░░██╗░█████╗░░█████╗░░░░░░░███████╗██╗ ░██║░░██╗░░██║██╔══██╗██╔══██╗░░░░░░██╔════╝██║ ░╚██╗████╗██╔╝██║░░██║██║░░██║█████╗█████╗░░██║ ░░████╔═████║░██║░░██║██║░░██║╚════╝██╔══╝░░██║ ░░╚██╔╝░╚██╔╝░╚█████╔╝╚█████╔╝░░░░░░██║░░░░░██║ ░░░╚═╝░░░╚═╝░░░╚════╝░░╚════╝░░░░░░░╚═╝░░░░░╚═╝ * * MIT License * =========== * * Copyright (c) 2020 WooTrade * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /// @title Woo private pool for swap. /// @notice Use this contract to directly interfact with woo's synthetic proactive /// marketing making pool. /// @author woo.network interface IWooPP { /* ----- Type declarations ----- */ /// @dev struct info to store the token info struct TokenInfo { uint112 reserve; // Token balance uint112 threshold; // Threshold for reserve update uint32 lastResetTimestamp; // Timestamp for last param update uint64 R; // Rebalance coefficient [0, 1] uint112 target; // Targeted balance for pricing bool isValid; // is this token info valid } /* ----- Events ----- */ event StrategistUpdated(address indexed strategist, bool flag); event FeeManagerUpdated(address indexed newFeeManager); event RewardManagerUpdated(address indexed newRewardManager); event WooracleUpdated(address indexed newWooracle); event WooGuardianUpdated(address indexed newWooGuardian); event ParametersUpdated(address indexed baseToken, uint256 newThreshold, uint256 newR); event Withdraw(address indexed token, address indexed to, uint256 amount); event WooSwap( address indexed fromToken, address indexed toToken, uint256 fromAmount, uint256 toAmount, address from, address indexed to, address rebateTo ); /* ----- External Functions ----- */ /// @dev Swap baseToken into quoteToken /// @param baseToken the base token /// @param baseAmount amount of baseToken that user want to swap /// @param minQuoteAmount minimum amount of quoteToken that user accept to receive /// @param to quoteToken receiver address /// @param rebateTo the wallet address for rebate /// @return quoteAmount the swapped amount of quote token function sellBase( address baseToken, uint256 baseAmount, uint256 minQuoteAmount, address to, address rebateTo ) external returns (uint256 quoteAmount); /// @dev Swap quoteToken into baseToken /// @param baseToken the base token /// @param quoteAmount amount of quoteToken that user want to swap /// @param minBaseAmount minimum amount of baseToken that user accept to receive /// @param to baseToken receiver address /// @param rebateTo the wallet address for rebate /// @return baseAmount the swapped amount of base token function sellQuote( address baseToken, uint256 quoteAmount, uint256 minBaseAmount, address to, address rebateTo ) external returns (uint256 baseAmount); /// @dev Query the amount for selling the base token amount. /// @param baseToken the base token to sell /// @param baseAmount the amount to sell /// @return quoteAmount the swapped quote amount function querySellBase(address baseToken, uint256 baseAmount) external view returns (uint256 quoteAmount); /// @dev Query the amount for selling the quote token. /// @param baseToken the base token to receive (buy) /// @param quoteAmount the amount to sell /// @return baseAmount the swapped base token amount function querySellQuote(address baseToken, uint256 quoteAmount) external view returns (uint256 baseAmount); /// @dev get the quote token address (immutable) /// @return address of quote token function quoteToken() external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ 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; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
{ "evmVersion": "istanbul", "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[{"inputs":[{"internalType":"address","name":"newQuoteToken","type":"address"},{"internalType":"address","name":"newRewardToken","type":"address"},{"internalType":"address","name":"newAccessManager","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"brokerAddr","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ClaimReward","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferPrepared","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"brokerAddr","type":"address"},{"indexed":false,"internalType":"uint256","name":"rate","type":"uint256"}],"name":"RebateRateUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"_NEW_OWNER_","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":"accessManager","outputs":[{"internalType":"contract IWooAccessManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"brokerAddr","type":"address"},{"internalType":"uint256","name":"amountInUSDT","type":"uint256"}],"name":"addRebate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allRebateAddresses","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allRebateAddressesLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimRebate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"initOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"pendingRebate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"brokerAddr","type":"address"}],"name":"pendingRebateInUSDT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"brokerAddr","type":"address"}],"name":"pendingRebateInWOO","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"quoteToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rebateRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAccessManager","type":"address"}],"name":"setAccessManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"brokerAddr","type":"address"},{"internalType":"uint256","name":"rate","type":"uint256"}],"name":"setRebateRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRewardToken","type":"address"}],"name":"setRewardToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWooPP","type":"address"}],"name":"setWooPP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b5060405162001e8f38038062001e8f833981016040819052620000349162000148565b60016002556001600160a01b0383166200006b5760405162461bcd60e51b815260040162000062906200019b565b60405180910390fd5b6001600160a01b038216620000945760405162461bcd60e51b8152600401620000629062000221565b6200009f33620000e5565b60609290921b6001600160601b031916608052600880546001600160a01b03199081166001600160a01b0393841617909155600980549091169190921617905562000280565b600154600160a01b900460ff1615620001125760405162461bcd60e51b81526004016200006290620001d2565b6001805460ff60a01b1916600160a01b179055600080546001600160a01b039092166001600160a01b0319909216919091179055565b6000806000606084860312156200015d578283fd5b83516200016a8162000267565b60208501519093506200017d8162000267565b6040850151909250620001908162000267565b809150509250925092565b6020808252601f908201527f576f6f5265626174654d616e616765723a20494e56414c49445f51554f544500604082015260600190565b6020808252602f908201527f496e697469616c697a61626c654f776e61626c653a2053484f554c445f4e4f5460408201526e17d09157d253925512505312569151608a1b606082015260800190565b60208082526026908201527f576f6f5265626174654d616e616765723a20494e56414c49445f5245574152446040820152652faa27a5a2a760d11b606082015260800190565b6001600160a01b03811681146200027d57600080fd5b50565b60805160601c611be2620002ad600039806103d952806108fc5280610d3b5280610e015250611be26000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80636382d9ad116100b8578063c95808041161007c578063c958080414610254578063cda3948f14610267578063f2fde38b1461026f578063f7c618c114610282578063faac7a381461028a578063fdcb60681461029257610137565b80636382d9ad1461020057806377ea464d146102135780637a517f7a146102265780638456db15146102395780638aee81271461024157610137565b8063231bbff6116100ff578063231bbff6146101aa57806330d8c69e146101bd5780634e71e0c8146101d2578063546bac63146101da5780635bc9f65d146101ed57610137565b8063010eb75c1461013c5780630d0092971461016557806316048bc41461017a578063217a4b701461018f57806322a2b2cc14610197575b600080fd5b61014f61014a366004611469565b61029a565b60405161015c9190611b8e565b60405180910390f35b610178610173366004611469565b610368565b005b6101826103c8565b60405161015c9190611575565b6101826103d7565b6101786101a53660046114d9565b6103fb565b6101786101b83660046114d9565b61057e565b6101c56106b0565b60405161015c91906115d4565b610178610751565b61014f6101e8366004611469565b6107df565b6101786101fb366004611469565b6107f1565b61017861020e3660046114a1565b6109a9565b61014f610221366004611469565b610afb565b61014f610234366004611469565b610b0d565b610182610b51565b61017861024f366004611469565b610b60565b610178610262366004611469565b610c5a565b610178610ccc565b61017861027d366004611469565b610fda565b61018261105f565b61014f61106e565b61018261107f565b60006001600160a01b0382166102cb5760405162461bcd60e51b81526004016102c290611663565b60405180910390fd5b6007546008546001600160a01b03848116600090815260066020526040908190205490516366410a2160e01b8152938216936366410a219361031293169190600401611589565b60206040518083038186803b15801561032a57600080fd5b505afa15801561033e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103629190611524565b92915050565b600154600160a01b900460ff16156103925760405162461bcd60e51b81526004016102c29061197c565b6001805460ff60a01b1916600160a01b179055600080546001600160a01b039092166001600160a01b0319909216919091179055565b6000546001600160a01b031681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000546001600160a01b031633148061049157506009546040516370a1c37560e01b81526001600160a01b03909116906370a1c3759061043f903390600401611575565b602060405180830381600087803b15801561045957600080fd5b505af115801561046d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104919190611504565b6104ad5760405162461bcd60e51b81526004016102c2906119cb565b6001600160a01b0382166104d35760405162461bcd60e51b81526004016102c29061186e565b670de0b6b3a76400008111156104fb5760405162461bcd60e51b81526004016102c2906118eb565b6001600160a01b03821660009081526003602052604090208190558061052c5761052660048361108e565b50610539565b6105376004836110aa565b505b816001600160a01b03167f178ec895c852b9bece3b4515de98ef1ba4520d03c1bf53d3fc1cb10292df0cdf826040516105729190611b8e565b60405180910390a25050565b6002805414156105a05760405162461bcd60e51b81526004016102c290611b57565b600280556000546001600160a01b031633148061063a57506009546040516370a1c37560e01b81526001600160a01b03909116906370a1c375906105e8903390600401611575565b602060405180830381600087803b15801561060257600080fd5b505af1158015610616573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061063a9190611504565b6106565760405162461bcd60e51b81526004016102c2906119cb565b6001600160a01b038216610669576106a7565b6001600160a01b03821660009081526006602052604090205461068d9082906110bf565b6001600160a01b0383166000908152600660205260409020555b50506001600255565b6060806106bd60046110e4565b67ffffffffffffffff811180156106d357600080fd5b506040519080825280602002602001820160405280156106fd578160200160208202803683370190505b50905060005b61070d60046110e4565b81101561074b5761071f6004826110ef565b82828151811061072b57fe5b6001600160a01b0390921660209283029190910190910152600101610703565b50905090565b6001546001600160a01b0316331461077b5760405162461bcd60e51b81526004016102c290611a7c565b600154600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a360018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b60066020526000908152604090205481565b6000546001600160a01b031633148061088757506009546040516370a1c37560e01b81526001600160a01b03909116906370a1c37590610835903390600401611575565b602060405180830381600087803b15801561084f57600080fd5b505af1158015610863573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108879190611504565b6108a35760405162461bcd60e51b81526004016102c2906119cb565b6001600160a01b0381166108c95760405162461bcd60e51b81526004016102c290611733565b600780546001600160a01b0319166001600160a01b03838116919091179182905560408051630217a4b760e41b815290517f00000000000000000000000000000000000000000000000000000000000000008316939092169163217a4b7091600480820192602092909190829003018186803b15801561094857600080fd5b505afa15801561095c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109809190611485565b6001600160a01b0316146109a65760405162461bcd60e51b81526004016102c290611823565b50565b6000546001600160a01b031633146109d35760405162461bcd60e51b81526004016102c2906118b4565b6001600160a01b0382166109f95760405162461bcd60e51b81526004016102c2906117ab565b6001600160a01b038116610a1f5760405162461bcd60e51b81526004016102c290611a45565b6040516370a0823160e01b81526000906001600160a01b038416906370a0823190610a4e903090600401611575565b60206040518083038186803b158015610a6657600080fd5b505afa158015610a7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a9e9190611524565b9050610aab8383836110fb565b816001600160a01b0316836001600160a01b03167f9b1bfa7fa9ee420a16e124f794c35ac9f90472acc99140eb2f6447c714cad8eb83604051610aee9190611b8e565b60405180910390a3505050565b60036020526000908152604090205481565b60006001600160a01b038216610b355760405162461bcd60e51b81526004016102c290611663565b506001600160a01b031660009081526006602052604090205490565b6001546001600160a01b031681565b6000546001600160a01b0316331480610bf657506009546040516370a1c37560e01b81526001600160a01b03909116906370a1c37590610ba4903390600401611575565b602060405180830381600087803b158015610bbe57600080fd5b505af1158015610bd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf69190611504565b610c125760405162461bcd60e51b81526004016102c2906119cb565b6001600160a01b038116610c385760405162461bcd60e51b81526004016102c290611935565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610c845760405162461bcd60e51b81526004016102c2906118b4565b6001600160a01b038116610caa5760405162461bcd60e51b81526004016102c2906116a4565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b600280541415610cee5760405162461bcd60e51b81526004016102c290611b57565b6002805533600090815260066020526040902054610d1e5760405162461bcd60e51b81526004016102c2906116f0565b3360009081526006602052604081208054908290556008549091907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0390811691161415610d74575080610f73565b6008546040516370a0823160e01b81526000916001600160a01b0316906370a0823190610da5903090600401611575565b60206040518083038186803b158015610dbd57600080fd5b505afa158015610dd1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df59190611524565b600754909150610e30907f0000000000000000000000000000000000000000000000000000000000000000906001600160a01b0316856111e9565b60075460085460405163f3287c2f60e01b81526001600160a01b039283169263f3287c2f92610e6d929116908790600090309082906004016115a2565b602060405180830381600087803b158015610e8757600080fd5b505af1158015610e9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ebf9190611524565b6008546040516370a0823160e01b81529193506000916001600160a01b03909116906370a0823190610ef5903090600401611575565b60206040518083038186803b158015610f0d57600080fd5b505afa158015610f21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f459190611524565b905082610f5282846112d0565b1015610f705760405162461bcd60e51b81526004016102c290611a02565b50505b8015610f9057600854610f90906001600160a01b031633836110fb565b336001600160a01b03167fba8de60c3403ec381d1d484652ea1980e3c3e56359195c92525bff4ce47ad98e82604051610fc99190611b8e565b60405180910390a250506001600255565b6000546001600160a01b031633146110045760405162461bcd60e51b81526004016102c2906118b4565b600080546040516001600160a01b03808516939216917fdcf55418cee3220104fef63f979ff3c4097ad240c0c43dcb33ce837748983e6291a3600180546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b031681565b600061107a60046110e4565b905090565b6009546001600160a01b031681565b60006110a3836001600160a01b0384166112f8565b9392505050565b60006110a3836001600160a01b0384166113be565b6000828201838110156110a35760405162461bcd60e51b81526004016102c290611774565b600061036282611408565b60006110a3838361140c565b60006060846001600160a01b031663a9059cbb8585604051602401611121929190611589565b6040516020818303038152906040529060e01b6020820180516001600160e01b03838183161783525050505060405161115a919061153c565b6000604051808303816000865af19150503d8060008114611197576040519150601f19603f3d011682016040523d82523d6000602084013e61119c565b606091505b50915091508180156111c65750805115806111c65750808060200190518101906111c69190611504565b6111e25760405162461bcd60e51b81526004016102c290611b0a565b5050505050565b60006060846001600160a01b031663095ea7b3858560405160240161120f929190611589565b6040516020818303038152906040529060e01b6020820180516001600160e01b038381831617835250505050604051611248919061153c565b6000604051808303816000865af19150503d8060008114611285576040519150601f19603f3d011682016040523d82523d6000602084013e61128a565b606091505b50915091508180156112b45750805115806112b45750808060200190518101906112b49190611504565b6111e25760405162461bcd60e51b81526004016102c290611abf565b6000828211156112f25760405162461bcd60e51b81526004016102c2906117ec565b50900390565b600081815260018301602052604081205480156113b4578354600019808301919081019060009087908390811061132b57fe5b906000526020600020015490508087600001848154811061134857fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061137857fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610362565b6000915050610362565b60006113ca8383611451565b61140057508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610362565b506000610362565b5490565b8154600090821061142f5760405162461bcd60e51b81526004016102c290611621565b82600001828154811061143e57fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b60006020828403121561147a578081fd5b81356110a381611b97565b600060208284031215611496578081fd5b81516110a381611b97565b600080604083850312156114b3578081fd5b82356114be81611b97565b915060208301356114ce81611b97565b809150509250929050565b600080604083850312156114eb578182fd5b82356114f681611b97565b946020939093013593505050565b600060208284031215611515578081fd5b815180151581146110a3578182fd5b600060208284031215611535578081fd5b5051919050565b60008251815b8181101561155c5760208186018101518583015201611542565b8181111561156a5782828501525b509190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b0395861681526020810194909452604084019290925283166060830152909116608082015260a00190565b6020808252825182820181905260009190848201906040850190845b818110156116155783516001600160a01b0316835292840192918401916001016115f0565b50909695505050505050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526021908201527f576f6f5265626174654d616e616765723a207a65726f5f62726f6b65724164646040820152603960f91b606082015260800190565b6020808252602c908201527f576f6f5265626174654d616e616765723a206e65774163636573734d616e616760408201526b32b92fad22a927afa0a2222960a11b606082015260800190565b60208082526023908201527f576f6f5265626174654d616e616765723a204e4f5f70656e64696e675f72656260408201526261746560e81b606082015260800190565b60208082526021908201527f576f6f5265626174654d616e616765723a20776f6f50505f5a45524f5f4144446040820152602960f91b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526021908201527f576f6f5265626174654d616e616765723a20746f6b656e5f5a45524f5f4144446040820152602960f91b606082015260800190565b6020808252601e908201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604082015260600190565b6020808252602b908201527f576f6f5265626174654d616e616765723a20776f6f50505f71756f74655f746f60408201526a1ad95b97d253959053125160aa1b606082015260800190565b60208082526026908201527f576f6f5265626174654d616e616765723a2062726f6b6572416464725f5a455260408201526527afa0a2222960d11b606082015260800190565b6020808252601f908201527f496e697469616c697a61626c654f776e61626c653a204e4f545f4f574e455200604082015260600190565b6020808252602a908201527f576f6f5265626174654d616e616765723a20494e56414c49445f555345525f5260408201526945574152445f5241544560b01b606082015260800190565b60208082526027908201527f576f6f5265626174654d616e616765723a20726577617264546f6b656e5f5a456040820152662927afa0a2222960c91b606082015260800190565b6020808252602f908201527f496e697469616c697a61626c654f776e61626c653a2053484f554c445f4e4f5460408201526e17d09157d253925512505312569151608a1b606082015260800190565b6020808252601b908201527f576f6f5265626174654d616e616765723a204e4f545f41444d494e0000000000604082015260600190565b60208082526023908201527f576f6f5265626174654d616e616765723a20776f6f20616d6f756e7420494e536040820152622aa32360e91b606082015260800190565b6020808252601e908201527f576f6f5265626174654d616e616765723a20746f5f5a45524f5f414444520000604082015260600190565b60208082526023908201527f496e697469616c697a61626c654f776e61626c653a20494e56414c49445f434c60408201526241494d60e81b606082015260800190565b6020808252602b908201527f5472616e7366657248656c7065723a3a73616665417070726f76653a2061707060408201526a1c9bdd994819985a5b195960aa1b606082015260800190565b6020808252602d908201527f5472616e7366657248656c7065723a3a736166655472616e736665723a20747260408201526c185b9cd9995c8819985a5b1959609a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b90815260200190565b6001600160a01b03811681146109a657600080fdfea26469706673582212202527516b5f439c4699d1d5ae9d833c2ab0dd4fc3f75d578c55ce7cd64ee6616a64736f6c634300060c00330000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841740000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000925afa2318825fcac673ef4ef551208b125dd965
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c80636382d9ad116100b8578063c95808041161007c578063c958080414610254578063cda3948f14610267578063f2fde38b1461026f578063f7c618c114610282578063faac7a381461028a578063fdcb60681461029257610137565b80636382d9ad1461020057806377ea464d146102135780637a517f7a146102265780638456db15146102395780638aee81271461024157610137565b8063231bbff6116100ff578063231bbff6146101aa57806330d8c69e146101bd5780634e71e0c8146101d2578063546bac63146101da5780635bc9f65d146101ed57610137565b8063010eb75c1461013c5780630d0092971461016557806316048bc41461017a578063217a4b701461018f57806322a2b2cc14610197575b600080fd5b61014f61014a366004611469565b61029a565b60405161015c9190611b8e565b60405180910390f35b610178610173366004611469565b610368565b005b6101826103c8565b60405161015c9190611575565b6101826103d7565b6101786101a53660046114d9565b6103fb565b6101786101b83660046114d9565b61057e565b6101c56106b0565b60405161015c91906115d4565b610178610751565b61014f6101e8366004611469565b6107df565b6101786101fb366004611469565b6107f1565b61017861020e3660046114a1565b6109a9565b61014f610221366004611469565b610afb565b61014f610234366004611469565b610b0d565b610182610b51565b61017861024f366004611469565b610b60565b610178610262366004611469565b610c5a565b610178610ccc565b61017861027d366004611469565b610fda565b61018261105f565b61014f61106e565b61018261107f565b60006001600160a01b0382166102cb5760405162461bcd60e51b81526004016102c290611663565b60405180910390fd5b6007546008546001600160a01b03848116600090815260066020526040908190205490516366410a2160e01b8152938216936366410a219361031293169190600401611589565b60206040518083038186803b15801561032a57600080fd5b505afa15801561033e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103629190611524565b92915050565b600154600160a01b900460ff16156103925760405162461bcd60e51b81526004016102c29061197c565b6001805460ff60a01b1916600160a01b179055600080546001600160a01b039092166001600160a01b0319909216919091179055565b6000546001600160a01b031681565b7f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa8417481565b6000546001600160a01b031633148061049157506009546040516370a1c37560e01b81526001600160a01b03909116906370a1c3759061043f903390600401611575565b602060405180830381600087803b15801561045957600080fd5b505af115801561046d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104919190611504565b6104ad5760405162461bcd60e51b81526004016102c2906119cb565b6001600160a01b0382166104d35760405162461bcd60e51b81526004016102c29061186e565b670de0b6b3a76400008111156104fb5760405162461bcd60e51b81526004016102c2906118eb565b6001600160a01b03821660009081526003602052604090208190558061052c5761052660048361108e565b50610539565b6105376004836110aa565b505b816001600160a01b03167f178ec895c852b9bece3b4515de98ef1ba4520d03c1bf53d3fc1cb10292df0cdf826040516105729190611b8e565b60405180910390a25050565b6002805414156105a05760405162461bcd60e51b81526004016102c290611b57565b600280556000546001600160a01b031633148061063a57506009546040516370a1c37560e01b81526001600160a01b03909116906370a1c375906105e8903390600401611575565b602060405180830381600087803b15801561060257600080fd5b505af1158015610616573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061063a9190611504565b6106565760405162461bcd60e51b81526004016102c2906119cb565b6001600160a01b038216610669576106a7565b6001600160a01b03821660009081526006602052604090205461068d9082906110bf565b6001600160a01b0383166000908152600660205260409020555b50506001600255565b6060806106bd60046110e4565b67ffffffffffffffff811180156106d357600080fd5b506040519080825280602002602001820160405280156106fd578160200160208202803683370190505b50905060005b61070d60046110e4565b81101561074b5761071f6004826110ef565b82828151811061072b57fe5b6001600160a01b0390921660209283029190910190910152600101610703565b50905090565b6001546001600160a01b0316331461077b5760405162461bcd60e51b81526004016102c290611a7c565b600154600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a360018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b60066020526000908152604090205481565b6000546001600160a01b031633148061088757506009546040516370a1c37560e01b81526001600160a01b03909116906370a1c37590610835903390600401611575565b602060405180830381600087803b15801561084f57600080fd5b505af1158015610863573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108879190611504565b6108a35760405162461bcd60e51b81526004016102c2906119cb565b6001600160a01b0381166108c95760405162461bcd60e51b81526004016102c290611733565b600780546001600160a01b0319166001600160a01b03838116919091179182905560408051630217a4b760e41b815290517f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841748316939092169163217a4b7091600480820192602092909190829003018186803b15801561094857600080fd5b505afa15801561095c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109809190611485565b6001600160a01b0316146109a65760405162461bcd60e51b81526004016102c290611823565b50565b6000546001600160a01b031633146109d35760405162461bcd60e51b81526004016102c2906118b4565b6001600160a01b0382166109f95760405162461bcd60e51b81526004016102c2906117ab565b6001600160a01b038116610a1f5760405162461bcd60e51b81526004016102c290611a45565b6040516370a0823160e01b81526000906001600160a01b038416906370a0823190610a4e903090600401611575565b60206040518083038186803b158015610a6657600080fd5b505afa158015610a7a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a9e9190611524565b9050610aab8383836110fb565b816001600160a01b0316836001600160a01b03167f9b1bfa7fa9ee420a16e124f794c35ac9f90472acc99140eb2f6447c714cad8eb83604051610aee9190611b8e565b60405180910390a3505050565b60036020526000908152604090205481565b60006001600160a01b038216610b355760405162461bcd60e51b81526004016102c290611663565b506001600160a01b031660009081526006602052604090205490565b6001546001600160a01b031681565b6000546001600160a01b0316331480610bf657506009546040516370a1c37560e01b81526001600160a01b03909116906370a1c37590610ba4903390600401611575565b602060405180830381600087803b158015610bbe57600080fd5b505af1158015610bd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf69190611504565b610c125760405162461bcd60e51b81526004016102c2906119cb565b6001600160a01b038116610c385760405162461bcd60e51b81526004016102c290611935565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610c845760405162461bcd60e51b81526004016102c2906118b4565b6001600160a01b038116610caa5760405162461bcd60e51b81526004016102c2906116a4565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b600280541415610cee5760405162461bcd60e51b81526004016102c290611b57565b6002805533600090815260066020526040902054610d1e5760405162461bcd60e51b81526004016102c2906116f0565b3360009081526006602052604081208054908290556008549091907f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841746001600160a01b0390811691161415610d74575080610f73565b6008546040516370a0823160e01b81526000916001600160a01b0316906370a0823190610da5903090600401611575565b60206040518083038186803b158015610dbd57600080fd5b505afa158015610dd1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df59190611524565b600754909150610e30907f0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174906001600160a01b0316856111e9565b60075460085460405163f3287c2f60e01b81526001600160a01b039283169263f3287c2f92610e6d929116908790600090309082906004016115a2565b602060405180830381600087803b158015610e8757600080fd5b505af1158015610e9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ebf9190611524565b6008546040516370a0823160e01b81529193506000916001600160a01b03909116906370a0823190610ef5903090600401611575565b60206040518083038186803b158015610f0d57600080fd5b505afa158015610f21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f459190611524565b905082610f5282846112d0565b1015610f705760405162461bcd60e51b81526004016102c290611a02565b50505b8015610f9057600854610f90906001600160a01b031633836110fb565b336001600160a01b03167fba8de60c3403ec381d1d484652ea1980e3c3e56359195c92525bff4ce47ad98e82604051610fc99190611b8e565b60405180910390a250506001600255565b6000546001600160a01b031633146110045760405162461bcd60e51b81526004016102c2906118b4565b600080546040516001600160a01b03808516939216917fdcf55418cee3220104fef63f979ff3c4097ad240c0c43dcb33ce837748983e6291a3600180546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b031681565b600061107a60046110e4565b905090565b6009546001600160a01b031681565b60006110a3836001600160a01b0384166112f8565b9392505050565b60006110a3836001600160a01b0384166113be565b6000828201838110156110a35760405162461bcd60e51b81526004016102c290611774565b600061036282611408565b60006110a3838361140c565b60006060846001600160a01b031663a9059cbb8585604051602401611121929190611589565b6040516020818303038152906040529060e01b6020820180516001600160e01b03838183161783525050505060405161115a919061153c565b6000604051808303816000865af19150503d8060008114611197576040519150601f19603f3d011682016040523d82523d6000602084013e61119c565b606091505b50915091508180156111c65750805115806111c65750808060200190518101906111c69190611504565b6111e25760405162461bcd60e51b81526004016102c290611b0a565b5050505050565b60006060846001600160a01b031663095ea7b3858560405160240161120f929190611589565b6040516020818303038152906040529060e01b6020820180516001600160e01b038381831617835250505050604051611248919061153c565b6000604051808303816000865af19150503d8060008114611285576040519150601f19603f3d011682016040523d82523d6000602084013e61128a565b606091505b50915091508180156112b45750805115806112b45750808060200190518101906112b49190611504565b6111e25760405162461bcd60e51b81526004016102c290611abf565b6000828211156112f25760405162461bcd60e51b81526004016102c2906117ec565b50900390565b600081815260018301602052604081205480156113b4578354600019808301919081019060009087908390811061132b57fe5b906000526020600020015490508087600001848154811061134857fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061137857fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610362565b6000915050610362565b60006113ca8383611451565b61140057508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610362565b506000610362565b5490565b8154600090821061142f5760405162461bcd60e51b81526004016102c290611621565b82600001828154811061143e57fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b60006020828403121561147a578081fd5b81356110a381611b97565b600060208284031215611496578081fd5b81516110a381611b97565b600080604083850312156114b3578081fd5b82356114be81611b97565b915060208301356114ce81611b97565b809150509250929050565b600080604083850312156114eb578182fd5b82356114f681611b97565b946020939093013593505050565b600060208284031215611515578081fd5b815180151581146110a3578182fd5b600060208284031215611535578081fd5b5051919050565b60008251815b8181101561155c5760208186018101518583015201611542565b8181111561156a5782828501525b509190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b0395861681526020810194909452604084019290925283166060830152909116608082015260a00190565b6020808252825182820181905260009190848201906040850190845b818110156116155783516001600160a01b0316835292840192918401916001016115f0565b50909695505050505050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526021908201527f576f6f5265626174654d616e616765723a207a65726f5f62726f6b65724164646040820152603960f91b606082015260800190565b6020808252602c908201527f576f6f5265626174654d616e616765723a206e65774163636573734d616e616760408201526b32b92fad22a927afa0a2222960a11b606082015260800190565b60208082526023908201527f576f6f5265626174654d616e616765723a204e4f5f70656e64696e675f72656260408201526261746560e81b606082015260800190565b60208082526021908201527f576f6f5265626174654d616e616765723a20776f6f50505f5a45524f5f4144446040820152602960f91b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526021908201527f576f6f5265626174654d616e616765723a20746f6b656e5f5a45524f5f4144446040820152602960f91b606082015260800190565b6020808252601e908201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604082015260600190565b6020808252602b908201527f576f6f5265626174654d616e616765723a20776f6f50505f71756f74655f746f60408201526a1ad95b97d253959053125160aa1b606082015260800190565b60208082526026908201527f576f6f5265626174654d616e616765723a2062726f6b6572416464725f5a455260408201526527afa0a2222960d11b606082015260800190565b6020808252601f908201527f496e697469616c697a61626c654f776e61626c653a204e4f545f4f574e455200604082015260600190565b6020808252602a908201527f576f6f5265626174654d616e616765723a20494e56414c49445f555345525f5260408201526945574152445f5241544560b01b606082015260800190565b60208082526027908201527f576f6f5265626174654d616e616765723a20726577617264546f6b656e5f5a456040820152662927afa0a2222960c91b606082015260800190565b6020808252602f908201527f496e697469616c697a61626c654f776e61626c653a2053484f554c445f4e4f5460408201526e17d09157d253925512505312569151608a1b606082015260800190565b6020808252601b908201527f576f6f5265626174654d616e616765723a204e4f545f41444d494e0000000000604082015260600190565b60208082526023908201527f576f6f5265626174654d616e616765723a20776f6f20616d6f756e7420494e536040820152622aa32360e91b606082015260800190565b6020808252601e908201527f576f6f5265626174654d616e616765723a20746f5f5a45524f5f414444520000604082015260600190565b60208082526023908201527f496e697469616c697a61626c654f776e61626c653a20494e56414c49445f434c60408201526241494d60e81b606082015260800190565b6020808252602b908201527f5472616e7366657248656c7065723a3a73616665417070726f76653a2061707060408201526a1c9bdd994819985a5b195960aa1b606082015260800190565b6020808252602d908201527f5472616e7366657248656c7065723a3a736166655472616e736665723a20747260408201526c185b9cd9995c8819985a5b1959609a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b90815260200190565b6001600160a01b03811681146109a657600080fdfea26469706673582212202527516b5f439c4699d1d5ae9d833c2ab0dd4fc3f75d578c55ce7cd64ee6616a64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa841740000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174000000000000000000000000925afa2318825fcac673ef4ef551208b125dd965
-----Decoded View---------------
Arg [0] : newQuoteToken (address): 0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174
Arg [1] : newRewardToken (address): 0x2791Bca1f2de4661ED88A30C99A7a9449Aa84174
Arg [2] : newAccessManager (address): 0x925AFA2318825FCAC673Ef4eF551208b125dd965
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174
Arg [1] : 0000000000000000000000002791bca1f2de4661ed88a30c99a7a9449aa84174
Arg [2] : 000000000000000000000000925afa2318825fcac673ef4ef551208b125dd965
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
POL | 100.00% | $0.999906 | 772.5303 | $772.46 |
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.