Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers. Name tag integration is not available in advanced view.
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | ||||
---|---|---|---|---|---|---|---|
18893739 | 336 days ago | 0 ETH | |||||
18893739 | 336 days ago | 0 ETH | |||||
18893739 | 336 days ago | 0 ETH | |||||
18893179 | 336 days ago | 0 ETH | |||||
18893179 | 336 days ago | 0 ETH | |||||
18893179 | 336 days ago | 0 ETH | |||||
18893163 | 336 days ago | 0 ETH | |||||
18893163 | 336 days ago | 0 ETH | |||||
18893163 | 336 days ago | 0 ETH | |||||
15471290 | 817 days ago | 0 ETH | |||||
15471290 | 817 days ago | 0 ETH | |||||
15471290 | 817 days ago | 0 ETH | |||||
14607379 | 957 days ago | 0 ETH | |||||
14607379 | 957 days ago | 0 ETH | |||||
14607379 | 957 days ago | 0 ETH | |||||
14539935 | 967 days ago | 0 ETH | |||||
14539935 | 967 days ago | 0 ETH | |||||
14539935 | 967 days ago | 0 ETH | |||||
14144884 | 1028 days ago | 0 ETH | |||||
14144884 | 1028 days ago | 0 ETH | |||||
14144884 | 1028 days ago | 0 ETH | |||||
13676401 | 1101 days ago | 0 ETH | |||||
13676401 | 1101 days ago | 0 ETH | |||||
13676401 | 1101 days ago | 0 ETH | |||||
13433361 | 1140 days ago | 0 ETH |
Loading...
Loading
Contract Name:
StrategyCurveCompoundVoterProxy
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-11-07 */ // SPDX-License-Identifier: MIT pragma solidity ^0.5.17; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @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. * * _Available since v2.4.0._ */ 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. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 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. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @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 Converts an `address` into `address payable`. Note that this is * simply a type cast: the actual underlying value is not changed. * * _Available since v2.4.0._ */ function toPayable(address account) internal pure returns (address payable) { return address(uint160(account)); } /** * @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]. * * _Available since v2.4.0._ */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-call-value (bool success, ) = recipient.call.value(amount)(""); require(success, "Address: unable to send value, recipient may have reverted"); } } /** * @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 ERC20;` 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)); } 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. // A Solidity high level call has three parts: // 1. The target address is checked to verify it contains contract code // 2. The call itself is made, and success asserted // 3. The return value is decoded, which in turn checks the size of the returned data. // solhint-disable-next-line max-line-length require(address(token).isContract(), "SafeERC20: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = address(token).call(data); require(success, "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"); } } } interface IController { function withdraw(address, uint256) external; function balanceOf(address) external view returns (uint256); function earn(address, uint256) external; function want(address) external view returns (address); function rewards() external view returns (address); function vaults(address) external view returns (address); function strategies(address) external view returns (address); } interface Gauge { function deposit(uint256) external; function balanceOf(address) external view returns (uint256); function withdraw(uint256) external; } interface Mintr { function mint(address) external; } interface Uni { function swapExactTokensForTokens( uint256, uint256, address[] calldata, address, uint256 ) external; } interface ICurveFi { function add_liquidity( uint256[2] calldata amounts, uint256 min_mint_amount ) external; } interface VoterProxy { function withdraw( address _gauge, address _token, uint256 _amount ) external returns (uint256); function balanceOf(address _gauge) external view returns (uint256); function withdrawAll(address _gauge, address _token) external returns (uint256); function deposit(address _gauge, address _token) external; function harvest(address _gauge) external; function lock() external; } contract StrategyCurveCompoundVoterProxy { using SafeERC20 for IERC20; using Address for address; using SafeMath for uint256; address public constant want = address(0x845838DF265Dcd2c412A1Dc9e959c7d08537f8a2); address public constant crv = address(0xD533a949740bb3306d119CC777fa900bA034cd52); address public constant uni = address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address public constant weth = address(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2); // used for crv <> weth <> dai route address public constant dai = address(0x6B175474E89094C44Da98b954EedeAC495271d0F); address public constant curve = address(0xeB21209ae4C2c9FF2a86ACA31E123764A3B6Bc06); address public constant gauge = address(0x7ca5b0a2910B33e9759DC7dDB0413949071D7575); address public constant voter = address(0xF147b8125d2ef93FB6965Db97D6746952a133934); uint256 public keepCRV = 1500; uint256 public performanceFee = 550; uint256 public strategistReward = 0; uint256 public withdrawalFee = 0; uint256 public constant FEE_DENOMINATOR = 10000; address public proxy; address public governance; address public controller; address public strategist; uint256 public earned; // lifetime strategy earnings denominated in `want` token event Harvested(uint wantEarned, uint lifetimeEarned); constructor(address _controller) public { governance = msg.sender; strategist = msg.sender; controller = _controller; } function getName() external pure returns (string memory) { return "StrategyCurveCompoundVoterProxy"; } function setStrategist(address _strategist) external { require(msg.sender == governance || msg.sender == strategist, "!authorized"); strategist = _strategist; } function setKeepCRV(uint256 _keepCRV) external { require(msg.sender == governance, "!governance"); keepCRV = _keepCRV; } function setWithdrawalFee(uint256 _withdrawalFee) external { require(msg.sender == governance, "!governance"); withdrawalFee = _withdrawalFee; } function setPerformanceFee(uint256 _performanceFee) external { require(msg.sender == governance, "!governance"); performanceFee = _performanceFee; } function setStrategistReward(uint _strategistReward) external { require(msg.sender == governance, "!governance"); strategistReward = _strategistReward; } function setProxy(address _proxy) external { require(msg.sender == governance, "!governance"); proxy = _proxy; } function deposit() public { uint256 _want = IERC20(want).balanceOf(address(this)); if (_want > 0) { IERC20(want).safeTransfer(proxy, _want); VoterProxy(proxy).deposit(gauge, want); } } // Controller only function for creating additional rewards from dust function withdraw(IERC20 _asset) external returns (uint256 balance) { require(msg.sender == controller, "!controller"); require(want != address(_asset), "want"); require(crv != address(_asset), "crv"); require(dai != address(_asset), "dai"); balance = _asset.balanceOf(address(this)); _asset.safeTransfer(controller, balance); } // Withdraw partial funds, normally used with a vault withdrawal function withdraw(uint256 _amount) external { require(msg.sender == controller, "!controller"); uint256 _balance = IERC20(want).balanceOf(address(this)); if (_balance < _amount) { _amount = _withdrawSome(_amount.sub(_balance)); _amount = _amount.add(_balance); } uint256 _fee = _amount.mul(withdrawalFee).div(FEE_DENOMINATOR); IERC20(want).safeTransfer(IController(controller).rewards(), _fee); address _vault = IController(controller).vaults(address(want)); require(_vault != address(0), "!vault"); // additional protection so we don't burn the funds IERC20(want).safeTransfer(_vault, _amount.sub(_fee)); } function _withdrawSome(uint256 _amount) internal returns (uint256) { return VoterProxy(proxy).withdraw(gauge, want, _amount); } // Withdraw all funds, normally used when migrating strategies function withdrawAll() external returns (uint256 balance) { require(msg.sender == controller, "!controller"); _withdrawAll(); balance = IERC20(want).balanceOf(address(this)); address _vault = IController(controller).vaults(address(want)); require(_vault != address(0), "!vault"); // additional protection so we don't burn the funds IERC20(want).safeTransfer(_vault, balance); } function _withdrawAll() internal { VoterProxy(proxy).withdrawAll(gauge, want); } function harvest() public { require(msg.sender == strategist || msg.sender == governance, "!authorized"); VoterProxy(proxy).harvest(gauge); uint256 _crv = IERC20(crv).balanceOf(address(this)); if (_crv > 0) { uint256 _keepCRV = _crv.mul(keepCRV).div(FEE_DENOMINATOR); IERC20(crv).safeTransfer(voter, _keepCRV); _crv = _crv.sub(_keepCRV); IERC20(crv).safeApprove(uni, 0); IERC20(crv).safeApprove(uni, _crv); address[] memory path = new address[](3); path[0] = crv; path[1] = weth; path[2] = dai; Uni(uni).swapExactTokensForTokens(_crv, uint256(0), path, address(this), now.add(1800)); } uint256 _dai = IERC20(dai).balanceOf(address(this)); if (_dai > 0) { IERC20(dai).safeApprove(curve, 0); IERC20(dai).safeApprove(curve, _dai); ICurveFi(curve).add_liquidity([_dai, 0], 0); } uint256 _want = IERC20(want).balanceOf(address(this)); if (_want > 0) { uint256 _fee = _want.mul(performanceFee).div(FEE_DENOMINATOR); uint256 _reward = _want.mul(strategistReward).div(FEE_DENOMINATOR); IERC20(want).safeTransfer(IController(controller).rewards(), _fee); IERC20(want).safeTransfer(strategist, _reward); deposit(); } VoterProxy(proxy).lock(); earned = earned.add(_want); emit Harvested(_want, earned); } function balanceOfWant() public view returns (uint256) { return IERC20(want).balanceOf(address(this)); } function balanceOfPool() public view returns (uint256) { return VoterProxy(proxy).balanceOf(gauge); } function balanceOf() public view returns (uint256) { return balanceOfWant().add(balanceOfPool()); } function setGovernance(address _governance) external { require(msg.sender == governance, "!governance"); governance = _governance; } function setController(address _controller) external { require(msg.sender == governance, "!governance"); controller = _controller; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_controller","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"wantEarned","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lifetimeEarned","type":"uint256"}],"name":"Harvested","type":"event"},{"constant":true,"inputs":[],"name":"FEE_DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"balanceOfPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"balanceOfWant","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"crv","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"curve","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"dai","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"deposit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"gauge","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getName","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"harvest","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"keepCRV","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"performanceFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"proxy","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_controller","type":"address"}],"name":"setController","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_governance","type":"address"}],"name":"setGovernance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_keepCRV","type":"uint256"}],"name":"setKeepCRV","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_performanceFee","type":"uint256"}],"name":"setPerformanceFee","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_proxy","type":"address"}],"name":"setProxy","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_strategist","type":"address"}],"name":"setStrategist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_strategistReward","type":"uint256"}],"name":"setStrategistReward","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_withdrawalFee","type":"uint256"}],"name":"setWithdrawalFee","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"strategist","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"strategistReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"uni","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"voter","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"want","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"weth","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract IERC20","name":"_asset","type":"address"}],"name":"withdraw","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdrawAll","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"withdrawalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526105dc6000556102266001556000600255600060035534801561002657600080fd5b5060405161224c38038061224c8339818101604052602081101561004957600080fd5b505160058054336001600160a01b03199182168117909255600780548216909217909155600680549091166001600160a01b039092169190911790556121b8806100946000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c8063853828b611610125578063c1a3d44c116100ad578063d73792a91161007c578063d73792a9146104aa578063ec556889146104b2578063edc9af95146104ba578063f4b9fa75146104c2578063f77c4791146104ca57610211565b8063c1a3d44c1461046c578063c7b9d53014610474578063d0e30db01461049a578063d6f19262146104a257610211565b8063955383bd116100f4578063955383bd146103de57806397107d6d146103fb578063a6f19c8414610421578063ab033ea914610429578063ac1e50251461044f57610211565b8063853828b6146103a057806387788782146103a85780638bc7e8c4146103b057806392eefe9b146103b857610211565b806346c96aac116101a857806370897b231161017757806370897b23146103635780637165485d14610380578063722713f7146103885780637fef901a146103905780638158676e1461039857610211565b806346c96aac1461032557806351cff8d91461032d5780635aa6e675146103535780636a4874a11461035b57610211565b80631fe4a686116101e45780631fe4a686146102f05780632e1a7d4d146102f85780633fc8cef3146103155780634641257d1461031d57610211565b80630d596cdf14610216578063115880861461023557806317d7de7c1461024f5780631f1fcd51146102cc575b600080fd5b6102336004803603602081101561022c57600080fd5b50356104d2565b005b61023d610524565b60408051918252519081900360200190f35b6102576105b8565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610291578181015183820152602001610279565b50505050905090810190601f1680156102be5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102d46105ef565b604080516001600160a01b039092168252519081900360200190f35b6102d4610601565b6102336004803603602081101561030e57600080fd5b5035610610565b6102d46108d4565b6102336108ec565b6102d46110e4565b61023d6004803603602081101561034357600080fd5b50356001600160a01b03166110fc565b6102d46112eb565b6102d46112fa565b6102336004803603602081101561037957600080fd5b5035611312565b6102d4611364565b61023d61137c565b61023d6113a2565b61023d6113a8565b61023d6113ae565b61023d611571565b61023d611577565b610233600480360360208110156103ce57600080fd5b50356001600160a01b031661157d565b610233600480360360208110156103f457600080fd5b50356115ec565b6102336004803603602081101561041157600080fd5b50356001600160a01b031661163e565b6102d46116ad565b6102336004803603602081101561043f57600080fd5b50356001600160a01b03166116c5565b6102336004803603602081101561046557600080fd5b5035611734565b61023d611786565b6102336004803603602081101561048a57600080fd5b50356001600160a01b03166117d5565b610233611859565b61023d611999565b61023d61199f565b6102d46119a5565b6102d46119b4565b6102d46119cc565b6102d46119e4565b6005546001600160a01b0316331461051f576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600255565b60048054604080516370a0823160e01b8152737ca5b0a2910b33e9759dc7ddb0413949071d757593810193909352516000926001600160a01b03909216916370a08231916024808301926020929190829003018186803b15801561058757600080fd5b505afa15801561059b573d6000803e3d6000fd5b505050506040513d60208110156105b157600080fd5b5051905090565b60408051808201909152601f81527f53747261746567794375727665436f6d706f756e64566f74657250726f787900602082015290565b6000805160206120e383398151915281565b6007546001600160a01b031681565b6006546001600160a01b0316331461065d576040805162461bcd60e51b815260206004820152600b60248201526a10b1b7b73a3937b63632b960a91b604482015290519081900360640190fd5b604080516370a0823160e01b815230600482015290516000916000805160206120e3833981519152916370a0823191602480820192602092909190829003018186803b1580156106ac57600080fd5b505afa1580156106c0573d6000803e3d6000fd5b505050506040513d60208110156106d657600080fd5b505190508181101561070f576106fa6106f5838363ffffffff6119f316565b611a3e565b915061070c828263ffffffff611aef16565b91505b600061073861271061072c60035486611b4990919063ffffffff16565b9063ffffffff611ba216565b90506107d3600660009054906101000a90046001600160a01b03166001600160a01b0316639ec5a8946040518163ffffffff1660e01b815260040160206040518083038186803b15801561078b57600080fd5b505afa15801561079f573d6000803e3d6000fd5b505050506040513d60208110156107b557600080fd5b50516000805160206120e3833981519152908363ffffffff611be416565b60065460408051632988bb9f60e21b81526000805160206120e3833981519152600482015290516000926001600160a01b03169163a622ee7c916024808301926020929190829003018186803b15801561082c57600080fd5b505afa158015610840573d6000803e3d6000fd5b505050506040513d602081101561085657600080fd5b505190506001600160a01b03811661089e576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b6108ce816108b2868563ffffffff6119f316565b6000805160206120e3833981519152919063ffffffff611be416565b50505050565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b6007546001600160a01b031633148061090f57506005546001600160a01b031633145b61094e576040805162461bcd60e51b815260206004820152600b60248201526a08585d5d1a1bdc9a5e995960aa1b604482015290519081900360640190fd5b600480546040805163072e008f60e11b8152737ca5b0a2910b33e9759dc7ddb0413949071d757593810193909352516001600160a01b0390911691630e5c011e91602480830192600092919082900301818387803b1580156109af57600080fd5b505af11580156109c3573d6000803e3d6000fd5b5050604080516370a0823160e01b815230600482015290516000935073d533a949740bb3306d119cc777fa900ba034cd5292506370a0823191602480820192602092909190829003018186803b158015610a1c57600080fd5b505afa158015610a30573d6000803e3d6000fd5b505050506040513d6020811015610a4657600080fd5b505190508015610cfb576000610a6d61271061072c60005485611b4990919063ffffffff16565b9050610aa873d533a949740bb3306d119cc777fa900ba034cd5273f147b8125d2ef93fb6965db97d6746952a1339348363ffffffff611be416565b610ab8828263ffffffff6119f316565b9150610af473d533a949740bb3306d119cc777fa900ba034cd52737a250d5630b4cf539739df2c5dacb4c659f2488d600063ffffffff611c3b16565b610b2d73d533a949740bb3306d119cc777fa900ba034cd52737a250d5630b4cf539739df2c5dacb4c659f2488d8463ffffffff611c3b16565b6040805160038082526080820190925260609160208201838038833901905050905073d533a949740bb3306d119cc777fa900ba034cd5281600081518110610b7157fe5b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110610bb357fe5b60200260200101906001600160a01b031690816001600160a01b031681525050736b175474e89094c44da98b954eedeac495271d0f81600281518110610bf557fe5b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d6338ed17398460008430610c3e4261070863ffffffff611aef16565b6040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03166001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015610cb7578181015183820152602001610c9f565b505050509050019650505050505050600060405180830381600087803b158015610ce057600080fd5b505af1158015610cf4573d6000803e3d6000fd5b5050505050505b604080516370a0823160e01b81523060048201529051600091736b175474e89094c44da98b954eedeac495271d0f916370a0823191602480820192602092909190829003018186803b158015610d5057600080fd5b505afa158015610d64573d6000803e3d6000fd5b505050506040513d6020811015610d7a57600080fd5b505190508015610e9f57610dbe736b175474e89094c44da98b954eedeac495271d0f73eb21209ae4c2c9ff2a86aca31e123764a3b6bc06600063ffffffff611c3b16565b610df7736b175474e89094c44da98b954eedeac495271d0f73eb21209ae4c2c9ff2a86aca31e123764a3b6bc068363ffffffff611c3b16565b6040805180820182528281526000602082018190528251630b4c7e4d60e01b815273eb21209ae4c2c9ff2a86aca31e123764a3b6bc0693630b4c7e4d9392916004019081908490808383875b83811015610e5b578181015183820152602001610e43565b5050505090500182815260200192505050600060405180830381600087803b158015610e8657600080fd5b505af1158015610e9a573d6000803e3d6000fd5b505050505b604080516370a0823160e01b815230600482015290516000916000805160206120e3833981519152916370a0823191602480820192602092909190829003018186803b158015610eee57600080fd5b505afa158015610f02573d6000803e3d6000fd5b505050506040513d6020811015610f1857600080fd5b505190508015611030576000610f3f61271061072c60015485611b4990919063ffffffff16565b90506000610f5e61271061072c60025486611b4990919063ffffffff16565b9050610ff9600660009054906101000a90046001600160a01b03166001600160a01b0316639ec5a8946040518163ffffffff1660e01b815260040160206040518083038186803b158015610fb157600080fd5b505afa158015610fc5573d6000803e3d6000fd5b505050506040513d6020811015610fdb57600080fd5b50516000805160206120e3833981519152908463ffffffff611be416565b600754611025906000805160206120e3833981519152906001600160a01b03168363ffffffff611be416565b61102d611859565b50505b6004805460408051637c1e845d60e11b815290516001600160a01b039092169263f83d08ba92828201926000929082900301818387803b15801561107357600080fd5b505af1158015611087573d6000803e3d6000fd5b505060085461109f925090508263ffffffff611aef16565b600881905560408051838152602081019290925280517ffa07446fad45314351eb89109a154880278451332bb87f1824d435fe58da59399281900390910190a1505050565b73f147b8125d2ef93fb6965db97d6746952a13393481565b6006546000906001600160a01b0316331461114c576040805162461bcd60e51b815260206004820152600b60248201526a10b1b7b73a3937b63632b960a91b604482015290519081900360640190fd5b6000805160206120e38339815191526001600160a01b03831614156111a1576040805162461bcd60e51b815260206004808301919091526024820152631dd85b9d60e21b604482015290519081900360640190fd5b73d533a949740bb3306d119cc777fa900ba034cd526001600160a01b03831614156111f9576040805162461bcd60e51b815260206004820152600360248201526231b93b60e91b604482015290519081900360640190fd5b736b175474e89094c44da98b954eedeac495271d0f6001600160a01b0383161415611251576040805162461bcd60e51b815260206004820152600360248201526264616960e81b604482015290519081900360640190fd5b604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b15801561129757600080fd5b505afa1580156112ab573d6000803e3d6000fd5b505050506040513d60208110156112c157600080fd5b50516006549091506112e6906001600160a01b0384811691168363ffffffff611be416565b919050565b6005546001600160a01b031681565b73d533a949740bb3306d119cc777fa900ba034cd5281565b6005546001600160a01b0316331461135f576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600155565b73eb21209ae4c2c9ff2a86aca31e123764a3b6bc0681565b600061139d611389610524565b611391611786565b9063ffffffff611aef16565b905090565b60005481565b60025481565b6006546000906001600160a01b031633146113fe576040805162461bcd60e51b815260206004820152600b60248201526a10b1b7b73a3937b63632b960a91b604482015290519081900360640190fd5b611406611d4e565b604080516370a0823160e01b815230600482015290516000805160206120e3833981519152916370a08231916024808301926020929190829003018186803b15801561145157600080fd5b505afa158015611465573d6000803e3d6000fd5b505050506040513d602081101561147b57600080fd5b505160065460408051632988bb9f60e21b81526000805160206120e3833981519152600482015290519293506000926001600160a01b039092169163a622ee7c91602480820192602092909190829003018186803b1580156114dc57600080fd5b505afa1580156114f0573d6000803e3d6000fd5b505050506040513d602081101561150657600080fd5b505190506001600160a01b03811661154e576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b61156d6000805160206120e3833981519152828463ffffffff611be416565b5090565b60015481565b60035481565b6005546001600160a01b031633146115ca576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611639576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600055565b6005546001600160a01b0316331461168b576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b737ca5b0a2910b33e9759dc7ddb0413949071d757581565b6005546001600160a01b03163314611712576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611781576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600355565b604080516370a0823160e01b815230600482015290516000916000805160206120e3833981519152916370a0823191602480820192602092909190829003018186803b15801561058757600080fd5b6005546001600160a01b03163314806117f857506007546001600160a01b031633145b611837576040805162461bcd60e51b815260206004820152600b60248201526a08585d5d1a1bdc9a5e995960aa1b604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b604080516370a0823160e01b815230600482015290516000916000805160206120e3833981519152916370a0823191602480820192602092909190829003018186803b1580156118a857600080fd5b505afa1580156118bc573d6000803e3d6000fd5b505050506040513d60208110156118d257600080fd5b50519050801561199657600454611908906000805160206120e3833981519152906001600160a01b03168363ffffffff611be416565b6004805460408051631f2c13e160e31b8152737ca5b0a2910b33e9759dc7ddb0413949071d7575938101939093526000805160206120e38339815191526024840152516001600160a01b039091169163f9609f0891604480830192600092919082900301818387803b15801561197d57600080fd5b505af1158015611991573d6000803e3d6000fd5b505050505b50565b60085481565b61271081565b6004546001600160a01b031681565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b736b175474e89094c44da98b954eedeac495271d0f81565b6006546001600160a01b031681565b6000611a3583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611df2565b90505b92915050565b6004805460408051636ce5768960e11b8152737ca5b0a2910b33e9759dc7ddb0413949071d7575938101939093526000805160206120e3833981519152602484015260448301849052516000926001600160a01b039092169163d9caed1291606480830192602092919082900301818787803b158015611abd57600080fd5b505af1158015611ad1573d6000803e3d6000fd5b505050506040513d6020811015611ae757600080fd5b505192915050565b600082820183811015611a35576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082611b5857506000611a38565b82820282848281611b6557fe5b0414611a355760405162461bcd60e51b81526004018080602001828103825260218152602001806121036021913960400191505060405180910390fd5b6000611a3583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e89565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611c36908490611eee565b505050565b801580611cc1575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b158015611c9357600080fd5b505afa158015611ca7573d6000803e3d6000fd5b505050506040513d6020811015611cbd57600080fd5b5051155b611cfc5760405162461bcd60e51b815260040180806020018281038252603681526020018061214e6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052611c36908490611eee565b60048054604080516301395c5960e31b8152737ca5b0a2910b33e9759dc7ddb0413949071d7575938101939093526000805160206120e38339815191526024840152516001600160a01b03909116916309cae2c89160448083019260209291908290030181600087803b158015611dc457600080fd5b505af1158015611dd8573d6000803e3d6000fd5b505050506040513d6020811015611dee57600080fd5b5050565b60008184841115611e815760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611e46578181015183820152602001611e2e565b50505050905090810190601f168015611e735780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183611ed85760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611e46578181015183820152602001611e2e565b506000838581611ee457fe5b0495945050505050565b611f00826001600160a01b03166120a6565b611f51576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310611f8f5780518252601f199092019160209182019101611f70565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611ff1576040519150601f19603f3d011682016040523d82523d6000602084013e611ff6565b606091505b50915091508161204d576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156108ce5780806020019051602081101561206957600080fd5b50516108ce5760405162461bcd60e51b815260040180806020018281038252602a815260200180612124602a913960400191505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906120da57508115155b94935050505056fe000000000000000000000000845838df265dcd2c412a1dc9e959c7d08537f8a2536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a265627a7a7231582055af3b25dd7561ab3e868ce4e755b86339f4e921c6cd0f9a9b86a3bf621c20a664736f6c634300051100320000000000000000000000009e65ad11b299ca0abefc2799ddb6314ef2d91080
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102115760003560e01c8063853828b611610125578063c1a3d44c116100ad578063d73792a91161007c578063d73792a9146104aa578063ec556889146104b2578063edc9af95146104ba578063f4b9fa75146104c2578063f77c4791146104ca57610211565b8063c1a3d44c1461046c578063c7b9d53014610474578063d0e30db01461049a578063d6f19262146104a257610211565b8063955383bd116100f4578063955383bd146103de57806397107d6d146103fb578063a6f19c8414610421578063ab033ea914610429578063ac1e50251461044f57610211565b8063853828b6146103a057806387788782146103a85780638bc7e8c4146103b057806392eefe9b146103b857610211565b806346c96aac116101a857806370897b231161017757806370897b23146103635780637165485d14610380578063722713f7146103885780637fef901a146103905780638158676e1461039857610211565b806346c96aac1461032557806351cff8d91461032d5780635aa6e675146103535780636a4874a11461035b57610211565b80631fe4a686116101e45780631fe4a686146102f05780632e1a7d4d146102f85780633fc8cef3146103155780634641257d1461031d57610211565b80630d596cdf14610216578063115880861461023557806317d7de7c1461024f5780631f1fcd51146102cc575b600080fd5b6102336004803603602081101561022c57600080fd5b50356104d2565b005b61023d610524565b60408051918252519081900360200190f35b6102576105b8565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610291578181015183820152602001610279565b50505050905090810190601f1680156102be5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102d46105ef565b604080516001600160a01b039092168252519081900360200190f35b6102d4610601565b6102336004803603602081101561030e57600080fd5b5035610610565b6102d46108d4565b6102336108ec565b6102d46110e4565b61023d6004803603602081101561034357600080fd5b50356001600160a01b03166110fc565b6102d46112eb565b6102d46112fa565b6102336004803603602081101561037957600080fd5b5035611312565b6102d4611364565b61023d61137c565b61023d6113a2565b61023d6113a8565b61023d6113ae565b61023d611571565b61023d611577565b610233600480360360208110156103ce57600080fd5b50356001600160a01b031661157d565b610233600480360360208110156103f457600080fd5b50356115ec565b6102336004803603602081101561041157600080fd5b50356001600160a01b031661163e565b6102d46116ad565b6102336004803603602081101561043f57600080fd5b50356001600160a01b03166116c5565b6102336004803603602081101561046557600080fd5b5035611734565b61023d611786565b6102336004803603602081101561048a57600080fd5b50356001600160a01b03166117d5565b610233611859565b61023d611999565b61023d61199f565b6102d46119a5565b6102d46119b4565b6102d46119cc565b6102d46119e4565b6005546001600160a01b0316331461051f576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600255565b60048054604080516370a0823160e01b8152737ca5b0a2910b33e9759dc7ddb0413949071d757593810193909352516000926001600160a01b03909216916370a08231916024808301926020929190829003018186803b15801561058757600080fd5b505afa15801561059b573d6000803e3d6000fd5b505050506040513d60208110156105b157600080fd5b5051905090565b60408051808201909152601f81527f53747261746567794375727665436f6d706f756e64566f74657250726f787900602082015290565b6000805160206120e383398151915281565b6007546001600160a01b031681565b6006546001600160a01b0316331461065d576040805162461bcd60e51b815260206004820152600b60248201526a10b1b7b73a3937b63632b960a91b604482015290519081900360640190fd5b604080516370a0823160e01b815230600482015290516000916000805160206120e3833981519152916370a0823191602480820192602092909190829003018186803b1580156106ac57600080fd5b505afa1580156106c0573d6000803e3d6000fd5b505050506040513d60208110156106d657600080fd5b505190508181101561070f576106fa6106f5838363ffffffff6119f316565b611a3e565b915061070c828263ffffffff611aef16565b91505b600061073861271061072c60035486611b4990919063ffffffff16565b9063ffffffff611ba216565b90506107d3600660009054906101000a90046001600160a01b03166001600160a01b0316639ec5a8946040518163ffffffff1660e01b815260040160206040518083038186803b15801561078b57600080fd5b505afa15801561079f573d6000803e3d6000fd5b505050506040513d60208110156107b557600080fd5b50516000805160206120e3833981519152908363ffffffff611be416565b60065460408051632988bb9f60e21b81526000805160206120e3833981519152600482015290516000926001600160a01b03169163a622ee7c916024808301926020929190829003018186803b15801561082c57600080fd5b505afa158015610840573d6000803e3d6000fd5b505050506040513d602081101561085657600080fd5b505190506001600160a01b03811661089e576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b6108ce816108b2868563ffffffff6119f316565b6000805160206120e3833981519152919063ffffffff611be416565b50505050565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b6007546001600160a01b031633148061090f57506005546001600160a01b031633145b61094e576040805162461bcd60e51b815260206004820152600b60248201526a08585d5d1a1bdc9a5e995960aa1b604482015290519081900360640190fd5b600480546040805163072e008f60e11b8152737ca5b0a2910b33e9759dc7ddb0413949071d757593810193909352516001600160a01b0390911691630e5c011e91602480830192600092919082900301818387803b1580156109af57600080fd5b505af11580156109c3573d6000803e3d6000fd5b5050604080516370a0823160e01b815230600482015290516000935073d533a949740bb3306d119cc777fa900ba034cd5292506370a0823191602480820192602092909190829003018186803b158015610a1c57600080fd5b505afa158015610a30573d6000803e3d6000fd5b505050506040513d6020811015610a4657600080fd5b505190508015610cfb576000610a6d61271061072c60005485611b4990919063ffffffff16565b9050610aa873d533a949740bb3306d119cc777fa900ba034cd5273f147b8125d2ef93fb6965db97d6746952a1339348363ffffffff611be416565b610ab8828263ffffffff6119f316565b9150610af473d533a949740bb3306d119cc777fa900ba034cd52737a250d5630b4cf539739df2c5dacb4c659f2488d600063ffffffff611c3b16565b610b2d73d533a949740bb3306d119cc777fa900ba034cd52737a250d5630b4cf539739df2c5dacb4c659f2488d8463ffffffff611c3b16565b6040805160038082526080820190925260609160208201838038833901905050905073d533a949740bb3306d119cc777fa900ba034cd5281600081518110610b7157fe5b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110610bb357fe5b60200260200101906001600160a01b031690816001600160a01b031681525050736b175474e89094c44da98b954eedeac495271d0f81600281518110610bf557fe5b6001600160a01b0390921660209283029190910190910152737a250d5630b4cf539739df2c5dacb4c659f2488d6338ed17398460008430610c3e4261070863ffffffff611aef16565b6040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03166001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015610cb7578181015183820152602001610c9f565b505050509050019650505050505050600060405180830381600087803b158015610ce057600080fd5b505af1158015610cf4573d6000803e3d6000fd5b5050505050505b604080516370a0823160e01b81523060048201529051600091736b175474e89094c44da98b954eedeac495271d0f916370a0823191602480820192602092909190829003018186803b158015610d5057600080fd5b505afa158015610d64573d6000803e3d6000fd5b505050506040513d6020811015610d7a57600080fd5b505190508015610e9f57610dbe736b175474e89094c44da98b954eedeac495271d0f73eb21209ae4c2c9ff2a86aca31e123764a3b6bc06600063ffffffff611c3b16565b610df7736b175474e89094c44da98b954eedeac495271d0f73eb21209ae4c2c9ff2a86aca31e123764a3b6bc068363ffffffff611c3b16565b6040805180820182528281526000602082018190528251630b4c7e4d60e01b815273eb21209ae4c2c9ff2a86aca31e123764a3b6bc0693630b4c7e4d9392916004019081908490808383875b83811015610e5b578181015183820152602001610e43565b5050505090500182815260200192505050600060405180830381600087803b158015610e8657600080fd5b505af1158015610e9a573d6000803e3d6000fd5b505050505b604080516370a0823160e01b815230600482015290516000916000805160206120e3833981519152916370a0823191602480820192602092909190829003018186803b158015610eee57600080fd5b505afa158015610f02573d6000803e3d6000fd5b505050506040513d6020811015610f1857600080fd5b505190508015611030576000610f3f61271061072c60015485611b4990919063ffffffff16565b90506000610f5e61271061072c60025486611b4990919063ffffffff16565b9050610ff9600660009054906101000a90046001600160a01b03166001600160a01b0316639ec5a8946040518163ffffffff1660e01b815260040160206040518083038186803b158015610fb157600080fd5b505afa158015610fc5573d6000803e3d6000fd5b505050506040513d6020811015610fdb57600080fd5b50516000805160206120e3833981519152908463ffffffff611be416565b600754611025906000805160206120e3833981519152906001600160a01b03168363ffffffff611be416565b61102d611859565b50505b6004805460408051637c1e845d60e11b815290516001600160a01b039092169263f83d08ba92828201926000929082900301818387803b15801561107357600080fd5b505af1158015611087573d6000803e3d6000fd5b505060085461109f925090508263ffffffff611aef16565b600881905560408051838152602081019290925280517ffa07446fad45314351eb89109a154880278451332bb87f1824d435fe58da59399281900390910190a1505050565b73f147b8125d2ef93fb6965db97d6746952a13393481565b6006546000906001600160a01b0316331461114c576040805162461bcd60e51b815260206004820152600b60248201526a10b1b7b73a3937b63632b960a91b604482015290519081900360640190fd5b6000805160206120e38339815191526001600160a01b03831614156111a1576040805162461bcd60e51b815260206004808301919091526024820152631dd85b9d60e21b604482015290519081900360640190fd5b73d533a949740bb3306d119cc777fa900ba034cd526001600160a01b03831614156111f9576040805162461bcd60e51b815260206004820152600360248201526231b93b60e91b604482015290519081900360640190fd5b736b175474e89094c44da98b954eedeac495271d0f6001600160a01b0383161415611251576040805162461bcd60e51b815260206004820152600360248201526264616960e81b604482015290519081900360640190fd5b604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b15801561129757600080fd5b505afa1580156112ab573d6000803e3d6000fd5b505050506040513d60208110156112c157600080fd5b50516006549091506112e6906001600160a01b0384811691168363ffffffff611be416565b919050565b6005546001600160a01b031681565b73d533a949740bb3306d119cc777fa900ba034cd5281565b6005546001600160a01b0316331461135f576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600155565b73eb21209ae4c2c9ff2a86aca31e123764a3b6bc0681565b600061139d611389610524565b611391611786565b9063ffffffff611aef16565b905090565b60005481565b60025481565b6006546000906001600160a01b031633146113fe576040805162461bcd60e51b815260206004820152600b60248201526a10b1b7b73a3937b63632b960a91b604482015290519081900360640190fd5b611406611d4e565b604080516370a0823160e01b815230600482015290516000805160206120e3833981519152916370a08231916024808301926020929190829003018186803b15801561145157600080fd5b505afa158015611465573d6000803e3d6000fd5b505050506040513d602081101561147b57600080fd5b505160065460408051632988bb9f60e21b81526000805160206120e3833981519152600482015290519293506000926001600160a01b039092169163a622ee7c91602480820192602092909190829003018186803b1580156114dc57600080fd5b505afa1580156114f0573d6000803e3d6000fd5b505050506040513d602081101561150657600080fd5b505190506001600160a01b03811661154e576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b61156d6000805160206120e3833981519152828463ffffffff611be416565b5090565b60015481565b60035481565b6005546001600160a01b031633146115ca576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611639576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600055565b6005546001600160a01b0316331461168b576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b737ca5b0a2910b33e9759dc7ddb0413949071d757581565b6005546001600160a01b03163314611712576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611781576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600355565b604080516370a0823160e01b815230600482015290516000916000805160206120e3833981519152916370a0823191602480820192602092909190829003018186803b15801561058757600080fd5b6005546001600160a01b03163314806117f857506007546001600160a01b031633145b611837576040805162461bcd60e51b815260206004820152600b60248201526a08585d5d1a1bdc9a5e995960aa1b604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b604080516370a0823160e01b815230600482015290516000916000805160206120e3833981519152916370a0823191602480820192602092909190829003018186803b1580156118a857600080fd5b505afa1580156118bc573d6000803e3d6000fd5b505050506040513d60208110156118d257600080fd5b50519050801561199657600454611908906000805160206120e3833981519152906001600160a01b03168363ffffffff611be416565b6004805460408051631f2c13e160e31b8152737ca5b0a2910b33e9759dc7ddb0413949071d7575938101939093526000805160206120e38339815191526024840152516001600160a01b039091169163f9609f0891604480830192600092919082900301818387803b15801561197d57600080fd5b505af1158015611991573d6000803e3d6000fd5b505050505b50565b60085481565b61271081565b6004546001600160a01b031681565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b736b175474e89094c44da98b954eedeac495271d0f81565b6006546001600160a01b031681565b6000611a3583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611df2565b90505b92915050565b6004805460408051636ce5768960e11b8152737ca5b0a2910b33e9759dc7ddb0413949071d7575938101939093526000805160206120e3833981519152602484015260448301849052516000926001600160a01b039092169163d9caed1291606480830192602092919082900301818787803b158015611abd57600080fd5b505af1158015611ad1573d6000803e3d6000fd5b505050506040513d6020811015611ae757600080fd5b505192915050565b600082820183811015611a35576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082611b5857506000611a38565b82820282848281611b6557fe5b0414611a355760405162461bcd60e51b81526004018080602001828103825260218152602001806121036021913960400191505060405180910390fd5b6000611a3583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e89565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611c36908490611eee565b505050565b801580611cc1575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b158015611c9357600080fd5b505afa158015611ca7573d6000803e3d6000fd5b505050506040513d6020811015611cbd57600080fd5b5051155b611cfc5760405162461bcd60e51b815260040180806020018281038252603681526020018061214e6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052611c36908490611eee565b60048054604080516301395c5960e31b8152737ca5b0a2910b33e9759dc7ddb0413949071d7575938101939093526000805160206120e38339815191526024840152516001600160a01b03909116916309cae2c89160448083019260209291908290030181600087803b158015611dc457600080fd5b505af1158015611dd8573d6000803e3d6000fd5b505050506040513d6020811015611dee57600080fd5b5050565b60008184841115611e815760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611e46578181015183820152602001611e2e565b50505050905090810190601f168015611e735780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008183611ed85760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611e46578181015183820152602001611e2e565b506000838581611ee457fe5b0495945050505050565b611f00826001600160a01b03166120a6565b611f51576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b60208310611f8f5780518252601f199092019160209182019101611f70565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114611ff1576040519150601f19603f3d011682016040523d82523d6000602084013e611ff6565b606091505b50915091508161204d576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b8051156108ce5780806020019051602081101561206957600080fd5b50516108ce5760405162461bcd60e51b815260040180806020018281038252602a815260200180612124602a913960400191505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906120da57508115155b94935050505056fe000000000000000000000000845838df265dcd2c412a1dc9e959c7d08537f8a2536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a265627a7a7231582055af3b25dd7561ab3e868ce4e755b86339f4e921c6cd0f9a9b86a3bf621c20a664736f6c63430005110032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000009e65ad11b299ca0abefc2799ddb6314ef2d91080
-----Decoded View---------------
Arg [0] : _controller (address): 0x9E65Ad11b299CA0Abefc2799dDB6314Ef2d91080
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000009e65ad11b299ca0abefc2799ddb6314ef2d91080
Deployed Bytecode Sourcemap
16461:7253:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16461:7253:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18836:176;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18836:176:0;;:::i;:::-;;23149:115;;;:::i;:::-;;;;;;;;;;;;;;;;18016:116;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;18016:116:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16609:82;;;:::i;:::-;;;;-1:-1:-1;;;;;16609:82:0;;;;;;;;;;;;;;17672:25;;;:::i;19953:723::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19953:723:0;;:::i;16874:82::-;;;:::i;21451:1564::-;;;:::i;17272:83::-;;;:::i;19488:387::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19488:387:0;-1:-1:-1;;;;;19488:387:0;;:::i;17608:25::-;;;:::i;16698:81::-;;;:::i;18657:171::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18657:171:0;;:::i;17090:83::-;;;:::i;23272:113::-;;;:::i;17364:29::-;;;:::i;17442:35::-;;;:::i;20901:440::-;;;:::i;17400:35::-;;;:::i;17484:32::-;;;:::i;23556:155::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23556:155:0;-1:-1:-1;;;;;23556:155:0;;:::i;18331:143::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18331:143:0;;:::i;19020:135::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19020:135:0;-1:-1:-1;;;;;19020:135:0;;:::i;17182:83::-;;;:::i;23393:155::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23393:155:0;-1:-1:-1;;;;;23393:155:0;;:::i;18482:167::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18482:167:0;;:::i;23023:118::-;;;:::i;18140:183::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18140:183:0;-1:-1:-1;;;;;18140:183:0;;:::i;19163:242::-;;;:::i;17706:21::-;;;:::i;17523:47::-;;;:::i;17579:20::-;;;:::i;16786:81::-;;;:::i;17002:::-;;;:::i;17640:25::-;;;:::i;18836:176::-;18931:10;;-1:-1:-1;;;;;18931:10:0;18917;:24;18909:48;;;;;-1:-1:-1;;;18909:48:0;;;;;;;;;;;;-1:-1:-1;;;18909:48:0;;;;;;;;;;;;;;;18968:16;:36;18836:176::o;23149:115::-;23233:5;;;23222:34;;;-1:-1:-1;;;23222:34:0;;17222:42;23222:34;;;;;;;;23195:7;;-1:-1:-1;;;;;23233:5:0;;;;23222:27;;:34;;;;;;;;;;;;;;23233:5;23222:34;;;5:2:-1;;;;30:1;27;20:12;5:2;23222:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23222:34:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23222:34:0;;-1:-1:-1;23149:115:0;:::o;18016:116::-;18084:40;;;;;;;;;;;;;;;;;18016:116;:::o;16609:82::-;-1:-1:-1;;;;;;;;;;;16609:82:0;:::o;17672:25::-;;;-1:-1:-1;;;;;17672:25:0;;:::o;19953:723::-;20030:10;;-1:-1:-1;;;;;20030:10:0;20016;:24;20008:48;;;;;-1:-1:-1;;;20008:48:0;;;;;;;;;;;;-1:-1:-1;;;20008:48:0;;;;;;;;;;;;;;;20086:37;;;-1:-1:-1;;;20086:37:0;;20117:4;20086:37;;;;;;20067:16;;-1:-1:-1;;;;;;;;;;;16648:42:0;20086:22;;:37;;;;;;;;;;;;;;;16648:42;20086:37;;;5:2:-1;;;;30:1;27;20:12;5:2;20086:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20086:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20086:37:0;;-1:-1:-1;20138:18:0;;;20134:143;;;20183:36;20197:21;:7;20209:8;20197:21;:11;:21;:::i;:::-;20183:13;:36::i;:::-;20173:46;-1:-1:-1;20244:21:0;20173:46;20256:8;20244:21;:11;:21;:::i;:::-;20234:31;;20134:143;20289:12;20304:47;17565:5;20304:26;20316:13;;20304:7;:11;;:26;;;;:::i;:::-;:30;:47;:30;:47;:::i;:::-;20289:62;;20364:66;20402:10;;;;;;;;;-1:-1:-1;;;;;20402:10:0;-1:-1:-1;;;;;20390:31:0;;:33;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20390:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20390:33:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20390:33:0;-1:-1:-1;;;;;;;;;;;16648:42:0;20425:4;20364:66;:25;:66;:::i;:::-;20470:10;;20458:45;;;-1:-1:-1;;;20458:45:0;;-1:-1:-1;;;;;;;;;;;20458:45:0;;;;;;20441:14;;-1:-1:-1;;;;;20470:10:0;;20458:30;;:45;;;;;;;;;;;;;;20470:10;20458:45;;;5:2:-1;;;;30:1;27;20:12;5:2;20458:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20458:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20458:45:0;;-1:-1:-1;;;;;;20522:20:0;;20514:39;;;;;-1:-1:-1;;;20514:39:0;;;;;;;;;;;;-1:-1:-1;;;20514:39:0;;;;;;;;;;;;;;;20616:52;20642:6;20650:17;:7;20662:4;20650:17;:11;:17;:::i;:::-;-1:-1:-1;;;;;;;;;;;16648:42:0;20616:52;;:25;:52;:::i;:::-;19953:723;;;;:::o;16874:82::-;16913:42;16874:82;:::o;21451:1564::-;21510:10;;-1:-1:-1;;;;;21510:10:0;21496;:24;;:52;;-1:-1:-1;21538:10:0;;-1:-1:-1;;;;;21538:10:0;21524;:24;21496:52;21488:76;;;;;-1:-1:-1;;;21488:76:0;;;;;;;;;;;;-1:-1:-1;;;21488:76:0;;;;;;;;;;;;;;;21586:5;;;21575:32;;;-1:-1:-1;;;21575:32:0;;17222:42;21575:32;;;;;;;;-1:-1:-1;;;;;21586:5:0;;;;21575:25;;:32;;;;;21586:5;;21575:32;;;;;;;21586:5;;21575:32;;;5:2:-1;;;;30:1;27;20:12;5:2;21575:32:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;21633:36:0;;;-1:-1:-1;;;21633:36:0;;21663:4;21633:36;;;;;;21618:12;;-1:-1:-1;16736:42:0;;-1:-1:-1;21633:21:0;;:36;;;;;;;;;;;;;;;16736:42;21633:36;;;5:2:-1;;;;30:1;27;20:12;5:2;21633:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21633:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21633:36:0;;-1:-1:-1;21684:8:0;;21680:537;;21709:16;21728:38;17565:5;21728:17;21737:7;;21728:4;:8;;:17;;;;:::i;:38::-;21709:57;-1:-1:-1;21781:41:0;16736:42;17312;21709:57;21781:41;:24;:41;:::i;:::-;21844:18;:4;21853:8;21844:18;:8;:18;:::i;:::-;21837:25;-1:-1:-1;21879:31:0;16736:42;16824;21908:1;21879:31;:23;:31;:::i;:::-;21925:34;16736:42;16824;21954:4;21925:34;:23;:34;:::i;:::-;22000:16;;;22014:1;22000:16;;;;;;;;;21976:21;;22000:16;;;21976:21;;105:10:-1;22000:16:0;88:34:-1;136:17;;-1:-1;22000:16:0;21976:40;;16736:42;22031:4;22036:1;22031:7;;;;;;;;;;;;;:13;-1:-1:-1;;;;;22031:13:0;;;-1:-1:-1;;;;;22031:13:0;;;;;16913:42;22059:4;22064:1;22059:7;;;;;;;;;;;;;:14;-1:-1:-1;;;;;22059:14:0;;;-1:-1:-1;;;;;22059:14:0;;;;;17040:42;22088:4;22093:1;22088:7;;;;;;;;-1:-1:-1;;;;;22088:13:0;;;:7;;;;;;;;;;;:13;16824:42;22118:33;22152:4;22166:1;22170:4;22184;22191:13;:3;22199:4;22191:13;:7;:13;:::i;:::-;22118:87;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22118:87:0;-1:-1:-1;;;;;22118:87: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;22118:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22118:87:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22118:87:0;;;;21680:537;;;22242:36;;;-1:-1:-1;;;22242:36:0;;22272:4;22242:36;;;;;;22227:12;;17040:42;;22242:21;;:36;;;;;;;;;;;;;;;17040:42;22242:36;;;5:2:-1;;;;30:1;27;20:12;5:2;22242:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22242:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22242:36:0;;-1:-1:-1;22293:8:0;;22289:183;;22318:33;17040:42;17130;22349:1;22318:33;:23;:33;:::i;:::-;22366:36;17040:42;17130;22397:4;22366:36;:23;:36;:::i;:::-;22417:43;;;;;;;;;;;-1:-1:-1;22417:43:0;;;;;;;;-1:-1:-1;;;22417:43:0;;17130:42;;22417:29;;:43;-1:-1:-1;22417:43:0;;;;;;;;;;-1:-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;22417:43:0;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22417:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22417:43:0;;;;22289:183;22498:37;;;-1:-1:-1;;;22498:37:0;;22529:4;22498:37;;;;;;22482:13;;-1:-1:-1;;;;;;;;;;;16648:42:0;22498:22;;:37;;;;;;;;;;;;;;;16648:42;22498:37;;;5:2:-1;;;;30:1;27;20:12;5:2;22498:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22498:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22498:37:0;;-1:-1:-1;22550:9:0;;22546:350;;22576:12;22591:46;17565:5;22591:25;22601:14;;22591:5;:9;;:25;;;;:::i;:46::-;22576:61;;22652:15;22670:48;17565:5;22670:27;22680:16;;22670:5;:9;;:27;;;;:::i;:48::-;22652:66;;22733;22771:10;;;;;;;;;-1:-1:-1;;;;;22771:10:0;-1:-1:-1;;;;;22759:31:0;;:33;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22759:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22759:33:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22759:33:0;-1:-1:-1;;;;;;;;;;;16648:42:0;22794:4;22733:66;:25;:66;:::i;:::-;22840:10;;22814:46;;-1:-1:-1;;;;;;;;;;;16648:42:0;-1:-1:-1;;;;;22840:10:0;22852:7;22814:46;:25;:46;:::i;:::-;22875:9;:7;:9::i;:::-;22546:350;;;22917:5;;;22906:24;;;-1:-1:-1;;;22906:24:0;;;;-1:-1:-1;;;;;22917:5:0;;;;22906:22;;:24;;;;22917:5;;22906:24;;;;;;22917:5;;22906:24;;;5:2:-1;;;;30:1;27;20:12;5:2;22906:24:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;22950:6:0;;:17;;-1:-1:-1;22950:6:0;-1:-1:-1;22961:5:0;22950:17;:10;:17;:::i;:::-;22941:6;:26;;;22983:24;;;;;;;;;;;;;;;;;;;;;;;;;21451:1564;;;:::o;17272:83::-;17312:42;17272:83;:::o;19488:387::-;19589:10;;19539:15;;-1:-1:-1;;;;;19589:10:0;19575;:24;19567:48;;;;;-1:-1:-1;;;19567:48:0;;;;;;;;;;;;-1:-1:-1;;;19567:48:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;19634:23:0;;;;19626:40;;;;;-1:-1:-1;;;19626:40:0;;;;;;;;;;;;;;;-1:-1:-1;;;19626:40:0;;;;;;;;;;;;;;;16736:42;-1:-1:-1;;;;;19685:22:0;;;;19677:38;;;;;-1:-1:-1;;;19677:38:0;;;;;;;;;;;;-1:-1:-1;;;19677:38:0;;;;;;;;;;;;;;;17040:42;-1:-1:-1;;;;;19734:22:0;;;;19726:38;;;;;-1:-1:-1;;;19726:38:0;;;;;;;;;;;;-1:-1:-1;;;19726:38:0;;;;;;;;;;;;;;;19785:31;;;-1:-1:-1;;;19785:31:0;;19810:4;19785:31;;;;;;-1:-1:-1;;;;;19785:16:0;;;;;:31;;;;;;;;;;;;;;:16;:31;;;5:2:-1;;;;30:1;27;20:12;5:2;19785:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;19785:31:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19785:31:0;19847:10;;19785:31;;-1:-1:-1;19827:40:0;;-1:-1:-1;;;;;19827:19:0;;;;19847:10;19785:31;19827:40;:19;:40;:::i;:::-;19488:387;;;:::o;17608:25::-;;;-1:-1:-1;;;;;17608:25:0;;:::o;16698:81::-;16736:42;16698:81;:::o;18657:171::-;18751:10;;-1:-1:-1;;;;;18751:10:0;18737;:24;18729:48;;;;;-1:-1:-1;;;18729:48:0;;;;;;;;;;;;-1:-1:-1;;;18729:48:0;;;;;;;;;;;;;;;18788:14;:32;18657:171::o;17090:83::-;17130:42;17090:83;:::o;23272:113::-;23314:7;23341:36;23361:15;:13;:15::i;:::-;23341;:13;:15::i;:::-;:19;:36;:19;:36;:::i;:::-;23334:43;;23272:113;:::o;17364:29::-;;;;:::o;17442:35::-;;;;:::o;20901:440::-;20992:10;;20942:15;;-1:-1:-1;;;;;20992:10:0;20978;:24;20970:48;;;;;-1:-1:-1;;;20970:48:0;;;;;;;;;;;;-1:-1:-1;;;20970:48:0;;;;;;;;;;;;;;;21029:14;:12;:14::i;:::-;21066:37;;;-1:-1:-1;;;21066:37:0;;21097:4;21066:37;;;;;;-1:-1:-1;;;;;;;;;;;16648:42:0;21066:22;;:37;;;;;;;;;;;;;;16648:42;21066:37;;;5:2:-1;;;;30:1;27;20:12;5:2;21066:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21066:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21066:37:0;21145:10;;21133:45;;;-1:-1:-1;;;21133:45:0;;-1:-1:-1;;;;;;;;;;;21133:45:0;;;;;;21066:37;;-1:-1:-1;21116:14:0;;-1:-1:-1;;;;;21145:10:0;;;;21133:30;;:45;;;;;21066:37;;21133:45;;;;;;;;21145:10;21133:45;;;5:2:-1;;;;30:1;27;20:12;5:2;21133:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21133:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21133:45:0;;-1:-1:-1;;;;;;21197:20:0;;21189:39;;;;;-1:-1:-1;;;21189:39:0;;;;;;;;;;;;-1:-1:-1;;;21189:39:0;;;;;;;;;;;;;;;21291:42;-1:-1:-1;;;;;;;;;;;21317:6:0;21325:7;21291:42;:25;:42;:::i;:::-;20901:440;;:::o;17400:35::-;;;;:::o;17484:32::-;;;;:::o;23556:155::-;23642:10;;-1:-1:-1;;;;;23642:10:0;23628;:24;23620:48;;;;;-1:-1:-1;;;23620:48:0;;;;;;;;;;;;-1:-1:-1;;;23620:48:0;;;;;;;;;;;;;;;23679:10;:24;;-1:-1:-1;;;;;;23679:24:0;-1:-1:-1;;;;;23679:24:0;;;;;;;;;;23556:155::o;18331:143::-;18411:10;;-1:-1:-1;;;;;18411:10:0;18397;:24;18389:48;;;;;-1:-1:-1;;;18389:48:0;;;;;;;;;;;;-1:-1:-1;;;18389:48:0;;;;;;;;;;;;;;;18448:7;:18;18331:143::o;19020:135::-;19096:10;;-1:-1:-1;;;;;19096:10:0;19082;:24;19074:48;;;;;-1:-1:-1;;;19074:48:0;;;;;;;;;;;;-1:-1:-1;;;19074:48:0;;;;;;;;;;;;;;;19133:5;:14;;-1:-1:-1;;;;;;19133:14:0;-1:-1:-1;;;;;19133:14:0;;;;;;;;;;19020:135::o;17182:83::-;17222:42;17182:83;:::o;23393:155::-;23479:10;;-1:-1:-1;;;;;23479:10:0;23465;:24;23457:48;;;;;-1:-1:-1;;;23457:48:0;;;;;;;;;;;;-1:-1:-1;;;23457:48:0;;;;;;;;;;;;;;;23516:10;:24;;-1:-1:-1;;;;;;23516:24:0;-1:-1:-1;;;;;23516:24:0;;;;;;;;;;23393:155::o;18482:167::-;18574:10;;-1:-1:-1;;;;;18574:10:0;18560;:24;18552:48;;;;;-1:-1:-1;;;18552:48:0;;;;;;;;;;;;-1:-1:-1;;;18552:48:0;;;;;;;;;;;;;;;18611:13;:30;18482:167::o;23023:118::-;23096:37;;;-1:-1:-1;;;23096:37:0;;23127:4;23096:37;;;;;;23069:7;;-1:-1:-1;;;;;;;;;;;16648:42:0;23096:22;;:37;;;;;;;;;;;;;;;16648:42;23096:37;;;5:2:-1;;;;30:1;27;20:12;18140:183:0;18226:10;;-1:-1:-1;;;;;18226:10:0;18212;:24;;:52;;-1:-1:-1;18254:10:0;;-1:-1:-1;;;;;18254:10:0;18240;:24;18212:52;18204:76;;;;;-1:-1:-1;;;18204:76:0;;;;;;;;;;;;-1:-1:-1;;;18204:76:0;;;;;;;;;;;;;;;18291:10;:24;;-1:-1:-1;;;;;;18291:24:0;-1:-1:-1;;;;;18291:24:0;;;;;;;;;;18140:183::o;19163:242::-;19216:37;;;-1:-1:-1;;;19216:37:0;;19247:4;19216:37;;;;;;19200:13;;-1:-1:-1;;;;;;;;;;;16648:42:0;19216:22;;:37;;;;;;;;;;;;;;;16648:42;19216:37;;;5:2:-1;;;;30:1;27;20:12;5:2;19216:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;19216:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19216:37:0;;-1:-1:-1;19268:9:0;;19264:134;;19320:5;;19294:39;;-1:-1:-1;;;;;;;;;;;16648:42:0;-1:-1:-1;;;;;19320:5:0;19327;19294:39;:25;:39;:::i;:::-;19359:5;;;19348:38;;;-1:-1:-1;;;19348:38:0;;17222:42;19348:38;;;;;;;-1:-1:-1;;;;;;;;;;;19348:38:0;;;;;-1:-1:-1;;;;;19359:5:0;;;;19348:25;;:38;;;;;19359:5;;19348:38;;;;;;;19359:5;;19348:38;;;5:2:-1;;;;30:1;27;20:12;5:2;19348:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;19348:38:0;;;;19264:134;19163:242;:::o;17706:21::-;;;;:::o;17523:47::-;17565:5;17523:47;:::o;17579:20::-;;;-1:-1:-1;;;;;17579:20:0;;:::o;16786:81::-;16824:42;16786:81;:::o;17002:::-;17040:42;17002:81;:::o;17640:25::-;;;-1:-1:-1;;;;;17640:25:0;;:::o;4147:136::-;4205:7;4232:43;4236:1;4239;4232:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4225:50;;4147:136;;;;;:::o;20684:141::-;20780:5;;;20769:48;;;-1:-1:-1;;;20769:48:0;;17222:42;20769:48;;;;;;;-1:-1:-1;;;;;;;;;;;20769:48:0;;;;;;;;;;;20742:7;;-1:-1:-1;;;;;20780:5:0;;;;20769:26;;:48;;;;;;;;;;;;;;20742:7;20780:5;20769:48;;;5:2:-1;;;;30:1;27;20:12;5:2;20769:48:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20769:48:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20769:48:0;;20684:141;-1:-1:-1;;20684:141:0:o;3691:181::-;3749:7;3781:5;;;3805:6;;;;3797:46;;;;;-1:-1:-1;;;3797:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;5063:471;5121:7;5366:6;5362:47;;-1:-1:-1;5396:1:0;5389:8;;5362:47;5433:5;;;5437:1;5433;:5;:1;5457:5;;;;;:10;5449:56;;;;-1:-1:-1;;;5449:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6002:132;6060:7;6087:39;6091:1;6094;6087:39;;;;;;;;;;;;;;;;;:3;:39::i;11846:176::-;11955:58;;;-1:-1:-1;;;;;11955:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;11955:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;11929:85:0;;11948:5;;11929:18;:85::i;:::-;11846:176;;;:::o;12242:621::-;12612:10;;;12611:62;;-1:-1:-1;12628:39:0;;;-1:-1:-1;;;12628:39:0;;12652:4;12628:39;;;;-1:-1:-1;;;;;12628:39:0;;;;;;;;;:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;5:2:-1;;;;30:1;27;20:12;5:2;12628:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;12628:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12628:39:0;:44;12611:62;12603:152;;;;-1:-1:-1;;;12603:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12792:62;;;-1:-1:-1;;;;;12792:62:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;12792:62:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;12766:89:0;;12785:5;;12766:18;:89::i;21349:94::-;21404:5;;;21393:42;;;-1:-1:-1;;;21393:42:0;;17222;21393;;;;;;;-1:-1:-1;;;;;;;;;;;21393:42:0;;;;;-1:-1:-1;;;;;21404:5:0;;;;21393:29;;:42;;;;;;;;;;;;;;21404:5;;21393:42;;;5:2:-1;;;;30:1;27;20:12;5:2;21393:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21393:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;21349:94:0:o;4620:192::-;4706:7;4742:12;4734:6;;;;4726:29;;;;-1:-1:-1;;;4726:29: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;4726:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4778:5:0;;;4620:192::o;6664:345::-;6750:7;6852:12;6845:5;6837:28;;;;-1:-1:-1;;;6837:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;6837:28:0;;6876:9;6892:1;6888;:5;;;;;;;6664:345;-1:-1:-1;;;;;6664:345:0:o;13885:1114::-;14489:27;14497:5;-1:-1:-1;;;;;14489:25:0;;:27::i;:::-;14481:71;;;;;-1:-1:-1;;;14481:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14626:12;14640:23;14675:5;-1:-1:-1;;;;;14667:19:0;14687:4;14667:25;;;;;;;;;;;;;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;;;14667:25:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;14625:67:0;;;;14711:7;14703:52;;;;;-1:-1:-1;;;14703:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14772:17;;:21;14768:224;;14914:10;14903:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14903:30:0;14895:85;;;;-1:-1:-1;;;14895:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8970:619;9030:4;9498:20;;9341:66;9538:23;;;;;;:42;;-1:-1:-1;9565:15:0;;;9538:42;9530:51;8970:619;-1:-1:-1;;;;8970:619:0:o
Swarm Source
bzzr://55af3b25dd7561ab3e868ce4e755b86339f4e921c6cd0f9a9b86a3bf621c20a6
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.