Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
- Contract name:
- TokenFlexiblePool
- Optimization enabled
- true
- Compiler version
- v0.8.19+commit.7dd6d404
- Optimization runs
- 999999
- EVM Version
- default
- Verified at
- 2023-09-05T10:32:46.522073Z
Constructor Arguments
0x00000000000000000000000022a30bed9e0853e3fc6fefa2c9522aa6539cf9f5000000000000000000000000180f4bd2563b95564c0142e269e70c6a84a2ab00000000000000000000000000180f4bd2563b95564c0142e269e70c6a84a2ab00
Arg [0] (address) : 0x22a30bed9e0853e3fc6fefa2c9522aa6539cf9f5
Arg [1] (address) : 0x180f4bd2563b95564c0142e269e70c6a84a2ab00
Arg [2] (address) : 0x180f4bd2563b95564c0142e269e70c6a84a2ab00
contracts/pool/TokenFlexiblePool.sol
// SPDX-License-Identifier: GPLv3
pragma solidity 0.8.19;
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "./CakeFlexiblePool.sol";
contract TokenFlexiblePool is CakeFlexiblePool {
using SafeERC20 for IERC20;
mapping(address => uint256) public userRewardDebt;
mapping(address => uint256) public userRewardPending;
uint256 public totalStakedAmount;
uint256 public feeDebt;
uint256 private bbcPerShare;
uint8 private tokenDecimals;
event Harvest(address account, uint256 harvestAmount);
/**
* @notice Constructor
* @param _parentPool: BBCPool contract
* @param _admin: address of the admin
* @param _treasury: address of the treasury (collects fees)
*/
constructor(ITokenPool _parentPool, address _admin, address _treasury)
CakeFlexiblePool(_parentPool, _admin, _treasury) {
require(address(token) != address(bbc), "invalid token");
tokenDecimals = IERC20Metadata(address(token)).decimals();
}
function toEther(uint256 _amount) internal view returns(uint256) {
if(tokenDecimals < 18)
return _amount * 10 ** (18 - tokenDecimals);
else if(tokenDecimals > 18)
return _amount / 10 ** (tokenDecimals - 18);
return _amount;
}
function fromEther(uint256 _amount) internal view returns(uint256) {
if(tokenDecimals < 18)
return _amount / 10 ** (18 - tokenDecimals);
else if(tokenDecimals > 18)
return _amount * 10 ** (tokenDecimals - 18);
return _amount;
}
function payFee(uint256 _fee) internal {
uint256 fee = feeDebt + _fee;
if (fee > 0) {
uint256 feePayable = bbc.balanceOf(address(this));
if (fee > feePayable) fee = feePayable;
if (fee > 0) {
bbc.safeTransfer(treasury, fee);
}
feeDebt = feeDebt + _fee - fee;
}
}
/**
* @notice Deposits funds into the BBC Flexible Pool.
* @dev Only possible when contract not paused.
* @param _amount: number of tokens to deposit (in BBC)
*/
function deposit(uint256 _amount) public override whenNotPaused nonReentrant {
require(staking, "Not allowed to stake");
require(toEther(_amount) > MIN_DEPOSIT_AMOUNT, "Deposit amount must be greater than MIN_DEPOSIT_AMOUNT");
UserInfo storage user = userInfo[msg.sender];
if(totalShares > 0) {
uint256 claimedAmount = parentPool.claim();
bbcPerShare += (claimedAmount * 1 ether) / totalShares;
if (user.shares > 0) {
uint256 earnAmount = (bbcPerShare * user.shares) /
1 ether -
userRewardDebt[msg.sender];
userRewardPending[msg.sender] += earnAmount;
}
}
uint256 pool = balanceOf();
token.safeTransferFrom(msg.sender, address(this), _amount);
uint256 currentShares;
if (totalShares != 0) {
currentShares = (_amount * totalShares) / pool;
} else {
currentShares = _amount;
}
user.shares += currentShares;
user.lastDepositedTime = block.timestamp;
totalShares += currentShares;
totalStakedAmount += _amount;
_earn();
userRewardDebt[msg.sender] = (bbcPerShare * user.shares) / 1 ether;
user.lastUserActionAmount = (user.shares * balanceOf()) / totalShares;
user.lastUserActionTime = block.timestamp;
emit Deposit(msg.sender, _amount, currentShares, block.timestamp);
}
/**
* @notice Withdraws funds from the BBC Flexible Pool
* @param _shares: Number of shares to withdraw
*/
function withdraw(uint256 _shares) public override nonReentrant {
UserInfo storage user = userInfo[msg.sender];
require(_shares > 0, "Nothing to withdraw");
require(_shares <= user.shares, "Withdraw amount exceeds balance");
if(totalShares > 0) {
uint256 claimedAmount = parentPool.claim();
bbcPerShare += (claimedAmount * 1 ether) / totalShares;
if (user.shares > 0) {
uint256 earnAmount = (bbcPerShare * user.shares) /
1 ether -
userRewardDebt[msg.sender];
userRewardPending[msg.sender] += earnAmount;
}
}
//The current pool balance should not include currentPerformanceFee.
uint256 currentAmount = (_shares *
balanceOf()) /
totalShares;
totalStakedAmount -= currentAmount;
uint256 withdrawAmount = currentAmount;
if (staking) {
// withdrawByAmount have a MIN_WITHDRAW_AMOUNT limit ,so need to withdraw more than MIN_WITHDRAW_AMOUNT.
withdrawAmount = toEther(withdrawAmount) < MIN_WITHDRAW_AMOUNT ? fromEther(MIN_WITHDRAW_AMOUNT) : withdrawAmount;
//There will be a loss of precision when call withdrawByAmount, so need to withdraw more.
withdrawAmount = (withdrawAmount * withdrawAmountBooster) / 10000;
parentPool.withdrawByAmount(withdrawAmount);
}
currentAmount = available() >= currentAmount
? currentAmount
: available();
user.shares -= _shares;
totalShares -= _shares;
userRewardDebt[msg.sender] = (bbcPerShare * user.shares) / 1 ether;
user.lastUserActionTime = block.timestamp;
if (user.shares > 0) {
user.lastUserActionAmount =
(user.shares * balanceOf()) /
totalShares;
} else {
user.lastUserActionAmount = 0;
uint256 pendingAmount = userRewardPending[msg.sender];
userRewardPending[msg.sender] = 0;
bbc.safeTransfer(msg.sender, pendingAmount);
}
token.safeTransfer(msg.sender, currentAmount);
emit WithdrawShares(msg.sender, currentAmount, _shares);
}
function claim() public nonReentrant {
UserInfo storage user = userInfo[msg.sender];
if (user.shares > 0) {
uint256 claimedAmount = parentPool.claim();
bbcPerShare += (claimedAmount * 1 ether) / totalShares;
uint256 earnAmount = userRewardPending[msg.sender] +
(bbcPerShare * user.shares) /
1 ether -
userRewardDebt[msg.sender];
bbc.safeTransfer(
msg.sender,
earnAmount
);
userRewardPending[msg.sender] = 0;
userRewardDebt[msg.sender] =
(bbcPerShare * user.shares) /
1 ether;
emit Harvest(msg.sender, earnAmount);
}
}
function getProfit(address _user) public override view returns (uint256) {
UserInfo storage user = userInfo[_user];
if (user.shares == 0) return 0;
return
(parentPool.getProfit(address(this)) * user.shares) /
totalShares +
userRewardPending[_user] +
(bbcPerShare * user.shares) /
1 ether -
userRewardDebt[_user];
}
/**
* @notice Calculates the total underlying tokens
* @dev It includes tokens held by the contract and held in BBCPool
*/
function balanceOf() public override view returns (uint256) {
return totalStakedAmount;
}
}
@openzeppelin/contracts/access/Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
@openzeppelin/contracts/security/Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
require(!paused(), "Pausable: paused");
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
require(paused(), "Pausable: not paused");
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
@openzeppelin/contracts/security/ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be 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() {
_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 making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be _NOT_ENTERED
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
}
function _nonReentrantAfter() private {
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
@openzeppelin/contracts/token/ERC20/IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}
@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}
@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
function safeTransfer(
IERC20 token,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(
IERC20 token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20 token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
function safePermit(
IERC20Permit token,
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) internal {
uint256 nonceBefore = token.nonces(owner);
token.permit(owner, spender, value, deadline, v, r, s);
uint256 nonceAfter = token.nonces(owner);
require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
@openzeppelin/contracts/utils/Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
@openzeppelin/contracts/utils/Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^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 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) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
contracts/pool/CakeFlexiblePool.sol
// SPDX-License-Identifier: GPLv3
pragma solidity 0.8.19;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "./interfaces/ITokenPool.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
contract CakeFlexiblePool is Ownable, Pausable, ReentrancyGuard {
using SafeERC20 for IERC20;
struct UserInfo {
uint256 shares; // number of shares for a user
uint256 lastDepositedTime; // keeps track of deposited time for potential penalty
uint256 lastUserActionAmount; // keeps track of bbc deposited at the last user action
uint256 lastUserActionTime; // keeps track of the last user action time
}
IERC20 public immutable token; // Staking token
IERC20 public immutable bbc; // Earning token
ITokenPool public immutable parentPool; //BBC pool
mapping(address => UserInfo) public userInfo;
uint256 public totalShares;
address public admin;
address public treasury;
bool public staking = true;
uint256 public constant MIN_DEPOSIT_AMOUNT = 0.00001 ether;
uint256 public constant MIN_WITHDRAW_AMOUNT = 0.00001 ether;
uint256 public FEE_RATE_SCALE = 10000;
//When call bbcpool.withdrawByAmount function,there will be a loss of precision, so need to withdraw more.
uint256 public withdrawAmountBooster = 10001; // 1.0001
event Deposit(
address indexed sender,
uint256 amount,
uint256 shares,
uint256 lastDepositedTime
);
event WithdrawShares(
address indexed sender,
uint256 amount,
uint256 shares
);
event ChargePerformanceFee(
address indexed sender,
uint256 amount,
uint256 shares
);
event Pause();
event Unpause();
event NewAdmin(address admin);
event NewTreasury(address treasury);
event NewWithdrawAmountBooster(uint256 withdrawAmountBooster);
/**
* @notice Constructor
* @param _parentPool: BBCPool contract
* @param _admin: address of the admin
* @param _treasury: address of the treasury (collects fees)
*/
constructor(ITokenPool _parentPool, address _admin, address _treasury) {
require(address(_parentPool) != address(0), "invalid _parentPool");
require(_admin != address(0), "invalid _admin");
require(_treasury != address(0), "invalid _treasury");
token = IERC20(_parentPool.token());
bbc = IERC20(_parentPool.bbc());
parentPool = _parentPool;
admin = _admin;
treasury = _treasury;
// Infinite approve
token.safeIncreaseAllowance(address(_parentPool), type(uint256).max);
}
/**
* @notice Checks if the msg.sender is the admin address
*/
modifier onlyAdmin() {
require(msg.sender == admin, "admin: wut?");
_;
}
/**
* @notice Deposits funds into the BBC Flexible Pool.
* @dev Only possible when contract not paused.
* @param _amount: number of tokens to deposit (in BBC)
*/
function deposit(uint256 _amount) public virtual whenNotPaused nonReentrant {
require(staking, "Not allowed to stake");
require(_amount > MIN_DEPOSIT_AMOUNT, "Deposit amount must be greater than MIN_DEPOSIT_AMOUNT");
UserInfo storage user = userInfo[msg.sender];
uint256 pool = balanceOf();
token.safeTransferFrom(msg.sender, address(this), _amount);
uint256 currentShares;
if (totalShares != 0) {
currentShares = (_amount * totalShares) / pool;
} else {
currentShares = _amount;
}
user.shares += currentShares;
user.lastDepositedTime = block.timestamp;
totalShares += currentShares;
_earn();
user.lastUserActionAmount = (user.shares * balanceOf()) / totalShares;
user.lastUserActionTime = block.timestamp;
emit Deposit(msg.sender, _amount, currentShares, block.timestamp);
}
/**
* @notice Withdraws funds from the BBC Flexible Pool
* @param _shares: Number of shares to withdraw
*/
function withdraw(uint256 _shares) public virtual nonReentrant {
UserInfo storage user = userInfo[msg.sender];
require(_shares > 0, "Nothing to withdraw");
require(_shares <= user.shares, "Withdraw amount exceeds balance");
//The current pool balance should not include currentPerformanceFee.
uint256 currentAmount = (_shares * balanceOf()) / totalShares;
user.shares -= _shares;
totalShares -= _shares;
uint256 withdrawAmount = currentAmount;
if (staking) {
// withdrawByAmount have a MIN_WITHDRAW_AMOUNT limit ,so need to withdraw more than MIN_WITHDRAW_AMOUNT.
withdrawAmount = withdrawAmount < MIN_WITHDRAW_AMOUNT ? MIN_WITHDRAW_AMOUNT : withdrawAmount;
//There will be a loss of precision when call withdrawByAmount, so need to withdraw more.
withdrawAmount = (withdrawAmount * withdrawAmountBooster) / FEE_RATE_SCALE;
parentPool.withdrawByAmount(withdrawAmount);
}
currentAmount = available() >= currentAmount
? currentAmount
: available();
token.safeTransfer(msg.sender, currentAmount);
if (user.shares > 0) {
user.lastUserActionAmount =
(user.shares * balanceOf()) /
totalShares;
} else {
user.lastUserActionAmount = 0;
}
user.lastUserActionTime = block.timestamp;
emit WithdrawShares(msg.sender, currentAmount, _shares);
}
/**
* @notice Withdraws all funds for a user
*/
function withdrawAll() public {
withdraw(userInfo[msg.sender].shares);
}
/**
* @notice Sets admin address
* @dev Only callable by the contract owner.
*/
function setAdmin(address _admin) public onlyOwner {
require(_admin != address(0), "Cannot be zero address");
admin = _admin;
emit NewAdmin(admin);
}
/**
* @notice Sets treasury address
* @dev Only callable by the contract owner.
*/
function setTreasury(address _treasury) public onlyOwner {
require(_treasury != address(0), "Cannot be zero address");
treasury = _treasury;
emit NewTreasury(treasury);
}
/**
* @notice Withdraws from BBC Pool without caring about rewards.
* @dev EMERGENCY ONLY. Only callable by the contract admin.
*/
function emergencyWithdraw() public onlyAdmin {
require(staking, "No staking bbc");
staking = false;
parentPool.withdrawAll();
}
/**
* @notice Withdraw unexpected tokens sent to the BBC Flexible Pool
*/
function inCaseTokensGetStuck(address _token) public onlyAdmin {
require(
_token != address(token),
"Token cannot be same as deposit token"
);
uint256 amount = IERC20(_token).balanceOf(address(this));
IERC20(_token).safeTransfer(msg.sender, amount);
}
/**
* @notice Triggers stopped state
* @dev Only possible when contract not paused.
*/
function pause() public onlyAdmin whenNotPaused {
_pause();
emit Pause();
}
/**
* @notice Returns to normal state
* @dev Only possible when contract is paused.
*/
function unpause() public onlyAdmin whenPaused {
_unpause();
emit Unpause();
}
/**
* @notice Calculates the price per share
*/
function getPricePerFullShare() public view returns (uint256) {
return totalShares == 0 ? 1e18 : (balanceOf() * 1e18) / totalShares;
}
/**
* @notice Custom logic for how much the pool to be borrowed
* @dev The contract puts 100% of the tokens to work.
*/
function available() public view returns (uint256) {
return token.balanceOf(address(this));
}
function getProfit(address _user) public virtual view returns (uint256) {
UserInfo storage user = userInfo[_user];
if (user.shares == 0) return 0;
return
(getPricePerFullShare() * user.shares) /
1e18 -
user.lastUserActionAmount;
}
/**
* @notice Calculates the total underlying tokens
* @dev It includes tokens held by the contract and held in BBCPool
*/
function balanceOf() public virtual view returns (uint256) {
(uint256 shares, , , , , , , , ) = parentPool.userInfo(address(this));
uint256 pricePerFullShare = parentPool.getPricePerFullShare();
return
token.balanceOf(address(this)) +
(shares * pricePerFullShare) /
1e18;
}
/**
* @notice Deposits tokens into BBCPool to earn staking rewards
*/
function _earn() internal {
uint256 bal = available();
if (bal > 0) {
parentPool.deposit(bal, 0);
}
}
}
contracts/pool/interfaces/ITokenPool.sol
// SPDX-License-Identifier: GPLv3
pragma solidity 0.8.19;
interface ITokenPool {
struct UserInfo {
uint256 shares; // number of shares for a user.
uint256 lastDepositedTime; // keep track of deposited time for potential penalty.
uint256 cakeAtLastUserAction; // keep track of cake deposited at the last user action.
uint256 lastUserActionTime; // keep track of the last user action time.
uint256 lockStartTime; // lock start time.
uint256 lockEndTime; // lock end time.
uint256 userBoostedShare; // boost share, in order to give the user higher reward. The user only enjoys the reward, so the principal needs to be recorded as a debt.
bool locked; //lock status.
uint256 lockedAmount; // amount deposited during lock period.
}
function userInfo(
address user
)
external
view
returns (
uint256,
uint256,
uint256,
uint256,
uint256,
uint256,
uint256,
bool,
uint256
);
function BOOST_WEIGHT() external view returns (uint256);
function totalLockedAmount() external view returns (uint256);
function totalShares() external view returns (uint256);
function getPricePerFullShare() external view returns (uint256);
function deposit(uint256 _amount, uint256 _lockDuration) external;
function withdrawByAmount(uint256 _amount) external;
function withdraw(uint256 _shares) external;
function withdrawAll() external;
function claim() external returns (uint256);
function getProfit(address _account) external view returns (uint256);
function token() external view returns (address);
function bbc() external view returns (address);
}
Compiler Settings
{"outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers"]}},"optimizer":{"runs":999999,"enabled":true},"libraries":{}}
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_parentPool","internalType":"contract ITokenPool"},{"type":"address","name":"_admin","internalType":"address"},{"type":"address","name":"_treasury","internalType":"address"}]},{"type":"event","name":"ChargePerformanceFee","inputs":[{"type":"address","name":"sender","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false},{"type":"uint256","name":"shares","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Deposit","inputs":[{"type":"address","name":"sender","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false},{"type":"uint256","name":"shares","internalType":"uint256","indexed":false},{"type":"uint256","name":"lastDepositedTime","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Harvest","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false},{"type":"uint256","name":"harvestAmount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"NewAdmin","inputs":[{"type":"address","name":"admin","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"NewTreasury","inputs":[{"type":"address","name":"treasury","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"NewWithdrawAmountBooster","inputs":[{"type":"uint256","name":"withdrawAmountBooster","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Pause","inputs":[],"anonymous":false},{"type":"event","name":"Paused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"Unpause","inputs":[],"anonymous":false},{"type":"event","name":"Unpaused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"WithdrawShares","inputs":[{"type":"address","name":"sender","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false},{"type":"uint256","name":"shares","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"FEE_RATE_SCALE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"MIN_DEPOSIT_AMOUNT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"MIN_WITHDRAW_AMOUNT","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"admin","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"available","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IERC20"}],"name":"bbc","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"claim","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"deposit","inputs":[{"type":"uint256","name":"_amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"emergencyWithdraw","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"feeDebt","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getPricePerFullShare","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getProfit","inputs":[{"type":"address","name":"_user","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"inCaseTokensGetStuck","inputs":[{"type":"address","name":"_token","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract ITokenPool"}],"name":"parentPool","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"pause","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"paused","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setAdmin","inputs":[{"type":"address","name":"_admin","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setTreasury","inputs":[{"type":"address","name":"_treasury","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"staking","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IERC20"}],"name":"token","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalShares","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalStakedAmount","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"treasury","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"unpause","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"shares","internalType":"uint256"},{"type":"uint256","name":"lastDepositedTime","internalType":"uint256"},{"type":"uint256","name":"lastUserActionAmount","internalType":"uint256"},{"type":"uint256","name":"lastUserActionTime","internalType":"uint256"}],"name":"userInfo","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"userRewardDebt","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"userRewardPending","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdraw","inputs":[{"type":"uint256","name":"_shares","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdrawAll","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"withdrawAmountBooster","inputs":[]}]
Contract Creation Code
0x60e06040526005805460ff60a01b1916600160a01b1790556127106006556127116007553480156200003057600080fd5b50604051620030a8380380620030a8833981016040819052620000539162000739565b828282620000613362000370565b6000805460ff60a01b19169055600180556001600160a01b038316620000ce5760405162461bcd60e51b815260206004820152601360248201527f696e76616c6964205f706172656e74506f6f6c0000000000000000000000000060448201526064015b60405180910390fd5b6001600160a01b038216620001175760405162461bcd60e51b815260206004820152600e60248201526d34b73b30b634b2102fb0b236b4b760911b6044820152606401620000c5565b6001600160a01b038116620001635760405162461bcd60e51b8152602060048201526011602482015270696e76616c6964205f747265617375727960781b6044820152606401620000c5565b826001600160a01b031663fc0c546a6040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c891906200078d565b6001600160a01b03166080816001600160a01b031681525050826001600160a01b031663b44045866040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000220573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024691906200078d565b6001600160a01b0390811660a05283811660c052600480546001600160a01b0319908116858416179091556005805490911683831617905560805162000291911684600019620003c0565b50505060a0516001600160a01b03166080516001600160a01b031603620002eb5760405162461bcd60e51b815260206004820152600d60248201526c34b73b30b634b2103a37b5b2b760991b6044820152606401620000c5565b6080516001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200032c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003529190620007b4565b600d805460ff191660ff9290921691909117905550620008b8915050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051636eb1769f60e11b81523060048201526001600160a01b038381166024830152600091839186169063dd62ed3e90604401602060405180830381865afa15801562000412573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004389190620007d9565b620004449190620007f3565b604080516001600160a01b038616602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b0390811663095ea7b360e01b17909152919250620004a091869190620004a616565b50505050565b6040805180820190915260208082527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656490820152600090620004f5906001600160a01b0385169084906200057c565b8051909150156200057757808060200190518101906200051691906200081b565b620005775760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401620000c5565b505050565b60606200058d848460008562000595565b949350505050565b606082471015620005f85760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401620000c5565b600080866001600160a01b0316858760405162000616919062000865565b60006040518083038185875af1925050503d806000811462000655576040519150601f19603f3d011682016040523d82523d6000602084013e6200065a565b606091505b5090925090506200066e8783838762000679565b979650505050505050565b60608315620006ed578251600003620006e5576001600160a01b0385163b620006e55760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401620000c5565b50816200058d565b6200058d8383815115620007045781518083602001fd5b8060405162461bcd60e51b8152600401620000c5919062000883565b6001600160a01b03811681146200073657600080fd5b50565b6000806000606084860312156200074f57600080fd5b83516200075c8162000720565b60208501519093506200076f8162000720565b6040850151909250620007828162000720565b809150509250925092565b600060208284031215620007a057600080fd5b8151620007ad8162000720565b9392505050565b600060208284031215620007c757600080fd5b815160ff81168114620007ad57600080fd5b600060208284031215620007ec57600080fd5b5051919050565b808201808211156200081557634e487b7160e01b600052601160045260246000fd5b92915050565b6000602082840312156200082e57600080fd5b81518015158114620007ad57600080fd5b60005b838110156200085c57818101518382015260200162000842565b50506000910152565b60008251620008798184602087016200083f565b9190910192915050565b6020815260008251806020840152620008a48160408501602087016200083f565b601f01601f19169190910160400192915050565b60805160a05160c0516127656200094360003960008181610230015281816106280152818161083801528181610be00152818161113b015281816114c5015281816116d8015261209601526000818161043e015281816109820152610d1901526000818161050c015281816109da01528181610b390152818161129901526117bc01526127656000f3fe608060405234801561001057600080fd5b50600436106102265760003560e01c8063722713f71161012a578063b6b55f25116100bd578063def68a9c1161008c578063f2fde38b11610071578063f2fde38b146104d4578063f851a440146104e7578063fc0c546a1461050757600080fd5b8063def68a9c146104ae578063f0f44260146104c157600080fd5b8063b6b55f2514610460578063c600e1dc14610473578063db2e21bc14610486578063dee838b11461048e57600080fd5b80638b48a05e116100f95780638b48a05e146104125780638da5cb5b1461041b578063b440458614610439578063b6857844146102ea57600080fd5b8063722713f7146103f257806377c7b8fc146103fa5780638456cb5914610402578063853828b61461040a57600080fd5b806348a0d754116101bd578063567e98f91161018c57806361d027b31161017157806361d027b3146103b7578063704b6c02146103d7578063715018a6146103ea57600080fd5b8063567e98f91461038b5780635c975abb1461039457600080fd5b806348a0d754146103265780634bf6f9e71461032e5780634cf088d91461034e5780634e71d92d1461038357600080fd5b80632e1a7d4d116101f95780632e1a7d4d146102f75780632f0c7a111461030c5780633a98ef39146103155780633f4ba83a1461031e57600080fd5b80630661a25e1461022b57806314c9253e1461027c5780631959a002146102935780631ea30fef146102ea575b600080fd5b6102527f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b61028560075481565b604051908152602001610273565b6102ca6102a1366004612425565b600260208190526000918252604090912080546001820154928201546003909201549092919084565b604080519485526020850193909352918301526060820152608001610273565b6102856509184e72a00081565b61030a61030536600461245b565b61052e565b005b610285600b5481565b61028560035481565b61030a610a4c565b610285610b08565b61028561033c366004612425565b60086020526000908152604090205481565b6005546103739074010000000000000000000000000000000000000000900460ff1681565b6040519015158152602001610273565b61030a610bbe565b610285600a5481565b60005474010000000000000000000000000000000000000000900460ff16610373565b6005546102529073ffffffffffffffffffffffffffffffffffffffff1681565b61030a6103e5366004612425565b610dce565b61030a610ecd565b600a54610285565b610285610edf565b61030a610f1a565b61030a610fd6565b61028560065481565b60005473ffffffffffffffffffffffffffffffffffffffff16610252565b6102527f000000000000000000000000000000000000000000000000000000000000000081565b61030a61046e36600461245b565b610fef565b610285610481366004612425565b6113e7565b61030a61156b565b61028561049c366004612425565b60096020526000908152604090205481565b61030a6104bc366004612425565b611739565b61030a6104cf366004612425565b61194d565b61030a6104e2366004612425565b611a45565b6004546102529073ffffffffffffffffffffffffffffffffffffffff1681565b6102527f000000000000000000000000000000000000000000000000000000000000000081565b610536611af9565b336000908152600260205260409020816105b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f7468696e6720746f2077697468647261770000000000000000000000000060448201526064015b60405180910390fd5b805482111561061c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f576974686472617720616d6f756e7420657863656564732062616c616e63650060448201526064016105a8565b6003541561075f5760007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16634e71d92d6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015610693573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b79190612474565b6003549091506106cf82670de0b6b3a76400006124bc565b6106d991906124d3565b600c60008282546106ea919061250e565b909155505081541561075d57336000908152600860205260408120548354600c54670de0b6b3a76400009161071e916124bc565b61072891906124d3565b6107329190612521565b3360009081526009602052604081208054929350839290919061075690849061250e565b9091555050505b505b600060035461076d600a5490565b61077790856124bc565b61078191906124d3565b905080600a60008282546107959190612521565b9091555050600554819074010000000000000000000000000000000000000000900460ff16156108aa576509184e72a0006107cf82611b6c565b106107da57806107e9565b6107e96509184e72a000611be6565b9050612710600754826107fc91906124bc565b61080691906124d3565b6040517f5521e9bf000000000000000000000000000000000000000000000000000000008152600481018290529091507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690635521e9bf90602401600060405180830381600087803b15801561089157600080fd5b505af11580156108a5573d6000803e3d6000fd5b505050505b816108b3610b08565b10156108c6576108c1610b08565b6108c8565b815b9150838360000160008282546108de9190612521565b9250508190555083600360008282546108f79190612521565b90915550508254600c54670de0b6b3a764000091610914916124bc565b61091e91906124d3565b3360009081526008602052604090205542600384015582541561096157600354600a54845461094d91906124bc565b61095791906124d3565b60028401556109c0565b6000600284018190553380825260096020526040822080549290556109be907f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169083611c2c565b505b610a0173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000163384611c2c565b604080518381526020810186905233917fb605f60b5ff13848ba5a9234329676801d97e41362092b50014cad41fb2b7bfc91015b60405180910390a2505050610a4960018055565b50565b60045473ffffffffffffffffffffffffffffffffffffffff163314610acd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f61646d696e3a207775743f00000000000000000000000000000000000000000060448201526064016105a8565b610ad5611d05565b610add611d89565b6040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000907f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa158015610b95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb99190612474565b905090565b610bc6611af9565b336000908152600260205260409020805415610dc25760007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16634e71d92d6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015610c4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c6f9190612474565b600354909150610c8782670de0b6b3a76400006124bc565b610c9191906124d3565b600c6000828254610ca2919061250e565b9091555050336000908152600860205260408120548354600c54670de0b6b3a764000091610ccf916124bc565b610cd991906124d3565b33600090815260096020526040902054610cf3919061250e565b610cfd9190612521565b9050610d4073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000163383611c2c565b336000908152600960205260408120558254600c54670de0b6b3a764000091610d68916124bc565b610d7291906124d3565b336000818152600860209081526040918290209390935580519182529181018390527fc9695243a805adb74c91f28311176c65b417e842d5699893cef56d18bfa48cba910160405180910390a150505b50610dcc60018055565b565b610dd6611e06565b73ffffffffffffffffffffffffffffffffffffffff8116610e53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f43616e6e6f74206265207a65726f20616464726573730000000000000000000060448201526064016105a8565b600480547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f71614071b88dee5e0b2ae578a9dd7b2ebbe9ae832ba419dc0242cd065a290b6c906020015b60405180910390a150565b610ed5611e06565b610dcc6000611e87565b6000600354600014610f0d57600354600a54610f0390670de0b6b3a76400006124bc565b610bb991906124d3565b50670de0b6b3a764000090565b60045473ffffffffffffffffffffffffffffffffffffffff163314610f9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f61646d696e3a207775743f00000000000000000000000000000000000000000060448201526064016105a8565b610fa3611efc565b610fab611f81565b6040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b33600090815260026020526040902054610dcc9061052e565b610ff7611efc565b610fff611af9565b60055474010000000000000000000000000000000000000000900460ff16611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4e6f7420616c6c6f77656420746f207374616b6500000000000000000000000060448201526064016105a8565b6509184e72a00061109382611b6c565b11611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f4465706f73697420616d6f756e74206d7573742062652067726561746572207460448201527f68616e204d494e5f4445504f5349545f414d4f554e540000000000000000000060648201526084016105a8565b336000908152600260205260409020600354156112725760007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16634e71d92d6040518163ffffffff1660e01b81526004016020604051808303816000875af11580156111a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ca9190612474565b6003549091506111e282670de0b6b3a76400006124bc565b6111ec91906124d3565b600c60008282546111fd919061250e565b909155505081541561127057336000908152600860205260408120548354600c54670de0b6b3a764000091611231916124bc565b61123b91906124d3565b6112459190612521565b3360009081526009602052604081208054929350839290919061126990849061250e565b9091555050505b505b600061127d600a5490565b90506112c173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016333086611ff0565b60006003546000146112ed5781600354856112dc91906124bc565b6112e691906124d3565b90506112f0565b50825b80836000016000828254611304919061250e565b90915550504260018401556003805482919060009061132490849061250e565b9250508190555083600a600082825461133d919061250e565b9091555061134b905061204e565b8254600c54670de0b6b3a764000091611363916124bc565b61136d91906124d3565b33600090815260086020526040902055600354600a54845461138f91906124bc565b61139991906124d3565b6002840155426003840181905560408051868152602081018490529081019190915233907f36af321ec8d3c75236829c5317affd40ddb308863a1236d2d277a4025cccee1e90606001610a35565b73ffffffffffffffffffffffffffffffffffffffff811660009081526002602052604081208054820361141d5750600092915050565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600860205260409020548154600c54670de0b6b3a76400009161145b916124bc565b61146591906124d3565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152600960205260409081902054600354865492517fc600e1dc00000000000000000000000000000000000000000000000000000000815230600482015291939092917f00000000000000000000000000000000000000000000000000000000000000009091169063c600e1dc90602401602060405180830381865afa15801561150e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115329190612474565b61153c91906124bc565b61154691906124d3565b611550919061250e565b61155a919061250e565b6115649190612521565b9392505050565b60045473ffffffffffffffffffffffffffffffffffffffff1633146115ec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f61646d696e3a207775743f00000000000000000000000000000000000000000060448201526064016105a8565b60055474010000000000000000000000000000000000000000900460ff16611670576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f4e6f207374616b696e672062626300000000000000000000000000000000000060448201526064016105a8565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055604080517f853828b6000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169163853828b691600480830192600092919082900301818387803b15801561171f57600080fd5b505af1158015611733573d6000803e3d6000fd5b50505050565b60045473ffffffffffffffffffffffffffffffffffffffff1633146117ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f61646d696e3a207775743f00000000000000000000000000000000000000000060448201526064016105a8565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f546f6b656e2063616e6e6f742062652073616d65206173206465706f7369742060448201527f746f6b656e00000000000000000000000000000000000000000000000000000060648201526084016105a8565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa158015611902573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119269190612474565b905061194973ffffffffffffffffffffffffffffffffffffffff83163383611c2c565b5050565b611955611e06565b73ffffffffffffffffffffffffffffffffffffffff81166119d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f43616e6e6f74206265207a65726f20616464726573730000000000000000000060448201526064016105a8565b600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527fafa147634b29e2c7bd53ce194256b9f41cfb9ba3036f2b822fdd1d965beea08690602001610ec2565b611a4d611e06565b73ffffffffffffffffffffffffffffffffffffffff8116611af0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016105a8565b610a4981611e87565b600260015403611b65576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105a8565b6002600155565b600d54600090601260ff9091161015611bab57600d54611b909060ff166012612534565b611b9b90600a61266d565b611ba590836124bc565b92915050565b600d54601260ff9091161115611be257600d54611bcd9060129060ff16612534565b611bd890600a61266d565b611ba590836124d3565b5090565b600d54600090601260ff9091161015611c0a57600d54611bcd9060ff166012612534565b600d54601260ff9091161115611be257600d54611b909060129060ff16612534565b60405173ffffffffffffffffffffffffffffffffffffffff8316602482015260448101829052611d009084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff000000000000000000000000000000000000000000000000000000009093169290921790915261210a565b505050565b60005474010000000000000000000000000000000000000000900460ff16610dcc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016105a8565b611d91611d05565b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b60005473ffffffffffffffffffffffffffffffffffffffff163314610dcc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105a8565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005474010000000000000000000000000000000000000000900460ff1615610dcc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016105a8565b611f89611efc565b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ddc3390565b60405173ffffffffffffffffffffffffffffffffffffffff808516602483015283166044820152606481018290526117339085907f23b872dd0000000000000000000000000000000000000000000000000000000090608401611c7e565b6000612058610b08565b90508015610a49576040517fe2bbb15800000000000000000000000000000000000000000000000000000000815260048101829052600060248201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063e2bbb15890604401600060405180830381600087803b1580156120ef57600080fd5b505af1158015612103573d6000803e3d6000fd5b5050505050565b600061216c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166122169092919063ffffffff16565b805190915015611d00578080602001905181019061218a919061267c565b611d00576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016105a8565b6060612225848460008561222d565b949350505050565b6060824710156122bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016105a8565b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516122e891906126c2565b60006040518083038185875af1925050503d8060008114612325576040519150601f19603f3d011682016040523d82523d6000602084013e61232a565b606091505b509150915061233b87838387612346565b979650505050505050565b606083156123dc5782516000036123d55773ffffffffffffffffffffffffffffffffffffffff85163b6123d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016105a8565b5081612225565b61222583838151156123f15781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a891906126de565b60006020828403121561243757600080fd5b813573ffffffffffffffffffffffffffffffffffffffff8116811461156457600080fd5b60006020828403121561246d57600080fd5b5035919050565b60006020828403121561248657600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082028115828204841417611ba557611ba561248d565b600082612509577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b80820180821115611ba557611ba561248d565b81810381811115611ba557611ba561248d565b60ff8281168282160390811115611ba557611ba561248d565b600181815b808511156125a657817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0482111561258c5761258c61248d565b8085161561259957918102915b93841c9390800290612552565b509250929050565b6000826125bd57506001611ba5565b816125ca57506000611ba5565b81600181146125e057600281146125ea57612606565b6001915050611ba5565b60ff8411156125fb576125fb61248d565b50506001821b611ba5565b5060208310610133831016604e8410600b8410161715612629575081810a611ba5565b612633838361254d565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048211156126655761266561248d565b029392505050565b600061156460ff8416836125ae565b60006020828403121561268e57600080fd5b8151801515811461156457600080fd5b60005b838110156126b95781810151838201526020016126a1565b50506000910152565b600082516126d481846020870161269e565b9190910192915050565b60208152600082518060208401526126fd81604085016020870161269e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea2646970667358221220e7179658ab02df233ac1e522576bdbe33e756ed2537e91aa814d0f085a37541964736f6c6343000813003300000000000000000000000022a30bed9e0853e3fc6fefa2c9522aa6539cf9f5000000000000000000000000180f4bd2563b95564c0142e269e70c6a84a2ab00000000000000000000000000180f4bd2563b95564c0142e269e70c6a84a2ab00
Deployed ByteCode
0x608060405234801561001057600080fd5b50600436106102265760003560e01c8063722713f71161012a578063b6b55f25116100bd578063def68a9c1161008c578063f2fde38b11610071578063f2fde38b146104d4578063f851a440146104e7578063fc0c546a1461050757600080fd5b8063def68a9c146104ae578063f0f44260146104c157600080fd5b8063b6b55f2514610460578063c600e1dc14610473578063db2e21bc14610486578063dee838b11461048e57600080fd5b80638b48a05e116100f95780638b48a05e146104125780638da5cb5b1461041b578063b440458614610439578063b6857844146102ea57600080fd5b8063722713f7146103f257806377c7b8fc146103fa5780638456cb5914610402578063853828b61461040a57600080fd5b806348a0d754116101bd578063567e98f91161018c57806361d027b31161017157806361d027b3146103b7578063704b6c02146103d7578063715018a6146103ea57600080fd5b8063567e98f91461038b5780635c975abb1461039457600080fd5b806348a0d754146103265780634bf6f9e71461032e5780634cf088d91461034e5780634e71d92d1461038357600080fd5b80632e1a7d4d116101f95780632e1a7d4d146102f75780632f0c7a111461030c5780633a98ef39146103155780633f4ba83a1461031e57600080fd5b80630661a25e1461022b57806314c9253e1461027c5780631959a002146102935780631ea30fef146102ea575b600080fd5b6102527f00000000000000000000000022a30bed9e0853e3fc6fefa2c9522aa6539cf9f581565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b61028560075481565b604051908152602001610273565b6102ca6102a1366004612425565b600260208190526000918252604090912080546001820154928201546003909201549092919084565b604080519485526020850193909352918301526060820152608001610273565b6102856509184e72a00081565b61030a61030536600461245b565b61052e565b005b610285600b5481565b61028560035481565b61030a610a4c565b610285610b08565b61028561033c366004612425565b60086020526000908152604090205481565b6005546103739074010000000000000000000000000000000000000000900460ff1681565b6040519015158152602001610273565b61030a610bbe565b610285600a5481565b60005474010000000000000000000000000000000000000000900460ff16610373565b6005546102529073ffffffffffffffffffffffffffffffffffffffff1681565b61030a6103e5366004612425565b610dce565b61030a610ecd565b600a54610285565b610285610edf565b61030a610f1a565b61030a610fd6565b61028560065481565b60005473ffffffffffffffffffffffffffffffffffffffff16610252565b6102527f00000000000000000000000058c25b1d441abcdf661970875157b094d783c0b381565b61030a61046e36600461245b565b610fef565b610285610481366004612425565b6113e7565b61030a61156b565b61028561049c366004612425565b60096020526000908152604090205481565b61030a6104bc366004612425565b611739565b61030a6104cf366004612425565b61194d565b61030a6104e2366004612425565b611a45565b6004546102529073ffffffffffffffffffffffffffffffffffffffff1681565b6102527f000000000000000000000000ef2cb4623450a40862c641790f4bfbe6bfba757881565b610536611af9565b336000908152600260205260409020816105b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4e6f7468696e6720746f2077697468647261770000000000000000000000000060448201526064015b60405180910390fd5b805482111561061c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f576974686472617720616d6f756e7420657863656564732062616c616e63650060448201526064016105a8565b6003541561075f5760007f00000000000000000000000022a30bed9e0853e3fc6fefa2c9522aa6539cf9f573ffffffffffffffffffffffffffffffffffffffff16634e71d92d6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015610693573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106b79190612474565b6003549091506106cf82670de0b6b3a76400006124bc565b6106d991906124d3565b600c60008282546106ea919061250e565b909155505081541561075d57336000908152600860205260408120548354600c54670de0b6b3a76400009161071e916124bc565b61072891906124d3565b6107329190612521565b3360009081526009602052604081208054929350839290919061075690849061250e565b9091555050505b505b600060035461076d600a5490565b61077790856124bc565b61078191906124d3565b905080600a60008282546107959190612521565b9091555050600554819074010000000000000000000000000000000000000000900460ff16156108aa576509184e72a0006107cf82611b6c565b106107da57806107e9565b6107e96509184e72a000611be6565b9050612710600754826107fc91906124bc565b61080691906124d3565b6040517f5521e9bf000000000000000000000000000000000000000000000000000000008152600481018290529091507f00000000000000000000000022a30bed9e0853e3fc6fefa2c9522aa6539cf9f573ffffffffffffffffffffffffffffffffffffffff1690635521e9bf90602401600060405180830381600087803b15801561089157600080fd5b505af11580156108a5573d6000803e3d6000fd5b505050505b816108b3610b08565b10156108c6576108c1610b08565b6108c8565b815b9150838360000160008282546108de9190612521565b9250508190555083600360008282546108f79190612521565b90915550508254600c54670de0b6b3a764000091610914916124bc565b61091e91906124d3565b3360009081526008602052604090205542600384015582541561096157600354600a54845461094d91906124bc565b61095791906124d3565b60028401556109c0565b6000600284018190553380825260096020526040822080549290556109be907f00000000000000000000000058c25b1d441abcdf661970875157b094d783c0b373ffffffffffffffffffffffffffffffffffffffff169083611c2c565b505b610a0173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000ef2cb4623450a40862c641790f4bfbe6bfba7578163384611c2c565b604080518381526020810186905233917fb605f60b5ff13848ba5a9234329676801d97e41362092b50014cad41fb2b7bfc91015b60405180910390a2505050610a4960018055565b50565b60045473ffffffffffffffffffffffffffffffffffffffff163314610acd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f61646d696e3a207775743f00000000000000000000000000000000000000000060448201526064016105a8565b610ad5611d05565b610add611d89565b6040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000907f000000000000000000000000ef2cb4623450a40862c641790f4bfbe6bfba757873ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa158015610b95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb99190612474565b905090565b610bc6611af9565b336000908152600260205260409020805415610dc25760007f00000000000000000000000022a30bed9e0853e3fc6fefa2c9522aa6539cf9f573ffffffffffffffffffffffffffffffffffffffff16634e71d92d6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015610c4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c6f9190612474565b600354909150610c8782670de0b6b3a76400006124bc565b610c9191906124d3565b600c6000828254610ca2919061250e565b9091555050336000908152600860205260408120548354600c54670de0b6b3a764000091610ccf916124bc565b610cd991906124d3565b33600090815260096020526040902054610cf3919061250e565b610cfd9190612521565b9050610d4073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000058c25b1d441abcdf661970875157b094d783c0b3163383611c2c565b336000908152600960205260408120558254600c54670de0b6b3a764000091610d68916124bc565b610d7291906124d3565b336000818152600860209081526040918290209390935580519182529181018390527fc9695243a805adb74c91f28311176c65b417e842d5699893cef56d18bfa48cba910160405180910390a150505b50610dcc60018055565b565b610dd6611e06565b73ffffffffffffffffffffffffffffffffffffffff8116610e53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f43616e6e6f74206265207a65726f20616464726573730000000000000000000060448201526064016105a8565b600480547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527f71614071b88dee5e0b2ae578a9dd7b2ebbe9ae832ba419dc0242cd065a290b6c906020015b60405180910390a150565b610ed5611e06565b610dcc6000611e87565b6000600354600014610f0d57600354600a54610f0390670de0b6b3a76400006124bc565b610bb991906124d3565b50670de0b6b3a764000090565b60045473ffffffffffffffffffffffffffffffffffffffff163314610f9b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f61646d696e3a207775743f00000000000000000000000000000000000000000060448201526064016105a8565b610fa3611efc565b610fab611f81565b6040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b33600090815260026020526040902054610dcc9061052e565b610ff7611efc565b610fff611af9565b60055474010000000000000000000000000000000000000000900460ff16611083576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f4e6f7420616c6c6f77656420746f207374616b6500000000000000000000000060448201526064016105a8565b6509184e72a00061109382611b6c565b11611120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f4465706f73697420616d6f756e74206d7573742062652067726561746572207460448201527f68616e204d494e5f4445504f5349545f414d4f554e540000000000000000000060648201526084016105a8565b336000908152600260205260409020600354156112725760007f00000000000000000000000022a30bed9e0853e3fc6fefa2c9522aa6539cf9f573ffffffffffffffffffffffffffffffffffffffff16634e71d92d6040518163ffffffff1660e01b81526004016020604051808303816000875af11580156111a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ca9190612474565b6003549091506111e282670de0b6b3a76400006124bc565b6111ec91906124d3565b600c60008282546111fd919061250e565b909155505081541561127057336000908152600860205260408120548354600c54670de0b6b3a764000091611231916124bc565b61123b91906124d3565b6112459190612521565b3360009081526009602052604081208054929350839290919061126990849061250e565b9091555050505b505b600061127d600a5490565b90506112c173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000ef2cb4623450a40862c641790f4bfbe6bfba757816333086611ff0565b60006003546000146112ed5781600354856112dc91906124bc565b6112e691906124d3565b90506112f0565b50825b80836000016000828254611304919061250e565b90915550504260018401556003805482919060009061132490849061250e565b9250508190555083600a600082825461133d919061250e565b9091555061134b905061204e565b8254600c54670de0b6b3a764000091611363916124bc565b61136d91906124d3565b33600090815260086020526040902055600354600a54845461138f91906124bc565b61139991906124d3565b6002840155426003840181905560408051868152602081018490529081019190915233907f36af321ec8d3c75236829c5317affd40ddb308863a1236d2d277a4025cccee1e90606001610a35565b73ffffffffffffffffffffffffffffffffffffffff811660009081526002602052604081208054820361141d5750600092915050565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600860205260409020548154600c54670de0b6b3a76400009161145b916124bc565b61146591906124d3565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152600960205260409081902054600354865492517fc600e1dc00000000000000000000000000000000000000000000000000000000815230600482015291939092917f00000000000000000000000022a30bed9e0853e3fc6fefa2c9522aa6539cf9f59091169063c600e1dc90602401602060405180830381865afa15801561150e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115329190612474565b61153c91906124bc565b61154691906124d3565b611550919061250e565b61155a919061250e565b6115649190612521565b9392505050565b60045473ffffffffffffffffffffffffffffffffffffffff1633146115ec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f61646d696e3a207775743f00000000000000000000000000000000000000000060448201526064016105a8565b60055474010000000000000000000000000000000000000000900460ff16611670576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f4e6f207374616b696e672062626300000000000000000000000000000000000060448201526064016105a8565b600580547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055604080517f853828b6000000000000000000000000000000000000000000000000000000008152905173ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000022a30bed9e0853e3fc6fefa2c9522aa6539cf9f5169163853828b691600480830192600092919082900301818387803b15801561171f57600080fd5b505af1158015611733573d6000803e3d6000fd5b50505050565b60045473ffffffffffffffffffffffffffffffffffffffff1633146117ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600b60248201527f61646d696e3a207775743f00000000000000000000000000000000000000000060448201526064016105a8565b7f000000000000000000000000ef2cb4623450a40862c641790f4bfbe6bfba757873ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f546f6b656e2063616e6e6f742062652073616d65206173206465706f7369742060448201527f746f6b656e00000000000000000000000000000000000000000000000000000060648201526084016105a8565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa158015611902573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119269190612474565b905061194973ffffffffffffffffffffffffffffffffffffffff83163383611c2c565b5050565b611955611e06565b73ffffffffffffffffffffffffffffffffffffffff81166119d2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f43616e6e6f74206265207a65726f20616464726573730000000000000000000060448201526064016105a8565b600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527fafa147634b29e2c7bd53ce194256b9f41cfb9ba3036f2b822fdd1d965beea08690602001610ec2565b611a4d611e06565b73ffffffffffffffffffffffffffffffffffffffff8116611af0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016105a8565b610a4981611e87565b600260015403611b65576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105a8565b6002600155565b600d54600090601260ff9091161015611bab57600d54611b909060ff166012612534565b611b9b90600a61266d565b611ba590836124bc565b92915050565b600d54601260ff9091161115611be257600d54611bcd9060129060ff16612534565b611bd890600a61266d565b611ba590836124d3565b5090565b600d54600090601260ff9091161015611c0a57600d54611bcd9060ff166012612534565b600d54601260ff9091161115611be257600d54611b909060129060ff16612534565b60405173ffffffffffffffffffffffffffffffffffffffff8316602482015260448101829052611d009084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff000000000000000000000000000000000000000000000000000000009093169290921790915261210a565b505050565b60005474010000000000000000000000000000000000000000900460ff16610dcc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016105a8565b611d91611d05565b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b60005473ffffffffffffffffffffffffffffffffffffffff163314610dcc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105a8565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60005474010000000000000000000000000000000000000000900460ff1615610dcc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016105a8565b611f89611efc565b600080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ddc3390565b60405173ffffffffffffffffffffffffffffffffffffffff808516602483015283166044820152606481018290526117339085907f23b872dd0000000000000000000000000000000000000000000000000000000090608401611c7e565b6000612058610b08565b90508015610a49576040517fe2bbb15800000000000000000000000000000000000000000000000000000000815260048101829052600060248201527f00000000000000000000000022a30bed9e0853e3fc6fefa2c9522aa6539cf9f573ffffffffffffffffffffffffffffffffffffffff169063e2bbb15890604401600060405180830381600087803b1580156120ef57600080fd5b505af1158015612103573d6000803e3d6000fd5b5050505050565b600061216c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166122169092919063ffffffff16565b805190915015611d00578080602001905181019061218a919061267c565b611d00576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016105a8565b6060612225848460008561222d565b949350505050565b6060824710156122bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016105a8565b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516122e891906126c2565b60006040518083038185875af1925050503d8060008114612325576040519150601f19603f3d011682016040523d82523d6000602084013e61232a565b606091505b509150915061233b87838387612346565b979650505050505050565b606083156123dc5782516000036123d55773ffffffffffffffffffffffffffffffffffffffff85163b6123d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016105a8565b5081612225565b61222583838151156123f15781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a891906126de565b60006020828403121561243757600080fd5b813573ffffffffffffffffffffffffffffffffffffffff8116811461156457600080fd5b60006020828403121561246d57600080fd5b5035919050565b60006020828403121561248657600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b8082028115828204841417611ba557611ba561248d565b600082612509577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b80820180821115611ba557611ba561248d565b81810381811115611ba557611ba561248d565b60ff8281168282160390811115611ba557611ba561248d565b600181815b808511156125a657817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0482111561258c5761258c61248d565b8085161561259957918102915b93841c9390800290612552565b509250929050565b6000826125bd57506001611ba5565b816125ca57506000611ba5565b81600181146125e057600281146125ea57612606565b6001915050611ba5565b60ff8411156125fb576125fb61248d565b50506001821b611ba5565b5060208310610133831016604e8410600b8410161715612629575081810a611ba5565b612633838361254d565b807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048211156126655761266561248d565b029392505050565b600061156460ff8416836125ae565b60006020828403121561268e57600080fd5b8151801515811461156457600080fd5b60005b838110156126b95781810151838201526020016126a1565b50506000910152565b600082516126d481846020870161269e565b9190910192915050565b60208152600082518060208401526126fd81604085016020870161269e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea2646970667358221220e7179658ab02df233ac1e522576bdbe33e756ed2537e91aa814d0f085a37541964736f6c63430008130033