Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers.
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
|||
|---|---|---|---|---|---|---|---|---|
| Transfer | 11200587 | 1972 days ago | 0 ETH | |||||
| Transfer | 11200587 | 1972 days ago | 0 ETH | |||||
| Balance Of | 11200587 | 1972 days ago | 0 ETH | |||||
| Transfer | 11200587 | 1972 days ago | 0 ETH | |||||
| Balance Of | 11200587 | 1972 days ago | 0 ETH | |||||
| Balance Of | 11200587 | 1972 days ago | 0 ETH | |||||
| Exit | 11200587 | 1972 days ago | 0 ETH | |||||
| Balance Of | 11200587 | 1972 days ago | 0 ETH | |||||
| Withdraw All | 11200587 | 1972 days ago | 0 ETH | |||||
| Withdraw | 11200587 | 1972 days ago | 0 ETH | |||||
| User Info | 11200587 | 1972 days ago | 0 ETH | |||||
| Notify Reward Am... | 11200587 | 1972 days ago | 0 ETH | |||||
| Transfer | 11200587 | 1972 days ago | 0 ETH | |||||
| Transfer | 11200587 | 1972 days ago | 0 ETH | |||||
| Balance Of | 11200587 | 1972 days ago | 0 ETH | |||||
| Get Reward | 11200587 | 1972 days ago | 0 ETH | |||||
| Balance Of | 11200587 | 1972 days ago | 0 ETH | |||||
| Earned | 11200587 | 1972 days ago | 0 ETH | |||||
| Exit | 11200587 | 1972 days ago | 0 ETH | |||||
| Balance | 11200076 | 1972 days ago | 0 ETH | |||||
| Notify Reward Am... | 11200076 | 1972 days ago | 0 ETH | |||||
| Transfer | 11200076 | 1972 days ago | 0 ETH | |||||
| Transfer | 11200076 | 1972 days ago | 0 ETH | |||||
| Balance Of | 11200076 | 1972 days ago | 0 ETH | |||||
| Get Reward | 11200076 | 1972 days ago | 0 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
StabilizeStrategyPickleV1
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2020-11-05
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
pragma solidity ^0.6.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
function decimals() external view returns (uint8);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// File: @openzeppelin/contracts/math/SafeMath.sol
pragma solidity ^0.6.0;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
// File: @openzeppelin/contracts/utils/Address.sol
pragma solidity ^0.6.2;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// According to EIP-1052, 0x0 is the value returned for not-yet created accounts
// and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
// for accounts without code, i.e. `keccak256('')`
bytes32 codehash;
bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
// solhint-disable-next-line no-inline-assembly
assembly { codehash := extcodehash(account) }
return (codehash != accountHash && codehash != 0x0);
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(bool success, ) = recipient.call{ value: amount }("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain`call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
return _functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
return _functionCallWithValue(target, data, value, errorMessage);
}
function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol
pragma solidity ^0.6.0;
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using SafeMath for uint256;
using Address for address;
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(IERC20 token, address spender, uint256 value) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
// solhint-disable-next-line max-line-length
require((value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).add(value);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) { // Return data is optional
// solhint-disable-next-line max-line-length
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
// File: @openzeppelin/contracts/GSN/Context.sol
pragma solidity ^0.6.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
pragma solidity ^0.6.0;
/**
* @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.
*/
contract Ownable is Context {
address private _governance;
event GovernanceTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () internal {
address msgSender = _msgSender();
_governance = msgSender;
emit GovernanceTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function governance() public view returns (address) {
return _governance;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyGovernance() {
require(_governance == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferGovernance(address newOwner) internal virtual onlyGovernance {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit GovernanceTransferred(_governance, newOwner);
_governance = newOwner;
}
}
// File: contracts/strategies/StabilizeStrategyPickle.sol
pragma solidity ^0.6.6;
// This is a strategy that utilizes UNI ETH/USDT token in the Pickle.Finance protocol
// It deposits the LP token for pJar tokens
// It then deposits the pJar tokens into the pickle farm to earn pickle tokens
// It then uses the earned pickle tokens and stakes it into pickle staking to earn WETH
// It then collects the earn WETH and splits it among the depositors, the STBZ staking pool and the STBZ treasury
// The strategy doesn't sell any tokens via Uniswap so it shouldn't affect Pickle adversely
// The pickle earned via the farm are constantly being staked to earn more WETH for the users
// When a user withdraws, he/she receives a proportion of the total shares in LP token, Pickle and WETH
// Used to convert weth to eth upon withdraw
interface WrappedEther {
function withdraw(uint) external;
}
interface PickleJar {
function getRatio() external view returns (uint256);
function deposit(uint256) external;
function withdraw(uint256) external;
function withdrawAll() external;
}
interface PickleFarm {
function deposit(uint256, uint256) external;
function withdraw(uint256, uint256) external;
function userInfo(uint256, address) external view returns (uint256, uint256);
}
interface PickleStake {
function stake(uint256) external;
function withdraw(uint256) external;
function exit() external;
function earned(address) external view returns (uint256);
function getReward() external;
}
interface StabilizeStakingPool {
function notifyRewardAmount(uint256) external;
}
contract StabilizeStrategyPickleV1 is Ownable {
using SafeMath for uint256;
using SafeERC20 for IERC20;
using Address for address;
address public treasuryAddress; // Address of the treasury
address public stakingAddress; // Address to the STBZ staking pool
address public zsTokenAddress; // The address of the controlling zs-Token
uint256 constant divisionFactor = 100000;
uint256 public percentLPDepositor = 50000; // 1000 = 1%, LP depositors earn 50% of all WETH produced, 100% of everything else
uint256 public percentStakers = 50000; // 50% of non LP WETH goes to stakers, can be changed
// Reward tokens tokens list
address[] rewardTokenList;
// Info of each user.
struct UserInfo {
uint256 depositTime; // The time the user made a deposit
}
mapping(address => UserInfo) private userInfo;
uint256 public totalDepositors = 0; // Total amount of unique depositors
uint256 public averageDepositTime = 0; // Average time to enter
// Strategy specific variables
uint256 private _totalBalancePTokens = 0; // The total amount of pTokens currently staked/stored in contract
uint256 private _stakedPickle = 0; // The amount of pickles being staked
address constant wethAddress = address(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);
address constant pickleAddress = address(0x429881672B9AE42b8EbA0E26cD9C73711b891Ca5);
address constant pJarAddress = address(0x09FC573c502037B149ba87782ACC81cF093EC6ef); // Pickle jar address / pToken address
address constant pFarmAddress = address(0xbD17B1ce622d73bD438b9E658acA5996dc394b0d); // Pickle farming contract aka MasterChef
uint256 constant pTokenID = 12; // The location of the pToken in the pickle staking farm
address constant pickleStakeAddress = address(0xa17a8883dA1aBd57c690DF9Ebf58fC194eDAb66F); // Pickle staking address
uint256 constant minETH = 1000000000; // 0.000000001 ETH / 1 Gwei
constructor(
address _treasury,
address _staking,
address _zsToken
) public {
treasuryAddress = _treasury;
stakingAddress = _staking;
zsTokenAddress = _zsToken;
setupRewardTokens();
}
// Initialization functions
function setupRewardTokens() internal {
// Reward tokens
rewardTokenList.push(address(0x0d4a11d5EEaaC28EC3F61d100daF4d40471f1852)); // Uniswap LP token for ETH/USDT
rewardTokenList.push(pickleAddress); // Picke token
rewardTokenList.push(wethAddress); // Wrapped Ether token
}
// Modifier
modifier onlyZSToken() {
require(zsTokenAddress == _msgSender(), "Call not sent from the zs-Token");
_;
}
// Read functions
function rewardTokensCount() external view returns (uint256) {
return rewardTokenList.length;
}
function rewardTokenAddress(uint256 _pos) external view returns (address) {
require(_pos < rewardTokenList.length,"No token at that position");
return rewardTokenList[_pos];
}
function balance() external view returns (uint256) {
return _totalBalancePTokens;
}
function pricePerToken() external view returns (uint256) {
return PickleJar(pJarAddress).getRatio();
}
// Write functions
function enter() external onlyZSToken {
deposit(_msgSender());
}
function exit() external onlyZSToken {
// The ZS token vault is removing all tokens from this strategy
withdraw(_msgSender(),1,1);
}
function withdraw(address payable _depositor, uint256 _share, uint256 _total) public onlyZSToken returns (uint256) {
require(_totalBalancePTokens > 0, "There are no LP tokens in this strategy");
// When a user withdraws, we need to pull the user's share out from all the contracts and split its tokens
checkWETHAndPay(); // First check if we have unclaimed WETH and claim it
// Next we need to calculate our percent of pTokens
bool _takeAll = false;
if(_share == _total){
_takeAll = true; // Remove everything to this user
}
uint256 pTokenAmount = _totalBalancePTokens;
if(_takeAll == false){
pTokenAmount = _totalBalancePTokens.mul(_share).div(_total);
}else{
(pTokenAmount, ) = PickleFarm(pFarmAddress).userInfo(pTokenID, address(this)); // Get the total amount at the farm
_totalBalancePTokens = pTokenAmount;
}
// Lower the amount of pTokens
_totalBalancePTokens = _totalBalancePTokens.sub(pTokenAmount);
// Now withdraw the pLP from Pickle Farm
PickleFarm(pFarmAddress).withdraw(pTokenID, pTokenAmount); // This function also returns Pickle earned
// Now exchange the pJar token for the LP token
IERC20 _lpToken = IERC20(rewardTokenList[0]);
uint256 lpWithdrawAmount = 0;
if(_takeAll == false){
uint256 _before = _lpToken.balanceOf(address(this));
PickleJar(pJarAddress).withdraw(pTokenAmount);
lpWithdrawAmount = _lpToken.balanceOf(address(this)).sub(_before);
}else{
PickleJar(pJarAddress).withdrawAll();
lpWithdrawAmount = _lpToken.balanceOf(address(this)); // Get all LP tokens here
}
require(lpWithdrawAmount > 0,"Failed to withdraw from the Pickle Jar");
// Transfer the accessory tokens
transferAccessoryTokens(_depositor, _share, _total);
// Now we withdraw the LP to the user
_lpToken.safeTransfer(_depositor, lpWithdrawAmount);
return lpWithdrawAmount;
}
function transferAccessoryTokens(address payable _depositor, uint256 _share, uint256 _total) internal {
bool _takeAll = false;
if(_share == _total){
_takeAll = true;
}
if(_takeAll == false){
// We need to now calculate the percent of accessory tokens going to this depositor
// It is based on how long the depositor is in the contract and their share
uint256 exitTime = now;
if(userInfo[_depositor].depositTime == 0){ // User has never deposited into the contract at this address
userInfo[_depositor].depositTime = now; // No access to pickle or weth reward
}
uint256 numerator = exitTime.sub(userInfo[_depositor].depositTime);
uint256 denominator = exitTime.sub(averageDepositTime);
uint256 timeShare = 0;
if(numerator > denominator){
// This user has been in the contract longer than the average, allow up to 100% of tokens based on share
timeShare = divisionFactor; // 100%
}else{
// User has been in less than or equal to average, limit token amount based on that
if(denominator > 0){
timeShare = numerator.mul(divisionFactor).div(denominator);
}else{
timeShare = 0;
}
}
// Now withdraw the tokens based on the timeshare and share
IERC20 _token = IERC20(pickleAddress);
uint256 _tokenBalance = _token.balanceOf(address(this)); // Get balance of pickle in contract not staked
uint256 tokenWithdrawAmount = _tokenBalance.add(_stakedPickle).mul(_share).div(_total); // First based on our share %
tokenWithdrawAmount = tokenWithdrawAmount.mul(timeShare).div(divisionFactor); // Then on time in contract
if(tokenWithdrawAmount > _tokenBalance){
// Must remove some from the staking pool to fill this amount
uint256 _removeAmount = tokenWithdrawAmount.sub(_tokenBalance);
_stakedPickle = _stakedPickle.sub(_removeAmount);
PickleStake(pickleStakeAddress).withdraw(_removeAmount);
}
// Send the Pickle to the user
if(tokenWithdrawAmount > 0){
_token.safeTransfer(_depositor, tokenWithdrawAmount);
}
// Now do the same for WETH
_token = IERC20(wethAddress);
_tokenBalance = _token.balanceOf(address(this)); // Weth is just stored in this contract until removed
tokenWithdrawAmount = _tokenBalance.mul(_share).div(_total); // First based on our share %
tokenWithdrawAmount = tokenWithdrawAmount.mul(timeShare).div(divisionFactor); // Then on time in contract
// Convert and send ETH to user
if(tokenWithdrawAmount > 0){
WrappedEther(wethAddress).withdraw(tokenWithdrawAmount); // This will send ETH to this contract and burn WETH
// Now send the Ether to user
_depositor.transfer(tokenWithdrawAmount); // Transfer has low gas allocation, preventing re-entrancy
}
}else{
// Just pull all pickle and all WETH
if(_stakedPickle > 0){
PickleStake(pickleStakeAddress).exit(); // Will pull all pickle and all WETH (should be near empty)
_stakedPickle = 0;
}
IERC20 _token = IERC20(pickleAddress);
if( _token.balanceOf(address(this)) > 0){
_token.safeTransfer(_depositor, _token.balanceOf(address(this)));
}
_token = IERC20(wethAddress);
uint256 wethBalance = _token.balanceOf(address(this));
if(wethBalance > 0){
if(_depositor != zsTokenAddress){
WrappedEther(wethAddress).withdraw(wethBalance); // This will send ETH to this contract and burn WETH
_depositor.transfer(wethBalance);
}else{
// Keep it as ERC20
_token.safeTransfer(_depositor, wethBalance);
}
}
}
}
function deposit(address _depositor) public onlyZSToken {
// Only the ZS token can call the function
if(_depositor != zsTokenAddress){
// Calculate the deposit time
if(userInfo[_depositor].depositTime == 0){
totalDepositors += 1; // We have a new depositor
// Calculate the average
if(totalDepositors == 1){
averageDepositTime = now;
}else{
averageDepositTime = averageDepositTime.mul(totalDepositors.sub(1)).add(now).div(totalDepositors);
// Move the average forward
}
}else{
// We've already deposited before
averageDepositTime = averageDepositTime
.mul(totalDepositors)
.sub(userInfo[_depositor].depositTime)
.add(now).div(totalDepositors);
// Remove our old time and add our new time to the timelock
}
userInfo[_depositor].depositTime = now;
}
// Get the balance of the reward token sent here
IERC20 _token = IERC20(rewardTokenList[0]);
uint256 _lpBalance = _token.balanceOf(address(this));
// Now deposit it into the pickle jar
_token.safeApprove(pJarAddress ,_lpBalance); // Approve for transfer
PickleJar(pJarAddress).deposit(_lpBalance); // Send the LP, get the pLP
IERC20 _pToken = IERC20(pJarAddress);
uint256 _pBalance = _pToken.balanceOf(address(this));
require(_pBalance > 0,"Failed to get pTokens from the Pickle Jar");
// Now deposit these tokens into the farm contract
_pToken.safeApprove(pFarmAddress, _pBalance); // Approve for transfer
PickleFarm(pFarmAddress).deposit(pTokenID, _pBalance); // This function also returns Pickle earned
_totalBalancePTokens += _pBalance; // Add to our pTokens accounted for
// Now check to see if we should claim and stake pickle
checkPickleAndStake();
// Now check to see if we should claim and payout WETH
checkWETHAndPay();
}
function checkPickleAndStake() internal {
// Check if we have pickle in this contract then stake if we do
IERC20 _pickle = IERC20(pickleAddress);
uint256 _balance = _pickle.balanceOf(address(this));
if(_balance > 0){
// We have pickle, let's stake it
_pickle.safeApprove(pickleStakeAddress, _balance);
PickleStake(pickleStakeAddress).stake(_balance);
_stakedPickle += _balance;
}
}
function checkWETHAndPay() internal {
// Check if we have earned WETH from the staked pickle
uint256 _balance = PickleStake(pickleStakeAddress).earned(address(this)); // This will return the WETH earned balance
if(_balance > minETH){
// Claim the reward and split it between the depositors, treasury and stakers
IERC20 _token = IERC20(wethAddress);
uint256 _before = _token.balanceOf(address(this));
PickleStake(pickleStakeAddress).getReward(); // Pull the WETH from the staking address
uint256 amount = _token.balanceOf(address(this)).sub(_before);
require(amount > 0,"Pickle staking should have returned some WETH");
uint256 depositorsAmount = amount.mul(percentLPDepositor).div(divisionFactor); // This amount remains in contract
uint256 holdersAmount = amount.sub(depositorsAmount);
uint256 stakersAmount = holdersAmount.mul(percentStakers).div(divisionFactor);
uint256 treasuryAmount = holdersAmount.sub(stakersAmount);
if(treasuryAmount > 0){
_token.safeTransfer(treasuryAddress, treasuryAmount);
}
if(stakersAmount > 0){
_token.safeTransfer(stakingAddress, stakersAmount);
StabilizeStakingPool(stakingAddress).notifyRewardAmount(stakersAmount);
}
}
}
// Governance functions
// Timelock variables
uint256 private _timelockStart; // The start of the timelock to change governance variables
uint256 private _timelockType; // The function that needs to be changed
uint256 constant _timelockDuration = 86400; // Timelock is 24 hours
// Reusable timelock variables
address private _timelock_address;
uint256 private _timelock_data_1;
modifier timelockConditionsMet(uint256 _type) {
require(_timelockType == _type, "Timelock not acquired for this function");
_timelockType = 0; // Reset the type once the timelock is used
if(_totalBalancePTokens > 0){ // Timelock only applies when balance exists
require(now >= _timelockStart + _timelockDuration, "Timelock time not met");
}
_;
}
// Change the owner of the token contract
// --------------------
function startGovernanceChange(address _address) external onlyGovernance {
_timelockStart = now;
_timelockType = 1;
_timelock_address = _address;
}
function finishGovernanceChange() external onlyGovernance timelockConditionsMet(1) {
transferGovernance(_timelock_address);
}
// --------------------
// Change the treasury address
// --------------------
function startChangeTreasury(address _address) external onlyGovernance {
_timelockStart = now;
_timelockType = 2;
_timelock_address = _address;
}
function finishChangeTreasury() external onlyGovernance timelockConditionsMet(2) {
treasuryAddress = _timelock_address;
}
// --------------------
// Change the percent going to depositors for WETH
// --------------------
function startChangeDepositorPercent(uint256 _percent) external onlyGovernance {
require(_percent <= 100000,"Percent cannot be greater than 100%");
_timelockStart = now;
_timelockType = 3;
_timelock_data_1 = _percent;
}
function finishChangeDepositorPercent() external onlyGovernance timelockConditionsMet(3) {
percentLPDepositor = _timelock_data_1;
}
// --------------------
// Change the staking address
// --------------------
function startChangeStakingPool(address _address) external onlyGovernance {
_timelockStart = now;
_timelockType = 4;
_timelock_address = _address;
}
function finishChangeStakingPool() external onlyGovernance timelockConditionsMet(4) {
stakingAddress = _timelock_address;
}
// --------------------
// Change the zsToken address
// --------------------
function startChangeZSToken(address _address) external onlyGovernance {
_timelockStart = now;
_timelockType = 5;
_timelock_address = _address;
}
function finishChangeZSToken() external onlyGovernance timelockConditionsMet(5) {
zsTokenAddress = _timelock_address;
}
// --------------------
// Change the percent going to stakers for WETH
// --------------------
function startChangeStakersPercent(uint256 _percent) external onlyGovernance {
require(_percent <= 100000,"Percent cannot be greater than 100%");
_timelockStart = now;
_timelockType = 6;
_timelock_data_1 = _percent;
}
function finishChangeStakersPercent() external onlyGovernance timelockConditionsMet(6) {
percentStakers = _timelock_data_1;
}
// --------------------
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_treasury","type":"address"},{"internalType":"address","name":"_staking","type":"address"},{"internalType":"address","name":"_zsToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"GovernanceTransferred","type":"event"},{"inputs":[],"name":"averageDepositTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_depositor","type":"address"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"exit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finishChangeDepositorPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finishChangeStakersPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finishChangeStakingPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finishChangeTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finishChangeZSToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finishGovernanceChange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentLPDepositor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentStakers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pricePerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pos","type":"uint256"}],"name":"rewardTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardTokensCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percent","type":"uint256"}],"name":"startChangeDepositorPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percent","type":"uint256"}],"name":"startChangeStakersPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"startChangeStakingPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"startChangeTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"startChangeZSToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"startGovernanceChange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalDepositors","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_depositor","type":"address"},{"internalType":"uint256","name":"_share","type":"uint256"},{"internalType":"uint256","name":"_total","type":"uint256"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"zsTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
608060405261c35060045561c350600555600060085560006009556000600a556000600b553480156200003157600080fd5b5060405162002ef238038062002ef2833981810160405260608110156200005757600080fd5b508051602082015160409092015190919060006200007d6001600160e01b036200012016565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce80908290a350600180546001600160a01b038086166001600160a01b031992831617909255600280548584169083161790556003805492841692909116919091179055620001176001600160e01b036200012416565b505050620001cc565b3390565b600680546001818101835560008390527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f91820180546001600160a01b0319908116730d4a11d5eeaac28ec3f61d100daf4d40471f1852179091558354808301855583018054821673429881672b9ae42b8eba0e26cd9c73711b891ca5179055835491820190935501805490911673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2179055565b612d1680620001dc6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063b69ef8a8116100f9578063d822979f11610097578063f03bcd8e11610071578063f03bcd8e1461035e578063f340fa0114610384578063f3af9c53146103aa578063f8008776146103b2576101c4565b8063d822979f14610346578063e97dcb621461034e578063e9fad8ee14610356576101c4565b8063bd6557b4116100d3578063bd6557b414610326578063c5f956af1461032e578063d5344f7914610336578063d7b4be241461033e576101c4565b8063b69ef8a81461030e578063b919507214610316578063ba49848b1461031e576101c4565b80636dbc132a11610166578063849381c111610140578063849381c1146102c457806387f61c81146102cc578063a7e712ce146102d4578063b5c5f672146102dc576101c4565b80636dbc132a146102ac578063780d9d2d146102b45780637b1b1de6146102bc576101c4565b80634e3b4f32116101a25780634e3b4f321461023157806354047e351461024e5780635930a0a11461026b5780635aa6e675146102a4576101c4565b806314aabd01146101c95780633babade2146101f1578063418f312814610217575b600080fd5b6101ef600480360360208110156101df57600080fd5b50356001600160a01b03166103d8565b005b6101ef6004803603602081101561020757600080fd5b50356001600160a01b031661045b565b61021f6104de565b60408051918252519081900360200190f35b6101ef6004803603602081101561024757600080fd5b50356104e4565b6101ef6004803603602081101561026457600080fd5b503561058c565b6102886004803603602081101561028157600080fd5b5035610634565b604080516001600160a01b039092168252519081900360200190f35b6102886106b5565b6102886106c4565b61021f6106d3565b61021f6106d9565b61021f610759565b6101ef61075f565b6101ef61087f565b61021f600480360360608110156102f257600080fd5b506001600160a01b03813516906020810135906040013561099f565b61021f610e7b565b6101ef610e81565b6101ef610f94565b61021f6110b4565b6102886110ba565b61021f6110c9565b6102886110cf565b6101ef6110de565b6101ef6111e2565b6101ef61124c565b6101ef6004803603602081101561037457600080fd5b50356001600160a01b03166112b7565b6101ef6004803603602081101561039a57600080fd5b50356001600160a01b031661133a565b6101ef61173e565b6101ef600480360360208110156103c857600080fd5b50356001600160a01b0316611842565b6103e06118c5565b6000546001600160a01b03908116911614610430576040805162461bcd60e51b81526020600482018190526024820152600080516020612c17833981519152604482015290519081900360640190fd5b42600c556004600d55600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6104636118c5565b6000546001600160a01b039081169116146104b3576040805162461bcd60e51b81526020600482018190526024820152600080516020612c17833981519152604482015290519081900360640190fd5b42600c556005600d55600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60085481565b6104ec6118c5565b6000546001600160a01b0390811691161461053c576040805162461bcd60e51b81526020600482018190526024820152600080516020612c17833981519152604482015290519081900360640190fd5b620186a081111561057e5760405162461bcd60e51b8152600401808060200182810382526023815260200180612c376023913960400191505060405180910390fd5b42600c556006600d55600f55565b6105946118c5565b6000546001600160a01b039081169116146105e4576040805162461bcd60e51b81526020600482018190526024820152600080516020612c17833981519152604482015290519081900360640190fd5b620186a08111156106265760405162461bcd60e51b8152600401808060200182810382526023815260200180612c376023913960400191505060405180910390fd5b42600c556003600d55600f55565b600654600090821061068d576040805162461bcd60e51b815260206004820152601960248201527f4e6f20746f6b656e206174207468617420706f736974696f6e00000000000000604482015290519081900360640190fd5b6006828154811061069a57fe5b6000918252602090912001546001600160a01b031692915050565b6000546001600160a01b031690565b6003546001600160a01b031681565b60065490565b60007309fc573c502037b149ba87782acc81cf093ec6ef6001600160a01b031663ec1ebd7a6040518163ffffffff1660e01b815260040160206040518083038186803b15801561072857600080fd5b505afa15801561073c573d6000803e3d6000fd5b505050506040513d602081101561075257600080fd5b5051905090565b60045481565b6107676118c5565b6000546001600160a01b039081169116146107b7576040805162461bcd60e51b81526020600482018190526024820152600080516020612c17833981519152604482015290519081900360640190fd5b600480600d54146107f95760405162461bcd60e51b8152600401808060200182810382526027815260200180612b826027913960400191505060405180910390fd5b6000600d55600a541561085a5762015180600c540142101561085a576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b50600e54600280546001600160a01b0319166001600160a01b03909216919091179055565b6108876118c5565b6000546001600160a01b039081169116146108d7576040805162461bcd60e51b81526020600482018190526024820152600080516020612c17833981519152604482015290519081900360640190fd5b600580600d54146109195760405162461bcd60e51b8152600401808060200182810382526027815260200180612b826027913960400191505060405180910390fd5b6000600d55600a541561097a5762015180600c540142101561097a576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b50600e54600380546001600160a01b0319166001600160a01b03909216919091179055565b60006109a96118c5565b6003546001600160a01b039081169116146109f9576040805162461bcd60e51b815260206004820152601f6024820152600080516020612bf7833981519152604482015290519081900360640190fd5b6000600a5411610a3a5760405162461bcd60e51b8152600401808060200182810382526027815260200180612cba6027913960400191505060405180910390fd5b610a426118c9565b600083831415610a50575060015b600a5481610a8457610a7d84610a7187600a54611c0190919063ffffffff16565b9063ffffffff611c6316565b9050610b0c565b604080516393f1a40b60e01b8152600c6004820152306024820152815173bd17b1ce622d73bd438b9e658aca5996dc394b0d926393f1a40b9260448082019391829003018186803b158015610ad857600080fd5b505afa158015610aec573d6000803e3d6000fd5b505050506040513d6040811015610b0257600080fd5b5051600a81905590505b600a54610b1f908263ffffffff611ca516565b600a5560408051630441a3e760e41b8152600c600482015260248101839052905173bd17b1ce622d73bd438b9e658aca5996dc394b0d9163441a3e7091604480830192600092919082900301818387803b158015610b7c57600080fd5b505af1158015610b90573d6000803e3d6000fd5b5050505060006006600081548110610ba457fe5b60009182526020822001546001600160a01b0316915083610d3057604080516370a0823160e01b815230600482015290516000916001600160a01b038516916370a0823191602480820192602092909190829003018186803b158015610c0957600080fd5b505afa158015610c1d573d6000803e3d6000fd5b505050506040513d6020811015610c3357600080fd5b505160408051632e1a7d4d60e01b81526004810187905290519192507309fc573c502037b149ba87782acc81cf093ec6ef91632e1a7d4d9160248082019260009290919082900301818387803b158015610c8c57600080fd5b505af1158015610ca0573d6000803e3d6000fd5b5050604080516370a0823160e01b81523060048201529051610d2893508492506001600160a01b038716916370a08231916024808301926020929190829003018186803b158015610cf057600080fd5b505afa158015610d04573d6000803e3d6000fd5b505050506040513d6020811015610d1a57600080fd5b50519063ffffffff611ca516565b915050610e0c565b7309fc573c502037b149ba87782acc81cf093ec6ef6001600160a01b031663853828b66040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610d7f57600080fd5b505af1158015610d93573d6000803e3d6000fd5b5050604080516370a0823160e01b815230600482015290516001600160a01b03861693506370a0823192506024808301926020929190829003018186803b158015610ddd57600080fd5b505afa158015610df1573d6000803e3d6000fd5b505050506040513d6020811015610e0757600080fd5b505190505b60008111610e4b5760405162461bcd60e51b8152600401808060200182810382526026815260200180612b5c6026913960400191505060405180910390fd5b610e56888888611ce7565b610e706001600160a01b038316898363ffffffff6123af16565b979650505050505050565b600a5490565b610e896118c5565b6000546001600160a01b03908116911614610ed9576040805162461bcd60e51b81526020600482018190526024820152600080516020612c17833981519152604482015290519081900360640190fd5b600180600d5414610f1b5760405162461bcd60e51b8152600401808060200182810382526027815260200180612b826027913960400191505060405180910390fd5b6000600d55600a5415610f7c5762015180600c5401421015610f7c576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b600e54610f91906001600160a01b0316612406565b50565b610f9c6118c5565b6000546001600160a01b03908116911614610fec576040805162461bcd60e51b81526020600482018190526024820152600080516020612c17833981519152604482015290519081900360640190fd5b600280600d541461102e5760405162461bcd60e51b8152600401808060200182810382526027815260200180612b826027913960400191505060405180910390fd5b6000600d55600a541561108f5762015180600c540142101561108f576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b50600e54600180546001600160a01b0319166001600160a01b03909216919091179055565b60095481565b6001546001600160a01b031681565b60055481565b6002546001600160a01b031681565b6110e66118c5565b6000546001600160a01b03908116911614611136576040805162461bcd60e51b81526020600482018190526024820152600080516020612c17833981519152604482015290519081900360640190fd5b600680600d54146111785760405162461bcd60e51b8152600401808060200182810382526027815260200180612b826027913960400191505060405180910390fd5b6000600d55600a54156111d95762015180600c54014210156111d9576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b50600f54600555565b6111ea6118c5565b6003546001600160a01b0390811691161461123a576040805162461bcd60e51b815260206004820152601f6024820152600080516020612bf7833981519152604482015290519081900360640190fd5b61124a6112456118c5565b61133a565b565b6112546118c5565b6003546001600160a01b039081169116146112a4576040805162461bcd60e51b815260206004820152601f6024820152600080516020612bf7833981519152604482015290519081900360640190fd5b610f916112af6118c5565b60018061099f565b6112bf6118c5565b6000546001600160a01b0390811691161461130f576040805162461bcd60e51b81526020600482018190526024820152600080516020612c17833981519152604482015290519081900360640190fd5b42600c556002600d55600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6113426118c5565b6003546001600160a01b03908116911614611392576040805162461bcd60e51b815260206004820152601f6024820152600080516020612bf7833981519152604482015290519081900360640190fd5b6003546001600160a01b0382811691161461148d576001600160a01b038116600090815260076020526040902054611423576008805460019081019182905514156113e0574260095561141e565b60085461141a90610a714261140e6113ff84600163ffffffff611ca516565b6009549063ffffffff611c0116565b9063ffffffff6124fe16565b6009555b611471565b6008546001600160a01b03821660009081526007602052604090205460095461146d9291610a7191429161140e91611461908663ffffffff611c0116565b9063ffffffff611ca516565b6009555b6001600160a01b03811660009081526007602052604090204290555b6000600660008154811061149d57fe5b6000918252602080832090910154604080516370a0823160e01b815230600482015290516001600160a01b03909216945084926370a0823192602480840193829003018186803b1580156114f057600080fd5b505afa158015611504573d6000803e3d6000fd5b505050506040513d602081101561151a57600080fd5b5051905061154c6001600160a01b0383167309fc573c502037b149ba87782acc81cf093ec6ef8363ffffffff61255816565b7309fc573c502037b149ba87782acc81cf093ec6ef6001600160a01b031663b6b55f25826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156115a657600080fd5b505af11580156115ba573d6000803e3d6000fd5b5050604080516370a0823160e01b815230600482015290517309fc573c502037b149ba87782acc81cf093ec6ef93506000925083916370a08231916024808301926020929190829003018186803b15801561161457600080fd5b505afa158015611628573d6000803e3d6000fd5b505050506040513d602081101561163e57600080fd5b505190508061167e5760405162461bcd60e51b8152600401808060200182810382526029815260200180612b0d6029913960400191505060405180910390fd5b6116ac6001600160a01b03831673bd17b1ce622d73bd438b9e658aca5996dc394b0d8363ffffffff61255816565b60408051631c57762b60e31b8152600c600482015260248101839052905173bd17b1ce622d73bd438b9e658aca5996dc394b0d9163e2bbb15891604480830192600092919082900301818387803b15801561170657600080fd5b505af115801561171a573d6000803e3d6000fd5b5050600a8054840190555061172f905061266b565b6117376118c9565b5050505050565b6117466118c5565b6000546001600160a01b03908116911614611796576040805162461bcd60e51b81526020600482018190526024820152600080516020612c17833981519152604482015290519081900360640190fd5b600380600d54146117d85760405162461bcd60e51b8152600401808060200182810382526027815260200180612b826027913960400191505060405180910390fd5b6000600d55600a54156118395762015180600c5401421015611839576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b50600f54600455565b61184a6118c5565b6000546001600160a01b0390811691161461189a576040805162461bcd60e51b81526020600482018190526024820152600080516020612c17833981519152604482015290519081900360640190fd5b42600c556001600d55600e80546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b604080516246613160e11b8152306004820152905160009173a17a8883da1abd57c690df9ebf58fc194edab66f91628cc26291602480820192602092909190829003018186803b15801561191c57600080fd5b505afa158015611930573d6000803e3d6000fd5b505050506040513d602081101561194657600080fd5b50519050633b9aca00811115610f9157604080516370a0823160e01b8152306004820152905173c02aaa39b223fe8d0a0e5c4f27ead9083c756cc29160009183916370a08231916024808301926020929190829003018186803b1580156119ac57600080fd5b505afa1580156119c0573d6000803e3d6000fd5b505050506040513d60208110156119d657600080fd5b505160408051631e8c5c8960e11b8152905191925073a17a8883da1abd57c690df9ebf58fc194edab66f91633d18b9129160048082019260009290919082900301818387803b158015611a2857600080fd5b505af1158015611a3c573d6000803e3d6000fd5b505050506000611a9c82846001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b158015610cf057600080fd5b905060008111611add5760405162461bcd60e51b815260040180806020018281038252602d815260200180612bca602d913960400191505060405180910390fd5b6000611afb620186a0610a7160045485611c0190919063ffffffff16565b90506000611b0f838363ffffffff611ca516565b90506000611b2f620186a0610a7160055485611c0190919063ffffffff16565b90506000611b43838363ffffffff611ca516565b90508015611b6b57600154611b6b906001600160a01b0389811691168363ffffffff6123af16565b8115611bf757600254611b91906001600160a01b0389811691168463ffffffff6123af16565b60025460408051633c6b16ab60e01b81526004810185905290516001600160a01b0390921691633c6b16ab9160248082019260009290919082900301818387803b158015611bde57600080fd5b505af1158015611bf2573d6000803e3d6000fd5b505050505b5050505050505050565b600082611c1057506000611c5d565b82820282848281611c1d57fe5b0414611c5a5760405162461bcd60e51b8152600401808060200182810382526021815260200180612ba96021913960400191505060405180910390fd5b90505b92915050565b6000611c5a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506127a2565b6000611c5a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612844565b600082821415611cf5575060015b806120b2576001600160a01b0384166000908152600760205260409020544290611d35576001600160a01b03851660009081526007602052604090204290555b6001600160a01b038516600090815260076020526040812054611d5f90839063ffffffff611ca516565b90506000611d7860095484611ca590919063ffffffff16565b9050600081831115611d8e5750620186a0611db6565b8115611db257611dab82610a7185620186a063ffffffff611c0116565b9050611db6565b5060005b604080516370a0823160e01b8152306004820152905173429881672b9ae42b8eba0e26cd9c73711b891ca59160009183916370a08231916024808301926020929190829003018186803b158015611e0c57600080fd5b505afa158015611e20573d6000803e3d6000fd5b505050506040513d6020811015611e3657600080fd5b5051600b54909150600090611e6a908a90610a71908d90611e5e90879063ffffffff6124fe16565b9063ffffffff611c0116565b9050611e83620186a0610a71838763ffffffff611c0116565b905081811115611f25576000611e9f828463ffffffff611ca516565b600b54909150611eb5908263ffffffff611ca516565b600b5560408051632e1a7d4d60e01b815260048101839052905173a17a8883da1abd57c690df9ebf58fc194edab66f91632e1a7d4d91602480830192600092919082900301818387803b158015611f0b57600080fd5b505af1158015611f1f573d6000803e3d6000fd5b50505050505b8015611f4557611f456001600160a01b0384168c8363ffffffff6123af16565b604080516370a0823160e01b8152306004820152905173c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2945084916370a08231916024808301926020929190829003018186803b158015611f9957600080fd5b505afa158015611fad573d6000803e3d6000fd5b505050506040513d6020811015611fc357600080fd5b50519150611fdb89610a71848d63ffffffff611c0116565b9050611ff4620186a0610a71838763ffffffff611c0116565b905080156120a65773c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b0316632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561205657600080fd5b505af115801561206a573d6000803e3d6000fd5b50506040516001600160a01b038e16925083156108fc02915083906000818181858888f193505050501580156120a4573d6000803e3d6000fd5b505b505050505050506123a9565b600b54156121275773a17a8883da1abd57c690df9ebf58fc194edab66f6001600160a01b031663e9fad8ee6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561210957600080fd5b505af115801561211d573d6000803e3d6000fd5b50506000600b5550505b604080516370a0823160e01b8152306004820152905173429881672b9ae42b8eba0e26cd9c73711b891ca59160009183916370a08231916024808301926020929190829003018186803b15801561217d57600080fd5b505afa158015612191573d6000803e3d6000fd5b505050506040513d60208110156121a757600080fd5b5051111561223e57604080516370a0823160e01b8152306004820152905161223e9187916001600160a01b038516916370a08231916024808301926020929190829003018186803b1580156121fb57600080fd5b505afa15801561220f573d6000803e3d6000fd5b505050506040513d602081101561222557600080fd5b50516001600160a01b038416919063ffffffff6123af16565b50604080516370a0823160e01b8152306004820152905173c02aaa39b223fe8d0a0e5c4f27ead9083c756cc29160009183916370a08231916024808301926020929190829003018186803b15801561229557600080fd5b505afa1580156122a9573d6000803e3d6000fd5b505050506040513d60208110156122bf57600080fd5b5051905080156123a6576003546001600160a01b0387811691161461238c5773c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b0316632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561233857600080fd5b505af115801561234c573d6000803e3d6000fd5b50506040516001600160a01b038916925083156108fc02915083906000818181858888f19350505050158015612386573d6000803e3d6000fd5b506123a6565b6123a66001600160a01b038316878363ffffffff6123af16565b50505b50505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261240190849061289e565b505050565b61240e6118c5565b6000546001600160a01b0390811691161461245e576040805162461bcd60e51b81526020600482018190526024820152600080516020612c17833981519152604482015290519081900360640190fd5b6001600160a01b0381166124a35760405162461bcd60e51b8152600401808060200182810382526026815260200180612b366026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce8091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015611c5a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b8015806125de575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b1580156125b057600080fd5b505afa1580156125c4573d6000803e3d6000fd5b505050506040513d60208110156125da57600080fd5b5051155b6126195760405162461bcd60e51b8152600401808060200182810382526036815260200180612c846036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b17905261240190849061289e565b604080516370a0823160e01b8152306004820152905173429881672b9ae42b8eba0e26cd9c73711b891ca59160009183916370a08231916024808301926020929190829003018186803b1580156126c157600080fd5b505afa1580156126d5573d6000803e3d6000fd5b505050506040513d60208110156126eb57600080fd5b50519050801561279e576127236001600160a01b03831673a17a8883da1abd57c690df9ebf58fc194edab66f8363ffffffff61255816565b73a17a8883da1abd57c690df9ebf58fc194edab66f6001600160a01b031663a694fc3a826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561277d57600080fd5b505af1158015612791573d6000803e3d6000fd5b5050600b80548401905550505b5050565b6000818361282e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156127f35781810151838201526020016127db565b50505050905090810190601f1680156128205780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161283a57fe5b0495945050505050565b600081848411156128965760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156127f35781810151838201526020016127db565b505050900390565b60606128f3826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661294f9092919063ffffffff16565b8051909150156124015780806020019051602081101561291257600080fd5b50516124015760405162461bcd60e51b815260040180806020018281038252602a815260200180612c5a602a913960400191505060405180910390fd5b606061295e8484600085612966565b949350505050565b606061297185612ad3565b6129c2576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310612a015780518252601f1990920191602091820191016129e2565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612a63576040519150601f19603f3d011682016040523d82523d6000602084013e612a68565b606091505b50915091508115612a7c57915061295e9050565b805115612a8c5780518082602001fd5b60405162461bcd60e51b81526020600482018181528651602484015286518793919283926044019190850190808383600083156127f35781810151838201526020016127db565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061295e57505015159291505056fe4661696c656420746f206765742070546f6b656e732066726f6d20746865205069636b6c65204a61724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734661696c656420746f2077697468647261772066726f6d20746865205069636b6c65204a617254696d656c6f636b206e6f7420616371756972656420666f7220746869732066756e6374696f6e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775069636b6c65207374616b696e672073686f756c6420686176652072657475726e656420736f6d65205745544843616c6c206e6f742073656e742066726f6d20746865207a732d546f6b656e004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657250657263656e742063616e6e6f742062652067726561746572207468616e20313030255361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365546865726520617265206e6f204c5020746f6b656e7320696e2074686973207374726174656779a2646970667358221220e247fbf11bedffceb40d111396d01dc2769e7e09c7c9c9efb066546c91a3beaa64736f6c6343000606003300000000000000000000000042cbe17335ef8d52f8d1e0a261ea2e78e829c56e0000000000000000000000008c17be13e034f7fa2a6496bc83b6010be6305204000000000000000000000000b81cb6016c50e674dfa7e4c41bb0c5194fe05ca1
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c8063b69ef8a8116100f9578063d822979f11610097578063f03bcd8e11610071578063f03bcd8e1461035e578063f340fa0114610384578063f3af9c53146103aa578063f8008776146103b2576101c4565b8063d822979f14610346578063e97dcb621461034e578063e9fad8ee14610356576101c4565b8063bd6557b4116100d3578063bd6557b414610326578063c5f956af1461032e578063d5344f7914610336578063d7b4be241461033e576101c4565b8063b69ef8a81461030e578063b919507214610316578063ba49848b1461031e576101c4565b80636dbc132a11610166578063849381c111610140578063849381c1146102c457806387f61c81146102cc578063a7e712ce146102d4578063b5c5f672146102dc576101c4565b80636dbc132a146102ac578063780d9d2d146102b45780637b1b1de6146102bc576101c4565b80634e3b4f32116101a25780634e3b4f321461023157806354047e351461024e5780635930a0a11461026b5780635aa6e675146102a4576101c4565b806314aabd01146101c95780633babade2146101f1578063418f312814610217575b600080fd5b6101ef600480360360208110156101df57600080fd5b50356001600160a01b03166103d8565b005b6101ef6004803603602081101561020757600080fd5b50356001600160a01b031661045b565b61021f6104de565b60408051918252519081900360200190f35b6101ef6004803603602081101561024757600080fd5b50356104e4565b6101ef6004803603602081101561026457600080fd5b503561058c565b6102886004803603602081101561028157600080fd5b5035610634565b604080516001600160a01b039092168252519081900360200190f35b6102886106b5565b6102886106c4565b61021f6106d3565b61021f6106d9565b61021f610759565b6101ef61075f565b6101ef61087f565b61021f600480360360608110156102f257600080fd5b506001600160a01b03813516906020810135906040013561099f565b61021f610e7b565b6101ef610e81565b6101ef610f94565b61021f6110b4565b6102886110ba565b61021f6110c9565b6102886110cf565b6101ef6110de565b6101ef6111e2565b6101ef61124c565b6101ef6004803603602081101561037457600080fd5b50356001600160a01b03166112b7565b6101ef6004803603602081101561039a57600080fd5b50356001600160a01b031661133a565b6101ef61173e565b6101ef600480360360208110156103c857600080fd5b50356001600160a01b0316611842565b6103e06118c5565b6000546001600160a01b03908116911614610430576040805162461bcd60e51b81526020600482018190526024820152600080516020612c17833981519152604482015290519081900360640190fd5b42600c556004600d55600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6104636118c5565b6000546001600160a01b039081169116146104b3576040805162461bcd60e51b81526020600482018190526024820152600080516020612c17833981519152604482015290519081900360640190fd5b42600c556005600d55600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60085481565b6104ec6118c5565b6000546001600160a01b0390811691161461053c576040805162461bcd60e51b81526020600482018190526024820152600080516020612c17833981519152604482015290519081900360640190fd5b620186a081111561057e5760405162461bcd60e51b8152600401808060200182810382526023815260200180612c376023913960400191505060405180910390fd5b42600c556006600d55600f55565b6105946118c5565b6000546001600160a01b039081169116146105e4576040805162461bcd60e51b81526020600482018190526024820152600080516020612c17833981519152604482015290519081900360640190fd5b620186a08111156106265760405162461bcd60e51b8152600401808060200182810382526023815260200180612c376023913960400191505060405180910390fd5b42600c556003600d55600f55565b600654600090821061068d576040805162461bcd60e51b815260206004820152601960248201527f4e6f20746f6b656e206174207468617420706f736974696f6e00000000000000604482015290519081900360640190fd5b6006828154811061069a57fe5b6000918252602090912001546001600160a01b031692915050565b6000546001600160a01b031690565b6003546001600160a01b031681565b60065490565b60007309fc573c502037b149ba87782acc81cf093ec6ef6001600160a01b031663ec1ebd7a6040518163ffffffff1660e01b815260040160206040518083038186803b15801561072857600080fd5b505afa15801561073c573d6000803e3d6000fd5b505050506040513d602081101561075257600080fd5b5051905090565b60045481565b6107676118c5565b6000546001600160a01b039081169116146107b7576040805162461bcd60e51b81526020600482018190526024820152600080516020612c17833981519152604482015290519081900360640190fd5b600480600d54146107f95760405162461bcd60e51b8152600401808060200182810382526027815260200180612b826027913960400191505060405180910390fd5b6000600d55600a541561085a5762015180600c540142101561085a576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b50600e54600280546001600160a01b0319166001600160a01b03909216919091179055565b6108876118c5565b6000546001600160a01b039081169116146108d7576040805162461bcd60e51b81526020600482018190526024820152600080516020612c17833981519152604482015290519081900360640190fd5b600580600d54146109195760405162461bcd60e51b8152600401808060200182810382526027815260200180612b826027913960400191505060405180910390fd5b6000600d55600a541561097a5762015180600c540142101561097a576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b50600e54600380546001600160a01b0319166001600160a01b03909216919091179055565b60006109a96118c5565b6003546001600160a01b039081169116146109f9576040805162461bcd60e51b815260206004820152601f6024820152600080516020612bf7833981519152604482015290519081900360640190fd5b6000600a5411610a3a5760405162461bcd60e51b8152600401808060200182810382526027815260200180612cba6027913960400191505060405180910390fd5b610a426118c9565b600083831415610a50575060015b600a5481610a8457610a7d84610a7187600a54611c0190919063ffffffff16565b9063ffffffff611c6316565b9050610b0c565b604080516393f1a40b60e01b8152600c6004820152306024820152815173bd17b1ce622d73bd438b9e658aca5996dc394b0d926393f1a40b9260448082019391829003018186803b158015610ad857600080fd5b505afa158015610aec573d6000803e3d6000fd5b505050506040513d6040811015610b0257600080fd5b5051600a81905590505b600a54610b1f908263ffffffff611ca516565b600a5560408051630441a3e760e41b8152600c600482015260248101839052905173bd17b1ce622d73bd438b9e658aca5996dc394b0d9163441a3e7091604480830192600092919082900301818387803b158015610b7c57600080fd5b505af1158015610b90573d6000803e3d6000fd5b5050505060006006600081548110610ba457fe5b60009182526020822001546001600160a01b0316915083610d3057604080516370a0823160e01b815230600482015290516000916001600160a01b038516916370a0823191602480820192602092909190829003018186803b158015610c0957600080fd5b505afa158015610c1d573d6000803e3d6000fd5b505050506040513d6020811015610c3357600080fd5b505160408051632e1a7d4d60e01b81526004810187905290519192507309fc573c502037b149ba87782acc81cf093ec6ef91632e1a7d4d9160248082019260009290919082900301818387803b158015610c8c57600080fd5b505af1158015610ca0573d6000803e3d6000fd5b5050604080516370a0823160e01b81523060048201529051610d2893508492506001600160a01b038716916370a08231916024808301926020929190829003018186803b158015610cf057600080fd5b505afa158015610d04573d6000803e3d6000fd5b505050506040513d6020811015610d1a57600080fd5b50519063ffffffff611ca516565b915050610e0c565b7309fc573c502037b149ba87782acc81cf093ec6ef6001600160a01b031663853828b66040518163ffffffff1660e01b8152600401600060405180830381600087803b158015610d7f57600080fd5b505af1158015610d93573d6000803e3d6000fd5b5050604080516370a0823160e01b815230600482015290516001600160a01b03861693506370a0823192506024808301926020929190829003018186803b158015610ddd57600080fd5b505afa158015610df1573d6000803e3d6000fd5b505050506040513d6020811015610e0757600080fd5b505190505b60008111610e4b5760405162461bcd60e51b8152600401808060200182810382526026815260200180612b5c6026913960400191505060405180910390fd5b610e56888888611ce7565b610e706001600160a01b038316898363ffffffff6123af16565b979650505050505050565b600a5490565b610e896118c5565b6000546001600160a01b03908116911614610ed9576040805162461bcd60e51b81526020600482018190526024820152600080516020612c17833981519152604482015290519081900360640190fd5b600180600d5414610f1b5760405162461bcd60e51b8152600401808060200182810382526027815260200180612b826027913960400191505060405180910390fd5b6000600d55600a5415610f7c5762015180600c5401421015610f7c576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b600e54610f91906001600160a01b0316612406565b50565b610f9c6118c5565b6000546001600160a01b03908116911614610fec576040805162461bcd60e51b81526020600482018190526024820152600080516020612c17833981519152604482015290519081900360640190fd5b600280600d541461102e5760405162461bcd60e51b8152600401808060200182810382526027815260200180612b826027913960400191505060405180910390fd5b6000600d55600a541561108f5762015180600c540142101561108f576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b50600e54600180546001600160a01b0319166001600160a01b03909216919091179055565b60095481565b6001546001600160a01b031681565b60055481565b6002546001600160a01b031681565b6110e66118c5565b6000546001600160a01b03908116911614611136576040805162461bcd60e51b81526020600482018190526024820152600080516020612c17833981519152604482015290519081900360640190fd5b600680600d54146111785760405162461bcd60e51b8152600401808060200182810382526027815260200180612b826027913960400191505060405180910390fd5b6000600d55600a54156111d95762015180600c54014210156111d9576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b50600f54600555565b6111ea6118c5565b6003546001600160a01b0390811691161461123a576040805162461bcd60e51b815260206004820152601f6024820152600080516020612bf7833981519152604482015290519081900360640190fd5b61124a6112456118c5565b61133a565b565b6112546118c5565b6003546001600160a01b039081169116146112a4576040805162461bcd60e51b815260206004820152601f6024820152600080516020612bf7833981519152604482015290519081900360640190fd5b610f916112af6118c5565b60018061099f565b6112bf6118c5565b6000546001600160a01b0390811691161461130f576040805162461bcd60e51b81526020600482018190526024820152600080516020612c17833981519152604482015290519081900360640190fd5b42600c556002600d55600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6113426118c5565b6003546001600160a01b03908116911614611392576040805162461bcd60e51b815260206004820152601f6024820152600080516020612bf7833981519152604482015290519081900360640190fd5b6003546001600160a01b0382811691161461148d576001600160a01b038116600090815260076020526040902054611423576008805460019081019182905514156113e0574260095561141e565b60085461141a90610a714261140e6113ff84600163ffffffff611ca516565b6009549063ffffffff611c0116565b9063ffffffff6124fe16565b6009555b611471565b6008546001600160a01b03821660009081526007602052604090205460095461146d9291610a7191429161140e91611461908663ffffffff611c0116565b9063ffffffff611ca516565b6009555b6001600160a01b03811660009081526007602052604090204290555b6000600660008154811061149d57fe5b6000918252602080832090910154604080516370a0823160e01b815230600482015290516001600160a01b03909216945084926370a0823192602480840193829003018186803b1580156114f057600080fd5b505afa158015611504573d6000803e3d6000fd5b505050506040513d602081101561151a57600080fd5b5051905061154c6001600160a01b0383167309fc573c502037b149ba87782acc81cf093ec6ef8363ffffffff61255816565b7309fc573c502037b149ba87782acc81cf093ec6ef6001600160a01b031663b6b55f25826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156115a657600080fd5b505af11580156115ba573d6000803e3d6000fd5b5050604080516370a0823160e01b815230600482015290517309fc573c502037b149ba87782acc81cf093ec6ef93506000925083916370a08231916024808301926020929190829003018186803b15801561161457600080fd5b505afa158015611628573d6000803e3d6000fd5b505050506040513d602081101561163e57600080fd5b505190508061167e5760405162461bcd60e51b8152600401808060200182810382526029815260200180612b0d6029913960400191505060405180910390fd5b6116ac6001600160a01b03831673bd17b1ce622d73bd438b9e658aca5996dc394b0d8363ffffffff61255816565b60408051631c57762b60e31b8152600c600482015260248101839052905173bd17b1ce622d73bd438b9e658aca5996dc394b0d9163e2bbb15891604480830192600092919082900301818387803b15801561170657600080fd5b505af115801561171a573d6000803e3d6000fd5b5050600a8054840190555061172f905061266b565b6117376118c9565b5050505050565b6117466118c5565b6000546001600160a01b03908116911614611796576040805162461bcd60e51b81526020600482018190526024820152600080516020612c17833981519152604482015290519081900360640190fd5b600380600d54146117d85760405162461bcd60e51b8152600401808060200182810382526027815260200180612b826027913960400191505060405180910390fd5b6000600d55600a54156118395762015180600c5401421015611839576040805162461bcd60e51b8152602060048201526015602482015274151a5b595b1bd8dac81d1a5b59481b9bdd081b595d605a1b604482015290519081900360640190fd5b50600f54600455565b61184a6118c5565b6000546001600160a01b0390811691161461189a576040805162461bcd60e51b81526020600482018190526024820152600080516020612c17833981519152604482015290519081900360640190fd5b42600c556001600d55600e80546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b604080516246613160e11b8152306004820152905160009173a17a8883da1abd57c690df9ebf58fc194edab66f91628cc26291602480820192602092909190829003018186803b15801561191c57600080fd5b505afa158015611930573d6000803e3d6000fd5b505050506040513d602081101561194657600080fd5b50519050633b9aca00811115610f9157604080516370a0823160e01b8152306004820152905173c02aaa39b223fe8d0a0e5c4f27ead9083c756cc29160009183916370a08231916024808301926020929190829003018186803b1580156119ac57600080fd5b505afa1580156119c0573d6000803e3d6000fd5b505050506040513d60208110156119d657600080fd5b505160408051631e8c5c8960e11b8152905191925073a17a8883da1abd57c690df9ebf58fc194edab66f91633d18b9129160048082019260009290919082900301818387803b158015611a2857600080fd5b505af1158015611a3c573d6000803e3d6000fd5b505050506000611a9c82846001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b158015610cf057600080fd5b905060008111611add5760405162461bcd60e51b815260040180806020018281038252602d815260200180612bca602d913960400191505060405180910390fd5b6000611afb620186a0610a7160045485611c0190919063ffffffff16565b90506000611b0f838363ffffffff611ca516565b90506000611b2f620186a0610a7160055485611c0190919063ffffffff16565b90506000611b43838363ffffffff611ca516565b90508015611b6b57600154611b6b906001600160a01b0389811691168363ffffffff6123af16565b8115611bf757600254611b91906001600160a01b0389811691168463ffffffff6123af16565b60025460408051633c6b16ab60e01b81526004810185905290516001600160a01b0390921691633c6b16ab9160248082019260009290919082900301818387803b158015611bde57600080fd5b505af1158015611bf2573d6000803e3d6000fd5b505050505b5050505050505050565b600082611c1057506000611c5d565b82820282848281611c1d57fe5b0414611c5a5760405162461bcd60e51b8152600401808060200182810382526021815260200180612ba96021913960400191505060405180910390fd5b90505b92915050565b6000611c5a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506127a2565b6000611c5a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612844565b600082821415611cf5575060015b806120b2576001600160a01b0384166000908152600760205260409020544290611d35576001600160a01b03851660009081526007602052604090204290555b6001600160a01b038516600090815260076020526040812054611d5f90839063ffffffff611ca516565b90506000611d7860095484611ca590919063ffffffff16565b9050600081831115611d8e5750620186a0611db6565b8115611db257611dab82610a7185620186a063ffffffff611c0116565b9050611db6565b5060005b604080516370a0823160e01b8152306004820152905173429881672b9ae42b8eba0e26cd9c73711b891ca59160009183916370a08231916024808301926020929190829003018186803b158015611e0c57600080fd5b505afa158015611e20573d6000803e3d6000fd5b505050506040513d6020811015611e3657600080fd5b5051600b54909150600090611e6a908a90610a71908d90611e5e90879063ffffffff6124fe16565b9063ffffffff611c0116565b9050611e83620186a0610a71838763ffffffff611c0116565b905081811115611f25576000611e9f828463ffffffff611ca516565b600b54909150611eb5908263ffffffff611ca516565b600b5560408051632e1a7d4d60e01b815260048101839052905173a17a8883da1abd57c690df9ebf58fc194edab66f91632e1a7d4d91602480830192600092919082900301818387803b158015611f0b57600080fd5b505af1158015611f1f573d6000803e3d6000fd5b50505050505b8015611f4557611f456001600160a01b0384168c8363ffffffff6123af16565b604080516370a0823160e01b8152306004820152905173c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2945084916370a08231916024808301926020929190829003018186803b158015611f9957600080fd5b505afa158015611fad573d6000803e3d6000fd5b505050506040513d6020811015611fc357600080fd5b50519150611fdb89610a71848d63ffffffff611c0116565b9050611ff4620186a0610a71838763ffffffff611c0116565b905080156120a65773c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b0316632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561205657600080fd5b505af115801561206a573d6000803e3d6000fd5b50506040516001600160a01b038e16925083156108fc02915083906000818181858888f193505050501580156120a4573d6000803e3d6000fd5b505b505050505050506123a9565b600b54156121275773a17a8883da1abd57c690df9ebf58fc194edab66f6001600160a01b031663e9fad8ee6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561210957600080fd5b505af115801561211d573d6000803e3d6000fd5b50506000600b5550505b604080516370a0823160e01b8152306004820152905173429881672b9ae42b8eba0e26cd9c73711b891ca59160009183916370a08231916024808301926020929190829003018186803b15801561217d57600080fd5b505afa158015612191573d6000803e3d6000fd5b505050506040513d60208110156121a757600080fd5b5051111561223e57604080516370a0823160e01b8152306004820152905161223e9187916001600160a01b038516916370a08231916024808301926020929190829003018186803b1580156121fb57600080fd5b505afa15801561220f573d6000803e3d6000fd5b505050506040513d602081101561222557600080fd5b50516001600160a01b038416919063ffffffff6123af16565b50604080516370a0823160e01b8152306004820152905173c02aaa39b223fe8d0a0e5c4f27ead9083c756cc29160009183916370a08231916024808301926020929190829003018186803b15801561229557600080fd5b505afa1580156122a9573d6000803e3d6000fd5b505050506040513d60208110156122bf57600080fd5b5051905080156123a6576003546001600160a01b0387811691161461238c5773c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b0316632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561233857600080fd5b505af115801561234c573d6000803e3d6000fd5b50506040516001600160a01b038916925083156108fc02915083906000818181858888f19350505050158015612386573d6000803e3d6000fd5b506123a6565b6123a66001600160a01b038316878363ffffffff6123af16565b50505b50505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261240190849061289e565b505050565b61240e6118c5565b6000546001600160a01b0390811691161461245e576040805162461bcd60e51b81526020600482018190526024820152600080516020612c17833981519152604482015290519081900360640190fd5b6001600160a01b0381166124a35760405162461bcd60e51b8152600401808060200182810382526026815260200180612b366026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f5f56bee8cffbe9a78652a74a60705edede02af10b0bbb888ca44b79a0d42ce8091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015611c5a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b8015806125de575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b1580156125b057600080fd5b505afa1580156125c4573d6000803e3d6000fd5b505050506040513d60208110156125da57600080fd5b5051155b6126195760405162461bcd60e51b8152600401808060200182810382526036815260200180612c846036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b17905261240190849061289e565b604080516370a0823160e01b8152306004820152905173429881672b9ae42b8eba0e26cd9c73711b891ca59160009183916370a08231916024808301926020929190829003018186803b1580156126c157600080fd5b505afa1580156126d5573d6000803e3d6000fd5b505050506040513d60208110156126eb57600080fd5b50519050801561279e576127236001600160a01b03831673a17a8883da1abd57c690df9ebf58fc194edab66f8363ffffffff61255816565b73a17a8883da1abd57c690df9ebf58fc194edab66f6001600160a01b031663a694fc3a826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561277d57600080fd5b505af1158015612791573d6000803e3d6000fd5b5050600b80548401905550505b5050565b6000818361282e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156127f35781810151838201526020016127db565b50505050905090810190601f1680156128205780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161283a57fe5b0495945050505050565b600081848411156128965760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156127f35781810151838201526020016127db565b505050900390565b60606128f3826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661294f9092919063ffffffff16565b8051909150156124015780806020019051602081101561291257600080fd5b50516124015760405162461bcd60e51b815260040180806020018281038252602a815260200180612c5a602a913960400191505060405180910390fd5b606061295e8484600085612966565b949350505050565b606061297185612ad3565b6129c2576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310612a015780518252601f1990920191602091820191016129e2565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114612a63576040519150601f19603f3d011682016040523d82523d6000602084013e612a68565b606091505b50915091508115612a7c57915061295e9050565b805115612a8c5780518082602001fd5b60405162461bcd60e51b81526020600482018181528651602484015286518793919283926044019190850190808383600083156127f35781810151838201526020016127db565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061295e57505015159291505056fe4661696c656420746f206765742070546f6b656e732066726f6d20746865205069636b6c65204a61724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734661696c656420746f2077697468647261772066726f6d20746865205069636b6c65204a617254696d656c6f636b206e6f7420616371756972656420666f7220746869732066756e6374696f6e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775069636b6c65207374616b696e672073686f756c6420686176652072657475726e656420736f6d65205745544843616c6c206e6f742073656e742066726f6d20746865207a732d546f6b656e004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657250657263656e742063616e6e6f742062652067726561746572207468616e20313030255361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365546865726520617265206e6f204c5020746f6b656e7320696e2074686973207374726174656779a2646970667358221220e247fbf11bedffceb40d111396d01dc2769e7e09c7c9c9efb066546c91a3beaa64736f6c63430006060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000042cbe17335ef8d52f8d1e0a261ea2e78e829c56e0000000000000000000000008c17be13e034f7fa2a6496bc83b6010be6305204000000000000000000000000b81cb6016c50e674dfa7e4c41bb0c5194fe05ca1
-----Decoded View---------------
Arg [0] : _treasury (address): 0x42Cbe17335ef8d52F8d1e0a261eA2e78E829C56e
Arg [1] : _staking (address): 0x8c17bE13e034f7fa2a6496bC83B6010be6305204
Arg [2] : _zsToken (address): 0xB81CB6016C50E674DFA7e4c41BB0c5194fe05CA1
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000042cbe17335ef8d52f8d1e0a261ea2e78e829c56e
Arg [1] : 0000000000000000000000008c17be13e034f7fa2a6496bc83b6010be6305204
Arg [2] : 000000000000000000000000b81cb6016c50e674dfa7e4c41bb0c5194fe05ca1
Deployed Bytecode Sourcemap
22718:18221:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;22718:18221:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;39620:180:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;39620:180:0;-1:-1:-1;;;;;39620:180:0;;:::i;:::-;;40054:176;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;40054:176:0;-1:-1:-1;;;;;40054:176:0;;:::i;23631:34::-;;;:::i;:::-;;;;;;;;;;;;;;;;40498:258;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;40498:258:0;;:::i;39098:260::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;39098:260:0;;:::i;25680:198::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;25680:198:0;;:::i;:::-;;;;-1:-1:-1;;;;;25680:198:0;;;;;;;;;;;;;;20314:89;;;:::i;23011:29::-;;;:::i;25559:109::-;;;:::i;25999:116::-;;;:::i;23143:41::-;;;:::i;39812:137::-;;;:::i;40242:133::-;;;:::i;26414:2190::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;26414:2190:0;;;;;;;;;;;;;:::i;25890:97::-;;;:::i;38403:139::-;;;:::i;38837:135::-;;;:::i;23709:37::-;;;:::i;22875:30::-;;;:::i;23274:37::-;;;:::i;22939:29::-;;;:::i;40768:139::-;;;:::i;26157:78::-;;;:::i;26247:155::-;;;:::i;38648:177::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;38648:177:0;-1:-1:-1;;;;;38648:177:0;;:::i;33006:2311::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;33006:2311:0;-1:-1:-1;;;;;33006:2311:0;;:::i;39370:145::-;;;:::i;38205:186::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;38205:186:0;-1:-1:-1;;;;;38205:186:0;;:::i;39620:180::-;20556:12;:10;:12::i;:::-;20541:11;;-1:-1:-1;;;;;20541:11:0;;;:27;;;20533:72;;;;;-1:-1:-1;;;20533:72:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20533:72:0;;;;;;;;;;;;;;;39722:3:::1;39705:14;:20:::0;39752:1:::1;39736:13;:17:::0;39764::::1;:28:::0;;-1:-1:-1;;;;;;39764:28:0::1;-1:-1:-1::0;;;;;39764:28:0;;;::::1;::::0;;;::::1;::::0;;39620:180::o;40054:176::-;20556:12;:10;:12::i;:::-;20541:11;;-1:-1:-1;;;;;20541:11:0;;;:27;;;20533:72;;;;;-1:-1:-1;;;20533:72:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20533:72:0;;;;;;;;;;;;;;;40152:3:::1;40135:14;:20:::0;40182:1:::1;40166:13;:17:::0;40194::::1;:28:::0;;-1:-1:-1;;;;;;40194:28:0::1;-1:-1:-1::0;;;;;40194:28:0;;;::::1;::::0;;;::::1;::::0;;40054:176::o;23631:34::-;;;;:::o;40498:258::-;20556:12;:10;:12::i;:::-;20541:11;;-1:-1:-1;;;;;20541:11:0;;;:27;;;20533:72;;;;;-1:-1:-1;;;20533:72:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20533:72:0;;;;;;;;;;;;;;;40606:6:::1;40594:8;:18;;40586:65;;;;-1:-1:-1::0;;;40586:65:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40679:3;40662:14;:20:::0;40709:1:::1;40693:13;:17:::0;40721:16:::1;:27:::0;40498:258::o;39098:260::-;20556:12;:10;:12::i;:::-;20541:11;;-1:-1:-1;;;;;20541:11:0;;;:27;;;20533:72;;;;;-1:-1:-1;;;20533:72:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20533:72:0;;;;;;;;;;;;;;;39208:6:::1;39196:8;:18;;39188:65;;;;-1:-1:-1::0;;;39188:65:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39281:3;39264:14;:20:::0;39311:1:::1;39295:13;:17:::0;39323:16:::1;:27:::0;39098:260::o;25680:198::-;25780:15;:22;25745:7;;25773:29;;25765:66;;;;;-1:-1:-1;;;25765:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25849:15;25865:4;25849:21;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25849:21:0;;25680:198;-1:-1:-1;;25680:198:0:o;20314:89::-;20357:7;20384:11;-1:-1:-1;;;;;20384:11:0;20314:89;:::o;23011:29::-;;;-1:-1:-1;;;;;23011:29:0;;:::o;25559:109::-;25638:15;:22;25559:109;:::o;25999:116::-;26047:7;24231:42;-1:-1:-1;;;;;26074:31:0;;:33;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;26074:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26074:33:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;26074:33:0;;-1:-1:-1;25999:116:0;:::o;23143:41::-;;;;:::o;39812:137::-;20556:12;:10;:12::i;:::-;20541:11;;-1:-1:-1;;;;;20541:11:0;;;:27;;;20533:72;;;;;-1:-1:-1;;;20533:72:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20533:72:0;;;;;;;;;;;;;;;39893:1:::1;37791:5;37774:13;;:22;37766:74;;;;-1:-1:-1::0;;;37766:74:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37867:1;37851:13;:17:::0;37926:20:::1;::::0;:24;37923:175:::1;;37546:5;38026:14;;:34;38019:3;:41;;38011:75;;;::::0;;-1:-1:-1;;;38011:75:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;38011:75:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;39924:17:0::2;::::0;39907:14:::2;:34:::0;;-1:-1:-1;;;;;;39907:34:0::2;-1:-1:-1::0;;;;;39924:17:0;;::::2;39907:34:::0;;;::::2;::::0;;39812:137::o;40242:133::-;20556:12;:10;:12::i;:::-;20541:11;;-1:-1:-1;;;;;20541:11:0;;;:27;;;20533:72;;;;;-1:-1:-1;;;20533:72:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20533:72:0;;;;;;;;;;;;;;;40319:1:::1;37791:5;37774:13;;:22;37766:74;;;;-1:-1:-1::0;;;37766:74:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37867:1;37851:13;:17:::0;37926:20:::1;::::0;:24;37923:175:::1;;37546:5;38026:14;;:34;38019:3;:41;;38011:75;;;::::0;;-1:-1:-1;;;38011:75:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;38011:75:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;40350:17:0::2;::::0;40333:14:::2;:34:::0;;-1:-1:-1;;;;;;40333:34:0::2;-1:-1:-1::0;;;;;40350:17:0;;::::2;40333:34:::0;;;::::2;::::0;;40242:133::o;26414:2190::-;26520:7;25450:12;:10;:12::i;:::-;25432:14;;-1:-1:-1;;;;;25432:14:0;;;:30;;;25424:74;;;;;-1:-1:-1;;;25424:74:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25424:74:0;;;;;;;;;;;;;;;26571:1:::1;26548:20;;:24;26540:76;;;;-1:-1:-1::0;;;26540:76:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26743:17;:15;:17::i;:::-;26896:13;26931:16:::0;;::::1;26928:96;;;-1:-1:-1::0;26974:4:0::1;26928:96;27067:20;::::0;27101:17;27098:301:::1;;27149:44;27186:6;27149:32;27174:6;27149:20;;:24;;:32;;;;:::i;:::-;:36:::0;:44:::1;:36;:44;:::i;:::-;27134:59;;27098:301;;;27243:58;::::0;;-1:-1:-1;;;27243:58:0;;24480:2:::1;27243:58;::::0;::::1;::::0;27295:4:::1;27243:58:::0;;;;;;24360:42:::1;::::0;27243:33:::1;::::0;:58;;;;;;;;;;;24360:42;27243:58;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;27243:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;27243:58:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;27243:58:0;27352:20:::1;:35:::0;;;27243:58;-1:-1:-1;27098:301:0::1;27483:20;::::0;:38:::1;::::0;27508:12;27483:38:::1;:24;:38;:::i;:::-;27460:20;:61:::0;27585:57:::1;::::0;;-1:-1:-1;;;27585:57:0;;24480:2:::1;27585:57;::::0;::::1;::::0;;;;;;;;;24360:42:::1;::::0;27585:33:::1;::::0;:57;;;;;-1:-1:-1;;27585:57:0;;;;;;;-1:-1:-1;24360:42:0;27585:57;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;27585:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;27585:57:0;;;;27764:15;27789;27805:1;27789:18;;;;;;;;;::::0;;;::::1;::::0;;::::1;::::0;-1:-1:-1;;;;;27789:18:0::1;::::0;-1:-1:-1;27861:17:0;27858:399:::1;;27912:33;::::0;;-1:-1:-1;;;27912:33:0;;27939:4:::1;27912:33;::::0;::::1;::::0;;;27894:15:::1;::::0;-1:-1:-1;;;;;27912:18:0;::::1;::::0;::::1;::::0;:33;;;;;::::1;::::0;;;;;;;;;:18;:33;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;27912:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;27912:33:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;27912:33:0;27960:45:::1;::::0;;-1:-1:-1;;;27960:45:0;;::::1;::::0;::::1;::::0;;;;;27912:33;;-1:-1:-1;24231:42:0::1;::::0;27960:31:::1;::::0;:45;;;;;-1:-1:-1;;27960:45:0;;;;;;;;-1:-1:-1;24231:42:0;27960:45;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;27960:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;-1:-1:::0;;28039:33:0::1;::::0;;-1:-1:-1;;;28039:33:0;;28066:4:::1;28039:33;::::0;::::1;::::0;;;:46:::1;::::0;-1:-1:-1;28077:7:0;;-1:-1:-1;;;;;;28039:18:0;::::1;::::0;::::1;::::0;:33;;;;;::::1;::::0;;;;;;;;:18;:33;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;28039:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;28039:33:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;28039:33:0;;:46:::1;:37;:46;:::i;:::-;28020:65;;27858:399;;;;24231:42;-1:-1:-1::0;;;;;28116:34:0::1;;:36;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;28116:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;-1:-1:::0;;28186:33:0::1;::::0;;-1:-1:-1;;;28186:33:0;;28213:4:::1;28186:33;::::0;::::1;::::0;;;-1:-1:-1;;;;;28186:18:0;::::1;::::0;-1:-1:-1;28186:18:0::1;::::0;-1:-1:-1;28186:33:0;;;;;::::1;::::0;;;;;;;;:18;:33;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;28186:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;28186:33:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;28186:33:0;;-1:-1:-1;27858:399:0::1;28294:1;28275:16;:20;28267:70;;;;-1:-1:-1::0;;;28267:70:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28392:51;28416:10;28428:6;28436;28392:23;:51::i;:::-;28511;-1:-1:-1::0;;;;;28511:21:0;::::1;28533:10:::0;28545:16;28511:51:::1;:21;:51;:::i;:::-;28580:16:::0;26414:2190;-1:-1:-1;;;;;;;26414:2190:0:o;25890:97::-;25959:20;;25890:97;:::o;38403:139::-;20556:12;:10;:12::i;:::-;20541:11;;-1:-1:-1;;;;;20541:11:0;;;:27;;;20533:72;;;;;-1:-1:-1;;;20533:72:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20533:72:0;;;;;;;;;;;;;;;38483:1:::1;37791:5;37774:13;;:22;37766:74;;;;-1:-1:-1::0;;;37766:74:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37867:1;37851:13;:17:::0;37926:20:::1;::::0;:24;37923:175:::1;;37546:5;38026:14;;:34;38019:3;:41;;38011:75;;;::::0;;-1:-1:-1;;;38011:75:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;38011:75:0;;;;;;;;;;;;;::::1;;38516:17:::2;::::0;38497:37:::2;::::0;-1:-1:-1;;;;;38516:17:0::2;38497:18;:37::i;:::-;20616:1:::1;38403:139::o:0;38837:135::-;20556:12;:10;:12::i;:::-;20541:11;;-1:-1:-1;;;;;20541:11:0;;;:27;;;20533:72;;;;;-1:-1:-1;;;20533:72:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20533:72:0;;;;;;;;;;;;;;;38915:1:::1;37791:5;37774:13;;:22;37766:74;;;;-1:-1:-1::0;;;37766:74:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37867:1;37851:13;:17:::0;37926:20:::1;::::0;:24;37923:175:::1;;37546:5;38026:14;;:34;38019:3;:41;;38011:75;;;::::0;;-1:-1:-1;;;38011:75:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;38011:75:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;38947:17:0::2;::::0;;38929:35;;-1:-1:-1;;;;;;38929:35:0::2;-1:-1:-1::0;;;;;38947:17:0;;::::2;38929:35:::0;;;::::2;::::0;;38837:135::o;23709:37::-;;;;:::o;22875:30::-;;;-1:-1:-1;;;;;22875:30:0;;:::o;23274:37::-;;;;:::o;22939:29::-;;;-1:-1:-1;;;;;22939:29:0;;:::o;40768:139::-;20556:12;:10;:12::i;:::-;20541:11;;-1:-1:-1;;;;;20541:11:0;;;:27;;;20533:72;;;;;-1:-1:-1;;;20533:72:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20533:72:0;;;;;;;;;;;;;;;40852:1:::1;37791:5;37774:13;;:22;37766:74;;;;-1:-1:-1::0;;;37766:74:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37867:1;37851:13;:17:::0;37926:20:::1;::::0;:24;37923:175:::1;;37546:5;38026:14;;:34;38019:3;:41;;38011:75;;;::::0;;-1:-1:-1;;;38011:75:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;38011:75:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;40883:16:0::2;::::0;40866:14:::2;:33:::0;40768:139::o;26157:78::-;25450:12;:10;:12::i;:::-;25432:14;;-1:-1:-1;;;;;25432:14:0;;;:30;;;25424:74;;;;;-1:-1:-1;;;25424:74:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25424:74:0;;;;;;;;;;;;;;;26206:21:::1;26214:12;:10;:12::i;:::-;26206:7;:21::i;:::-;26157:78::o:0;26247:155::-;25450:12;:10;:12::i;:::-;25432:14;;-1:-1:-1;;;;;25432:14:0;;;:30;;;25424:74;;;;;-1:-1:-1;;;25424:74:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25424:74:0;;;;;;;;;;;;;;;26368:26:::1;26377:12;:10;:12::i;:::-;26390:1;26392::::0;26368:8:::1;:26::i;38648:177::-:0;20556:12;:10;:12::i;:::-;20541:11;;-1:-1:-1;;;;;20541:11:0;;;:27;;;20533:72;;;;;-1:-1:-1;;;20533:72:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20533:72:0;;;;;;;;;;;;;;;38747:3:::1;38730:14;:20:::0;38777:1:::1;38761:13;:17:::0;38789::::1;:28:::0;;-1:-1:-1;;;;;;38789:28:0::1;-1:-1:-1::0;;;;;38789:28:0;;;::::1;::::0;;;::::1;::::0;;38648:177::o;33006:2311::-;25450:12;:10;:12::i;:::-;25432:14;;-1:-1:-1;;;;;25432:14:0;;;:30;;;25424:74;;;;;-1:-1:-1;;;25424:74:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25424:74:0;;;;;;;;;;;;;;;33152:14:::1;::::0;-1:-1:-1;;;;;33138:28:0;;::::1;33152:14:::0;::::1;33138:28;33135:1042;;-1:-1:-1::0;;;;;33228:20:0;::::1;;::::0;;;:8:::1;:20;::::0;;;;:32;33225:876:::1;;33285:15;:20:::0;;33304:1:::1;33285:20:::0;;::::1;::::0;;;;33396::::1;33393:284;;;33461:3;33440:18;:24:::0;33393:284:::1;;;33592:15;::::0;33532:76:::1;::::0;:55:::1;33583:3;33532:46;33555:22;33592:15:::0;33575:1:::1;33555:22;:19;:22;:::i;:::-;33532:18;::::0;;:46:::1;:22;:46;:::i;:::-;:50:::0;:55:::1;:50;:55;:::i;:76::-;33511:18;:97:::0;33393:284:::1;33225:876;;;33992:15;::::0;-1:-1:-1;;;;;33907:20:0;::::1;;::::0;;;:8:::1;:20;::::0;;;;:32;33787:18:::1;::::0;:221:::1;::::0;33992:15;33787:200:::1;::::0;33983:3:::1;::::0;33787:153:::1;::::0;:77:::1;::::0;33992:15;33787:77:::1;:60;:77;:::i;:::-;:119:::0;:153:::1;:119;:153;:::i;:221::-;33766:18;:242:::0;33225:876:::1;-1:-1:-1::0;;;;;34115:20:0;::::1;;::::0;;;:8:::1;:20;::::0;;;;34150:3:::1;34115:38:::0;;33135:1042:::1;34255:13;34278:15;34294:1;34278:18;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;34329:31:::1;::::0;;-1:-1:-1;;;34329:31:0;;34354:4:::1;34329:31;::::0;::::1;::::0;;;-1:-1:-1;;;;;34278:18:0;;::::1;::::0;-1:-1:-1;34278:18:0;;34329:16:::1;::::0;:31;;;;;;;;;;34278:18;34329:31;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;34329:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;34329:31:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;34329:31:0;;-1:-1:-1;34428:43:0::1;-1:-1:-1::0;;;;;34428:18:0;::::1;24231:42;34329:31:::0;34428:43:::1;:18;:43;:::i;:::-;24231:42;-1:-1:-1::0;;;;;34506:30:0::1;;34537:10;34506:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;34506:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;-1:-1:::0;;34654:32:0::1;::::0;;-1:-1:-1;;;34654:32:0;;34680:4:::1;34654:32;::::0;::::1;::::0;;;24231:42:::1;::::0;-1:-1:-1;34587:14:0::1;::::0;-1:-1:-1;24231:42:0;;34654:17:::1;::::0;:32;;;;;::::1;::::0;;;;;;;;24231:42;34654:32;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;34654:32:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;34654:32:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;34654:32:0;;-1:-1:-1;34705:13:0;34697:66:::1;;;;-1:-1:-1::0;;;34697:66:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34844:44;-1:-1:-1::0;;;;;34844:19:0;::::1;24360:42;34878:9:::0;34844:44:::1;:19;:44;:::i;:::-;34923:53;::::0;;-1:-1:-1;;;34923:53:0;;24480:2:::1;34923:53;::::0;::::1;::::0;;;;;;;;;24360:42:::1;::::0;34923:32:::1;::::0;:53;;;;;-1:-1:-1;;34923:53:0;;;;;;;-1:-1:-1;24360:42:0;34923:53;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;34923:53:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;-1:-1:::0;;35031:20:0::1;:33:::0;;;::::1;::::0;;-1:-1:-1;35186:21:0::1;::::0;-1:-1:-1;35186:19:0::1;:21::i;:::-;35292:17;:15;:17::i;:::-;25509:1;;;;33006:2311:::0;:::o;39370:145::-;20556:12;:10;:12::i;:::-;20541:11;;-1:-1:-1;;;;;20541:11:0;;;:27;;;20533:72;;;;;-1:-1:-1;;;20533:72:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20533:72:0;;;;;;;;;;;;;;;39456:1:::1;37791:5;37774:13;;:22;37766:74;;;;-1:-1:-1::0;;;37766:74:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37867:1;37851:13;:17:::0;37926:20:::1;::::0;:24;37923:175:::1;;37546:5;38026:14;;:34;38019:3;:41;;38011:75;;;::::0;;-1:-1:-1;;;38011:75:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;38011:75:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;39491:16:0::2;::::0;39470:18:::2;:37:::0;39370:145::o;38205:186::-;20556:12;:10;:12::i;:::-;20541:11;;-1:-1:-1;;;;;20541:11:0;;;:27;;;20533:72;;;;;-1:-1:-1;;;20533:72:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20533:72:0;;;;;;;;;;;;;;;38306:3:::1;38289:14;:20:::0;38336:1:::1;38320:13;:17:::0;38348::::1;:28:::0;;-1:-1:-1;;;;;;38348:28:0::1;-1:-1:-1::0;;;;;38348:28:0;;;::::1;::::0;;;::::1;::::0;;38205:186::o;18858:106::-;18946:10;18858:106;:::o;35824:1431::-;35954:53;;;-1:-1:-1;;;35954:53:0;;36001:4;35954:53;;;;;;35935:16;;24592:42;;35954:38;;:53;;;;;;;;;;;;;;;24592:42;35954:53;;;2:2:-1;;;;27:1;24;17:12;2:2;35954:53:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35954:53:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;35954:53:0;;-1:-1:-1;24694:10:0;36065:17;;36062:1186;;;36257:31;;;-1:-1:-1;;;36257:31:0;;36282:4;36257:31;;;;;;24051:42;;36189:13;;24051:42;;36257:16;;:31;;;;;;;;;;;;;;24051:42;36257:31;;;2:2:-1;;;;27:1;24;17:12;2:2;36257:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36257:31:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;36257:31:0;36303:43;;;-1:-1:-1;;;36303:43:0;;;;36257:31;;-1:-1:-1;24592:42:0;;36303:41;;:43;;;;;;;;;;;;;;;;24592:42;36303:43;;;2:2:-1;;;;27:1;24;17:12;2:2;36303:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36303:43:0;;;;36403:14;36420:44;36456:7;36420:6;-1:-1:-1;;;;;36420:16:0;;36445:4;36420:31;;;;;;;;;;;;;-1:-1:-1;;;;;36420:31:0;-1:-1:-1;;;;;36420:31:0;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;36420:44:0;36403:61;;36496:1;36487:6;:10;36479:67;;;;-1:-1:-1;;;36479:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36561:24;36588:50;23130:6;36588:30;36599:18;;36588:6;:10;;:30;;;;:::i;:50::-;36561:77;-1:-1:-1;36688:21:0;36712:28;:6;36561:77;36712:28;:10;:28;:::i;:::-;36688:52;;36755:21;36779:53;23130:6;36779:33;36797:14;;36779:13;:17;;:33;;;;:::i;:53::-;36755:77;-1:-1:-1;36847:22:0;36872:32;:13;36755:77;36872:32;:17;:32;:::i;:::-;36847:57;-1:-1:-1;36922:18:0;;36919:109;;36980:15;;36960:52;;-1:-1:-1;;;;;36960:19:0;;;;36980:15;36997:14;36960:52;:19;:52;:::i;:::-;37045:17;;37042:195;;37102:14;;37082:50;;-1:-1:-1;;;;;37082:19:0;;;;37102:14;37118:13;37082:50;:19;:50;:::i;:::-;37172:14;;37151:70;;;-1:-1:-1;;;37151:70:0;;;;;;;;;;-1:-1:-1;;;;;37172:14:0;;;;37151:55;;:70;;;;;37172:14;;37151:70;;;;;;;;37172:14;;37151:70;;;2:2:-1;;;;27:1;24;17:12;2:2;37151:70:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37151:70:0;;;;37042:195;36062:1186;;;;;;;35824:1431;:::o;5169:471::-;5227:7;5472:6;5468:47;;-1:-1:-1;5502:1:0;5495:8;;5468:47;5539:5;;;5543:1;5539;:5;:1;5563:5;;;;;:10;5555:56;;;;-1:-1:-1;;;5555:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5631:1;-1:-1:-1;5169:471:0;;;;;:::o;6116:132::-;6174:7;6201:39;6205:1;6208;6201:39;;;;;;;;;;;;;;;;;:3;:39::i;4279:136::-;4337:7;4364:43;4368:1;4371;4364:43;;;;;;;;;;;;;;;;;:3;:43::i;28616:4378::-;28729:13;28764:16;;;28761:62;;;-1:-1:-1;28807:4:0;28761:62;28836:17;28833:4146;;-1:-1:-1;;;;;29109:20:0;;29069:16;29109:20;;;:8;:20;;;;;:32;29088:3;;29106:214;;-1:-1:-1;;;;;29228:20:0;;;;;;:8;:20;;;;;29263:3;29228:38;;29106:214;-1:-1:-1;;;;;29367:20:0;;29334:17;29367:20;;;:8;:20;;;;;:32;29354:46;;:8;;:46;:12;:46;:::i;:::-;29334:66;;29415:19;29437:32;29450:18;;29437:8;:12;;:32;;;;:::i;:::-;29415:54;-1:-1:-1;29484:17:0;29523:23;;;29520:537;;;-1:-1:-1;23130:6:0;29520:537;;;29865:15;;29862:180;;29916:46;29950:11;29916:29;:9;23130:6;29916:29;:13;:29;:::i;:46::-;29904:58;;29862:180;;;-1:-1:-1;30021:1:0;29862:180;30234:31;;;-1:-1:-1;;;30234:31:0;;30259:4;30234:31;;;;;;24142:42;;30158:13;;24142:42;;30234:16;;:31;;;;;;;;;;;;;;24142:42;30234:31;;;2:2:-1;;;;27:1;24;17:12;2:2;30234:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;30234:31:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;30234:31:0;30376:13;;30234:31;;-1:-1:-1;30328:27:0;;30358:56;;30407:6;;30358:44;;30395:6;;30358:32;;30234:31;;30358:32;:17;:32;:::i;:::-;:36;:44;:36;:44;:::i;:56::-;30328:86;-1:-1:-1;30481:54:0;23130:6;30481:34;30328:86;30505:9;30481:34;:23;:34;:::i;:54::-;30459:76;;30603:13;30581:19;:35;30578:356;;;30715:21;30739:38;:19;30763:13;30739:38;:23;:38;:::i;:::-;30812:13;;30715:62;;-1:-1:-1;30812:32:0;;30715:62;30812:32;:17;:32;:::i;:::-;30796:13;:48;30863:55;;;-1:-1:-1;;;30863:55:0;;;;;;;;;;24592:42;;30863:40;;:55;;;;;-1:-1:-1;;30863:55:0;;;;;;;-1:-1:-1;24592:42:0;30863:55;;;2:2:-1;;;;27:1;24;17:12;2:2;30863:55:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;30863:55:0;;;;30578:356;;30995:23;;30992:114;;31038:52;-1:-1:-1;;;;;31038:19:0;;31058:10;31070:19;31038:52;:19;:52;:::i;:::-;31234:31;;;-1:-1:-1;;;31234:31:0;;31259:4;31234:31;;;;;;24051:42;;-1:-1:-1;24051:42:0;;31234:16;;:31;;;;;;;;;;;;;;24051:42;31234:31;;;2:2:-1;;;;27:1;24;17:12;2:2;31234:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31234:31:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;31234:31:0;;-1:-1:-1;31356:37:0;31386:6;31356:25;31234:31;31374:6;31356:25;:17;:25;:::i;:37::-;31334:59;-1:-1:-1;31460:54:0;23130:6;31460:34;31334:59;31484:9;31460:34;:23;:34;:::i;:54::-;31438:76;-1:-1:-1;31605:23:0;;31602:335;;24051:42;-1:-1:-1;;;;;31648:34:0;;31683:19;31648:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;31648:55:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;31822:40:0;;-1:-1:-1;;;;;31822:19:0;;;-1:-1:-1;31822:40:0;;;;;-1:-1:-1;31842:19:0;;31822:40;;;;31842:19;31822;:40;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;31822:40:0;31602:335;28833:4146;;;;;;;;;;32020:13;;:17;32017:190;;24592:42;-1:-1:-1;;;;;32057:36:0;;:38;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;32057:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;32190:1:0;32174:13;:17;-1:-1:-1;;32017:190:0;32277:31;;;-1:-1:-1;;;32277:31:0;;32302:4;32277:31;;;;;;24142:42;;32221:13;;24142:42;;32277:16;;:31;;;;;;;;;;;;;;24142:42;32277:31;;;2:2:-1;;;;27:1;24;17:12;2:2;32277:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32277:31:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;32277:31:0;:35;32273:139;;;32364:31;;;-1:-1:-1;;;32364:31:0;;32389:4;32364:31;;;;;;32332:64;;32352:10;;-1:-1:-1;;;;;32364:16:0;;;;;:31;;;;;;;;;;;;;;:16;:31;;;2:2:-1;;;;27:1;24;17:12;2:2;32364:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32364:31:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;32364:31:0;-1:-1:-1;;;;;32332:19:0;;;:64;;:19;:64;:::i;:::-;-1:-1:-1;32491:31:0;;;-1:-1:-1;;;32491:31:0;;32516:4;32491:31;;;;;;24051:42;;32469:19;;24051:42;;32491:16;;:31;;;;;;;;;;;;;;24051:42;32491:31;;;2:2:-1;;;;27:1;24;17:12;2:2;32491:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32491:31:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;32491:31:0;;-1:-1:-1;32540:15:0;;32537:431;;32592:14;;-1:-1:-1;;;;;32578:28:0;;;32592:14;;32578:28;32575:362;;24051:42;-1:-1:-1;;;;;32630:34:0;;32665:11;32630:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;32630:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;32753:32:0;;-1:-1:-1;;;;;32753:19:0;;;-1:-1:-1;32753:32:0;;;;;-1:-1:-1;32773:11:0;;32753:32;;;;32773:11;32753:19;:32;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32753:32:0;32575:362;;;32873:44;-1:-1:-1;;;;;32873:19:0;;32893:10;32905:11;32873:44;:19;:44;:::i;:::-;28833:4146;;;28616:4378;;;;:::o;15163:177::-;15273:58;;;-1:-1:-1;;;;;15273:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;15273:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;15246:86:0;;15266:5;;15246:19;:86::i;:::-;15163:177;;;:::o;20780:263::-;20556:12;:10;:12::i;:::-;20541:11;;-1:-1:-1;;;;;20541:11:0;;;:27;;;20533:72;;;;;-1:-1:-1;;;20533:72:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;20533:72:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;20877:22:0;::::1;20869:73;;;;-1:-1:-1::0;;;20869:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20980:11;::::0;;20958:44:::1;::::0;-1:-1:-1;;;;;20958:44:0;;::::1;::::0;20980:11;::::1;::::0;20958:44:::1;::::0;::::1;21013:11;:22:::0;;-1:-1:-1;;;;;;21013:22:0::1;-1:-1:-1::0;;;;;21013:22:0;;;::::1;::::0;;;::::1;::::0;;20780:263::o;3815:181::-;3873:7;3905:5;;;3929:6;;;;3921:46;;;;;-1:-1:-1;;;3921:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;15822:622;16192:10;;;16191:62;;-1:-1:-1;16208:39:0;;;-1:-1:-1;;;16208:39:0;;16232:4;16208:39;;;;-1:-1:-1;;;;;16208:39:0;;;;;;;;;:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;2:2:-1;;;;27:1;24;17:12;2:2;16208:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;16208:39:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;16208:39:0;:44;16191:62;16183:152;;;;-1:-1:-1;;;16183:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16373:62;;;-1:-1:-1;;;;;16373:62:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;16373:62:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;16346:90:0;;16366:5;;16346:19;:90::i;35329:483::-;35521:32;;;-1:-1:-1;;;35521:32:0;;35547:4;35521:32;;;;;;24142:42;;35453:14;;24142:42;;35521:17;;:32;;;;;;;;;;;;;;24142:42;35521:32;;;2:2:-1;;;;27:1;24;17:12;2:2;35521:32:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;35521:32:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;35521:32:0;;-1:-1:-1;35567:12:0;;35564:241;;35642:49;-1:-1:-1;;;;;35642:19:0;;24592:42;35682:8;35642:49;:19;:49;:::i;:::-;24592:42;-1:-1:-1;;;;;35706:37:0;;35744:8;35706:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;35706:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;35768:13:0;:25;;;;;;-1:-1:-1;;35564:241:0;35329:483;;:::o;6744:278::-;6830:7;6865:12;6858:5;6850:28;;;;-1:-1:-1;;;6850:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;6850:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6889:9;6905:1;6901;:5;;;;;;;6744:278;-1:-1:-1;;;;;6744:278:0:o;4718:192::-;4804:7;4840:12;4832:6;;;;4824:29;;;;-1:-1:-1;;;4824:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;4824:29:0;-1:-1:-1;;;4876:5:0;;;4718:192::o;17468:761::-;17892:23;17918:69;17946:4;17918:69;;;;;;;;;;;;;;;;;17926:5;-1:-1:-1;;;;;17918:27:0;;;:69;;;;;:::i;:::-;18002:17;;17892:95;;-1:-1:-1;18002:21:0;17998:224;;18144:10;18133:30;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18133:30:0;18125:85;;;;-1:-1:-1;;;18125:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12152:196;12255:12;12287:53;12310:6;12318:4;12324:1;12327:12;12287:22;:53::i;:::-;12280:60;12152:196;-1:-1:-1;;;;12152:196:0:o;13529:979::-;13659:12;13692:18;13703:6;13692:10;:18::i;:::-;13684:60;;;;;-1:-1:-1;;;13684:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;13818:12;13832:23;13859:6;-1:-1:-1;;;;;13859:11:0;13879:8;13890:4;13859:36;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;13859:36:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;13817:78:0;;;;13910:7;13906:595;;;13941:10;-1:-1:-1;13934:17:0;;-1:-1:-1;13934:17:0;13906:595;14055:17;;:21;14051:439;;14318:10;14312:17;14379:15;14366:10;14362:2;14358:19;14351:44;14266:148;14454:20;;-1:-1:-1;;;14454:20:0;;;;;;;;;;;;;;;;;14461:12;;14454:20;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;9037:619:0;9097:4;9565:20;;9408:66;9605:23;;;;;;:42;;-1:-1:-1;;9632:15:0;;;9597:51;-1:-1:-1;;9037:619:0:o
Swarm Source
ipfs://e247fbf11bedffceb40d111396d01dc2769e7e09c7c9c9efb066546c91a3beaa
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.