Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 5 from a total of 5 transactions
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
StrategyCurveRENVoterProxy
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-01-25 */ // SPDX-License-Identifier: AGPL-3.0 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); function approveStrategy(address, address) external; function setStrategy(address, address) external; function setVault(address, address) external; } 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; function approveStrategy(address) external; } contract StrategyCurveRENVoterProxy { using SafeERC20 for IERC20; using Address for address; using SafeMath for uint256; address public constant want = address(0x49849C98ae39Fff122806C06791Fa73784FB3675); address public constant crv = address(0xD533a949740bb3306d119CC777fa900bA034cd52); address public constant curve = address(0x93054188d876f558f4a66B2EF1d97d16eDf0895B); address public constant gauge = address(0xB1F2cdeC61db658F091671F5f199635aEF202CAC); address public constant voter = address(0xF147b8125d2ef93FB6965Db97D6746952a133934); address public constant uniswap = address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address public constant sushiswap = address(0xd9e1cE17f2641f24aE83637ab66a2cca9C378B9F); address public constant wbtc = address(0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599); address public constant weth = address(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2); // used for crv <> weth <> wbtc route uint256 public keepCRV = 1000; uint256 public treasuryFee = 1000; uint256 public strategistReward = 1000; uint256 public withdrawalFee = 0; uint256 public constant FEE_DENOMINATOR = 10000; address public proxy; address public dex; address public governance; address public controller; address public strategist; address public keeper; uint256 public earned; // lifetime strategy earnings denominated in `want` token event Harvested(uint256 wantEarned, uint256 lifetimeEarned); constructor(address _controller) public { governance = msg.sender; strategist = msg.sender; keeper = msg.sender; controller = _controller; // standardize constructor proxy = address(0xC17ADf949f524213a540609c386035D7D685B16F); dex = sushiswap; } function getName() external pure returns (string memory) { return "StrategyCurveRENVoterProxy"; } function setStrategist(address _strategist) external { require(msg.sender == strategist || msg.sender == governance, "!authorized"); strategist = _strategist; } function setKeeper(address _keeper) external { require(msg.sender == strategist || msg.sender == governance, "!authorized"); keeper = _keeper; } 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 setTreasuryFee(uint256 _treasuryFee) external { require(msg.sender == governance, "!governance"); treasuryFee = _treasuryFee; } function setStrategistReward(uint256 _strategistReward) external { require(msg.sender == governance, "!governance"); strategistReward = _strategistReward; } function setProxy(address _proxy) external { require(msg.sender == governance, "!governance"); proxy = _proxy; } function switchDex(bool isUniswap) external { require(msg.sender == strategist || msg.sender == governance, "!authorized"); if (isUniswap) { dex = uniswap; } else { dex = sushiswap; } } 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(wbtc != address(_asset), "wbtc"); 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 == keeper || msg.sender == strategist || msg.sender == governance, "!keepers"); 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(dex, 0); IERC20(crv).safeApprove(dex, _crv); address[] memory path = new address[](3); path[0] = crv; path[1] = weth; path[2] = wbtc; Uni(dex).swapExactTokensForTokens(_crv, uint256(0), path, address(this), now.add(1800)); } uint256 _wbtc = IERC20(wbtc).balanceOf(address(this)); if (_wbtc > 0) { IERC20(wbtc).safeApprove(curve, 0); IERC20(wbtc).safeApprove(curve, _wbtc); ICurveFi(curve).add_liquidity([0, _wbtc], 0); } uint256 _want = IERC20(want).balanceOf(address(this)); if (_want > 0) { uint256 _fee = _want.mul(treasuryFee).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":false,"inputs":[],"name":"deposit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"dex","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","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":"keeper","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"address","name":"_keeper","type":"address"}],"name":"setKeeper","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":"_treasuryFee","type":"uint256"}],"name":"setTreasuryFee","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":"sushiswap","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"bool","name":"isUniswap","type":"bool"}],"name":"switchDex","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"treasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"uniswap","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":"wbtc","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
60806040526103e86000556103e86001556103e8600255600060035534801561002757600080fd5b506040516124953803806124958339818101604052602081101561004a57600080fd5b5051600680546001600160a01b03199081163390811790925560088054821683179055600980548216909217909155600780546001600160a01b039093169282169290921790915560048054821673c17adf949f524213a540609c386035d7d685b16f1790556005805490911673d9e1ce17f2641f24ae83637ab66a2cca9c378b9f1790556123b7806100de6000396000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c80637fef901a1161013b578063ac1e5025116100b8578063d0e30db01161007c578063d0e30db01461053e578063d6f1926214610546578063d73792a91461054e578063ec55688914610556578063f77c47911461055e57610248565b8063ac1e5025146104e3578063aced166114610500578063c1a3d44c14610508578063c7b9d53014610510578063cc32d1761461053657610248565b8063955383bd116100ff578063955383bd1461046a57806397107d6d146104875780639be28785146104ad578063a6f19c84146104b5578063ab033ea9146104bd57610248565b80637fef901a146104245780638158676e1461042c578063853828b6146104345780638bc7e8c41461043c57806392eefe9b1461044457610248565b806346c96aac116101c95780636bc558761161018d5780636bc55876146103b25780637165485d146103d1578063722713f7146103d9578063748747e6146103e157806377e741c71461040757610248565b806346c96aac1461036c57806351cff8d9146103745780635aa6e6751461039a578063692058c2146103a25780636a4874a1146103aa57610248565b80632681f7e4116102105780632681f7e41461032f5780632e1a7d4d146103375780633cdc5389146103545780633fc8cef31461035c5780634641257d1461036457610248565b80630d596cdf1461024d578063115880861461026c57806317d7de7c146102865780631f1fcd51146103035780631fe4a68614610327575b600080fd5b61026a6004803603602081101561026357600080fd5b5035610566565b005b6102746105b8565b60408051918252519081900360200190f35b61028e61064c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102c85781810151838201526020016102b0565b50505050905090810190601f1680156102f55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61030b610683565b604080516001600160a01b039092168252519081900360200190f35b61030b610695565b61030b6106a4565b61026a6004803603602081101561034d57600080fd5b50356106bc565b61030b610980565b61030b610998565b61026a6109b0565b61030b61119a565b6102746004803603602081101561038a57600080fd5b50356001600160a01b03166111b2565b61030b6113a4565b61030b6113b3565b61030b6113c2565b61026a600480360360208110156103c857600080fd5b503515156113da565b61030b611497565b6102746114af565b61026a600480360360208110156103f757600080fd5b50356001600160a01b03166114d5565b61026a6004803603602081101561041d57600080fd5b5035611559565b6102746115ab565b6102746115b1565b6102746115b7565b61027461177a565b61026a6004803603602081101561045a57600080fd5b50356001600160a01b0316611780565b61026a6004803603602081101561048057600080fd5b50356117ef565b61026a6004803603602081101561049d57600080fd5b50356001600160a01b0316611841565b61030b6118b0565b61030b6118c8565b61026a600480360360208110156104d357600080fd5b50356001600160a01b03166118e0565b61026a600480360360208110156104f957600080fd5b503561194f565b61030b6119a1565b6102746119b0565b61026a6004803603602081101561052657600080fd5b50356001600160a01b03166119ff565b610274611a83565b61026a611a89565b610274611bc8565b610274611bce565b61030b611bd4565b61030b611be3565b6006546001600160a01b031633146105b3576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600255565b60048054604080516370a0823160e01b815273b1f2cdec61db658f091671f5f199635aef202cac93810193909352516000926001600160a01b03909216916370a08231916024808301926020929190829003018186803b15801561061b57600080fd5b505afa15801561062f573d6000803e3d6000fd5b505050506040513d602081101561064557600080fd5b5051905090565b60408051808201909152601a81527f5374726174656779437572766552454e566f74657250726f7879000000000000602082015290565b6000805160206122e283398151915281565b6008546001600160a01b031681565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6007546001600160a01b03163314610709576040805162461bcd60e51b815260206004820152600b60248201526a10b1b7b73a3937b63632b960a91b604482015290519081900360640190fd5b604080516370a0823160e01b815230600482015290516000916000805160206122e2833981519152916370a0823191602480820192602092909190829003018186803b15801561075857600080fd5b505afa15801561076c573d6000803e3d6000fd5b505050506040513d602081101561078257600080fd5b50519050818110156107bb576107a66107a1838363ffffffff611bf216565b611c3d565b91506107b8828263ffffffff611cee16565b91505b60006107e46127106107d860035486611d4890919063ffffffff16565b9063ffffffff611da116565b905061087f600760009054906101000a90046001600160a01b03166001600160a01b0316639ec5a8946040518163ffffffff1660e01b815260040160206040518083038186803b15801561083757600080fd5b505afa15801561084b573d6000803e3d6000fd5b505050506040513d602081101561086157600080fd5b50516000805160206122e2833981519152908363ffffffff611de316565b60075460408051632988bb9f60e21b81526000805160206122e2833981519152600482015290516000926001600160a01b03169163a622ee7c916024808301926020929190829003018186803b1580156108d857600080fd5b505afa1580156108ec573d6000803e3d6000fd5b505050506040513d602081101561090257600080fd5b505190506001600160a01b03811661094a576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b61097a8161095e868563ffffffff611bf216565b6000805160206122e2833981519152919063ffffffff611de316565b50505050565b732260fac5e5542a773aa44fbcfedf7c193bc2c59981565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b6009546001600160a01b03163314806109d357506008546001600160a01b031633145b806109e857506006546001600160a01b031633145b610a24576040805162461bcd60e51b8152602060048201526008602482015267216b65657065727360c01b604482015290519081900360640190fd5b600480546040805163072e008f60e11b815273b1f2cdec61db658f091671f5f199635aef202cac93810193909352516001600160a01b0390911691630e5c011e91602480830192600092919082900301818387803b158015610a8557600080fd5b505af1158015610a99573d6000803e3d6000fd5b5050604080516370a0823160e01b815230600482015290516000935073d533a949740bb3306d119cc777fa900ba034cd5292506370a0823191602480820192602092909190829003018186803b158015610af257600080fd5b505afa158015610b06573d6000803e3d6000fd5b505050506040513d6020811015610b1c57600080fd5b505190508015610db1576000610b436127106107d860005485611d4890919063ffffffff16565b9050610b7e73d533a949740bb3306d119cc777fa900ba034cd5273f147b8125d2ef93fb6965db97d6746952a1339348363ffffffff611de316565b610b8e828263ffffffff611bf216565b600554909250610bc49073d533a949740bb3306d119cc777fa900ba034cd52906001600160a01b0316600063ffffffff611e3a16565b600554610bf69073d533a949740bb3306d119cc777fa900ba034cd52906001600160a01b03168463ffffffff611e3a16565b6040805160038082526080820190925260609160208201838038833901905050905073d533a949740bb3306d119cc777fa900ba034cd5281600081518110610c3a57fe5b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110610c7c57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050732260fac5e5542a773aa44fbcfedf7c193bc2c59981600281518110610cbe57fe5b6001600160a01b039283166020918202929092010152600554166338ed17398460008430610cf44261070863ffffffff611cee16565b6040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03166001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015610d6d578181015183820152602001610d55565b505050509050019650505050505050600060405180830381600087803b158015610d9657600080fd5b505af1158015610daa573d6000803e3d6000fd5b5050505050505b604080516370a0823160e01b81523060048201529051600091732260fac5e5542a773aa44fbcfedf7c193bc2c599916370a0823191602480820192602092909190829003018186803b158015610e0657600080fd5b505afa158015610e1a573d6000803e3d6000fd5b505050506040513d6020811015610e3057600080fd5b505190508015610f5557610e74732260fac5e5542a773aa44fbcfedf7c193bc2c5997393054188d876f558f4a66b2ef1d97d16edf0895b600063ffffffff611e3a16565b610ead732260fac5e5542a773aa44fbcfedf7c193bc2c5997393054188d876f558f4a66b2ef1d97d16edf0895b8363ffffffff611e3a16565b6040805180820182526000808252602082018490528251630b4c7e4d60e01b81527393054188d876f558f4a66b2ef1d97d16edf0895b93630b4c7e4d9392916004019081908490808383875b83811015610f11578181015183820152602001610ef9565b5050505090500182815260200192505050600060405180830381600087803b158015610f3c57600080fd5b505af1158015610f50573d6000803e3d6000fd5b505050505b604080516370a0823160e01b815230600482015290516000916000805160206122e2833981519152916370a0823191602480820192602092909190829003018186803b158015610fa457600080fd5b505afa158015610fb8573d6000803e3d6000fd5b505050506040513d6020811015610fce57600080fd5b5051905080156110e6576000610ff56127106107d860015485611d4890919063ffffffff16565b905060006110146127106107d860025486611d4890919063ffffffff16565b90506110af600760009054906101000a90046001600160a01b03166001600160a01b0316639ec5a8946040518163ffffffff1660e01b815260040160206040518083038186803b15801561106757600080fd5b505afa15801561107b573d6000803e3d6000fd5b505050506040513d602081101561109157600080fd5b50516000805160206122e2833981519152908463ffffffff611de316565b6008546110db906000805160206122e2833981519152906001600160a01b03168363ffffffff611de316565b6110e3611a89565b50505b6004805460408051637c1e845d60e11b815290516001600160a01b039092169263f83d08ba92828201926000929082900301818387803b15801561112957600080fd5b505af115801561113d573d6000803e3d6000fd5b5050600a54611155925090508263ffffffff611cee16565b600a81905560408051838152602081019290925280517ffa07446fad45314351eb89109a154880278451332bb87f1824d435fe58da59399281900390910190a1505050565b73f147b8125d2ef93fb6965db97d6746952a13393481565b6007546000906001600160a01b03163314611202576040805162461bcd60e51b815260206004820152600b60248201526a10b1b7b73a3937b63632b960a91b604482015290519081900360640190fd5b6000805160206122e28339815191526001600160a01b0383161415611257576040805162461bcd60e51b815260206004808301919091526024820152631dd85b9d60e21b604482015290519081900360640190fd5b73d533a949740bb3306d119cc777fa900ba034cd526001600160a01b03831614156112af576040805162461bcd60e51b815260206004820152600360248201526231b93b60e91b604482015290519081900360640190fd5b732260fac5e5542a773aa44fbcfedf7c193bc2c5996001600160a01b038316141561130a576040805162461bcd60e51b815260206004808301919091526024820152637762746360e01b604482015290519081900360640190fd5b604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b15801561135057600080fd5b505afa158015611364573d6000803e3d6000fd5b505050506040513d602081101561137a57600080fd5b505160075490915061139f906001600160a01b0384811691168363ffffffff611de316565b919050565b6006546001600160a01b031681565b6005546001600160a01b031681565b73d533a949740bb3306d119cc777fa900ba034cd5281565b6008546001600160a01b03163314806113fd57506006546001600160a01b031633145b61143c576040805162461bcd60e51b815260206004820152600b60248201526a08585d5d1a1bdc9a5e995960aa1b604482015290519081900360640190fd5b801561146d57600580546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d179055611494565b600580546001600160a01b03191673d9e1ce17f2641f24ae83637ab66a2cca9c378b9f1790555b50565b7393054188d876f558f4a66b2ef1d97d16edf0895b81565b60006114d06114bc6105b8565b6114c46119b0565b9063ffffffff611cee16565b905090565b6008546001600160a01b03163314806114f857506006546001600160a01b031633145b611537576040805162461bcd60e51b815260206004820152600b60248201526a08585d5d1a1bdc9a5e995960aa1b604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146115a6576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600155565b60005481565b60025481565b6007546000906001600160a01b03163314611607576040805162461bcd60e51b815260206004820152600b60248201526a10b1b7b73a3937b63632b960a91b604482015290519081900360640190fd5b61160f611f4d565b604080516370a0823160e01b815230600482015290516000805160206122e2833981519152916370a08231916024808301926020929190829003018186803b15801561165a57600080fd5b505afa15801561166e573d6000803e3d6000fd5b505050506040513d602081101561168457600080fd5b505160075460408051632988bb9f60e21b81526000805160206122e2833981519152600482015290519293506000926001600160a01b039092169163a622ee7c91602480820192602092909190829003018186803b1580156116e557600080fd5b505afa1580156116f9573d6000803e3d6000fd5b505050506040513d602081101561170f57600080fd5b505190506001600160a01b038116611757576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b6117766000805160206122e2833981519152828463ffffffff611de316565b5090565b60035481565b6006546001600160a01b031633146117cd576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b0316331461183c576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600055565b6006546001600160a01b0316331461188e576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b73d9e1ce17f2641f24ae83637ab66a2cca9c378b9f81565b73b1f2cdec61db658f091671f5f199635aef202cac81565b6006546001600160a01b0316331461192d576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b0316331461199c576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600355565b6009546001600160a01b031681565b604080516370a0823160e01b815230600482015290516000916000805160206122e2833981519152916370a0823191602480820192602092909190829003018186803b15801561061b57600080fd5b6008546001600160a01b0316331480611a2257506006546001600160a01b031633145b611a61576040805162461bcd60e51b815260206004820152600b60248201526a08585d5d1a1bdc9a5e995960aa1b604482015290519081900360640190fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b60015481565b604080516370a0823160e01b815230600482015290516000916000805160206122e2833981519152916370a0823191602480820192602092909190829003018186803b158015611ad857600080fd5b505afa158015611aec573d6000803e3d6000fd5b505050506040513d6020811015611b0257600080fd5b50519050801561149457600454611b38906000805160206122e2833981519152906001600160a01b03168363ffffffff611de316565b6004805460408051631f2c13e160e31b815273b1f2cdec61db658f091671f5f199635aef202cac938101939093526000805160206122e28339815191526024840152516001600160a01b039091169163f9609f0891604480830192600092919082900301818387803b158015611bad57600080fd5b505af1158015611bc1573d6000803e3d6000fd5b5050505050565b600a5481565b61271081565b6004546001600160a01b031681565b6007546001600160a01b031681565b6000611c3483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ff1565b90505b92915050565b6004805460408051636ce5768960e11b815273b1f2cdec61db658f091671f5f199635aef202cac938101939093526000805160206122e2833981519152602484015260448301849052516000926001600160a01b039092169163d9caed1291606480830192602092919082900301818787803b158015611cbc57600080fd5b505af1158015611cd0573d6000803e3d6000fd5b505050506040513d6020811015611ce657600080fd5b505192915050565b600082820183811015611c34576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082611d5757506000611c37565b82820282848281611d6457fe5b0414611c345760405162461bcd60e51b81526004018080602001828103825260218152602001806123026021913960400191505060405180910390fd5b6000611c3483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612088565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611e359084906120ed565b505050565b801580611ec0575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b158015611e9257600080fd5b505afa158015611ea6573d6000803e3d6000fd5b505050506040513d6020811015611ebc57600080fd5b5051155b611efb5760405162461bcd60e51b815260040180806020018281038252603681526020018061234d6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052611e359084906120ed565b60048054604080516301395c5960e31b815273b1f2cdec61db658f091671f5f199635aef202cac938101939093526000805160206122e28339815191526024840152516001600160a01b03909116916309cae2c89160448083019260209291908290030181600087803b158015611fc357600080fd5b505af1158015611fd7573d6000803e3d6000fd5b505050506040513d6020811015611fed57600080fd5b5050565b600081848411156120805760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561204557818101518382015260200161202d565b50505050905090810190601f1680156120725780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600081836120d75760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561204557818101518382015260200161202d565b5060008385816120e357fe5b0495945050505050565b6120ff826001600160a01b03166122a5565b612150576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b6020831061218e5780518252601f19909201916020918201910161216f565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146121f0576040519150601f19603f3d011682016040523d82523d6000602084013e6121f5565b606091505b50915091508161224c576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b80511561097a5780806020019051602081101561226857600080fd5b505161097a5760405162461bcd60e51b815260040180806020018281038252602a815260200180612323602a913960400191505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906122d957508115155b94935050505056fe00000000000000000000000049849c98ae39fff122806c06791fa73784fb3675536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a265627a7a72315820d569a70c9b9624f15c12ad820992367e82939d8ad671e2f84c6886de84bc1dc464736f6c634300051100320000000000000000000000009e65ad11b299ca0abefc2799ddb6314ef2d91080
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102485760003560e01c80637fef901a1161013b578063ac1e5025116100b8578063d0e30db01161007c578063d0e30db01461053e578063d6f1926214610546578063d73792a91461054e578063ec55688914610556578063f77c47911461055e57610248565b8063ac1e5025146104e3578063aced166114610500578063c1a3d44c14610508578063c7b9d53014610510578063cc32d1761461053657610248565b8063955383bd116100ff578063955383bd1461046a57806397107d6d146104875780639be28785146104ad578063a6f19c84146104b5578063ab033ea9146104bd57610248565b80637fef901a146104245780638158676e1461042c578063853828b6146104345780638bc7e8c41461043c57806392eefe9b1461044457610248565b806346c96aac116101c95780636bc558761161018d5780636bc55876146103b25780637165485d146103d1578063722713f7146103d9578063748747e6146103e157806377e741c71461040757610248565b806346c96aac1461036c57806351cff8d9146103745780635aa6e6751461039a578063692058c2146103a25780636a4874a1146103aa57610248565b80632681f7e4116102105780632681f7e41461032f5780632e1a7d4d146103375780633cdc5389146103545780633fc8cef31461035c5780634641257d1461036457610248565b80630d596cdf1461024d578063115880861461026c57806317d7de7c146102865780631f1fcd51146103035780631fe4a68614610327575b600080fd5b61026a6004803603602081101561026357600080fd5b5035610566565b005b6102746105b8565b60408051918252519081900360200190f35b61028e61064c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102c85781810151838201526020016102b0565b50505050905090810190601f1680156102f55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61030b610683565b604080516001600160a01b039092168252519081900360200190f35b61030b610695565b61030b6106a4565b61026a6004803603602081101561034d57600080fd5b50356106bc565b61030b610980565b61030b610998565b61026a6109b0565b61030b61119a565b6102746004803603602081101561038a57600080fd5b50356001600160a01b03166111b2565b61030b6113a4565b61030b6113b3565b61030b6113c2565b61026a600480360360208110156103c857600080fd5b503515156113da565b61030b611497565b6102746114af565b61026a600480360360208110156103f757600080fd5b50356001600160a01b03166114d5565b61026a6004803603602081101561041d57600080fd5b5035611559565b6102746115ab565b6102746115b1565b6102746115b7565b61027461177a565b61026a6004803603602081101561045a57600080fd5b50356001600160a01b0316611780565b61026a6004803603602081101561048057600080fd5b50356117ef565b61026a6004803603602081101561049d57600080fd5b50356001600160a01b0316611841565b61030b6118b0565b61030b6118c8565b61026a600480360360208110156104d357600080fd5b50356001600160a01b03166118e0565b61026a600480360360208110156104f957600080fd5b503561194f565b61030b6119a1565b6102746119b0565b61026a6004803603602081101561052657600080fd5b50356001600160a01b03166119ff565b610274611a83565b61026a611a89565b610274611bc8565b610274611bce565b61030b611bd4565b61030b611be3565b6006546001600160a01b031633146105b3576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600255565b60048054604080516370a0823160e01b815273b1f2cdec61db658f091671f5f199635aef202cac93810193909352516000926001600160a01b03909216916370a08231916024808301926020929190829003018186803b15801561061b57600080fd5b505afa15801561062f573d6000803e3d6000fd5b505050506040513d602081101561064557600080fd5b5051905090565b60408051808201909152601a81527f5374726174656779437572766552454e566f74657250726f7879000000000000602082015290565b6000805160206122e283398151915281565b6008546001600160a01b031681565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6007546001600160a01b03163314610709576040805162461bcd60e51b815260206004820152600b60248201526a10b1b7b73a3937b63632b960a91b604482015290519081900360640190fd5b604080516370a0823160e01b815230600482015290516000916000805160206122e2833981519152916370a0823191602480820192602092909190829003018186803b15801561075857600080fd5b505afa15801561076c573d6000803e3d6000fd5b505050506040513d602081101561078257600080fd5b50519050818110156107bb576107a66107a1838363ffffffff611bf216565b611c3d565b91506107b8828263ffffffff611cee16565b91505b60006107e46127106107d860035486611d4890919063ffffffff16565b9063ffffffff611da116565b905061087f600760009054906101000a90046001600160a01b03166001600160a01b0316639ec5a8946040518163ffffffff1660e01b815260040160206040518083038186803b15801561083757600080fd5b505afa15801561084b573d6000803e3d6000fd5b505050506040513d602081101561086157600080fd5b50516000805160206122e2833981519152908363ffffffff611de316565b60075460408051632988bb9f60e21b81526000805160206122e2833981519152600482015290516000926001600160a01b03169163a622ee7c916024808301926020929190829003018186803b1580156108d857600080fd5b505afa1580156108ec573d6000803e3d6000fd5b505050506040513d602081101561090257600080fd5b505190506001600160a01b03811661094a576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b61097a8161095e868563ffffffff611bf216565b6000805160206122e2833981519152919063ffffffff611de316565b50505050565b732260fac5e5542a773aa44fbcfedf7c193bc2c59981565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b6009546001600160a01b03163314806109d357506008546001600160a01b031633145b806109e857506006546001600160a01b031633145b610a24576040805162461bcd60e51b8152602060048201526008602482015267216b65657065727360c01b604482015290519081900360640190fd5b600480546040805163072e008f60e11b815273b1f2cdec61db658f091671f5f199635aef202cac93810193909352516001600160a01b0390911691630e5c011e91602480830192600092919082900301818387803b158015610a8557600080fd5b505af1158015610a99573d6000803e3d6000fd5b5050604080516370a0823160e01b815230600482015290516000935073d533a949740bb3306d119cc777fa900ba034cd5292506370a0823191602480820192602092909190829003018186803b158015610af257600080fd5b505afa158015610b06573d6000803e3d6000fd5b505050506040513d6020811015610b1c57600080fd5b505190508015610db1576000610b436127106107d860005485611d4890919063ffffffff16565b9050610b7e73d533a949740bb3306d119cc777fa900ba034cd5273f147b8125d2ef93fb6965db97d6746952a1339348363ffffffff611de316565b610b8e828263ffffffff611bf216565b600554909250610bc49073d533a949740bb3306d119cc777fa900ba034cd52906001600160a01b0316600063ffffffff611e3a16565b600554610bf69073d533a949740bb3306d119cc777fa900ba034cd52906001600160a01b03168463ffffffff611e3a16565b6040805160038082526080820190925260609160208201838038833901905050905073d533a949740bb3306d119cc777fa900ba034cd5281600081518110610c3a57fe5b60200260200101906001600160a01b031690816001600160a01b03168152505073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600181518110610c7c57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050732260fac5e5542a773aa44fbcfedf7c193bc2c59981600281518110610cbe57fe5b6001600160a01b039283166020918202929092010152600554166338ed17398460008430610cf44261070863ffffffff611cee16565b6040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03166001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015610d6d578181015183820152602001610d55565b505050509050019650505050505050600060405180830381600087803b158015610d9657600080fd5b505af1158015610daa573d6000803e3d6000fd5b5050505050505b604080516370a0823160e01b81523060048201529051600091732260fac5e5542a773aa44fbcfedf7c193bc2c599916370a0823191602480820192602092909190829003018186803b158015610e0657600080fd5b505afa158015610e1a573d6000803e3d6000fd5b505050506040513d6020811015610e3057600080fd5b505190508015610f5557610e74732260fac5e5542a773aa44fbcfedf7c193bc2c5997393054188d876f558f4a66b2ef1d97d16edf0895b600063ffffffff611e3a16565b610ead732260fac5e5542a773aa44fbcfedf7c193bc2c5997393054188d876f558f4a66b2ef1d97d16edf0895b8363ffffffff611e3a16565b6040805180820182526000808252602082018490528251630b4c7e4d60e01b81527393054188d876f558f4a66b2ef1d97d16edf0895b93630b4c7e4d9392916004019081908490808383875b83811015610f11578181015183820152602001610ef9565b5050505090500182815260200192505050600060405180830381600087803b158015610f3c57600080fd5b505af1158015610f50573d6000803e3d6000fd5b505050505b604080516370a0823160e01b815230600482015290516000916000805160206122e2833981519152916370a0823191602480820192602092909190829003018186803b158015610fa457600080fd5b505afa158015610fb8573d6000803e3d6000fd5b505050506040513d6020811015610fce57600080fd5b5051905080156110e6576000610ff56127106107d860015485611d4890919063ffffffff16565b905060006110146127106107d860025486611d4890919063ffffffff16565b90506110af600760009054906101000a90046001600160a01b03166001600160a01b0316639ec5a8946040518163ffffffff1660e01b815260040160206040518083038186803b15801561106757600080fd5b505afa15801561107b573d6000803e3d6000fd5b505050506040513d602081101561109157600080fd5b50516000805160206122e2833981519152908463ffffffff611de316565b6008546110db906000805160206122e2833981519152906001600160a01b03168363ffffffff611de316565b6110e3611a89565b50505b6004805460408051637c1e845d60e11b815290516001600160a01b039092169263f83d08ba92828201926000929082900301818387803b15801561112957600080fd5b505af115801561113d573d6000803e3d6000fd5b5050600a54611155925090508263ffffffff611cee16565b600a81905560408051838152602081019290925280517ffa07446fad45314351eb89109a154880278451332bb87f1824d435fe58da59399281900390910190a1505050565b73f147b8125d2ef93fb6965db97d6746952a13393481565b6007546000906001600160a01b03163314611202576040805162461bcd60e51b815260206004820152600b60248201526a10b1b7b73a3937b63632b960a91b604482015290519081900360640190fd5b6000805160206122e28339815191526001600160a01b0383161415611257576040805162461bcd60e51b815260206004808301919091526024820152631dd85b9d60e21b604482015290519081900360640190fd5b73d533a949740bb3306d119cc777fa900ba034cd526001600160a01b03831614156112af576040805162461bcd60e51b815260206004820152600360248201526231b93b60e91b604482015290519081900360640190fd5b732260fac5e5542a773aa44fbcfedf7c193bc2c5996001600160a01b038316141561130a576040805162461bcd60e51b815260206004808301919091526024820152637762746360e01b604482015290519081900360640190fd5b604080516370a0823160e01b815230600482015290516001600160a01b038416916370a08231916024808301926020929190829003018186803b15801561135057600080fd5b505afa158015611364573d6000803e3d6000fd5b505050506040513d602081101561137a57600080fd5b505160075490915061139f906001600160a01b0384811691168363ffffffff611de316565b919050565b6006546001600160a01b031681565b6005546001600160a01b031681565b73d533a949740bb3306d119cc777fa900ba034cd5281565b6008546001600160a01b03163314806113fd57506006546001600160a01b031633145b61143c576040805162461bcd60e51b815260206004820152600b60248201526a08585d5d1a1bdc9a5e995960aa1b604482015290519081900360640190fd5b801561146d57600580546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d179055611494565b600580546001600160a01b03191673d9e1ce17f2641f24ae83637ab66a2cca9c378b9f1790555b50565b7393054188d876f558f4a66b2ef1d97d16edf0895b81565b60006114d06114bc6105b8565b6114c46119b0565b9063ffffffff611cee16565b905090565b6008546001600160a01b03163314806114f857506006546001600160a01b031633145b611537576040805162461bcd60e51b815260206004820152600b60248201526a08585d5d1a1bdc9a5e995960aa1b604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146115a6576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600155565b60005481565b60025481565b6007546000906001600160a01b03163314611607576040805162461bcd60e51b815260206004820152600b60248201526a10b1b7b73a3937b63632b960a91b604482015290519081900360640190fd5b61160f611f4d565b604080516370a0823160e01b815230600482015290516000805160206122e2833981519152916370a08231916024808301926020929190829003018186803b15801561165a57600080fd5b505afa15801561166e573d6000803e3d6000fd5b505050506040513d602081101561168457600080fd5b505160075460408051632988bb9f60e21b81526000805160206122e2833981519152600482015290519293506000926001600160a01b039092169163a622ee7c91602480820192602092909190829003018186803b1580156116e557600080fd5b505afa1580156116f9573d6000803e3d6000fd5b505050506040513d602081101561170f57600080fd5b505190506001600160a01b038116611757576040805162461bcd60e51b8152602060048201526006602482015265085d985d5b1d60d21b604482015290519081900360640190fd5b6117766000805160206122e2833981519152828463ffffffff611de316565b5090565b60035481565b6006546001600160a01b031633146117cd576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b0316331461183c576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600055565b6006546001600160a01b0316331461188e576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b73d9e1ce17f2641f24ae83637ab66a2cca9c378b9f81565b73b1f2cdec61db658f091671f5f199635aef202cac81565b6006546001600160a01b0316331461192d576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b0316331461199c576040805162461bcd60e51b815260206004820152600b60248201526a21676f7665726e616e636560a81b604482015290519081900360640190fd5b600355565b6009546001600160a01b031681565b604080516370a0823160e01b815230600482015290516000916000805160206122e2833981519152916370a0823191602480820192602092909190829003018186803b15801561061b57600080fd5b6008546001600160a01b0316331480611a2257506006546001600160a01b031633145b611a61576040805162461bcd60e51b815260206004820152600b60248201526a08585d5d1a1bdc9a5e995960aa1b604482015290519081900360640190fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b60015481565b604080516370a0823160e01b815230600482015290516000916000805160206122e2833981519152916370a0823191602480820192602092909190829003018186803b158015611ad857600080fd5b505afa158015611aec573d6000803e3d6000fd5b505050506040513d6020811015611b0257600080fd5b50519050801561149457600454611b38906000805160206122e2833981519152906001600160a01b03168363ffffffff611de316565b6004805460408051631f2c13e160e31b815273b1f2cdec61db658f091671f5f199635aef202cac938101939093526000805160206122e28339815191526024840152516001600160a01b039091169163f9609f0891604480830192600092919082900301818387803b158015611bad57600080fd5b505af1158015611bc1573d6000803e3d6000fd5b5050505050565b600a5481565b61271081565b6004546001600160a01b031681565b6007546001600160a01b031681565b6000611c3483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ff1565b90505b92915050565b6004805460408051636ce5768960e11b815273b1f2cdec61db658f091671f5f199635aef202cac938101939093526000805160206122e2833981519152602484015260448301849052516000926001600160a01b039092169163d9caed1291606480830192602092919082900301818787803b158015611cbc57600080fd5b505af1158015611cd0573d6000803e3d6000fd5b505050506040513d6020811015611ce657600080fd5b505192915050565b600082820183811015611c34576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082611d5757506000611c37565b82820282848281611d6457fe5b0414611c345760405162461bcd60e51b81526004018080602001828103825260218152602001806123026021913960400191505060405180910390fd5b6000611c3483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612088565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611e359084906120ed565b505050565b801580611ec0575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b158015611e9257600080fd5b505afa158015611ea6573d6000803e3d6000fd5b505050506040513d6020811015611ebc57600080fd5b5051155b611efb5760405162461bcd60e51b815260040180806020018281038252603681526020018061234d6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052611e359084906120ed565b60048054604080516301395c5960e31b815273b1f2cdec61db658f091671f5f199635aef202cac938101939093526000805160206122e28339815191526024840152516001600160a01b03909116916309cae2c89160448083019260209291908290030181600087803b158015611fc357600080fd5b505af1158015611fd7573d6000803e3d6000fd5b505050506040513d6020811015611fed57600080fd5b5050565b600081848411156120805760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561204557818101518382015260200161202d565b50505050905090810190601f1680156120725780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600081836120d75760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561204557818101518382015260200161202d565b5060008385816120e357fe5b0495945050505050565b6120ff826001600160a01b03166122a5565b612150576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b6020831061218e5780518252601f19909201916020918201910161216f565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146121f0576040519150601f19603f3d011682016040523d82523d6000602084013e6121f5565b606091505b50915091508161224c576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b80511561097a5780806020019051602081101561226857600080fd5b505161097a5760405162461bcd60e51b815260040180806020018281038252602a815260200180612323602a913960400191505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a4708181148015906122d957508115155b94935050505056fe00000000000000000000000049849c98ae39fff122806c06791fa73784fb3675536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a265627a7a72315820d569a70c9b9624f15c12ad820992367e82939d8ad671e2f84c6886de84bc1dc464736f6c63430005110032
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
16678:8018:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16678:8018:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19527:179;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19527:179:0;;:::i;:::-;;24131:115;;;:::i;:::-;;;;;;;;;;;;;;;;18549:111;;;:::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;18549:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16821:82;;;:::i;:::-;;;;-1:-1:-1;;;;;16821:82:0;;;;;;;;;;;;;;18010:25;;;:::i;17272:85::-;;;:::i;20909:723::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20909:723:0;;:::i;17458:82::-;;;:::i;17547:::-;;;:::i;22407:1590::-;;;:::i;17180:83::-;;;:::i;20442:389::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20442:389:0;-1:-1:-1;;;;;20442:389:0;;:::i;17946:25::-;;;:::i;17919:18::-;;;:::i;16910:81::-;;;:::i;19857:252::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19857:252:0;;;;:::i;17000:83::-;;;:::i;24254:113::-;;;:::i;18859:167::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18859:167:0;-1:-1:-1;;;;;18859:167:0;;:::i;19360:159::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19360:159:0;;:::i;17676:29::-;;;:::i;17752:38::-;;;:::i;21857:440::-;;;:::i;17797:32::-;;;:::i;24538:155::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24538:155:0;-1:-1:-1;;;;;24538:155:0;;:::i;19034:143::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19034:143:0;;:::i;19714:135::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19714:135:0;-1:-1:-1;;;;;19714:135:0;;:::i;17364:87::-;;;:::i;17090:83::-;;;:::i;24375:155::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24375:155:0;-1:-1:-1;;;;;24375:155:0;;:::i;19185:167::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19185:167:0;;:::i;18042:21::-;;;:::i;24005:118::-;;;:::i;18668:183::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18668:183:0;-1:-1:-1;;;;;18668:183:0;;:::i;17712:33::-;;;:::i;20117:242::-;;;:::i;18072:21::-;;;:::i;17836:47::-;;;:::i;17892:20::-;;;:::i;17978:25::-;;;:::i;19527:179::-;19625:10;;-1:-1:-1;;;;;19625:10:0;19611;:24;19603:48;;;;;-1:-1:-1;;;19603:48:0;;;;;;;;;;;;-1:-1:-1;;;19603:48:0;;;;;;;;;;;;;;;19662:16;:36;19527:179::o;24131:115::-;24215:5;;;24204:34;;;-1:-1:-1;;;24204:34:0;;17130:42;24204:34;;;;;;;;24177:7;;-1:-1:-1;;;;;24215:5:0;;;;24204:27;;:34;;;;;;;;;;;;;;24215:5;24204:34;;;5:2:-1;;;;30:1;27;20:12;5:2;24204:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;24204:34:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24204:34:0;;-1:-1:-1;24131:115:0;:::o;18549:111::-;18617:35;;;;;;;;;;;;;;;;;18549:111;:::o;16821:82::-;-1:-1:-1;;;;;;;;;;;16821:82:0;:::o;18010:25::-;;;-1:-1:-1;;;;;18010:25:0;;:::o;17272:85::-;17314:42;17272:85;:::o;20909:723::-;20986:10;;-1:-1:-1;;;;;20986:10:0;20972;:24;20964:48;;;;;-1:-1:-1;;;20964:48:0;;;;;;;;;;;;-1:-1:-1;;;20964:48:0;;;;;;;;;;;;;;;21042:37;;;-1:-1:-1;;;21042:37:0;;21073:4;21042:37;;;;;;21023:16;;-1:-1:-1;;;;;;;;;;;16860:42:0;21042:22;;:37;;;;;;;;;;;;;;;16860:42;21042:37;;;5:2:-1;;;;30:1;27;20:12;5:2;21042:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21042:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21042:37:0;;-1:-1:-1;21094:18:0;;;21090:143;;;21139:36;21153:21;:7;21165:8;21153:21;:11;:21;:::i;:::-;21139:13;:36::i;:::-;21129:46;-1:-1:-1;21200:21:0;21129:46;21212:8;21200:21;:11;:21;:::i;:::-;21190:31;;21090:143;21245:12;21260:47;17878:5;21260:26;21272:13;;21260:7;:11;;:26;;;;:::i;:::-;:30;:47;:30;:47;:::i;:::-;21245:62;;21320:66;21358:10;;;;;;;;;-1:-1:-1;;;;;21358:10:0;-1:-1:-1;;;;;21346:31:0;;:33;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21346:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21346:33:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21346:33:0;-1:-1:-1;;;;;;;;;;;16860:42:0;21381:4;21320:66;:25;:66;:::i;:::-;21426:10;;21414:45;;;-1:-1:-1;;;21414:45:0;;-1:-1:-1;;;;;;;;;;;21414:45:0;;;;;;21397:14;;-1:-1:-1;;;;;21426:10:0;;21414:30;;:45;;;;;;;;;;;;;;21426:10;21414:45;;;5:2:-1;;;;30:1;27;20:12;5:2;21414:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21414:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21414:45:0;;-1:-1:-1;;;;;;21478:20:0;;21470:39;;;;;-1:-1:-1;;;21470:39:0;;;;;;;;;;;;-1:-1:-1;;;21470:39:0;;;;;;;;;;;;;;;21572:52;21598:6;21606:17;:7;21618:4;21606:17;:11;:17;:::i;:::-;-1:-1:-1;;;;;;;;;;;16860:42:0;21572:52;;:25;:52;:::i;:::-;20909:723;;;;:::o;17458:82::-;17497:42;17458:82;:::o;17547:::-;17586:42;17547:82;:::o;22407:1590::-;22466:6;;-1:-1:-1;;;;;22466:6:0;22452:10;:20;;:48;;-1:-1:-1;22490:10:0;;-1:-1:-1;;;;;22490:10:0;22476;:24;22452:48;:76;;;-1:-1:-1;22518:10:0;;-1:-1:-1;;;;;22518:10:0;22504;:24;22452:76;22444:97;;;;;-1:-1:-1;;;22444:97:0;;;;;;;;;;;;-1:-1:-1;;;22444:97:0;;;;;;;;;;;;;;;22563:5;;;22552:32;;;-1:-1:-1;;;22552:32:0;;17130:42;22552:32;;;;;;;;-1:-1:-1;;;;;22563:5:0;;;;22552:25;;:32;;;;;22563:5;;22552:32;;;;;;;22563:5;;22552:32;;;5:2:-1;;;;30:1;27;20:12;5:2;22552:32:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;22610:36:0;;;-1:-1:-1;;;22610:36:0;;22640:4;22610:36;;;;;;22595:12;;-1:-1:-1;16948:42:0;;-1:-1:-1;22610:21:0;;:36;;;;;;;;;;;;;;;16948:42;22610:36;;;5:2:-1;;;;30:1;27;20:12;5:2;22610:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22610:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22610:36:0;;-1:-1:-1;22661:8:0;;22657:538;;22686:16;22705:38;17878:5;22705:17;22714:7;;22705:4;:8;;:17;;;;:::i;:38::-;22686:57;-1:-1:-1;22758:41:0;16948:42;17220;22686:57;22758:41;:24;:41;:::i;:::-;22821:18;:4;22830:8;22821:18;:8;:18;:::i;:::-;22880:3;;22814:25;;-1:-1:-1;22856:31:0;;16948:42;;-1:-1:-1;;;;;22880:3:0;;22856:31;:23;:31;:::i;:::-;22926:3;;22902:34;;16948:42;;-1:-1:-1;;;;;22926:3:0;22931:4;22902:34;:23;:34;:::i;:::-;22977:16;;;22991:1;22977:16;;;;;;;;;22953:21;;22977:16;;;22953:21;;105:10:-1;22977:16:0;88:34:-1;136:17;;-1:-1;22977:16:0;22953:40;;16948:42;23008:4;23013:1;23008:7;;;;;;;;;;;;;:13;-1:-1:-1;;;;;23008:13:0;;;-1:-1:-1;;;;;23008:13:0;;;;;17586:42;23036:4;23041:1;23036:7;;;;;;;;;;;;;:14;-1:-1:-1;;;;;23036:14:0;;;-1:-1:-1;;;;;23036:14:0;;;;;17497:42;23065:4;23070:1;23065:7;;;;;;;;-1:-1:-1;;;;;23065:14:0;;;:7;;;;;;;;;:14;23100:3;;;23096:33;23130:4;23100:3;23148:4;23162;23169:13;:3;23177:4;23169:13;:7;:13;:::i;:::-;23096:87;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23096:87:0;-1:-1:-1;;;;;23096: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;23096:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23096:87:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23096:87:0;;;;22657:538;;;23221:37;;;-1:-1:-1;;;23221:37:0;;23252:4;23221:37;;;;;;23205:13;;17497:42;;23221:22;;:37;;;;;;;;;;;;;;;17497:42;23221:37;;;5:2:-1;;;;30:1;27;20:12;5:2;23221:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23221:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23221:37:0;;-1:-1:-1;23273:9:0;;23269:188;;23299:34;17497:42;17040;23331:1;23299:34;:24;:34;:::i;:::-;23348:38;17497:42;17040;23380:5;23348:38;:24;:38;:::i;:::-;23401:44;;;;;;;;-1:-1:-1;23401:44:0;;;;;;;;;;;-1:-1:-1;;;23401:44:0;;17040:42;;23401:29;;:44;-1:-1:-1;23401:44: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;23401:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23401:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23401:44:0;;;;23269:188;23483:37;;;-1:-1:-1;;;23483:37:0;;23514:4;23483:37;;;;;;23467:13;;-1:-1:-1;;;;;;;;;;;16860:42:0;23483:22;;:37;;;;;;;;;;;;;;;16860:42;23483:37;;;5:2:-1;;;;30:1;27;20:12;5:2;23483:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23483:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23483:37:0;;-1:-1:-1;23535:9:0;;23531:347;;23561:12;23576:43;17878:5;23576:22;23586:11;;23576:5;:9;;:22;;;;:::i;:43::-;23561:58;;23634:15;23652:48;17878:5;23652:27;23662:16;;23652:5;:9;;:27;;;;:::i;:48::-;23634:66;;23715;23753:10;;;;;;;;;-1:-1:-1;;;;;23753:10:0;-1:-1:-1;;;;;23741:31:0;;:33;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23741:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23741:33:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23741:33:0;-1:-1:-1;;;;;;;;;;;16860:42:0;23776:4;23715:66;:25;:66;:::i;:::-;23822:10;;23796:46;;-1:-1:-1;;;;;;;;;;;16860:42:0;-1:-1:-1;;;;;23822:10:0;23834:7;23796:46;:25;:46;:::i;:::-;23857:9;:7;:9::i;:::-;23531:347;;;23899:5;;;23888:24;;;-1:-1:-1;;;23888:24:0;;;;-1:-1:-1;;;;;23899:5:0;;;;23888:22;;:24;;;;23899:5;;23888:24;;;;;;23899:5;;23888:24;;;5:2:-1;;;;30:1;27;20:12;5:2;23888:24:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;23932:6:0;;:17;;-1:-1:-1;23932:6:0;-1:-1:-1;23943:5:0;23932:17;:10;:17;:::i;:::-;23923:6;:26;;;23965:24;;;;;;;;;;;;;;;;;;;;;;;;;22407:1590;;;:::o;17180:83::-;17220:42;17180:83;:::o;20442:389::-;20543:10;;20493:15;;-1:-1:-1;;;;;20543:10:0;20529;:24;20521:48;;;;;-1:-1:-1;;;20521:48:0;;;;;;;;;;;;-1:-1:-1;;;20521:48:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;20588:23:0;;;;20580:40;;;;;-1:-1:-1;;;20580:40:0;;;;;;;;;;;;;;;-1:-1:-1;;;20580:40:0;;;;;;;;;;;;;;;16948:42;-1:-1:-1;;;;;20639:22:0;;;;20631:38;;;;;-1:-1:-1;;;20631:38:0;;;;;;;;;;;;-1:-1:-1;;;20631:38:0;;;;;;;;;;;;;;;17497:42;-1:-1:-1;;;;;20688:23:0;;;;20680:40;;;;;-1:-1:-1;;;20680:40:0;;;;;;;;;;;;;;;-1:-1:-1;;;20680:40:0;;;;;;;;;;;;;;;20741:31;;;-1:-1:-1;;;20741:31:0;;20766:4;20741:31;;;;;;-1:-1:-1;;;;;20741:16:0;;;;;:31;;;;;;;;;;;;;;:16;:31;;;5:2:-1;;;;30:1;27;20:12;5:2;20741:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20741:31:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20741:31:0;20803:10;;20741:31;;-1:-1:-1;20783:40:0;;-1:-1:-1;;;;;20783:19:0;;;;20803:10;20741:31;20783:40;:19;:40;:::i;:::-;20442:389;;;:::o;17946:25::-;;;-1:-1:-1;;;;;17946:25:0;;:::o;17919:18::-;;;-1:-1:-1;;;;;17919:18:0;;:::o;16910:81::-;16948:42;16910:81;:::o;19857:252::-;19934:10;;-1:-1:-1;;;;;19934:10:0;19920;:24;;:52;;-1:-1:-1;19962:10:0;;-1:-1:-1;;;;;19962:10:0;19948;:24;19920:52;19912:76;;;;;-1:-1:-1;;;19912:76:0;;;;;;;;;;;;-1:-1:-1;;;19912:76:0;;;;;;;;;;;;;;;20003:9;19999:103;;;20029:3;:13;;-1:-1:-1;;;;;;20029:13:0;17314:42;20029:13;;;19999:103;;;20075:3;:15;;-1:-1:-1;;;;;;20075:15:0;17408:42;20075:15;;;19999:103;19857:252;:::o;17000:83::-;17040:42;17000:83;:::o;24254:113::-;24296:7;24323:36;24343:15;:13;:15::i;:::-;24323;:13;:15::i;:::-;:19;:36;:19;:36;:::i;:::-;24316:43;;24254:113;:::o;18859:167::-;18937:10;;-1:-1:-1;;;;;18937:10:0;18923;:24;;:52;;-1:-1:-1;18965:10:0;;-1:-1:-1;;;;;18965:10:0;18951;:24;18923:52;18915:76;;;;;-1:-1:-1;;;18915:76:0;;;;;;;;;;;;-1:-1:-1;;;18915:76:0;;;;;;;;;;;;;;;19002:6;:16;;-1:-1:-1;;;;;;19002:16:0;-1:-1:-1;;;;;19002:16:0;;;;;;;;;;18859:167::o;19360:159::-;19448:10;;-1:-1:-1;;;;;19448:10:0;19434;:24;19426:48;;;;;-1:-1:-1;;;19426:48:0;;;;;;;;;;;;-1:-1:-1;;;19426:48:0;;;;;;;;;;;;;;;19485:11;:26;19360:159::o;17676:29::-;;;;:::o;17752:38::-;;;;:::o;21857:440::-;21948:10;;21898:15;;-1:-1:-1;;;;;21948:10:0;21934;:24;21926:48;;;;;-1:-1:-1;;;21926:48:0;;;;;;;;;;;;-1:-1:-1;;;21926:48:0;;;;;;;;;;;;;;;21985:14;:12;:14::i;:::-;22022:37;;;-1:-1:-1;;;22022:37:0;;22053:4;22022:37;;;;;;-1:-1:-1;;;;;;;;;;;16860:42:0;22022:22;;:37;;;;;;;;;;;;;;16860:42;22022:37;;;5:2:-1;;;;30:1;27;20:12;5:2;22022:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22022:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22022:37:0;22101:10;;22089:45;;;-1:-1:-1;;;22089:45:0;;-1:-1:-1;;;;;;;;;;;22089:45:0;;;;;;22022:37;;-1:-1:-1;22072:14:0;;-1:-1:-1;;;;;22101:10:0;;;;22089:30;;:45;;;;;22022:37;;22089:45;;;;;;;;22101:10;22089:45;;;5:2:-1;;;;30:1;27;20:12;5:2;22089:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22089:45:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22089:45:0;;-1:-1:-1;;;;;;22153:20:0;;22145:39;;;;;-1:-1:-1;;;22145:39:0;;;;;;;;;;;;-1:-1:-1;;;22145:39:0;;;;;;;;;;;;;;;22247:42;-1:-1:-1;;;;;;;;;;;22273:6:0;22281:7;22247:42;:25;:42;:::i;:::-;21857:440;;:::o;17797:32::-;;;;:::o;24538:155::-;24624:10;;-1:-1:-1;;;;;24624:10:0;24610;:24;24602:48;;;;;-1:-1:-1;;;24602:48:0;;;;;;;;;;;;-1:-1:-1;;;24602:48:0;;;;;;;;;;;;;;;24661:10;:24;;-1:-1:-1;;;;;;24661:24:0;-1:-1:-1;;;;;24661:24:0;;;;;;;;;;24538:155::o;19034:143::-;19114:10;;-1:-1:-1;;;;;19114:10:0;19100;:24;19092:48;;;;;-1:-1:-1;;;19092:48:0;;;;;;;;;;;;-1:-1:-1;;;19092:48:0;;;;;;;;;;;;;;;19151:7;:18;19034:143::o;19714:135::-;19790:10;;-1:-1:-1;;;;;19790:10:0;19776;:24;19768:48;;;;;-1:-1:-1;;;19768:48:0;;;;;;;;;;;;-1:-1:-1;;;19768:48:0;;;;;;;;;;;;;;;19827:5;:14;;-1:-1:-1;;;;;;19827:14:0;-1:-1:-1;;;;;19827:14:0;;;;;;;;;;19714:135::o;17364:87::-;17408:42;17364:87;:::o;17090:83::-;17130:42;17090:83;:::o;24375:155::-;24461:10;;-1:-1:-1;;;;;24461:10:0;24447;:24;24439:48;;;;;-1:-1:-1;;;24439:48:0;;;;;;;;;;;;-1:-1:-1;;;24439:48:0;;;;;;;;;;;;;;;24498:10;:24;;-1:-1:-1;;;;;;24498:24:0;-1:-1:-1;;;;;24498:24:0;;;;;;;;;;24375:155::o;19185:167::-;19277:10;;-1:-1:-1;;;;;19277:10:0;19263;:24;19255:48;;;;;-1:-1:-1;;;19255:48:0;;;;;;;;;;;;-1:-1:-1;;;19255:48:0;;;;;;;;;;;;;;;19314:13;:30;19185:167::o;18042:21::-;;;-1:-1:-1;;;;;18042:21:0;;:::o;24005:118::-;24078:37;;;-1:-1:-1;;;24078:37:0;;24109:4;24078:37;;;;;;24051:7;;-1:-1:-1;;;;;;;;;;;16860:42:0;24078:22;;:37;;;;;;;;;;;;;;;16860:42;24078:37;;;5:2:-1;;;;30:1;27;20:12;18668:183:0;18754:10;;-1:-1:-1;;;;;18754:10:0;18740;:24;;:52;;-1:-1:-1;18782:10:0;;-1:-1:-1;;;;;18782:10:0;18768;:24;18740:52;18732:76;;;;;-1:-1:-1;;;18732:76:0;;;;;;;;;;;;-1:-1:-1;;;18732:76:0;;;;;;;;;;;;;;;18819:10;:24;;-1:-1:-1;;;;;;18819:24:0;-1:-1:-1;;;;;18819:24:0;;;;;;;;;;18668:183::o;17712:33::-;;;;:::o;20117:242::-;20170:37;;;-1:-1:-1;;;20170:37:0;;20201:4;20170:37;;;;;;20154:13;;-1:-1:-1;;;;;;;;;;;16860:42:0;20170:22;;:37;;;;;;;;;;;;;;;16860:42;20170:37;;;5:2:-1;;;;30:1;27;20:12;5:2;20170:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20170:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20170:37:0;;-1:-1:-1;20222:9:0;;20218:134;;20274:5;;20248:39;;-1:-1:-1;;;;;;;;;;;16860:42:0;-1:-1:-1;;;;;20274:5:0;20281;20248:39;:25;:39;:::i;:::-;20313:5;;;20302:38;;;-1:-1:-1;;;20302:38:0;;17130:42;20302:38;;;;;;;-1:-1:-1;;;;;;;;;;;20302:38:0;;;;;-1:-1:-1;;;;;20313:5:0;;;;20302:25;;:38;;;;;20313:5;;20302:38;;;;;;;20313:5;;20302:38;;;5:2:-1;;;;30:1;27;20:12;5:2;20302:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;20302:38:0;;;;20117:242;:::o;18072:21::-;;;;:::o;17836:47::-;17878:5;17836:47;:::o;17892:20::-;;;-1:-1:-1;;;;;17892:20:0;;:::o;17978:25::-;;;-1:-1:-1;;;;;17978:25:0;;:::o;4152:136::-;4210:7;4237:43;4241:1;4244;4237:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4230:50;;4152:136;;;;;:::o;21640:141::-;21736:5;;;21725:48;;;-1:-1:-1;;;21725:48:0;;17130:42;21725:48;;;;;;;-1:-1:-1;;;;;;;;;;;21725:48:0;;;;;;;;;;;21698:7;;-1:-1:-1;;;;;21736:5:0;;;;21725:26;;:48;;;;;;;;;;;;;;21698:7;21736:5;21725:48;;;5:2:-1;;;;30:1;27;20:12;5:2;21725:48:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;21725:48:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21725:48:0;;21640:141;-1:-1:-1;;21640:141:0:o;3696:181::-;3754:7;3786:5;;;3810:6;;;;3802:46;;;;;-1:-1:-1;;;3802:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;5068:471;5126:7;5371:6;5367:47;;-1:-1:-1;5401:1:0;5394:8;;5367:47;5438:5;;;5442:1;5438;:5;:1;5462:5;;;;;:10;5454:56;;;;-1:-1:-1;;;5454:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6007:132;6065:7;6092:39;6096:1;6099;6092:39;;;;;;;;;;;;;;;;;:3;:39::i;11851:176::-;11960:58;;;-1:-1:-1;;;;;11960:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;11960:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;11934:85:0;;11953:5;;11934:18;:85::i;:::-;11851:176;;;:::o;12247:621::-;12617:10;;;12616:62;;-1:-1:-1;12633:39:0;;;-1:-1:-1;;;12633:39:0;;12657:4;12633:39;;;;-1:-1:-1;;;;;12633:39:0;;;;;;;;;:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;5:2:-1;;;;30:1;27;20:12;5:2;12633:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;12633:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12633:39:0;:44;12616:62;12608:152;;;;-1:-1:-1;;;12608:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12797:62;;;-1:-1:-1;;;;;12797:62:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;12797:62:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;12771:89:0;;12790:5;;12771:18;:89::i;22305:94::-;22360:5;;;22349:42;;;-1:-1:-1;;;22349:42:0;;17130;22349;;;;;;;-1:-1:-1;;;;;;;;;;;22349:42:0;;;;;-1:-1:-1;;;;;22360:5:0;;;;22349:29;;:42;;;;;;;;;;;;;;22360:5;;22349:42;;;5:2:-1;;;;30:1;27;20:12;5:2;22349:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22349:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;22305:94:0:o;4625:192::-;4711:7;4747:12;4739:6;;;;4731:29;;;;-1:-1:-1;;;4731: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;4731:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4783:5:0;;;4625:192::o;6669:345::-;6755:7;6857:12;6850:5;6842:28;;;;-1:-1:-1;;;6842:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;6842:28:0;;6881:9;6897:1;6893;:5;;;;;;;6669:345;-1:-1:-1;;;;;6669:345:0:o;13890:1114::-;14494:27;14502:5;-1:-1:-1;;;;;14494:25:0;;:27::i;:::-;14486:71;;;;;-1:-1:-1;;;14486:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;14631:12;14645:23;14680:5;-1:-1:-1;;;;;14672:19:0;14692:4;14672: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;;;14672: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;;14630:67:0;;;;14716:7;14708:52;;;;;-1:-1:-1;;;14708:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14777:17;;:21;14773:224;;14919:10;14908:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14908:30:0;14900:85;;;;-1:-1:-1;;;14900:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8975:619;9035:4;9503:20;;9346:66;9543:23;;;;;;:42;;-1:-1:-1;9570:15:0;;;9543:42;9535:51;8975:619;-1:-1:-1;;;;8975:619:0:o
Swarm Source
bzzr://d569a70c9b9624f15c12ad820992367e82939d8ad671e2f84c6886de84bc1dc4
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.