Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 107,534 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw And Har... | 21248294 | 2 hrs ago | IN | 0 ETH | 0.00146605 | ||||
Withdraw And Har... | 21244732 | 14 hrs ago | IN | 0 ETH | 0.00201258 | ||||
Withdraw And Har... | 21241883 | 23 hrs ago | IN | 0 ETH | 0.00172156 | ||||
Withdraw And Har... | 21238543 | 35 hrs ago | IN | 0 ETH | 0.00459826 | ||||
Withdraw And Har... | 21235180 | 46 hrs ago | IN | 0 ETH | 0.00183303 | ||||
Withdraw And Har... | 21228862 | 2 days ago | IN | 0 ETH | 0.00204638 | ||||
Withdraw And Har... | 21225179 | 3 days ago | IN | 0 ETH | 0.00179062 | ||||
Withdraw And Har... | 21225168 | 3 days ago | IN | 0 ETH | 0.00088861 | ||||
Withdraw And Har... | 21225162 | 3 days ago | IN | 0 ETH | 0.00187545 | ||||
Withdraw And Har... | 21224057 | 3 days ago | IN | 0 ETH | 0.00326271 | ||||
Withdraw And Har... | 21218859 | 4 days ago | IN | 0 ETH | 0.00198683 | ||||
Withdraw And Har... | 21210955 | 5 days ago | IN | 0 ETH | 0.00160359 | ||||
Withdraw And Har... | 21206545 | 5 days ago | IN | 0 ETH | 0.00151869 | ||||
Withdraw And Har... | 21206426 | 5 days ago | IN | 0 ETH | 0.00170727 | ||||
Harvest | 21205605 | 6 days ago | IN | 0 ETH | 0.00145621 | ||||
Withdraw And Har... | 21204122 | 6 days ago | IN | 0 ETH | 0.00160844 | ||||
Withdraw And Har... | 21204090 | 6 days ago | IN | 0 ETH | 0.00248171 | ||||
Withdraw And Har... | 21201886 | 6 days ago | IN | 0 ETH | 0.00258917 | ||||
Withdraw And Har... | 21201349 | 6 days ago | IN | 0 ETH | 0.0041139 | ||||
Withdraw And Har... | 21201242 | 6 days ago | IN | 0 ETH | 0.00377437 | ||||
Withdraw And Har... | 21199598 | 6 days ago | IN | 0 ETH | 0.00182963 | ||||
Withdraw And Har... | 21198903 | 6 days ago | IN | 0 ETH | 0.00213063 | ||||
Withdraw And Har... | 21195030 | 7 days ago | IN | 0 ETH | 0.00282095 | ||||
Withdraw And Har... | 21192782 | 7 days ago | IN | 0 ETH | 0.00267572 | ||||
Withdraw And Har... | 21191215 | 8 days ago | IN | 0 ETH | 0.00284878 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
MasterChefV2
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-05-13 */ // SPDX-License-Identifier: MIT // Special Thanks to @BoringCrypto for his ideas and patience pragma solidity 0.6.12; pragma experimental ABIEncoderV2; // https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/math/SignedSafeMath.sol library SignedSafeMath { int256 constant private _INT256_MIN = -2**255; /** * @dev Returns the multiplication of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { // 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; } require(!(a == -1 && b == _INT256_MIN), "SignedSafeMath: multiplication overflow"); int256 c = a * b; require(c / a == b, "SignedSafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two signed 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(int256 a, int256 b) internal pure returns (int256) { require(b != 0, "SignedSafeMath: division by zero"); require(!(b == -1 && a == _INT256_MIN), "SignedSafeMath: division overflow"); int256 c = a / b; return c; } /** * @dev Returns the subtraction of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a), "SignedSafeMath: subtraction overflow"); return c; } /** * @dev Returns the addition of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a), "SignedSafeMath: addition overflow"); return c; } function toUInt256(int256 a) internal pure returns (uint256) { require(a >= 0, "Integer < 0"); return uint256(a); } } /// @notice A library for performing overflow-/underflow-safe math, /// updated with awesomeness from of DappHub (https://github.com/dapphub/ds-math). library BoringMath { function add(uint256 a, uint256 b) internal pure returns (uint256 c) { require((c = a + b) >= b, "BoringMath: Add Overflow"); } function sub(uint256 a, uint256 b) internal pure returns (uint256 c) { require((c = a - b) <= a, "BoringMath: Underflow"); } function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { require(b == 0 || (c = a * b) / b == a, "BoringMath: Mul Overflow"); } function to128(uint256 a) internal pure returns (uint128 c) { require(a <= uint128(-1), "BoringMath: uint128 Overflow"); c = uint128(a); } function to64(uint256 a) internal pure returns (uint64 c) { require(a <= uint64(-1), "BoringMath: uint64 Overflow"); c = uint64(a); } function to32(uint256 a) internal pure returns (uint32 c) { require(a <= uint32(-1), "BoringMath: uint32 Overflow"); c = uint32(a); } } /// @notice A library for performing overflow-/underflow-safe addition and subtraction on uint128. library BoringMath128 { function add(uint128 a, uint128 b) internal pure returns (uint128 c) { require((c = a + b) >= b, "BoringMath: Add Overflow"); } function sub(uint128 a, uint128 b) internal pure returns (uint128 c) { require((c = a - b) <= a, "BoringMath: Underflow"); } } contract BoringOwnableData { address public owner; address public pendingOwner; } contract BoringOwnable is BoringOwnableData { event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /// @notice `owner` defaults to msg.sender on construction. constructor() public { owner = msg.sender; emit OwnershipTransferred(address(0), msg.sender); } /// @notice Transfers ownership to `newOwner`. Either directly or claimable by the new pending owner. /// Can only be invoked by the current `owner`. /// @param newOwner Address of the new owner. /// @param direct True if `newOwner` should be set immediately. False if `newOwner` needs to use `claimOwnership`. /// @param renounce Allows the `newOwner` to be `address(0)` if `direct` and `renounce` is True. Has no effect otherwise. function transferOwnership( address newOwner, bool direct, bool renounce ) public onlyOwner { if (direct) { // Checks require(newOwner != address(0) || renounce, "Ownable: zero address"); // Effects emit OwnershipTransferred(owner, newOwner); owner = newOwner; pendingOwner = address(0); } else { // Effects pendingOwner = newOwner; } } /// @notice Needs to be called by `pendingOwner` to claim ownership. function claimOwnership() public { address _pendingOwner = pendingOwner; // Checks require(msg.sender == _pendingOwner, "Ownable: caller != pending owner"); // Effects emit OwnershipTransferred(owner, _pendingOwner); owner = _pendingOwner; pendingOwner = address(0); } /// @notice Only allows the `owner` to execute the function. modifier onlyOwner() { require(msg.sender == owner, "Ownable: caller is not the owner"); _; } } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); /// @notice EIP 2612 function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; } library BoringERC20 { bytes4 private constant SIG_SYMBOL = 0x95d89b41; // symbol() bytes4 private constant SIG_NAME = 0x06fdde03; // name() bytes4 private constant SIG_DECIMALS = 0x313ce567; // decimals() bytes4 private constant SIG_TRANSFER = 0xa9059cbb; // transfer(address,uint256) bytes4 private constant SIG_TRANSFER_FROM = 0x23b872dd; // transferFrom(address,address,uint256) function returnDataToString(bytes memory data) internal pure returns (string memory) { if (data.length >= 64) { return abi.decode(data, (string)); } else if (data.length == 32) { uint8 i = 0; while(i < 32 && data[i] != 0) { i++; } bytes memory bytesArray = new bytes(i); for (i = 0; i < 32 && data[i] != 0; i++) { bytesArray[i] = data[i]; } return string(bytesArray); } else { return "???"; } } /// @notice Provides a safe ERC20.symbol version which returns '???' as fallback string. /// @param token The address of the ERC-20 token contract. /// @return (string) Token symbol. function safeSymbol(IERC20 token) internal view returns (string memory) { (bool success, bytes memory data) = address(token).staticcall(abi.encodeWithSelector(SIG_SYMBOL)); return success ? returnDataToString(data) : "???"; } /// @notice Provides a safe ERC20.name version which returns '???' as fallback string. /// @param token The address of the ERC-20 token contract. /// @return (string) Token name. function safeName(IERC20 token) internal view returns (string memory) { (bool success, bytes memory data) = address(token).staticcall(abi.encodeWithSelector(SIG_NAME)); return success ? returnDataToString(data) : "???"; } /// @notice Provides a safe ERC20.decimals version which returns '18' as fallback value. /// @param token The address of the ERC-20 token contract. /// @return (uint8) Token decimals. function safeDecimals(IERC20 token) internal view returns (uint8) { (bool success, bytes memory data) = address(token).staticcall(abi.encodeWithSelector(SIG_DECIMALS)); return success && data.length == 32 ? abi.decode(data, (uint8)) : 18; } /// @notice Provides a safe ERC20.transfer version for different ERC-20 implementations. /// Reverts on a failed transfer. /// @param token The address of the ERC-20 token. /// @param to Transfer tokens to. /// @param amount The token amount. function safeTransfer( IERC20 token, address to, uint256 amount ) internal { (bool success, bytes memory data) = address(token).call(abi.encodeWithSelector(SIG_TRANSFER, to, amount)); require(success && (data.length == 0 || abi.decode(data, (bool))), "BoringERC20: Transfer failed"); } /// @notice Provides a safe ERC20.transferFrom version for different ERC-20 implementations. /// Reverts on a failed transfer. /// @param token The address of the ERC-20 token. /// @param from Transfer tokens from. /// @param to Transfer tokens to. /// @param amount The token amount. function safeTransferFrom( IERC20 token, address from, address to, uint256 amount ) internal { (bool success, bytes memory data) = address(token).call(abi.encodeWithSelector(SIG_TRANSFER_FROM, from, to, amount)); require(success && (data.length == 0 || abi.decode(data, (bool))), "BoringERC20: TransferFrom failed"); } } contract BaseBoringBatchable { /// @dev Helper function to extract a useful revert message from a failed call. /// If the returned data is malformed or not correctly abi encoded then this call can fail itself. function _getRevertMsg(bytes memory _returnData) internal pure returns (string memory) { // If the _res length is less than 68, then the transaction failed silently (without a revert message) if (_returnData.length < 68) return "Transaction reverted silently"; assembly { // Slice the sighash. _returnData := add(_returnData, 0x04) } return abi.decode(_returnData, (string)); // All that remains is the revert string } /// @notice Allows batched call to self (this contract). /// @param calls An array of inputs for each call. /// @param revertOnFail If True then reverts after a failed call and stops doing further calls. /// @return successes An array indicating the success of a call, mapped one-to-one to `calls`. /// @return results An array with the returned data of each function call, mapped one-to-one to `calls`. // F1: External is ok here because this is the batch function, adding it to a batch makes no sense // F2: Calls in the batch may be payable, delegatecall operates in the same context, so each call in the batch has access to msg.value // C3: The length of the loop is fully under user control, so can't be exploited // C7: Delegatecall is only used on the same contract, so it's safe function batch(bytes[] calldata calls, bool revertOnFail) external payable returns (bool[] memory successes, bytes[] memory results) { successes = new bool[](calls.length); results = new bytes[](calls.length); for (uint256 i = 0; i < calls.length; i++) { (bool success, bytes memory result) = address(this).delegatecall(calls[i]); require(success || !revertOnFail, _getRevertMsg(result)); successes[i] = success; results[i] = result; } } } contract BoringBatchable is BaseBoringBatchable { /// @notice Call wrapper that performs `ERC20.permit` on `token`. /// Lookup `IERC20.permit`. // F6: Parameters can be used front-run the permit and the user's permit will fail (due to nonce or other revert) // if part of a batch this could be used to grief once as the second call would not need the permit function permitToken( IERC20 token, address from, address to, uint256 amount, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public { token.permit(from, to, amount, deadline, v, r, s); } } interface IRewarder { using BoringERC20 for IERC20; function onSushiReward(uint256 pid, address user, address recipient, uint256 sushiAmount, uint256 newLpAmount) external; function pendingTokens(uint256 pid, address user, uint256 sushiAmount) external view returns (IERC20[] memory, uint256[] memory); } interface IMigratorChef { // Take the current LP token address and return the new LP token address. // Migrator should have full access to the caller's LP token. function migrate(IERC20 token) external returns (IERC20); } interface IMasterChef { using BoringERC20 for IERC20; struct UserInfo { uint256 amount; // How many LP tokens the user has provided. uint256 rewardDebt; // Reward debt. See explanation below. } struct PoolInfo { IERC20 lpToken; // Address of LP token contract. uint256 allocPoint; // How many allocation points assigned to this pool. SUSHI to distribute per block. uint256 lastRewardBlock; // Last block number that SUSHI distribution occurs. uint256 accSushiPerShare; // Accumulated SUSHI per share, times 1e12. See below. } function poolInfo(uint256 pid) external view returns (IMasterChef.PoolInfo memory); function totalAllocPoint() external view returns (uint256); function deposit(uint256 _pid, uint256 _amount) external; } /// @notice The (older) MasterChef contract gives out a constant number of SUSHI tokens per block. /// It is the only address with minting rights for SUSHI. /// The idea for this MasterChef V2 (MCV2) contract is therefore to be the owner of a dummy token /// that is deposited into the MasterChef V1 (MCV1) contract. /// The allocation point for this pool on MCV1 is the total allocation point for all pools that receive double incentives. contract MasterChefV2 is BoringOwnable, BoringBatchable { using BoringMath for uint256; using BoringMath128 for uint128; using BoringERC20 for IERC20; using SignedSafeMath for int256; /// @notice Info of each MCV2 user. /// `amount` LP token amount the user has provided. /// `rewardDebt` The amount of SUSHI entitled to the user. struct UserInfo { uint256 amount; int256 rewardDebt; } /// @notice Info of each MCV2 pool. /// `allocPoint` The amount of allocation points assigned to the pool. /// Also known as the amount of SUSHI to distribute per block. struct PoolInfo { uint128 accSushiPerShare; uint64 lastRewardBlock; uint64 allocPoint; } /// @notice Address of MCV1 contract. IMasterChef public immutable MASTER_CHEF; /// @notice Address of SUSHI contract. IERC20 public immutable SUSHI; /// @notice The index of MCV2 master pool in MCV1. uint256 public immutable MASTER_PID; // @notice The migrator contract. It has a lot of power. Can only be set through governance (owner). IMigratorChef public migrator; /// @notice Info of each MCV2 pool. PoolInfo[] public poolInfo; /// @notice Address of the LP token for each MCV2 pool. IERC20[] public lpToken; /// @notice Address of each `IRewarder` contract in MCV2. IRewarder[] public rewarder; /// @notice Info of each user that stakes LP tokens. mapping (uint256 => mapping (address => UserInfo)) public userInfo; /// @dev Total allocation points. Must be the sum of all allocation points in all pools. uint256 public totalAllocPoint; uint256 private constant MASTERCHEF_SUSHI_PER_BLOCK = 1e20; uint256 private constant ACC_SUSHI_PRECISION = 1e12; event Deposit(address indexed user, uint256 indexed pid, uint256 amount, address indexed to); event Withdraw(address indexed user, uint256 indexed pid, uint256 amount, address indexed to); event EmergencyWithdraw(address indexed user, uint256 indexed pid, uint256 amount, address indexed to); event Harvest(address indexed user, uint256 indexed pid, uint256 amount); event LogPoolAddition(uint256 indexed pid, uint256 allocPoint, IERC20 indexed lpToken, IRewarder indexed rewarder); event LogSetPool(uint256 indexed pid, uint256 allocPoint, IRewarder indexed rewarder, bool overwrite); event LogUpdatePool(uint256 indexed pid, uint64 lastRewardBlock, uint256 lpSupply, uint256 accSushiPerShare); event LogInit(); /// @param _MASTER_CHEF The SushiSwap MCV1 contract address. /// @param _sushi The SUSHI token contract address. /// @param _MASTER_PID The pool ID of the dummy token on the base MCV1 contract. constructor(IMasterChef _MASTER_CHEF, IERC20 _sushi, uint256 _MASTER_PID) public { MASTER_CHEF = _MASTER_CHEF; SUSHI = _sushi; MASTER_PID = _MASTER_PID; } /// @notice Deposits a dummy token to `MASTER_CHEF` MCV1. This is required because MCV1 holds the minting rights for SUSHI. /// Any balance of transaction sender in `dummyToken` is transferred. /// The allocation point for the pool on MCV1 is the total allocation point for all pools that receive double incentives. /// @param dummyToken The address of the ERC-20 token to deposit into MCV1. function init(IERC20 dummyToken) external { uint256 balance = dummyToken.balanceOf(msg.sender); require(balance != 0, "MasterChefV2: Balance must exceed 0"); dummyToken.safeTransferFrom(msg.sender, address(this), balance); dummyToken.approve(address(MASTER_CHEF), balance); MASTER_CHEF.deposit(MASTER_PID, balance); emit LogInit(); } /// @notice Returns the number of MCV2 pools. function poolLength() public view returns (uint256 pools) { pools = poolInfo.length; } /// @notice Add a new LP to the pool. Can only be called by the owner. /// DO NOT add the same LP token more than once. Rewards will be messed up if you do. /// @param allocPoint AP of the new pool. /// @param _lpToken Address of the LP ERC-20 token. /// @param _rewarder Address of the rewarder delegate. function add(uint256 allocPoint, IERC20 _lpToken, IRewarder _rewarder) public onlyOwner { uint256 lastRewardBlock = block.number; totalAllocPoint = totalAllocPoint.add(allocPoint); lpToken.push(_lpToken); rewarder.push(_rewarder); poolInfo.push(PoolInfo({ allocPoint: allocPoint.to64(), lastRewardBlock: lastRewardBlock.to64(), accSushiPerShare: 0 })); emit LogPoolAddition(lpToken.length.sub(1), allocPoint, _lpToken, _rewarder); } /// @notice Update the given pool's SUSHI allocation point and `IRewarder` contract. Can only be called by the owner. /// @param _pid The index of the pool. See `poolInfo`. /// @param _allocPoint New AP of the pool. /// @param _rewarder Address of the rewarder delegate. /// @param overwrite True if _rewarder should be `set`. Otherwise `_rewarder` is ignored. function set(uint256 _pid, uint256 _allocPoint, IRewarder _rewarder, bool overwrite) public onlyOwner { totalAllocPoint = totalAllocPoint.sub(poolInfo[_pid].allocPoint).add(_allocPoint); poolInfo[_pid].allocPoint = _allocPoint.to64(); if (overwrite) { rewarder[_pid] = _rewarder; } emit LogSetPool(_pid, _allocPoint, overwrite ? _rewarder : rewarder[_pid], overwrite); } /// @notice Set the `migrator` contract. Can only be called by the owner. /// @param _migrator The contract address to set. function setMigrator(IMigratorChef _migrator) public onlyOwner { migrator = _migrator; } /// @notice Migrate LP token to another LP contract through the `migrator` contract. /// @param _pid The index of the pool. See `poolInfo`. function migrate(uint256 _pid) public { require(address(migrator) != address(0), "MasterChefV2: no migrator set"); IERC20 _lpToken = lpToken[_pid]; uint256 bal = _lpToken.balanceOf(address(this)); _lpToken.approve(address(migrator), bal); IERC20 newLpToken = migrator.migrate(_lpToken); require(bal == newLpToken.balanceOf(address(this)), "MasterChefV2: migrated balance must match"); lpToken[_pid] = newLpToken; } /// @notice View function to see pending SUSHI on frontend. /// @param _pid The index of the pool. See `poolInfo`. /// @param _user Address of user. /// @return pending SUSHI reward for a given user. function pendingSushi(uint256 _pid, address _user) external view returns (uint256 pending) { PoolInfo memory pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 accSushiPerShare = pool.accSushiPerShare; uint256 lpSupply = lpToken[_pid].balanceOf(address(this)); if (block.number > pool.lastRewardBlock && lpSupply != 0) { uint256 blocks = block.number.sub(pool.lastRewardBlock); uint256 sushiReward = blocks.mul(sushiPerBlock()).mul(pool.allocPoint) / totalAllocPoint; accSushiPerShare = accSushiPerShare.add(sushiReward.mul(ACC_SUSHI_PRECISION) / lpSupply); } pending = int256(user.amount.mul(accSushiPerShare) / ACC_SUSHI_PRECISION).sub(user.rewardDebt).toUInt256(); } /// @notice Update reward variables for all pools. Be careful of gas spending! /// @param pids Pool IDs of all to be updated. Make sure to update all active pools. function massUpdatePools(uint256[] calldata pids) external { uint256 len = pids.length; for (uint256 i = 0; i < len; ++i) { updatePool(pids[i]); } } /// @notice Calculates and returns the `amount` of SUSHI per block. function sushiPerBlock() public view returns (uint256 amount) { amount = uint256(MASTERCHEF_SUSHI_PER_BLOCK) .mul(MASTER_CHEF.poolInfo(MASTER_PID).allocPoint) / MASTER_CHEF.totalAllocPoint(); } /// @notice Update reward variables of the given pool. /// @param pid The index of the pool. See `poolInfo`. /// @return pool Returns the pool that was updated. function updatePool(uint256 pid) public returns (PoolInfo memory pool) { pool = poolInfo[pid]; if (block.number > pool.lastRewardBlock) { uint256 lpSupply = lpToken[pid].balanceOf(address(this)); if (lpSupply > 0) { uint256 blocks = block.number.sub(pool.lastRewardBlock); uint256 sushiReward = blocks.mul(sushiPerBlock()).mul(pool.allocPoint) / totalAllocPoint; pool.accSushiPerShare = pool.accSushiPerShare.add((sushiReward.mul(ACC_SUSHI_PRECISION) / lpSupply).to128()); } pool.lastRewardBlock = block.number.to64(); poolInfo[pid] = pool; emit LogUpdatePool(pid, pool.lastRewardBlock, lpSupply, pool.accSushiPerShare); } } /// @notice Deposit LP tokens to MCV2 for SUSHI allocation. /// @param pid The index of the pool. See `poolInfo`. /// @param amount LP token amount to deposit. /// @param to The receiver of `amount` deposit benefit. function deposit(uint256 pid, uint256 amount, address to) public { PoolInfo memory pool = updatePool(pid); UserInfo storage user = userInfo[pid][to]; // Effects user.amount = user.amount.add(amount); user.rewardDebt = user.rewardDebt.add(int256(amount.mul(pool.accSushiPerShare) / ACC_SUSHI_PRECISION)); // Interactions IRewarder _rewarder = rewarder[pid]; if (address(_rewarder) != address(0)) { _rewarder.onSushiReward(pid, to, to, 0, user.amount); } lpToken[pid].safeTransferFrom(msg.sender, address(this), amount); emit Deposit(msg.sender, pid, amount, to); } /// @notice Withdraw LP tokens from MCV2. /// @param pid The index of the pool. See `poolInfo`. /// @param amount LP token amount to withdraw. /// @param to Receiver of the LP tokens. function withdraw(uint256 pid, uint256 amount, address to) public { PoolInfo memory pool = updatePool(pid); UserInfo storage user = userInfo[pid][msg.sender]; // Effects user.rewardDebt = user.rewardDebt.sub(int256(amount.mul(pool.accSushiPerShare) / ACC_SUSHI_PRECISION)); user.amount = user.amount.sub(amount); // Interactions IRewarder _rewarder = rewarder[pid]; if (address(_rewarder) != address(0)) { _rewarder.onSushiReward(pid, msg.sender, to, 0, user.amount); } lpToken[pid].safeTransfer(to, amount); emit Withdraw(msg.sender, pid, amount, to); } /// @notice Harvest proceeds for transaction sender to `to`. /// @param pid The index of the pool. See `poolInfo`. /// @param to Receiver of SUSHI rewards. function harvest(uint256 pid, address to) public { PoolInfo memory pool = updatePool(pid); UserInfo storage user = userInfo[pid][msg.sender]; int256 accumulatedSushi = int256(user.amount.mul(pool.accSushiPerShare) / ACC_SUSHI_PRECISION); uint256 _pendingSushi = accumulatedSushi.sub(user.rewardDebt).toUInt256(); // Effects user.rewardDebt = accumulatedSushi; // Interactions if (_pendingSushi != 0) { SUSHI.safeTransfer(to, _pendingSushi); } IRewarder _rewarder = rewarder[pid]; if (address(_rewarder) != address(0)) { _rewarder.onSushiReward( pid, msg.sender, to, _pendingSushi, user.amount); } emit Harvest(msg.sender, pid, _pendingSushi); } /// @notice Withdraw LP tokens from MCV2 and harvest proceeds for transaction sender to `to`. /// @param pid The index of the pool. See `poolInfo`. /// @param amount LP token amount to withdraw. /// @param to Receiver of the LP tokens and SUSHI rewards. function withdrawAndHarvest(uint256 pid, uint256 amount, address to) public { PoolInfo memory pool = updatePool(pid); UserInfo storage user = userInfo[pid][msg.sender]; int256 accumulatedSushi = int256(user.amount.mul(pool.accSushiPerShare) / ACC_SUSHI_PRECISION); uint256 _pendingSushi = accumulatedSushi.sub(user.rewardDebt).toUInt256(); // Effects user.rewardDebt = accumulatedSushi.sub(int256(amount.mul(pool.accSushiPerShare) / ACC_SUSHI_PRECISION)); user.amount = user.amount.sub(amount); // Interactions SUSHI.safeTransfer(to, _pendingSushi); IRewarder _rewarder = rewarder[pid]; if (address(_rewarder) != address(0)) { _rewarder.onSushiReward(pid, msg.sender, to, _pendingSushi, user.amount); } lpToken[pid].safeTransfer(to, amount); emit Withdraw(msg.sender, pid, amount, to); emit Harvest(msg.sender, pid, _pendingSushi); } /// @notice Harvests SUSHI from `MASTER_CHEF` MCV1 and pool `MASTER_PID` to this MCV2 contract. function harvestFromMasterChef() public { MASTER_CHEF.deposit(MASTER_PID, 0); } /// @notice Withdraw without caring about rewards. EMERGENCY ONLY. /// @param pid The index of the pool. See `poolInfo`. /// @param to Receiver of the LP tokens. function emergencyWithdraw(uint256 pid, address to) public { UserInfo storage user = userInfo[pid][msg.sender]; uint256 amount = user.amount; user.amount = 0; user.rewardDebt = 0; IRewarder _rewarder = rewarder[pid]; if (address(_rewarder) != address(0)) { _rewarder.onSushiReward(pid, msg.sender, to, 0, 0); } // Note: transfer can fail or succeed if `amount` is zero. lpToken[pid].safeTransfer(to, amount); emit EmergencyWithdraw(msg.sender, pid, amount, to); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IMasterChef","name":"_MASTER_CHEF","type":"address"},{"internalType":"contract IERC20","name":"_sushi","type":"address"},{"internalType":"uint256","name":"_MASTER_PID","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Harvest","type":"event"},{"anonymous":false,"inputs":[],"name":"LogInit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"allocPoint","type":"uint256"},{"indexed":true,"internalType":"contract IERC20","name":"lpToken","type":"address"},{"indexed":true,"internalType":"contract IRewarder","name":"rewarder","type":"address"}],"name":"LogPoolAddition","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"allocPoint","type":"uint256"},{"indexed":true,"internalType":"contract IRewarder","name":"rewarder","type":"address"},{"indexed":false,"internalType":"bool","name":"overwrite","type":"bool"}],"name":"LogSetPool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint64","name":"lastRewardBlock","type":"uint64"},{"indexed":false,"internalType":"uint256","name":"lpSupply","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"accSushiPerShare","type":"uint256"}],"name":"LogUpdatePool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"MASTER_CHEF","outputs":[{"internalType":"contract IMasterChef","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MASTER_PID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUSHI","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"contract IERC20","name":"_lpToken","type":"address"},{"internalType":"contract IRewarder","name":"_rewarder","type":"address"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"calls","type":"bytes[]"},{"internalType":"bool","name":"revertOnFail","type":"bool"}],"name":"batch","outputs":[{"internalType":"bool[]","name":"successes","type":"bool[]"},{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"claimOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pid","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pid","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pid","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"harvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"harvestFromMasterChef","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"dummyToken","type":"address"}],"name":"init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lpToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"pids","type":"uint256[]"}],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"migrate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"migrator","outputs":[{"internalType":"contract IMigratorChef","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingSushi","outputs":[{"internalType":"uint256","name":"pending","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permitToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"uint128","name":"accSushiPerShare","type":"uint128"},{"internalType":"uint64","name":"lastRewardBlock","type":"uint64"},{"internalType":"uint64","name":"allocPoint","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLength","outputs":[{"internalType":"uint256","name":"pools","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewarder","outputs":[{"internalType":"contract IRewarder","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IRewarder","name":"_rewarder","type":"address"},{"internalType":"bool","name":"overwrite","type":"bool"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IMigratorChef","name":"_migrator","type":"address"}],"name":"setMigrator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sushiPerBlock","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAllocPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"},{"internalType":"bool","name":"direct","type":"bool"},{"internalType":"bool","name":"renounce","type":"bool"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pid","type":"uint256"}],"name":"updatePool","outputs":[{"components":[{"internalType":"uint128","name":"accSushiPerShare","type":"uint128"},{"internalType":"uint64","name":"lastRewardBlock","type":"uint64"},{"internalType":"uint64","name":"allocPoint","type":"uint64"}],"internalType":"struct MasterChefV2.PoolInfo","name":"pool","type":"tuple"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"int256","name":"rewardDebt","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"pid","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pid","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"withdrawAndHarvest","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e06040523480156200001157600080fd5b5060405162003d2138038062003d21833981016040819052620000349162000097565b600080546001600160a01b0319163390811782556040519091907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a36001600160601b0319606093841b81166080529190921b1660a05260c052620000f7565b600080600060608486031215620000ac578283fd5b8351620000b981620000de565b6020850151909350620000cc81620000de565b80925050604084015190509250925092565b6001600160a01b0381168114620000f457600080fd5b50565b60805160601c60a05160601c60c051613bc56200015c6000398061101552806117935280611b6e5280612463525080610a3f528061209752806125f6525080610f2e5280610fe8528061176652806123595280612436528061297f5250613bc56000f3fe6080604052600436106101d85760003560e01c806361621aaa11610102578063ab560e1011610095578063d1abb90711610064578063d1abb90714610529578063d2423b5114610549578063e30c39781461056a578063edd8b1701461057f576101d8565b8063ab560e10146104bf578063ab7de098146104d4578063b0bcf42a146104f4578063c346253d14610509576101d8565b806388bba42f116100d157806388bba42f1461043c5780638da5cb5b1461045c5780638dbdbe6d1461047157806393f1a40b14610491576101d8565b806361621aaa146103c557806378ed5d1f146103da5780637c516e94146104075780637cd07e4714610427576101d8565b806319ab453c1161017a5780634e71e0c8116101495780634e71e0c81461034e5780634f70b15a1461036357806351eb05a61461037857806357a5b58c146103a5576101d8565b806319ab453c146102ce57806323cf3118146102ee5780632f940c701461030e578063454b06081461032e576101d8565b80631526fe27116101b65780631526fe271461024a57806317caf6f11461027957806318fccc761461028e578063195426ec146102ae576101d8565b8063078dfbe7146101dd578063081e3eda146101ff5780630ad58d2f1461022a575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004612ff7565b610594565b005b34801561020b57600080fd5b50610214610728565b6040516102219190613a0f565b60405180910390f35b34801561023657600080fd5b506101fd610245366004613337565b61072e565b34801561025657600080fd5b5061026a6102653660046132a2565b610921565b604051610221939291906139db565b34801561028557600080fd5b5061021461098f565b34801561029a57600080fd5b506101fd6102a93660046132d2565b610995565b3480156102ba57600080fd5b506102146102c93660046132d2565b610b85565b3480156102da57600080fd5b506101fd6102e93660046130e7565b610de4565b3480156102fa57600080fd5b506101fd6103093660046130e7565b61109e565b34801561031a57600080fd5b506101fd6103293660046132d2565b611136565b34801561033a57600080fd5b506101fd6103493660046132a2565b6112a4565b34801561035a57600080fd5b506101fd611643565b34801561036f57600080fd5b506101fd611729565b34801561038457600080fd5b506103986103933660046132a2565b6117f2565b6040516102219190613998565b3480156103b157600080fd5b506101fd6103c036600461308b565b611b3c565b3480156103d157600080fd5b50610214611b6c565b3480156103e657600080fd5b506103fa6103f53660046132a2565b611b90565b6040516102219190613423565b34801561041357600080fd5b506101fd61042236600461311f565b611bc4565b34801561043357600080fd5b506103fa611c5e565b34801561044857600080fd5b506101fd610457366004613364565b611c7a565b34801561046857600080fd5b506103fa611e5a565b34801561047d57600080fd5b506101fd61048c366004613337565b611e76565b34801561049d57600080fd5b506104b16104ac3660046132d2565b612071565b604051610221929190613a64565b3480156104cb57600080fd5b506103fa612095565b3480156104e057600080fd5b506101fd6104ef366004613301565b6120b9565b34801561050057600080fd5b50610214612355565b34801561051557600080fd5b506103fa6105243660046132a2565b6124fc565b34801561053557600080fd5b506101fd610544366004613337565b612509565b61055c610557366004613041565b6127b5565b6040516102219291906134e9565b34801561057657600080fd5b506103fa612961565b34801561058b57600080fd5b506103fa61297d565b60005473ffffffffffffffffffffffffffffffffffffffff1633146105ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e5906137f7565b60405180910390fd5b81156106e25773ffffffffffffffffffffffffffffffffffffffff83161515806106155750805b61064b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e5906136f5565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808716939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff85167fffffffffffffffffffffffff000000000000000000000000000000000000000091821617909155600180549091169055610723565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff85161790555b505050565b60035490565b610736612f8e565b61073f846117f2565b6000858152600660209081526040808320338452909152902081519192509061079a9064e8d4a51000906107869087906fffffffffffffffffffffffffffffffff166129a1565b8161078d57fe5b60018401549190046129f8565b600182015580546107ab9085612a5f565b81556005805460009190879081106107bf57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905080156108785781546040517f8bf6374200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff831691638bf6374291610845918a9133918a9160009190600401613a18565b600060405180830381600087803b15801561085f57600080fd5b505af1158015610873573d6000803e3d6000fd5b505050505b6108b384866004898154811061088a57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff169190612a9c565b8373ffffffffffffffffffffffffffffffffffffffff16863373ffffffffffffffffffffffffffffffffffffffff167f8166bf25f8a2b7ed3c85049207da4358d16edbed977d23fa2ee6f0dde3ec2132886040516109119190613a0f565b60405180910390a4505050505050565b6003818154811061092e57fe5b6000918252602090912001546fffffffffffffffffffffffffffffffff8116915067ffffffffffffffff7001000000000000000000000000000000008204811691780100000000000000000000000000000000000000000000000090041683565b60075481565b61099d612f8e565b6109a6836117f2565b6000848152600660209081526040808320338452909152812082518154939450909264e8d4a51000916109eb91906fffffffffffffffffffffffffffffffff166129a1565b816109f257fe5b0490506000610a16610a118460010154846129f890919063ffffffff16565b612c04565b6001840183905590508015610a6657610a6673ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168683612a9c565b600060058781548110610a7557fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1690508015610b2d5783546040517f8bf6374200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff831691638bf6374291610afa918b9133918c91899190600401613a18565b600060405180830381600087803b158015610b1457600080fd5b505af1158015610b28573d6000803e3d6000fd5b505050505b863373ffffffffffffffffffffffffffffffffffffffff167f71bab65ced2e5750775a0613be067df48ef06cf92a496ebf7663ae066092495484604051610b749190613a0f565b60405180910390a350505050505050565b6000610b8f612f8e565b60038481548110610b9c57fe5b600091825260208083206040805160608101825291909301546fffffffffffffffffffffffffffffffff808216835267ffffffffffffffff70010000000000000000000000000000000083048116848601527801000000000000000000000000000000000000000000000000909204909116828501528885526006835283852073ffffffffffffffffffffffffffffffffffffffff89168652909252918320825160048054949650919492169288908110610c5357fe5b6000918252602090912001546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff909116906370a0823190610cb2903090600401613423565b60206040518083038186803b158015610cca57600080fd5b505afa158015610cde573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0291906132ba565b9050836020015167ffffffffffffffff1643118015610d2057508015155b15610dab576000610d48856020015167ffffffffffffffff1643612a5f90919063ffffffff16565b90506000600754610d79876040015167ffffffffffffffff16610d73610d6c612355565b86906129a1565b906129a1565b81610d8057fe5b049050610da683610d968364e8d4a510006129a1565b81610d9d57fe5b86919004612c44565b935050505b60018301548354610dd991610a119164e8d4a5100090610dcb90876129a1565b81610dd257fe5b04906129f8565b979650505050505050565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190610e39903390600401613423565b60206040518083038186803b158015610e5157600080fd5b505afa158015610e65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8991906132ba565b905080610ec2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e590613604565b610ee473ffffffffffffffffffffffffffffffffffffffff8316333084612c81565b6040517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83169063095ea7b390610f58907f00000000000000000000000000000000000000000000000000000000000000009085906004016134c3565b602060405180830381600087803b158015610f7257600080fd5b505af1158015610f86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610faa91906130cb565b506040517fe2bbb15800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063e2bbb1589061103f907f0000000000000000000000000000000000000000000000000000000000000000908590600401613a64565b600060405180830381600087803b15801561105957600080fd5b505af115801561106d573d6000803e3d6000fd5b50506040517f98a9bd3b7a617581fc53b1e2992534e0e0cb5091c9d44aa1a7fc978f706caa83925060009150a15050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e5906137f7565b600280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000828152600660209081526040808320338452909152812080548282556001820183905560058054929391928690811061116d57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1690508015611225576040517f8bf6374200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff821690638bf63742906111f2908890339089906000908190600401613a18565b600060405180830381600087803b15801561120c57600080fd5b505af1158015611220573d6000803e3d6000fd5b505050505b61123784836004888154811061088a57fe5b8373ffffffffffffffffffffffffffffffffffffffff16853373ffffffffffffffffffffffffffffffffffffffff167f2cac5e20e1541d836381527a43f651851e302817b71dc8e810284e69210c1c6b856040516112959190613a0f565b60405180910390a45050505050565b60025473ffffffffffffffffffffffffffffffffffffffff166112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e590613898565b60006004828154811061130257fe5b60009182526020822001546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff909116925082906370a0823190611363903090600401613423565b60206040518083038186803b15801561137b57600080fd5b505afa15801561138f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113b391906132ba565b6002546040517f095ea7b300000000000000000000000000000000000000000000000000000000815291925073ffffffffffffffffffffffffffffffffffffffff8085169263095ea7b39261140e92169085906004016134c3565b602060405180830381600087803b15801561142857600080fd5b505af115801561143c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146091906130cb565b506002546040517fce5494bb00000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff169063ce5494bb906114b8908690600401613423565b602060405180830381600087803b1580156114d257600080fd5b505af11580156114e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061150a9190613103565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815290915073ffffffffffffffffffffffffffffffffffffffff8216906370a082319061155f903090600401613423565b60206040518083038186803b15801561157757600080fd5b505afa15801561158b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115af91906132ba565b82146115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e59061372c565b80600485815481106115f557fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b60015473ffffffffffffffffffffffffffffffffffffffff16338114611695576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e59061382c565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff9092167fffffffffffffffffffffffff0000000000000000000000000000000000000000928316179055600180549091169055565b6040517fe2bbb15800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063e2bbb158906117be907f000000000000000000000000000000000000000000000000000000000000000090600090600401613a64565b600060405180830381600087803b1580156117d857600080fd5b505af11580156117ec573d6000803e3d6000fd5b50505050565b6117fa612f8e565b6003828154811061180757fe5b60009182526020918290206040805160608101825292909101546fffffffffffffffffffffffffffffffff8116835267ffffffffffffffff70010000000000000000000000000000000082048116948401859052780100000000000000000000000000000000000000000000000090910416908201529150431115611b375760006004838154811061189557fe5b6000918252602090912001546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff909116906370a08231906118f4903090600401613423565b60206040518083038186803b15801561190c57600080fd5b505afa158015611920573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061194491906132ba565b905080156119f157600061196f836020015167ffffffffffffffff1643612a5f90919063ffffffff16565b90506000600754611993856040015167ffffffffffffffff16610d73610d6c612355565b8161199a57fe5b0490506119da6119c0846119b38464e8d4a510006129a1565b816119ba57fe5b04612dec565b85516fffffffffffffffffffffffffffffffff1690612e38565b6fffffffffffffffffffffffffffffffff16845250505b6119fa43612e8a565b67ffffffffffffffff1660208301526003805483919085908110611a1a57fe5b6000918252602091829020835191018054848401516040958601517fffffffffffffffffffffffffffffffff000000000000000000000000000000009092166fffffffffffffffffffffffffffffffff909416939093177fffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff1670010000000000000000000000000000000067ffffffffffffffff948516021777ffffffffffffffffffffffffffffffffffffffffffffffff16780100000000000000000000000000000000000000000000000093909116929092029190911790558301518351915185927f0fc9545022a542541ad085d091fb09a2ab36fee366a4576ab63714ea907ad35392611b2d9290918691613a72565b60405180910390a2505b919050565b8060005b818110156117ec57611b63848483818110611b5757fe5b905060200201356117f2565b50600101611b40565b7f000000000000000000000000000000000000000000000000000000000000000081565b60048181548110611b9d57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905081565b6040517fd505accf00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff89169063d505accf90611c22908a908a908a908a908a908a908a90600401613475565b600060405180830381600087803b158015611c3c57600080fd5b505af1158015611c50573d6000803e3d6000fd5b505050505050505050505050565b60025473ffffffffffffffffffffffffffffffffffffffff1681565b60005473ffffffffffffffffffffffffffffffffffffffff163314611ccb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e5906137f7565b611d2083611d1a60038781548110611cdf57fe5b600091825260209091200154600754907801000000000000000000000000000000000000000000000000900467ffffffffffffffff16612a5f565b90612c44565b600755611d2c83612e8a565b60038581548110611d3957fe5b9060005260206000200160000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508015611dc9578160058581548110611d8057fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b80611e025760058481548110611ddb57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16611e04565b815b73ffffffffffffffffffffffffffffffffffffffff16847f95895a6ab1df54420d241b55243258a33e61b2194db66c1179ec521aae8e18658584604051611e4c929190613a54565b60405180910390a350505050565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b611e7e612f8e565b611e87846117f2565b600085815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091529020805491925090611ec69085612c44565b81558151611f069064e8d4a5100090611ef29087906fffffffffffffffffffffffffffffffff166129a1565b81611ef957fe5b6001840154919004612ece565b8160010181905550600060058681548110611f1d57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1690508015611fd65781546040517f8bf6374200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff831691638bf6374291611fa3918a918991829160009190600401613a18565b600060405180830381600087803b158015611fbd57600080fd5b505af1158015611fd1573d6000803e3d6000fd5b505050505b61201333308760048a81548110611fe957fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16929190612c81565b8373ffffffffffffffffffffffffffffffffffffffff16863373ffffffffffffffffffffffffffffffffffffffff167f02d7e648dd130fc184d383e55bb126ac4c9c60e8f94bf05acdf557ba2d540b47886040516109119190613a0f565b60066020908152600092835260408084209091529082529020805460019091015482565b7f000000000000000000000000000000000000000000000000000000000000000081565b60005473ffffffffffffffffffffffffffffffffffffffff16331461210a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e5906137f7565b60075443906121199085612c44565b6007556004805460018181019092557f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01805473ffffffffffffffffffffffffffffffffffffffff8087167fffffffffffffffffffffffff00000000000000000000000000000000000000009283161790925560058054938401815560009081527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db09093018054928616929091169190911790556040805160608101909152908152600390602081016121eb84612e8a565b67ffffffffffffffff16815260200161220387612e8a565b67ffffffffffffffff908116909152825460018181018555600094855260209485902084519201805495850151604090950151841678010000000000000000000000000000000000000000000000000277ffffffffffffffffffffffffffffffffffffffffffffffff95909416700100000000000000000000000000000000027fffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff6fffffffffffffffffffffffffffffffff9094167fffffffffffffffffffffffffffffffff000000000000000000000000000000009097169690961792909216949094179290921617905560045473ffffffffffffffffffffffffffffffffffffffff808516929086169161231891612a5f565b7f81ee0f8c5c46e2cb41984886f77a84181724abb86c32a5f6de539b07509d45e5876040516123479190613a0f565b60405180910390a450505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166317caf6f16040518163ffffffff1660e01b815260040160206040518083038186803b1580156123bd57600080fd5b505afa1580156123d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123f591906132ba565b6040517f1526fe270000000000000000000000000000000000000000000000000000000081526124ef9073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001690631526fe279061248b907f000000000000000000000000000000000000000000000000000000000000000090600401613a0f565b60806040518083038186803b1580156124a357600080fd5b505afa1580156124b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124db9190613250565b6020015168056bc75e2d63100000906129a1565b816124f657fe5b04905090565b60058181548110611b9d57fe5b612511612f8e565b61251a846117f2565b6000858152600660209081526040808320338452909152812082518154939450909264e8d4a510009161255f91906fffffffffffffffffffffffffffffffff166129a1565b8161256657fe5b0490506000612585610a118460010154846129f890919063ffffffff16565b90506125c964e8d4a510006125b986600001516fffffffffffffffffffffffffffffffff16896129a190919063ffffffff16565b816125c057fe5b849190046129f8565b600184015582546125da9087612a5f565b835561261d73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168683612a9c565b60006005888154811061262c57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905080156126e45783546040517f8bf6374200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff831691638bf63742916126b1918c9133918c91899190600401613a18565b600060405180830381600087803b1580156126cb57600080fd5b505af11580156126df573d6000803e3d6000fd5b505050505b6126f6868860048b8154811061088a57fe5b8573ffffffffffffffffffffffffffffffffffffffff16883373ffffffffffffffffffffffffffffffffffffffff167f8166bf25f8a2b7ed3c85049207da4358d16edbed977d23fa2ee6f0dde3ec21328a6040516127549190613a0f565b60405180910390a4873373ffffffffffffffffffffffffffffffffffffffff167f71bab65ced2e5750775a0613be067df48ef06cf92a496ebf7663ae0660924954846040516127a39190613a0f565b60405180910390a35050505050505050565b6060808367ffffffffffffffff811180156127cf57600080fd5b506040519080825280602002602001820160405280156127f9578160200160208202803683370190505b5091508367ffffffffffffffff8111801561281357600080fd5b5060405190808252806020026020018201604052801561284757816020015b60608152602001906001900390816128325790505b50905060005b8481101561295857600060603088888581811061286657fe5b90506020028101906128789190613aa6565b6040516128869291906133f7565b600060405180830381855af49150503d80600081146128c1576040519150601f19603f3d011682016040523d82523d6000602084013e6128c6565b606091505b509150915081806128d5575085155b6128de82612f2e565b90612916576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e59190613583565b508185848151811061292457fe5b6020026020010190151590811515815250508084848151811061294357fe5b6020908102919091010152505060010161284d565b50935093915050565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008115806129bc575050808202828282816129b957fe5b04145b6129f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e590613961565b92915050565b6000818303818312801590612a0d5750838113155b80612a225750600083128015612a2257508381135b612a58576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e5906138cf565b9392505050565b808203828111156129f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e590613596565b600060608473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60e01b8585604051602401612ad29291906134c3565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909416939093179092529051612b5b9190613407565b6000604051808303816000865af19150503d8060008114612b98576040519150601f19603f3d011682016040523d82523d6000602084013e612b9d565b606091505b5091509150818015612bc7575080511580612bc7575080806020019051810190612bc791906130cb565b612bfd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e590613661565b5050505050565b600080821215612c40576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e5906135cd565b5090565b818101818110156129f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e5906137c0565b600060608573ffffffffffffffffffffffffffffffffffffffff166323b872dd60e01b868686604051602401612cb993929190613444565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909416939093179092529051612d429190613407565b6000604051808303816000865af19150503d8060008114612d7f576040519150601f19603f3d011682016040523d82523d6000602084013e612d84565b606091505b5091509150818015612dae575080511580612dae575080806020019051810190612dae91906130cb565b612de4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e59061392c565b505050505050565b60006fffffffffffffffffffffffffffffffff821115612c40576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e590613789565b8181016fffffffffffffffffffffffffffffffff80831690821610156129f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e5906137c0565b600067ffffffffffffffff821115612c40576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e590613861565b6000828201818312801590612ee35750838112155b80612ef85750600083128015612ef857508381125b612a58576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e590613698565b6060604482511015612f74575060408051808201909152601d81527f5472616e73616374696f6e2072657665727465642073696c656e746c790000006020820152611b37565b600482019150818060200190518101906129f291906131a6565b604080516060810182526000808252602082018190529181019190915290565b60008083601f840112612fbf578182fd5b50813567ffffffffffffffff811115612fd6578182fd5b6020830191508360208083028501011115612ff057600080fd5b9250929050565b60008060006060848603121561300b578283fd5b833561301681613b5c565b9250602084013561302681613b81565b9150604084013561303681613b81565b809150509250925092565b600080600060408486031215613055578283fd5b833567ffffffffffffffff81111561306b578384fd5b61307786828701612fae565b909450925050602084013561303681613b81565b6000806020838503121561309d578182fd5b823567ffffffffffffffff8111156130b3578283fd5b6130bf85828601612fae565b90969095509350505050565b6000602082840312156130dc578081fd5b8151612a5881613b81565b6000602082840312156130f8578081fd5b8135612a5881613b5c565b600060208284031215613114578081fd5b8151612a5881613b5c565b600080600080600080600080610100898b03121561313b578384fd5b883561314681613b5c565b9750602089013561315681613b5c565b9650604089013561316681613b5c565b9550606089013594506080890135935060a089013560ff81168114613189578384fd5b979a969950949793969295929450505060c08201359160e0013590565b6000602082840312156131b7578081fd5b815167ffffffffffffffff808211156131ce578283fd5b818401915084601f8301126131e1578283fd5b8151818111156131ef578384fd5b61322060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601613b09565b9150808252856020828501011115613236578384fd5b613247816020840160208601613b30565b50949350505050565b600060808284031215613261578081fd5b61326b6080613b09565b825161327681613b5c565b808252506020830151602082015260408301516040820152606083015160608201528091505092915050565b6000602082840312156132b3578081fd5b5035919050565b6000602082840312156132cb578081fd5b5051919050565b600080604083850312156132e4578182fd5b8235915060208301356132f681613b5c565b809150509250929050565b600080600060608486031215613315578081fd5b83359250602084013561332781613b5c565b9150604084013561303681613b5c565b60008060006060848603121561334b578081fd5b8335925060208401359150604084013561303681613b5c565b60008060008060808587031215613379578182fd5b8435935060208501359250604085013561339281613b5c565b915060608501356133a281613b81565b939692955090935050565b600081518084526133c5816020860160208601613b30565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6000828483379101908152919050565b60008251613419818460208701613b30565b9190910192915050565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff9384168152919092166020820152604081019190915260600190565b73ffffffffffffffffffffffffffffffffffffffff97881681529590961660208601526040850193909352606084019190915260ff16608083015260a082015260c081019190915260e00190565b73ffffffffffffffffffffffffffffffffffffffff929092168252602082015260400190565b604080825283519082018190526000906020906060840190828701845b82811015613524578151151584529284019290840190600101613506565b5050508381038285015280855161353b8184613a0f565b91508192508381028201848801865b838110156135745785830385526135628383516133ad565b9487019492509086019060010161354a565b50909998505050505050505050565b600060208252612a5860208301846133ad565b60208082526015908201527f426f72696e674d6174683a20556e646572666c6f770000000000000000000000604082015260600190565b6020808252600b908201527f496e7465676572203c2030000000000000000000000000000000000000000000604082015260600190565b60208082526023908201527f4d61737465724368656656323a2042616c616e6365206d75737420657863656560408201527f6420300000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601c908201527f426f72696e6745524332303a205472616e73666572206661696c656400000000604082015260600190565b60208082526021908201527f5369676e6564536166654d6174683a206164646974696f6e206f766572666c6f60408201527f7700000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526015908201527f4f776e61626c653a207a65726f20616464726573730000000000000000000000604082015260600190565b60208082526029908201527f4d61737465724368656656323a206d696772617465642062616c616e6365206d60408201527f757374206d617463680000000000000000000000000000000000000000000000606082015260800190565b6020808252601c908201527f426f72696e674d6174683a2075696e74313238204f766572666c6f7700000000604082015260600190565b60208082526018908201527f426f72696e674d6174683a20416464204f766572666c6f770000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c657220213d2070656e64696e67206f776e6572604082015260600190565b6020808252601b908201527f426f72696e674d6174683a2075696e743634204f766572666c6f770000000000604082015260600190565b6020808252601d908201527f4d61737465724368656656323a206e6f206d69677261746f7220736574000000604082015260600190565b60208082526024908201527f5369676e6564536166654d6174683a207375627472616374696f6e206f76657260408201527f666c6f7700000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f426f72696e6745524332303a205472616e7366657246726f6d206661696c6564604082015260600190565b60208082526018908201527f426f72696e674d6174683a204d756c204f766572666c6f770000000000000000604082015260600190565b81516fffffffffffffffffffffffffffffffff16815260208083015167ffffffffffffffff90811691830191909152604092830151169181019190915260600190565b6fffffffffffffffffffffffffffffffff93909316835267ffffffffffffffff918216602084015216604082015260600190565b90815260200190565b94855273ffffffffffffffffffffffffffffffffffffffff93841660208601529190921660408401526060830191909152608082015260a00190565b9182521515602082015260400190565b918252602082015260400190565b67ffffffffffffffff93909316835260208301919091526fffffffffffffffffffffffffffffffff16604082015260600190565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112613ada578283fd5b83018035915067ffffffffffffffff821115613af4578283fd5b602001915036819003821315612ff057600080fd5b60405181810167ffffffffffffffff81118282101715613b2857600080fd5b604052919050565b60005b83811015613b4b578181015183820152602001613b33565b838111156117ec5750506000910152565b73ffffffffffffffffffffffffffffffffffffffff81168114613b7e57600080fd5b50565b8015158114613b7e57600080fdfea2646970667358221220963b3142e60a6027d8683ef310c14f58faad25fb175ba0c493c48eb851f6bc5464736f6c634300060c0033000000000000000000000000c2edad668740f1aa35e4d8f227fb8e17dca888cd0000000000000000000000006b3595068778dd592e39a122f4f5a5cf09c90fe200000000000000000000000000000000000000000000000000000000000000fa
Deployed Bytecode
0x6080604052600436106101d85760003560e01c806361621aaa11610102578063ab560e1011610095578063d1abb90711610064578063d1abb90714610529578063d2423b5114610549578063e30c39781461056a578063edd8b1701461057f576101d8565b8063ab560e10146104bf578063ab7de098146104d4578063b0bcf42a146104f4578063c346253d14610509576101d8565b806388bba42f116100d157806388bba42f1461043c5780638da5cb5b1461045c5780638dbdbe6d1461047157806393f1a40b14610491576101d8565b806361621aaa146103c557806378ed5d1f146103da5780637c516e94146104075780637cd07e4714610427576101d8565b806319ab453c1161017a5780634e71e0c8116101495780634e71e0c81461034e5780634f70b15a1461036357806351eb05a61461037857806357a5b58c146103a5576101d8565b806319ab453c146102ce57806323cf3118146102ee5780632f940c701461030e578063454b06081461032e576101d8565b80631526fe27116101b65780631526fe271461024a57806317caf6f11461027957806318fccc761461028e578063195426ec146102ae576101d8565b8063078dfbe7146101dd578063081e3eda146101ff5780630ad58d2f1461022a575b600080fd5b3480156101e957600080fd5b506101fd6101f8366004612ff7565b610594565b005b34801561020b57600080fd5b50610214610728565b6040516102219190613a0f565b60405180910390f35b34801561023657600080fd5b506101fd610245366004613337565b61072e565b34801561025657600080fd5b5061026a6102653660046132a2565b610921565b604051610221939291906139db565b34801561028557600080fd5b5061021461098f565b34801561029a57600080fd5b506101fd6102a93660046132d2565b610995565b3480156102ba57600080fd5b506102146102c93660046132d2565b610b85565b3480156102da57600080fd5b506101fd6102e93660046130e7565b610de4565b3480156102fa57600080fd5b506101fd6103093660046130e7565b61109e565b34801561031a57600080fd5b506101fd6103293660046132d2565b611136565b34801561033a57600080fd5b506101fd6103493660046132a2565b6112a4565b34801561035a57600080fd5b506101fd611643565b34801561036f57600080fd5b506101fd611729565b34801561038457600080fd5b506103986103933660046132a2565b6117f2565b6040516102219190613998565b3480156103b157600080fd5b506101fd6103c036600461308b565b611b3c565b3480156103d157600080fd5b50610214611b6c565b3480156103e657600080fd5b506103fa6103f53660046132a2565b611b90565b6040516102219190613423565b34801561041357600080fd5b506101fd61042236600461311f565b611bc4565b34801561043357600080fd5b506103fa611c5e565b34801561044857600080fd5b506101fd610457366004613364565b611c7a565b34801561046857600080fd5b506103fa611e5a565b34801561047d57600080fd5b506101fd61048c366004613337565b611e76565b34801561049d57600080fd5b506104b16104ac3660046132d2565b612071565b604051610221929190613a64565b3480156104cb57600080fd5b506103fa612095565b3480156104e057600080fd5b506101fd6104ef366004613301565b6120b9565b34801561050057600080fd5b50610214612355565b34801561051557600080fd5b506103fa6105243660046132a2565b6124fc565b34801561053557600080fd5b506101fd610544366004613337565b612509565b61055c610557366004613041565b6127b5565b6040516102219291906134e9565b34801561057657600080fd5b506103fa612961565b34801561058b57600080fd5b506103fa61297d565b60005473ffffffffffffffffffffffffffffffffffffffff1633146105ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e5906137f7565b60405180910390fd5b81156106e25773ffffffffffffffffffffffffffffffffffffffff83161515806106155750805b61064b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e5906136f5565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808716939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff85167fffffffffffffffffffffffff000000000000000000000000000000000000000091821617909155600180549091169055610723565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff85161790555b505050565b60035490565b610736612f8e565b61073f846117f2565b6000858152600660209081526040808320338452909152902081519192509061079a9064e8d4a51000906107869087906fffffffffffffffffffffffffffffffff166129a1565b8161078d57fe5b60018401549190046129f8565b600182015580546107ab9085612a5f565b81556005805460009190879081106107bf57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905080156108785781546040517f8bf6374200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff831691638bf6374291610845918a9133918a9160009190600401613a18565b600060405180830381600087803b15801561085f57600080fd5b505af1158015610873573d6000803e3d6000fd5b505050505b6108b384866004898154811061088a57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff169190612a9c565b8373ffffffffffffffffffffffffffffffffffffffff16863373ffffffffffffffffffffffffffffffffffffffff167f8166bf25f8a2b7ed3c85049207da4358d16edbed977d23fa2ee6f0dde3ec2132886040516109119190613a0f565b60405180910390a4505050505050565b6003818154811061092e57fe5b6000918252602090912001546fffffffffffffffffffffffffffffffff8116915067ffffffffffffffff7001000000000000000000000000000000008204811691780100000000000000000000000000000000000000000000000090041683565b60075481565b61099d612f8e565b6109a6836117f2565b6000848152600660209081526040808320338452909152812082518154939450909264e8d4a51000916109eb91906fffffffffffffffffffffffffffffffff166129a1565b816109f257fe5b0490506000610a16610a118460010154846129f890919063ffffffff16565b612c04565b6001840183905590508015610a6657610a6673ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000006b3595068778dd592e39a122f4f5a5cf09c90fe2168683612a9c565b600060058781548110610a7557fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1690508015610b2d5783546040517f8bf6374200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff831691638bf6374291610afa918b9133918c91899190600401613a18565b600060405180830381600087803b158015610b1457600080fd5b505af1158015610b28573d6000803e3d6000fd5b505050505b863373ffffffffffffffffffffffffffffffffffffffff167f71bab65ced2e5750775a0613be067df48ef06cf92a496ebf7663ae066092495484604051610b749190613a0f565b60405180910390a350505050505050565b6000610b8f612f8e565b60038481548110610b9c57fe5b600091825260208083206040805160608101825291909301546fffffffffffffffffffffffffffffffff808216835267ffffffffffffffff70010000000000000000000000000000000083048116848601527801000000000000000000000000000000000000000000000000909204909116828501528885526006835283852073ffffffffffffffffffffffffffffffffffffffff89168652909252918320825160048054949650919492169288908110610c5357fe5b6000918252602090912001546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff909116906370a0823190610cb2903090600401613423565b60206040518083038186803b158015610cca57600080fd5b505afa158015610cde573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0291906132ba565b9050836020015167ffffffffffffffff1643118015610d2057508015155b15610dab576000610d48856020015167ffffffffffffffff1643612a5f90919063ffffffff16565b90506000600754610d79876040015167ffffffffffffffff16610d73610d6c612355565b86906129a1565b906129a1565b81610d8057fe5b049050610da683610d968364e8d4a510006129a1565b81610d9d57fe5b86919004612c44565b935050505b60018301548354610dd991610a119164e8d4a5100090610dcb90876129a1565b81610dd257fe5b04906129f8565b979650505050505050565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815260009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190610e39903390600401613423565b60206040518083038186803b158015610e5157600080fd5b505afa158015610e65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8991906132ba565b905080610ec2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e590613604565b610ee473ffffffffffffffffffffffffffffffffffffffff8316333084612c81565b6040517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83169063095ea7b390610f58907f000000000000000000000000c2edad668740f1aa35e4d8f227fb8e17dca888cd9085906004016134c3565b602060405180830381600087803b158015610f7257600080fd5b505af1158015610f86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610faa91906130cb565b506040517fe2bbb15800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000c2edad668740f1aa35e4d8f227fb8e17dca888cd169063e2bbb1589061103f907f00000000000000000000000000000000000000000000000000000000000000fa908590600401613a64565b600060405180830381600087803b15801561105957600080fd5b505af115801561106d573d6000803e3d6000fd5b50506040517f98a9bd3b7a617581fc53b1e2992534e0e0cb5091c9d44aa1a7fc978f706caa83925060009150a15050565b60005473ffffffffffffffffffffffffffffffffffffffff1633146110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e5906137f7565b600280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000828152600660209081526040808320338452909152812080548282556001820183905560058054929391928690811061116d57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1690508015611225576040517f8bf6374200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff821690638bf63742906111f2908890339089906000908190600401613a18565b600060405180830381600087803b15801561120c57600080fd5b505af1158015611220573d6000803e3d6000fd5b505050505b61123784836004888154811061088a57fe5b8373ffffffffffffffffffffffffffffffffffffffff16853373ffffffffffffffffffffffffffffffffffffffff167f2cac5e20e1541d836381527a43f651851e302817b71dc8e810284e69210c1c6b856040516112959190613a0f565b60405180910390a45050505050565b60025473ffffffffffffffffffffffffffffffffffffffff166112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e590613898565b60006004828154811061130257fe5b60009182526020822001546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff909116925082906370a0823190611363903090600401613423565b60206040518083038186803b15801561137b57600080fd5b505afa15801561138f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113b391906132ba565b6002546040517f095ea7b300000000000000000000000000000000000000000000000000000000815291925073ffffffffffffffffffffffffffffffffffffffff8085169263095ea7b39261140e92169085906004016134c3565b602060405180830381600087803b15801561142857600080fd5b505af115801561143c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146091906130cb565b506002546040517fce5494bb00000000000000000000000000000000000000000000000000000000815260009173ffffffffffffffffffffffffffffffffffffffff169063ce5494bb906114b8908690600401613423565b602060405180830381600087803b1580156114d257600080fd5b505af11580156114e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061150a9190613103565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815290915073ffffffffffffffffffffffffffffffffffffffff8216906370a082319061155f903090600401613423565b60206040518083038186803b15801561157757600080fd5b505afa15801561158b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115af91906132ba565b82146115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e59061372c565b80600485815481106115f557fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050565b60015473ffffffffffffffffffffffffffffffffffffffff16338114611695576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e59061382c565b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff9092167fffffffffffffffffffffffff0000000000000000000000000000000000000000928316179055600180549091169055565b6040517fe2bbb15800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000c2edad668740f1aa35e4d8f227fb8e17dca888cd169063e2bbb158906117be907f00000000000000000000000000000000000000000000000000000000000000fa90600090600401613a64565b600060405180830381600087803b1580156117d857600080fd5b505af11580156117ec573d6000803e3d6000fd5b50505050565b6117fa612f8e565b6003828154811061180757fe5b60009182526020918290206040805160608101825292909101546fffffffffffffffffffffffffffffffff8116835267ffffffffffffffff70010000000000000000000000000000000082048116948401859052780100000000000000000000000000000000000000000000000090910416908201529150431115611b375760006004838154811061189557fe5b6000918252602090912001546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff909116906370a08231906118f4903090600401613423565b60206040518083038186803b15801561190c57600080fd5b505afa158015611920573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061194491906132ba565b905080156119f157600061196f836020015167ffffffffffffffff1643612a5f90919063ffffffff16565b90506000600754611993856040015167ffffffffffffffff16610d73610d6c612355565b8161199a57fe5b0490506119da6119c0846119b38464e8d4a510006129a1565b816119ba57fe5b04612dec565b85516fffffffffffffffffffffffffffffffff1690612e38565b6fffffffffffffffffffffffffffffffff16845250505b6119fa43612e8a565b67ffffffffffffffff1660208301526003805483919085908110611a1a57fe5b6000918252602091829020835191018054848401516040958601517fffffffffffffffffffffffffffffffff000000000000000000000000000000009092166fffffffffffffffffffffffffffffffff909416939093177fffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff1670010000000000000000000000000000000067ffffffffffffffff948516021777ffffffffffffffffffffffffffffffffffffffffffffffff16780100000000000000000000000000000000000000000000000093909116929092029190911790558301518351915185927f0fc9545022a542541ad085d091fb09a2ab36fee366a4576ab63714ea907ad35392611b2d9290918691613a72565b60405180910390a2505b919050565b8060005b818110156117ec57611b63848483818110611b5757fe5b905060200201356117f2565b50600101611b40565b7f00000000000000000000000000000000000000000000000000000000000000fa81565b60048181548110611b9d57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905081565b6040517fd505accf00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff89169063d505accf90611c22908a908a908a908a908a908a908a90600401613475565b600060405180830381600087803b158015611c3c57600080fd5b505af1158015611c50573d6000803e3d6000fd5b505050505050505050505050565b60025473ffffffffffffffffffffffffffffffffffffffff1681565b60005473ffffffffffffffffffffffffffffffffffffffff163314611ccb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e5906137f7565b611d2083611d1a60038781548110611cdf57fe5b600091825260209091200154600754907801000000000000000000000000000000000000000000000000900467ffffffffffffffff16612a5f565b90612c44565b600755611d2c83612e8a565b60038581548110611d3957fe5b9060005260206000200160000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508015611dc9578160058581548110611d8057fe5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b80611e025760058481548110611ddb57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16611e04565b815b73ffffffffffffffffffffffffffffffffffffffff16847f95895a6ab1df54420d241b55243258a33e61b2194db66c1179ec521aae8e18658584604051611e4c929190613a54565b60405180910390a350505050565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b611e7e612f8e565b611e87846117f2565b600085815260066020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091529020805491925090611ec69085612c44565b81558151611f069064e8d4a5100090611ef29087906fffffffffffffffffffffffffffffffff166129a1565b81611ef957fe5b6001840154919004612ece565b8160010181905550600060058681548110611f1d57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1690508015611fd65781546040517f8bf6374200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff831691638bf6374291611fa3918a918991829160009190600401613a18565b600060405180830381600087803b158015611fbd57600080fd5b505af1158015611fd1573d6000803e3d6000fd5b505050505b61201333308760048a81548110611fe957fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16929190612c81565b8373ffffffffffffffffffffffffffffffffffffffff16863373ffffffffffffffffffffffffffffffffffffffff167f02d7e648dd130fc184d383e55bb126ac4c9c60e8f94bf05acdf557ba2d540b47886040516109119190613a0f565b60066020908152600092835260408084209091529082529020805460019091015482565b7f0000000000000000000000006b3595068778dd592e39a122f4f5a5cf09c90fe281565b60005473ffffffffffffffffffffffffffffffffffffffff16331461210a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e5906137f7565b60075443906121199085612c44565b6007556004805460018181019092557f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01805473ffffffffffffffffffffffffffffffffffffffff8087167fffffffffffffffffffffffff00000000000000000000000000000000000000009283161790925560058054938401815560009081527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db09093018054928616929091169190911790556040805160608101909152908152600390602081016121eb84612e8a565b67ffffffffffffffff16815260200161220387612e8a565b67ffffffffffffffff908116909152825460018181018555600094855260209485902084519201805495850151604090950151841678010000000000000000000000000000000000000000000000000277ffffffffffffffffffffffffffffffffffffffffffffffff95909416700100000000000000000000000000000000027fffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffff6fffffffffffffffffffffffffffffffff9094167fffffffffffffffffffffffffffffffff000000000000000000000000000000009097169690961792909216949094179290921617905560045473ffffffffffffffffffffffffffffffffffffffff808516929086169161231891612a5f565b7f81ee0f8c5c46e2cb41984886f77a84181724abb86c32a5f6de539b07509d45e5876040516123479190613a0f565b60405180910390a450505050565b60007f000000000000000000000000c2edad668740f1aa35e4d8f227fb8e17dca888cd73ffffffffffffffffffffffffffffffffffffffff166317caf6f16040518163ffffffff1660e01b815260040160206040518083038186803b1580156123bd57600080fd5b505afa1580156123d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123f591906132ba565b6040517f1526fe270000000000000000000000000000000000000000000000000000000081526124ef9073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000c2edad668740f1aa35e4d8f227fb8e17dca888cd1690631526fe279061248b907f00000000000000000000000000000000000000000000000000000000000000fa90600401613a0f565b60806040518083038186803b1580156124a357600080fd5b505afa1580156124b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124db9190613250565b6020015168056bc75e2d63100000906129a1565b816124f657fe5b04905090565b60058181548110611b9d57fe5b612511612f8e565b61251a846117f2565b6000858152600660209081526040808320338452909152812082518154939450909264e8d4a510009161255f91906fffffffffffffffffffffffffffffffff166129a1565b8161256657fe5b0490506000612585610a118460010154846129f890919063ffffffff16565b90506125c964e8d4a510006125b986600001516fffffffffffffffffffffffffffffffff16896129a190919063ffffffff16565b816125c057fe5b849190046129f8565b600184015582546125da9087612a5f565b835561261d73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000006b3595068778dd592e39a122f4f5a5cf09c90fe2168683612a9c565b60006005888154811061262c57fe5b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905080156126e45783546040517f8bf6374200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff831691638bf63742916126b1918c9133918c91899190600401613a18565b600060405180830381600087803b1580156126cb57600080fd5b505af11580156126df573d6000803e3d6000fd5b505050505b6126f6868860048b8154811061088a57fe5b8573ffffffffffffffffffffffffffffffffffffffff16883373ffffffffffffffffffffffffffffffffffffffff167f8166bf25f8a2b7ed3c85049207da4358d16edbed977d23fa2ee6f0dde3ec21328a6040516127549190613a0f565b60405180910390a4873373ffffffffffffffffffffffffffffffffffffffff167f71bab65ced2e5750775a0613be067df48ef06cf92a496ebf7663ae0660924954846040516127a39190613a0f565b60405180910390a35050505050505050565b6060808367ffffffffffffffff811180156127cf57600080fd5b506040519080825280602002602001820160405280156127f9578160200160208202803683370190505b5091508367ffffffffffffffff8111801561281357600080fd5b5060405190808252806020026020018201604052801561284757816020015b60608152602001906001900390816128325790505b50905060005b8481101561295857600060603088888581811061286657fe5b90506020028101906128789190613aa6565b6040516128869291906133f7565b600060405180830381855af49150503d80600081146128c1576040519150601f19603f3d011682016040523d82523d6000602084013e6128c6565b606091505b509150915081806128d5575085155b6128de82612f2e565b90612916576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e59190613583565b508185848151811061292457fe5b6020026020010190151590811515815250508084848151811061294357fe5b6020908102919091010152505060010161284d565b50935093915050565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000c2edad668740f1aa35e4d8f227fb8e17dca888cd81565b60008115806129bc575050808202828282816129b957fe5b04145b6129f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e590613961565b92915050565b6000818303818312801590612a0d5750838113155b80612a225750600083128015612a2257508381135b612a58576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e5906138cf565b9392505050565b808203828111156129f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e590613596565b600060608473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60e01b8585604051602401612ad29291906134c3565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909416939093179092529051612b5b9190613407565b6000604051808303816000865af19150503d8060008114612b98576040519150601f19603f3d011682016040523d82523d6000602084013e612b9d565b606091505b5091509150818015612bc7575080511580612bc7575080806020019051810190612bc791906130cb565b612bfd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e590613661565b5050505050565b600080821215612c40576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e5906135cd565b5090565b818101818110156129f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e5906137c0565b600060608573ffffffffffffffffffffffffffffffffffffffff166323b872dd60e01b868686604051602401612cb993929190613444565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529181526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909416939093179092529051612d429190613407565b6000604051808303816000865af19150503d8060008114612d7f576040519150601f19603f3d011682016040523d82523d6000602084013e612d84565b606091505b5091509150818015612dae575080511580612dae575080806020019051810190612dae91906130cb565b612de4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e59061392c565b505050505050565b60006fffffffffffffffffffffffffffffffff821115612c40576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e590613789565b8181016fffffffffffffffffffffffffffffffff80831690821610156129f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e5906137c0565b600067ffffffffffffffff821115612c40576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e590613861565b6000828201818312801590612ee35750838112155b80612ef85750600083128015612ef857508381125b612a58576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e590613698565b6060604482511015612f74575060408051808201909152601d81527f5472616e73616374696f6e2072657665727465642073696c656e746c790000006020820152611b37565b600482019150818060200190518101906129f291906131a6565b604080516060810182526000808252602082018190529181019190915290565b60008083601f840112612fbf578182fd5b50813567ffffffffffffffff811115612fd6578182fd5b6020830191508360208083028501011115612ff057600080fd5b9250929050565b60008060006060848603121561300b578283fd5b833561301681613b5c565b9250602084013561302681613b81565b9150604084013561303681613b81565b809150509250925092565b600080600060408486031215613055578283fd5b833567ffffffffffffffff81111561306b578384fd5b61307786828701612fae565b909450925050602084013561303681613b81565b6000806020838503121561309d578182fd5b823567ffffffffffffffff8111156130b3578283fd5b6130bf85828601612fae565b90969095509350505050565b6000602082840312156130dc578081fd5b8151612a5881613b81565b6000602082840312156130f8578081fd5b8135612a5881613b5c565b600060208284031215613114578081fd5b8151612a5881613b5c565b600080600080600080600080610100898b03121561313b578384fd5b883561314681613b5c565b9750602089013561315681613b5c565b9650604089013561316681613b5c565b9550606089013594506080890135935060a089013560ff81168114613189578384fd5b979a969950949793969295929450505060c08201359160e0013590565b6000602082840312156131b7578081fd5b815167ffffffffffffffff808211156131ce578283fd5b818401915084601f8301126131e1578283fd5b8151818111156131ef578384fd5b61322060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f84011601613b09565b9150808252856020828501011115613236578384fd5b613247816020840160208601613b30565b50949350505050565b600060808284031215613261578081fd5b61326b6080613b09565b825161327681613b5c565b808252506020830151602082015260408301516040820152606083015160608201528091505092915050565b6000602082840312156132b3578081fd5b5035919050565b6000602082840312156132cb578081fd5b5051919050565b600080604083850312156132e4578182fd5b8235915060208301356132f681613b5c565b809150509250929050565b600080600060608486031215613315578081fd5b83359250602084013561332781613b5c565b9150604084013561303681613b5c565b60008060006060848603121561334b578081fd5b8335925060208401359150604084013561303681613b5c565b60008060008060808587031215613379578182fd5b8435935060208501359250604085013561339281613b5c565b915060608501356133a281613b81565b939692955090935050565b600081518084526133c5816020860160208601613b30565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6000828483379101908152919050565b60008251613419818460208701613b30565b9190910192915050565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b73ffffffffffffffffffffffffffffffffffffffff9384168152919092166020820152604081019190915260600190565b73ffffffffffffffffffffffffffffffffffffffff97881681529590961660208601526040850193909352606084019190915260ff16608083015260a082015260c081019190915260e00190565b73ffffffffffffffffffffffffffffffffffffffff929092168252602082015260400190565b604080825283519082018190526000906020906060840190828701845b82811015613524578151151584529284019290840190600101613506565b5050508381038285015280855161353b8184613a0f565b91508192508381028201848801865b838110156135745785830385526135628383516133ad565b9487019492509086019060010161354a565b50909998505050505050505050565b600060208252612a5860208301846133ad565b60208082526015908201527f426f72696e674d6174683a20556e646572666c6f770000000000000000000000604082015260600190565b6020808252600b908201527f496e7465676572203c2030000000000000000000000000000000000000000000604082015260600190565b60208082526023908201527f4d61737465724368656656323a2042616c616e6365206d75737420657863656560408201527f6420300000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601c908201527f426f72696e6745524332303a205472616e73666572206661696c656400000000604082015260600190565b60208082526021908201527f5369676e6564536166654d6174683a206164646974696f6e206f766572666c6f60408201527f7700000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526015908201527f4f776e61626c653a207a65726f20616464726573730000000000000000000000604082015260600190565b60208082526029908201527f4d61737465724368656656323a206d696772617465642062616c616e6365206d60408201527f757374206d617463680000000000000000000000000000000000000000000000606082015260800190565b6020808252601c908201527f426f72696e674d6174683a2075696e74313238204f766572666c6f7700000000604082015260600190565b60208082526018908201527f426f72696e674d6174683a20416464204f766572666c6f770000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c657220213d2070656e64696e67206f776e6572604082015260600190565b6020808252601b908201527f426f72696e674d6174683a2075696e743634204f766572666c6f770000000000604082015260600190565b6020808252601d908201527f4d61737465724368656656323a206e6f206d69677261746f7220736574000000604082015260600190565b60208082526024908201527f5369676e6564536166654d6174683a207375627472616374696f6e206f76657260408201527f666c6f7700000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f426f72696e6745524332303a205472616e7366657246726f6d206661696c6564604082015260600190565b60208082526018908201527f426f72696e674d6174683a204d756c204f766572666c6f770000000000000000604082015260600190565b81516fffffffffffffffffffffffffffffffff16815260208083015167ffffffffffffffff90811691830191909152604092830151169181019190915260600190565b6fffffffffffffffffffffffffffffffff93909316835267ffffffffffffffff918216602084015216604082015260600190565b90815260200190565b94855273ffffffffffffffffffffffffffffffffffffffff93841660208601529190921660408401526060830191909152608082015260a00190565b9182521515602082015260400190565b918252602082015260400190565b67ffffffffffffffff93909316835260208301919091526fffffffffffffffffffffffffffffffff16604082015260600190565b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112613ada578283fd5b83018035915067ffffffffffffffff821115613af4578283fd5b602001915036819003821315612ff057600080fd5b60405181810167ffffffffffffffff81118282101715613b2857600080fd5b604052919050565b60005b83811015613b4b578181015183820152602001613b33565b838111156117ec5750506000910152565b73ffffffffffffffffffffffffffffffffffffffff81168114613b7e57600080fd5b50565b8015158114613b7e57600080fdfea2646970667358221220963b3142e60a6027d8683ef310c14f58faad25fb175ba0c493c48eb851f6bc5464736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000c2edad668740f1aa35e4d8f227fb8e17dca888cd0000000000000000000000006b3595068778dd592e39a122f4f5a5cf09c90fe200000000000000000000000000000000000000000000000000000000000000fa
-----Decoded View---------------
Arg [0] : _MASTER_CHEF (address): 0xc2EdaD668740f1aA35E4D8f227fB8E17dcA888Cd
Arg [1] : _sushi (address): 0x6B3595068778DD592e39A122f4f5a5cF09C90fE2
Arg [2] : _MASTER_PID (uint256): 250
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000c2edad668740f1aa35e4d8f227fb8e17dca888cd
Arg [1] : 0000000000000000000000006b3595068778dd592e39a122f4f5a5cf09c90fe2
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000fa
Deployed Bytecode Sourcemap
15631:14275:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5447:506;;;;;;;;;;-1:-1:-1;5447:506:0;;;;;:::i;:::-;;:::i;:::-;;19488:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25977:687;;;;;;;;;;-1:-1:-1;25977:687:0;;;;;:::i;:::-;;:::i;16855:26::-;;;;;;;;;;-1:-1:-1;16855:26:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;17303:30::-;;;;;;;;;;;;;:::i;26843:808::-;;;;;;;;;;-1:-1:-1;26843:808:0;;;;;:::i;:::-;;:::i;22385:803::-;;;;;;;;;;-1:-1:-1;22385:803:0;;;;;:::i;:::-;;:::i;19037:392::-;;;;;;;;;;-1:-1:-1;19037:392:0;;;;;:::i;:::-;;:::i;21415:102::-;;;;;;;;;;-1:-1:-1;21415:102:0;;;;;:::i;:::-;;:::i;29328:575::-;;;;;;;;;;-1:-1:-1;29328:575:0;;;;;:::i;:::-;;:::i;21675:482::-;;;;;;;;;;-1:-1:-1;21675:482:0;;;;;:::i;:::-;;:::i;6035:340::-;;;;;;;;;;;;;:::i;29050:93::-;;;;;;;;;;;;;:::i;24048:785::-;;;;;;;;;;-1:-1:-1;24048:785:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;23370:193::-;;;;;;;;;;-1:-1:-1;23370:193:0;;;;;:::i;:::-;;:::i;16628:35::-;;;;;;;;;;;;;:::i;16949:23::-;;;;;;;;;;-1:-1:-1;16949:23:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;13481:280::-;;;;;;;;;;-1:-1:-1;13481:280:0;;;;;:::i;:::-;;:::i;16776:29::-;;;;;;;;;;;;;:::i;20862:411::-;;;;;;;;;;-1:-1:-1;20862:411:0;;;;;:::i;:::-;;:::i;4593:20::-;;;;;;;;;;;;;:::i;25077:688::-;;;;;;;;;;-1:-1:-1;25077:688:0;;;;;:::i;:::-;;:::i;17136:66::-;;;;;;;;;;-1:-1:-1;17136:66:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;16536:29::-;;;;;;;;;;;;;:::i;19927:541::-;;;;;;;;;;-1:-1:-1;19927:541:0;;;;;:::i;:::-;;:::i;23644:220::-;;;;;;;;;;;;;:::i;17042:27::-;;;;;;;;;;-1:-1:-1;17042:27:0;;;;;:::i;:::-;;:::i;27937:1004::-;;;;;;;;;;-1:-1:-1;27937:1004:0;;;;;:::i;:::-;;:::i;12557:530::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;4620:27::-;;;;;;;;;;;;;:::i;16445:40::-;;;;;;;;;;;;;:::i;5447:506::-;6503:5;;;;6489:10;:19;6481:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;5586:6:::1;5582:364;;;5640:22;::::0;::::1;::::0;::::1;::::0;:34:::1;;;5666:8;5640:34;5632:68;;;;;;;;;;;;:::i;:::-;5767:5;::::0;;5746:37:::1;::::0;::::1;::::0;;::::1;::::0;5767:5;::::1;::::0;5746:37:::1;::::0;::::1;5798:5;:16:::0;;::::1;::::0;::::1;::::0;;;::::1;;::::0;;;;5829:25;;;;::::1;::::0;;5582:364:::1;;;5911:12;:23:::0;;;::::1;;::::0;::::1;;::::0;;5582:364:::1;5447:506:::0;;;:::o;19488:100::-;19565:8;:15;;19488:100::o;25977:687::-;26054:20;;:::i;:::-;26077:15;26088:3;26077:10;:15::i;:::-;26103:21;26127:13;;;:8;:13;;;;;;;;26141:10;26127:25;;;;;;;26241:21;;26054:38;;-1:-1:-1;26127:25:0;26203:84;;17454:4;;26230:33;;:6;;:33;;:10;:33::i;:::-;:55;;;;;26203:15;;;;;26230:55;;26203:19;:84::i;:::-;26185:15;;;:102;26312:11;;:23;;26328:6;26312:15;:23::i;:::-;26298:37;;26395:8;:13;;26298:11;;26395:8;26404:3;;26395:13;;;;;;;;;;;;;;;;;;;-1:-1:-1;26423:32:0;;26419:125;;26520:11;;26472:60;;;;;:23;;;;;;:60;;26496:3;;26501:10;;26513:2;;26517:1;;26520:11;26472:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26419:125;26564:37;26590:2;26594:6;26564:7;26572:3;26564:12;;;;;;;;;;;;;;;;;;;;;:37;:25;:37::i;:::-;26653:2;26619:37;;26640:3;26628:10;26619:37;;;26645:6;26619:37;;;;;;:::i;:::-;;;;;;;;25977:687;;;;;;:::o;16855:26::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16855:26:0;;;;;;;;;;;;:::o;17303:30::-;;;;:::o;26843:808::-;26903:20;;:::i;:::-;26926:15;26937:3;26926:10;:15::i;:::-;26952:21;26976:13;;;:8;:13;;;;;;;;26990:10;26976:25;;;;;;;27061:21;;27045:11;;26903:38;;-1:-1:-1;26976:25:0;;17454:4;;27045:38;;:11;:38;;:15;:38::i;:::-;:60;;;;;;27012:94;;27117:21;27141:49;:37;27162:4;:15;;;27141:16;:20;;:37;;;;:::i;:::-;:47;:49::i;:::-;27223:15;;;:34;;;27117:73;-1:-1:-1;27299:18:0;;27295:88;;27334:37;:18;:5;:18;27353:2;27357:13;27334:18;:37::i;:::-;27403:19;27425:8;27434:3;27425:13;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27453:32:0;;27449:138;;27563:11;;27502:73;;;;;:23;;;;;;:73;;27527:3;;27532:10;;27544:2;;27548:13;;27563:11;27502:73;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27449:138;27624:3;27612:10;27604:39;;;27629:13;27604:39;;;;;;:::i;:::-;;;;;;;;26843:808;;;;;;;:::o;22385:803::-;22459:15;22487:20;;:::i;:::-;22510:8;22519:4;22510:14;;;;;;;;;;;;;;;;22487:37;;;;;;;;22510:14;;;;22487:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;22559:14;;;:8;:14;;;;;:21;;;;;;;;;;;22618;;22669:7;:13;;22487:37;;-1:-1:-1;22559:21:0;;22591:48;;;22568:4;;22669:13;;;;;;;;;;;;;;;;:38;;;;;:13;;;;;:23;;:38;;22701:4;;22669:38;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22650:57;;22737:4;:20;;;22722:35;;:12;:35;:52;;;;-1:-1:-1;22761:13:0;;;22722:52;22718:346;;;22791:14;22808:38;22825:4;:20;;;22808:38;;:12;:16;;:38;;;;:::i;:::-;22791:55;;22861:19;22934:15;;22883:48;22915:4;:15;;;22883:48;;:27;22894:15;:13;:15::i;:::-;22883:6;;:10;:27::i;:::-;:31;;:48::i;:::-;:66;;;;;;;-1:-1:-1;22983:69:0;23043:8;23004:36;22883:66;17454:4;23004:15;:36::i;:::-;:47;;;;;22983:16;;23004:47;;22983:20;:69::i;:::-;22964:88;;22718:346;;;23152:15;;;;23091:11;;23084:96;;:84;;17454:4;;23091:33;;23107:16;23091:15;:33::i;:::-;:55;;;;;;;23084:67;:84::i;:96::-;23074:106;22385:803;-1:-1:-1;;;;;;;22385:803:0:o;19037:392::-;19108:32;;;;;19090:15;;19108:20;;;;;;:32;;19129:10;;19108:32;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19090:50;-1:-1:-1;19159:12:0;19151:60;;;;;;;;;;;;:::i;:::-;19222:63;:27;;;19250:10;19270:4;19277:7;19222:27;:63::i;:::-;19296:49;;;;;:18;;;;;;:49;;19323:11;;19337:7;;19296:49;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;19356:40:0;;;;;:19;:11;:19;;;;:40;;19376:10;;19388:7;;19356:40;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;19412:9:0;;;;-1:-1:-1;19412:9:0;;-1:-1:-1;19412:9:0;19037:392;;:::o;21415:102::-;6503:5;;;;6489:10;:19;6481:64;;;;;;;;;;;;:::i;:::-;21489:8:::1;:20:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;21415:102::o;29328:575::-;29398:21;29422:13;;;:8;:13;;;;;;;;29436:10;29422:25;;;;;;;29475:11;;29497:15;;;-1:-1:-1;29523:15:0;;:19;;;29577:8;:13;;29422:25;;29475:11;;29431:3;;29577:13;;;;;;;;;;;;;;;;;;;-1:-1:-1;29605:32:0;;29601:115;;29654:50;;;;;:23;;;;;;:50;;29678:3;;29683:10;;29695:2;;29699:1;;;;29654:50;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29601:115;29796:37;29822:2;29826:6;29796:7;29804:3;29796:12;;;;;;;:37;29892:2;29849:46;;29879:3;29867:10;29849:46;;;29884:6;29849:46;;;;;;:::i;:::-;;;;;;;;29328:575;;;;;:::o;21675:482::-;21740:8;;21732:31;21740:8;21724:73;;;;;;;;;;;;:::i;:::-;21808:15;21826:7;21834:4;21826:13;;;;;;;;;;;;;;;;;21864:33;;;;;21826:13;;;;;-1:-1:-1;21826:13:0;;21864:18;;:33;;21891:4;;21864:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21933:8;;21908:40;;;;;21850:47;;-1:-1:-1;21908:16:0;;;;;;;:40;;21933:8;;21850:47;;21908:40;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;21979:8:0;;:26;;;;;21959:17;;21979:8;;;:16;;:26;;21996:8;;21979:26;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22031:35;;;;;21959:46;;-1:-1:-1;22031:20:0;;;;;;:35;;22060:4;;22031:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22024:3;:42;22016:96;;;;;;;;;;;;:::i;:::-;22139:10;22123:7;22131:4;22123:13;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;21675:482;;;;:::o;6035:340::-;6103:12;;;;6155:10;:27;;6147:72;;;;;;;;;;;;:::i;:::-;6278:5;;;6257:42;;;;;;;6278:5;;;6257:42;;;6310:5;:21;;;;;;;;;;;;;;6342:25;;;;;;;6035:340::o;29050:93::-;29101:34;;;;;:19;:11;:19;;;;:34;;29121:10;;29133:1;;29101:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29050:93::o;24048:785::-;24097:20;;:::i;:::-;24137:8;24146:3;24137:13;;;;;;;;;;;;;;;;;24130:20;;;;;;;;24137:13;;;;24130:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24165:12:0;:35;24161:665;;;24217:16;24236:7;24244:3;24236:12;;;;;;;;;;;;;;;;;;:37;;;;;:12;;;;;:22;;:37;;24267:4;;24236:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24217:56;-1:-1:-1;24292:12:0;;24288:342;;24325:14;24342:38;24359:4;:20;;;24342:38;;:12;:16;;:38;;;;:::i;:::-;24325:55;;24399:19;24472:15;;24421:48;24453:4;:15;;;24421:48;;:27;24432:15;:13;:15::i;24421:48::-;:66;;;;;;;-1:-1:-1;24530:84:0;24556:57;24596:8;24557:36;24421:66;17454:4;24557:15;:36::i;:::-;:47;;;;;;24556:55;:57::i;:::-;24530:21;;:25;;;;:84::i;:::-;24506:108;;;;-1:-1:-1;;24288:342:0;24667:19;:12;:17;:19::i;:::-;24644:42;;:20;;;:42;24701:8;:13;;24644:4;;24701:8;24710:3;;24701:13;;;;;;;;;;;;;;;:20;;:13;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24760;;;24792:21;;24741:73;;24755:3;;24741:73;;;;24760:20;;24782:8;;24741:73;:::i;:::-;;;;;;;;24161:665;;24048:785;;;:::o;23370:193::-;23454:4;23440:11;23476:80;23500:3;23496:1;:7;23476:80;;;23525:19;23536:4;;23541:1;23536:7;;;;;;;;;;;;;23525:10;:19::i;:::-;-1:-1:-1;23505:3:0;;23476:80;;16628:35;;;:::o;16949:23::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16949:23:0;:::o;13481:280::-;13704:49;;;;;:12;;;;;;:49;;13717:4;;13723:2;;13727:6;;13735:8;;13745:1;;13748;;13751;;13704:49;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13481:280;;;;;;;;:::o;16776:29::-;;;;;;:::o;20862:411::-;6503:5;;;;6489:10;:19;6481:64;;;;;;;;;;;;:::i;:::-;20993:63:::1;21044:11;20993:46;21013:8;21022:4;21013:14;;;;;;;;;::::0;;;::::1;::::0;;;::::1;:25:::0;20993:15:::1;::::0;;21013:25;;::::1;;;20993:19;:46::i;:::-;:50:::0;::::1;:63::i;:::-;20975:15;:81:::0;21095:18:::1;:11:::0;:16:::1;:18::i;:::-;21067:8;21076:4;21067:14;;;;;;;;;;;;;;;:25;;;:46;;;;;;;;;;;;;;;;;;21128:9;21124:46;;;21158:9;21141:8;21150:4;21141:14;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;21124:46;21215:9;:38;;21239:8;21248:4;21239:14;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;::::1;;21215:38;;;21227:9;21215:38;21185:80;;21196:4;21185:80;21202:11;21255:9;21185:80;;;;;;;:::i;:::-;;;;;;;;20862:411:::0;;;;:::o;4593:20::-;;;;;;:::o;25077:688::-;25153:20;;:::i;:::-;25176:15;25187:3;25176:10;:15::i;:::-;25202:21;25226:13;;;:8;:13;;;;;;;;:17;;;;;;;;;;25290:11;;25153:38;;-1:-1:-1;25226:17:0;25290:23;;25306:6;25290:15;:23::i;:::-;25276:37;;25380:21;;25342:84;;17454:4;;25369:33;;:6;;:33;;:10;:33::i;:::-;:55;;;;;25342:15;;;;;25369:55;;25342:19;:84::i;:::-;25324:4;:15;;:102;;;;25464:19;25486:8;25495:3;25486:13;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25514:32:0;;25510:117;;25603:11;;25563:52;;;;;:23;;;;;;:52;;25587:3;;25592:2;;;;25600:1;;25603:11;25563:52;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25510:117;25639:64;25669:10;25689:4;25696:6;25639:7;25647:3;25639:12;;;;;;;;;;;;;;;;;;;;;:64;;:29;:64::i;:::-;25754:2;25721:36;;25741:3;25729:10;25721:36;;;25746:6;25721:36;;;;;;:::i;17136:66::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16536:29::-;;;:::o;19927:541::-;6503:5;;;;6489:10;:19;6481:64;;;;;;;;;;;;:::i;:::-;20093:15:::1;::::0;20052:12:::1;::::0;20093:31:::1;::::0;20113:10;20093:19:::1;:31::i;:::-;20075:15;:49:::0;20135:7:::1;:22:::0;;::::1;::::0;;::::1;::::0;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;::::1;;::::0;;;20168:8:::1;:24:::0;;;;::::1;::::0;;-1:-1:-1;20168:24:0;;;;;;::::1;::::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;20219:153:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;;20135:22:0::1;20219:153:::0;::::1;20304:22;:15:::0;:20:::1;:22::i;:::-;20219:153;;;;;;20255:17;:10;:15;:17::i;:::-;20219:153;::::0;;::::1;::::0;;;20205:168;;::::1;::::0;;::::1;::::0;;-1:-1:-1;20205:168:0;;;::::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;;::::1;;::::0;;20405:7:::1;:14:::0;20389:71:::1;::::0;;::::1;::::0;;;::::1;::::0;20405:21:::1;::::0;:18:::1;:21::i;:::-;20389:71;20428:10;20389:71;;;;;;:::i;:::-;;;;;;;;6556:1;19927:541:::0;;;:::o;23644:220::-;23690:14;23827:11;:27;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23780:32;;;;;23726:98;;23780:20;:11;:20;;;;:32;;23801:10;;23780:32;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:43;;;17396:4;;23726:53;:98::i;:::-;:130;;;;;;23717:139;;23644:220;:::o;17042:27::-;;;;;;;;;;27937:1004;28024:20;;:::i;:::-;28047:15;28058:3;28047:10;:15::i;:::-;28073:21;28097:13;;;:8;:13;;;;;;;;28111:10;28097:25;;;;;;;28182:21;;28166:11;;28024:38;;-1:-1:-1;28097:25:0;;17454:4;;28166:38;;:11;:38;;:15;:38::i;:::-;:60;;;;;;28133:94;;28238:21;28262:49;:37;28283:4;:15;;;28262:16;:20;;:37;;;;:::i;:49::-;28238:73;;28362:85;17454:4;28390:33;28401:4;:21;;;28390:33;;:6;:10;;:33;;;;:::i;:::-;:55;;;;;28362:16;;28390:55;;28362:20;:85::i;:::-;28344:15;;;:103;28472:11;;:23;;28488:6;28472:15;:23::i;:::-;28458:37;;28541;:18;:5;:18;28560:2;28564:13;28541:18;:37::i;:::-;28591:19;28613:8;28622:3;28613:13;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28641:32:0;;28637:137;;28750:11;;28690:72;;;;;:23;;;;;;:72;;28714:3;;28719:10;;28731:2;;28735:13;;28750:11;28690:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28637:137;28786:37;28812:2;28816:6;28786:7;28794:3;28786:12;;;;;;;:37;28875:2;28841:37;;28862:3;28850:10;28841:37;;;28867:6;28841:37;;;;;;:::i;:::-;;;;;;;;28914:3;28902:10;28894:39;;;28919:13;28894:39;;;;;;:::i;:::-;;;;;;;;27937:1004;;;;;;;;:::o;12557:530::-;12641:23;;12724:5;12713:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12713:24:0;-1:-1:-1;12701:36:0;-1:-1:-1;12770:5:0;12758:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12748:35;;12799:9;12794:286;12814:16;;;12794:286;;;12853:12;12867:19;12898:4;12917:5;;12923:1;12917:8;;;;;;;;;;;;;;;;;;:::i;:::-;12890:36;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12852:74;;;;12949:7;:24;;;;12961:12;12960:13;12949:24;12975:21;12989:6;12975:13;:21::i;:::-;12941:56;;;;;;;;;;;;;;:::i;:::-;;13027:7;13012:9;13022:1;13012:12;;;;;;;;;;;;;:22;;;;;;;;;;;13062:6;13049:7;13057:1;13049:10;;;;;;;;;;;;;;;;;:19;-1:-1:-1;;12832:3:0;;12794:286;;;;12557:530;;;;;;:::o;4620:27::-;;;;;;:::o;16445:40::-;;;:::o;3475:155::-;3533:9;3563:6;;;:30;;-1:-1:-1;;3578:5:0;;;3592:1;3587;3578:5;3587:1;3573:15;;;;;:20;3563:30;3555:67;;;;;;;;;;;;:::i;:::-;3475:155;;;;:::o;2170:218::-;2226:6;2256:5;;;2281:6;;;;;;:16;;;2296:1;2291;:6;;2281:16;2280:38;;;;2307:1;2303;:5;:14;;;;;2316:1;2312;:5;2303:14;2272:87;;;;;;;;;;;;:::i;:::-;2379:1;2170:218;-1:-1:-1;;;2170:218:0:o;3329:138::-;3422:5;;;3417:16;;;;3409:50;;;;;;;;;;;;:::i;9944:340::-;10063:12;10077:17;10106:5;10098:19;;7562:10;10141:12;;10155:2;10159:6;10118:48;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10098:69;;;;10118:48;10098:69;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10062:105;;;;10186:7;:57;;;;-1:-1:-1;10198:11:0;;:16;;:44;;;10229:4;10218:24;;;;;;;;;;;;:::i;:::-;10178:98;;;;;;;;;;;;:::i;:::-;9944:340;;;;;:::o;2856:138::-;2908:7;2941:1;2936;:6;;2928:30;;;;;;;;;;;;:::i;:::-;-1:-1:-1;2984:1:0;2856:138::o;3180:141::-;3273:5;;;3268:16;;;;3260:53;;;;;;;;;;;;:::i;10607:382::-;10753:12;10767:17;10796:5;10788:19;;7652:10;10831:17;;10850:4;10856:2;10860:6;10808:59;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10788:80;;;;10808:59;10788:80;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10752:116;;;;10887:7;:57;;;;-1:-1:-1;10899:11:0;;:16;;:44;;;10930:4;10919:24;;;;;;;;;;;;:::i;:::-;10879:102;;;;;;;;;;;;:::i;:::-;10607:382;;;;;;:::o;3638:161::-;3687:9;3717:16;;;;3709:57;;;;;;;;;;;;:::i;4263:141::-;4356:5;;;4351:16;;;;;;;;;4343:53;;;;;;;;;;;;:::i;3807:156::-;3855:8;3884:15;;;;3876:55;;;;;;;;;;;;:::i;2633:215::-;2689:6;2719:5;;;2744:6;;;;;;:16;;;2759:1;2754;:6;;2744:16;2743:38;;;;2770:1;2766;:5;:14;;;;;2779:1;2775;:5;2766:14;2735:84;;;;;;;;;;;;:::i;11221:496::-;11293:13;11456:2;11435:11;:18;:23;11431:67;;;-1:-1:-1;11460:38:0;;;;;;;;;;;;;;;;;;;11431:67;11602:4;11589:11;11585:22;11570:37;;11646:11;11635:33;;;;;;;;;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;158:363::-;;;299:3;292:4;284:6;280:17;276:27;266:2;;-1:-1;;307:12;266:2;-1:-1;337:20;;377:18;366:30;;363:2;;;-1:-1;;399:12;363:2;443:4;435:6;431:17;419:29;;494:3;443:4;;478:6;474:17;435:6;460:32;;457:41;454:2;;;511:1;;501:12;454:2;259:262;;;;;:::o;3760:479::-;;;;3892:2;3880:9;3871:7;3867:23;3863:32;3860:2;;;-1:-1;;3898:12;3860:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;3950:63;-1:-1;4050:2;4086:22;;971:20;996:30;971:20;996:30;:::i;:::-;4058:60;-1:-1;4155:2;4191:22;;971:20;996:30;971:20;996:30;:::i;:::-;4163:60;;;;3854:385;;;;;:::o;4246:538::-;;;;4410:2;4398:9;4389:7;4385:23;4381:32;4378:2;;;-1:-1;;4416:12;4378:2;4474:17;4461:31;4512:18;4504:6;4501:30;4498:2;;;-1:-1;;4534:12;4498:2;4572:91;4655:7;4646:6;4635:9;4631:22;4572:91;:::i;:::-;4554:109;;-1:-1;4554:109;-1:-1;;4700:2;4736:22;;971:20;996:30;971:20;996:30;:::i;4791:397::-;;;4930:2;4918:9;4909:7;4905:23;4901:32;4898:2;;;-1:-1;;4936:12;4898:2;4994:17;4981:31;5032:18;5024:6;5021:30;5018:2;;;-1:-1;;5054:12;5018:2;5092:80;5164:7;5155:6;5144:9;5140:22;5092:80;:::i;:::-;5074:98;;;;-1:-1;4892:296;-1:-1;;;;4892:296::o;5195:257::-;;5307:2;5295:9;5286:7;5282:23;5278:32;5275:2;;;-1:-1;;5313:12;5275:2;1119:6;1113:13;1131:30;1155:5;1131:30;:::i;5459:269::-;;5577:2;5565:9;5556:7;5552:23;5548:32;5545:2;;;-1:-1;;5583:12;5545:2;1404:6;1391:20;1416:47;1457:5;1416:47;:::i;5735:291::-;;5864:2;5852:9;5843:7;5839:23;5835:32;5832:2;;;-1:-1;;5870:12;5832:2;1573:6;1567:13;1585:47;1626:5;1585:47;:::i;6033:1145::-;;;;;;;;;6268:3;6256:9;6247:7;6243:23;6239:33;6236:2;;;-1:-1;;6275:12;6236:2;1404:6;1391:20;1416:47;1457:5;1416:47;:::i;:::-;6327:77;-1:-1;6441:2;6480:22;;72:20;97:33;72:20;97:33;:::i;:::-;6449:63;-1:-1;6549:2;6588:22;;72:20;97:33;72:20;97:33;:::i;:::-;6557:63;-1:-1;6657:2;6696:22;;3416:20;;-1:-1;6765:3;6805:22;;3416:20;;-1:-1;6874:3;6912:22;;3692:20;44270:4;44259:16;;47661:33;;47651:2;;-1:-1;;47698:12;47651:2;6230:948;;;;-1:-1;6230:948;;;;;;6883:61;;-1:-1;;;6981:3;7021:22;;1240:20;;7090:3;7130:22;1240:20;;6230:948::o;7477:362::-;;7602:2;7590:9;7581:7;7577:23;7573:32;7570:2;;;-1:-1;;7608:12;7570:2;7659:17;7653:24;7697:18;;7689:6;7686:30;7683:2;;;-1:-1;;7719:12;7683:2;7806:6;7795:9;7791:22;;;2112:3;2105:4;2097:6;2093:17;2089:27;2079:2;;-1:-1;;2120:12;2079:2;2160:6;2154:13;7697:18;40906:6;40903:30;40900:2;;;-1:-1;;40936:12;40900:2;2182:65;7602:2;41009:9;2105:4;40994:6;40990:17;40986:33;41067:15;2182:65;:::i;:::-;2173:74;;2267:6;2260:5;2253:21;2371:3;7602:2;2362:6;2295;2353:16;;2350:25;2347:2;;;-1:-1;;2378:12;2347:2;2398:39;2430:6;7602:2;2329:5;2325:16;7602:2;2295:6;2291:17;2398:39;:::i;:::-;-1:-1;7739:84;7564:275;-1:-1;;;;7564:275::o;7846:316::-;;7987:3;7975:9;7966:7;7962:23;7958:33;7955:2;;;-1:-1;;7994:12;7955:2;2647:20;7987:3;2647:20;:::i;:::-;1573:6;1567:13;1585:47;1626:5;1585:47;:::i;:::-;2752:74;2734:16;2727:100;;2894:2;2963:9;2959:22;3564:13;2894:2;2913:5;2909:16;2902:86;3060:2;3129:9;3125:22;3564:13;3060:2;3079:5;3075:16;3068:86;3227:2;3296:9;3292:22;3564:13;3227:2;3246:5;3242:16;3235:86;8046:100;;;;7949:213;;;;:::o;8169:241::-;;8273:2;8261:9;8252:7;8248:23;8244:32;8241:2;;;-1:-1;;8279:12;8241:2;-1:-1;3416:20;;8235:175;-1:-1;8235:175::o;8417:263::-;;8532:2;8520:9;8511:7;8507:23;8503:32;8500:2;;;-1:-1;;8538:12;8500:2;-1:-1;3564:13;;8494:186;-1:-1;8494:186::o;8687:366::-;;;8808:2;8796:9;8787:7;8783:23;8779:32;8776:2;;;-1:-1;;8814:12;8776:2;3429:6;3416:20;8866:63;;8966:2;9009:9;9005:22;72:20;97:33;124:5;97:33;:::i;:::-;8974:63;;;;8770:283;;;;;:::o;9060:555::-;;;;9230:2;9218:9;9209:7;9205:23;9201:32;9198:2;;;-1:-1;;9236:12;9198:2;3429:6;3416:20;9288:63;;9388:2;9445:9;9441:22;1391:20;1416:47;1457:5;1416:47;:::i;:::-;9396:77;-1:-1;9510:2;9567:22;;1910:20;1935:51;1910:20;1935:51;:::i;9622:491::-;;;;9760:2;9748:9;9739:7;9735:23;9731:32;9728:2;;;-1:-1;;9766:12;9728:2;3429:6;3416:20;9818:63;;9918:2;9961:9;9957:22;3416:20;9926:63;;10026:2;10069:9;10065:22;72:20;97:33;124:5;97:33;:::i;10120:647::-;;;;;10290:3;10278:9;10269:7;10265:23;10261:33;10258:2;;;-1:-1;;10297:12;10258:2;3429:6;3416:20;10349:63;;10449:2;10492:9;10488:22;3416:20;10457:63;;10557:2;10618:9;10614:22;1910:20;1935:51;1980:5;1935:51;:::i;:::-;10565:81;-1:-1;10683:2;10719:22;;971:20;996:30;971:20;996:30;:::i;:::-;10252:515;;;;-1:-1;10252:515;;-1:-1;;10252:515::o;13738:323::-;;13870:5;41521:12;42336:6;42331:3;42324:19;13953:52;13998:6;42373:4;42368:3;42364:14;42373:4;13979:5;13975:16;13953:52;:::i;:::-;46617:2;46597:14;46613:7;46593:28;14017:39;;;;42373:4;14017:39;;13818:243;-1:-1;;13818:243::o;22829:291::-;;46180:6;46175:3;46170;46157:30;46218:16;;46211:27;;;46218:16;22973:147;-1:-1;22973:147::o;23127:271::-;;14228:5;41521:12;14339:52;14384:6;14379:3;14372:4;14365:5;14361:16;14339:52;:::i;:::-;14403:16;;;;;23261:137;-1:-1;;23261:137::o;23405:222::-;43962:42;43951:54;;;;11362:37;;23532:2;23517:18;;23503:124::o;23879:444::-;43962:42;43951:54;;;11362:37;;43951:54;;;;24226:2;24211:18;;11362:37;24309:2;24294:18;;13348:37;;;;24062:2;24047:18;;24033:290::o;24330:884::-;43962:42;43951:54;;;11362:37;;43951:54;;;;24786:2;24771:18;;11362:37;24869:2;24854:18;;13348:37;;;;24952:2;24937:18;;13348:37;;;;44270:4;44259:16;25031:3;25016:19;;22782:35;25115:3;25100:19;;13348:37;25199:3;25184:19;;13348:37;;;;24621:3;24606:19;;24592:622::o;25221:333::-;43962:42;43951:54;;;;11362:37;;25540:2;25525:18;;13348:37;25376:2;25361:18;;25347:207::o;25561:653::-;25828:2;25842:47;;;41521:12;;25813:18;;;42324:19;;;25561:653;;42373:4;;42364:14;;;;41211;;;25561:653;11829:251;11854:6;11851:1;11848:13;11829:251;;;11915:13;;43238;43231:21;13120:34;;10916:14;;;;42058;;;;11876:1;11869:9;11829:251;;;11833:14;;;26053:9;26047:4;26043:20;42373:4;26027:9;26023:18;26016:48;26078:126;12357:5;41521:12;12376:95;12464:6;12459:3;12376:95;:::i;:::-;12369:102;;;;;42373:4;12528:6;12524:17;12519:3;12515:27;42373:4;12622:5;41211:14;-1:-1;12661:357;12686:6;12683:1;12680:13;12661:357;;;12748:9;12742:4;12738:20;12733:3;12726:33;11064:64;11124:3;12793:6;12787:13;11064:64;:::i;:::-;12997:14;;;;12807:90;-1:-1;42058:14;;;;11876:1;12701:9;12661:357;;;-1:-1;26070:134;;25799:415;-1:-1;;;;;;;;;25799:415::o;27285:310::-;;27432:2;27453:17;27446:47;27507:78;27432:2;27421:9;27417:18;27571:6;27507:78;:::i;27602:416::-;27802:2;27816:47;;;15956:2;27787:18;;;42324:19;15992:23;42364:14;;;15972:44;16035:12;;;27773:245::o;28025:416::-;28225:2;28239:47;;;16286:2;28210:18;;;42324:19;16322:13;42364:14;;;16302:34;16355:12;;;28196:245::o;28448:416::-;28648:2;28662:47;;;16606:2;28633:18;;;42324:19;16642:34;42364:14;;;16622:55;16711:5;16697:12;;;16690:27;16736:12;;;28619:245::o;28871:416::-;29071:2;29085:47;;;16987:2;29056:18;;;42324:19;17023:30;42364:14;;;17003:51;17073:12;;;29042:245::o;29294:416::-;29494:2;29508:47;;;17324:2;29479:18;;;42324:19;17360:34;42364:14;;;17340:55;17429:3;17415:12;;;17408:25;17452:12;;;29465:245::o;29717:416::-;29917:2;29931:47;;;17703:2;29902:18;;;42324:19;17739:23;42364:14;;;17719:44;17782:12;;;29888:245::o;30140:416::-;30340:2;30354:47;;;18033:2;30325:18;;;42324:19;18069:34;42364:14;;;18049:55;18138:11;18124:12;;;18117:33;18169:12;;;30311:245::o;30563:416::-;30763:2;30777:47;;;18420:2;30748:18;;;42324:19;18456:30;42364:14;;;18436:51;18506:12;;;30734:245::o;30986:416::-;31186:2;31200:47;;;18757:2;31171:18;;;42324:19;18793:26;42364:14;;;18773:47;18839:12;;;31157:245::o;31409:416::-;31609:2;31623:47;;;31594:18;;;42324:19;19126:34;42364:14;;;19106:55;19180:12;;;31580:245::o;31832:416::-;32032:2;32046:47;;;32017:18;;;42324:19;19467:34;42364:14;;;19447:55;19521:12;;;32003:245::o;32255:416::-;32455:2;32469:47;;;19772:2;32440:18;;;42324:19;19808:29;42364:14;;;19788:50;19857:12;;;32426:245::o;32678:416::-;32878:2;32892:47;;;20108:2;32863:18;;;42324:19;20144:31;42364:14;;;20124:52;20195:12;;;32849:245::o;33101:416::-;33301:2;33315:47;;;20446:2;33286:18;;;42324:19;20482:34;42364:14;;;20462:55;20551:6;20537:12;;;20530:28;20577:12;;;33272:245::o;33524:416::-;33724:2;33738:47;;;33709:18;;;42324:19;20864:34;42364:14;;;20844:55;20918:12;;;33695:245::o;33947:416::-;34147:2;34161:47;;;21169:2;34132:18;;;42324:19;21205:26;42364:14;;;21185:47;21251:12;;;34118:245::o;34370:326::-;21567:23;;43842:34;43831:46;22069:37;;21749:4;21738:16;;;21732:23;44168:18;44157:30;;;21807:14;;;22550:36;;;;21907:4;21896:16;;;21890:23;44157:30;21965:14;;;22550:36;;;;34549:2;34534:18;;34520:176::o;34703:436::-;43842:34;43831:46;;;;22069:37;;44168:18;44157:30;;;35044:2;35029:18;;22550:36;44157:30;35125:2;35110:18;;22550:36;34882:2;34867:18;;34853:286::o;35146:222::-;13348:37;;;35273:2;35258:18;;35244:124::o;35375:716::-;13348:37;;;43962:42;43951:54;;;35811:2;35796:18;;11221:58;43951:54;;;;35894:2;35879:18;;11362:37;35985:2;35970:18;;15307:58;;;;36076:3;36061:19;;15307:58;35638:3;35623:19;;35609:482::o;38187:321::-;13348:37;;;43238:13;43231:21;38494:2;38479:18;;13120:34;38336:2;38321:18;;38307:201::o;38515:329::-;13348:37;;;38830:2;38815:18;;13348:37;38668:2;38653:18;;38639:205::o;39547:440::-;44168:18;44157:30;;;;22550:36;;39890:2;39875:18;;13348:37;;;;43842:34;43831:46;39973:2;39958:18;;22309:50;39728:2;39713:18;;39699:288::o;39994:506::-;;;40129:11;40116:25;40180:48;40204:8;40188:14;40184:29;40180:48;40160:18;40156:73;40146:2;;-1:-1;;40233:12;40146:2;40260:33;;40314:18;;;-1:-1;40352:18;40341:30;;40338:2;;;-1:-1;;40374:12;40338:2;40219:4;40402:13;;-1:-1;40188:14;40434:38;;;40424:49;;40421:2;;;40486:1;;40476:12;40507:256;40569:2;40563:9;40595:17;;;40670:18;40655:34;;40691:22;;;40652:62;40649:2;;;40727:1;;40717:12;40649:2;40569;40736:22;40547:216;;-1:-1;40547:216::o;46253:268::-;46318:1;46325:101;46339:6;46336:1;46333:13;46325:101;;;46406:11;;;46400:18;46387:11;;;46380:39;46361:2;46354:10;46325:101;;;46441:6;46438:1;46435:13;46432:2;;;-1:-1;;46318:1;46488:16;;46481:27;46302:219::o;46634:117::-;43962:42;46721:5;43951:54;46696:5;46693:35;46683:2;;46742:1;;46732:12;46683:2;46677:74;:::o;46758:111::-;46839:5;43238:13;43231:21;46817:5;46814:32;46804:2;;46860:1;;46850:12
Swarm Source
ipfs://963b3142e60a6027d8683ef310c14f58faad25fb175ba0c493c48eb851f6bc54
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 54.44% | $41.67 | 25,051.9849 | $1,043,950.5 | |
ETH | 14.25% | $10.31 | 26,501.0669 | $273,182.62 | |
ETH | 9.05% | $54.95 | 3,158.7188 | $173,558.8 | |
ETH | 6.50% | $110.76 | 1,125.0675 | $124,614.15 | |
ETH | 4.36% | $399.43 | 209.4914 | $83,676.18 | |
ETH | 2.72% | $0.944616 | 55,247.0878 | $52,187.28 | |
ETH | 2.00% | $0.169439 | 226,321.3892 | $38,347.66 | |
ETH | 1.44% | $137.85 | 200.7352 | $27,672.3 | |
ETH | 1.27% | $5,103,235.13 | 0.00475713 | $24,276.74 | |
ETH | 1.15% | $2,318,285.7 | 0.00949145 | $22,003.88 | |
ETH | 0.89% | $2.24 | 7,657.7936 | $17,138.94 | |
ETH | 0.66% | $596,558.13 | 0.0212 | $12,628.24 | |
ETH | 0.37% | $13.2 | 540.2076 | $7,131.13 | |
ETH | 0.27% | $32.45 | 160.0467 | $5,193.43 | |
ETH | 0.19% | $8.62 | 431.6136 | $3,719.32 | |
ETH | 0.19% | $0.190415 | 19,450.6234 | $3,703.69 | |
ETH | 0.15% | $6.98 | 411.0368 | $2,867.38 | |
ETH | 0.06% | $64.89 | 17.0004 | $1,103.14 | |
ETH | 0.04% | $291,099.71 | 0.0023955 | $697.33 | |
ETH | <0.01% | $97.95 | 0.3892 | $38.12 |
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.